:root {
  color: #0f172a;
  font-family: 'DM Sans', 'Sora', sans-serif;
  --bg: #f8f9fb;
  --card: #ffffff;
  --ink: #0f172a;
  --muted: #4b5563;
  --border: #e5e7eb;
  --accent: #0f6058;
  --shadow: none;
  color-scheme: light;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
header {
  position: sticky;
  top: 0;
  z-index: 4;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.topbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 22px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 16px;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-family: 'Sora', 'DM Sans', sans-serif;
}
.mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--accent);
  display: grid;
  place-items: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
  box-shadow: none;
}
nav {
  display: flex;
  gap: 16px;
  align-items: center;
  color: #6b7280;
  font-weight: 600;
  font-size: 14px;
}
nav a {
  padding: 8px 10px;
  border-radius: 10px;
  transition: color 0.15s ease;
}
nav a:hover {
  color: var(--accent);
}
.actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.lang-toggle {
  display: flex;
  align-items: center;
}
.lang-toggle button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  background: white;
  border-radius: 12px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: border 0.15s ease, transform 0.15s ease;
}
.lang-toggle button:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 22px 80px 22px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--border);
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef2f7;
  color: #0f6058;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
h1 {
  font-size: clamp(32px, 4vw, 52px);
  margin: 0 0 12px 0;
  letter-spacing: -0.03em;
  font-family: 'Sora', 'DM Sans', sans-serif;
}
h2 {
  margin: 0 0 12px 0;
  font-size: 26px;
  letter-spacing: -0.02em;
  font-family: 'Sora', 'DM Sans', sans-serif;
}
h3 {
  margin: 0 0 10px 0;
  font-size: 18px;
  letter-spacing: -0.01em;
}
p {
  margin: 0 0 10px 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}
.lede {
  font-size: 17px;
  color: #1f2937;
}
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 12px;
}
.button {
  background: var(--accent);
  color: white;
  border: 1px solid var(--accent);
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: none;
  transition: background 0.15s ease, color 0.15s ease, border 0.15s ease;
}
.button:hover { background: #0c615c; border-color: #0c615c; }
.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid #d1d5db;
  box-shadow: none;
}
.ghost:hover { border-color: var(--accent); color: #0c615c; }
.note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 600;
}
.note::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.benefits {
  list-style: none;
  padding: 0;
  margin: 14px 0 0 0;
  display: grid;
  gap: 10px;
}
.benefits li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #1f2937;
  font-weight: 600;
}
.benefits li::before {
  content: '—';
  color: var(--accent);
  font-weight: 900;
  margin-top: -2px;
}
.hero-visual {
  display: grid;
  gap: 14px;
}
.dash {
  border-radius: 16px;
  padding: 16px;
  background: #ffffff;
  color: var(--ink);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  box-shadow: none;
}
.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.chip {
  padding: 8px 12px;
  background: #eef2f7;
  border-radius: 10px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.bars {
  display: grid;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.bar {
  height: 14px;
  border-radius: 999px;
  background: #eef2f7;
  overflow: hidden;
  position: relative;
}
.bar span {
  display: block;
  height: 100%;
  background: var(--accent);
  box-shadow: none;
}
.mini {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}
.mini-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  box-shadow: none;
}
.mini-label {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 6px;
}
.mini-value {
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}
.stat {
  padding: 16px;
  border-radius: 14px;
  background: #f9fafb;
  border: 1px solid var(--border);
}
.stat .value {
  font-weight: 800;
  font-size: 26px;
  margin-bottom: 4px;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.value-card {
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #ffffff;
}
.value-card strong {
  display: inline-block;
  margin-bottom: 6px;
  color: #0c615c;
}
.stepper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}
.step {
  padding: 16px;
  border-radius: 14px;
  border: 1px dashed rgba(15,118,110,0.35);
  background: #ffffff;
  position: relative;
}
.step-number {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--accent);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 10px;
}
.cta-band {
  background: #ffffff;
  color: var(--ink);
  border-radius: 16px;
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  align-items: center;
  border: 1px solid var(--border);
  box-shadow: none;
}
.cta-band p { color: #1f2937; }
footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 22px 40px 22px;
  color: var(--muted);
  font-size: 14px;
}
@media (max-width: 960px) {
  .topbar {
    grid-template-columns: 1fr;
    align-items: start;
  }
  nav { justify-content: flex-start; flex-wrap: wrap; }
  .actions { flex-wrap: wrap; }
}
@media (max-width: 720px) {
  header { position: static; }
  .cta-row { flex-direction: column; align-items: flex-start; }
  .topbar { padding: 16px; }
  main { padding: 22px 16px 60px 16px; }
}
.lang-no [data-en] { display: none; }
.lang-en [data-no] { display: none; }
