/* =========================================================================
   SapaKlinik — Landing Page
   Design system extracted from the product UI:
   deep navy + warm ivory + editorial gold, serif display, mono details.
   ========================================================================= */

:root {
  /* Navy */
  --navy-deep: #0d1a30;
  --navy: #15274686;
  --navy-900: #0f1d35;
  --navy-800: #16294a;
  --navy-700: #1f3760;
  --navy-600: #2c4a78;

  /* Warm neutrals */
  --cream: #f6efe4;
  --cream-2: #efe6d7;
  --paper: #fcf8f1;
  --paper-2: #f8f2e8;

  /* Gold / accent */
  --gold: #b07d34;
  --gold-soft: #c89a59;
  --gold-bright: #d9b277;

  /* Ink */
  --ink: #1c2a41;
  --ink-soft: #54627b;
  --ink-faint: #8a93a4;
  --on-navy: #eef1f6;
  --on-navy-soft: #aebbd0;
  --on-navy-faint: #7286a3;

  /* Lines & surfaces */
  --line: rgba(28, 42, 65, 0.12);
  --line-strong: rgba(28, 42, 65, 0.2);
  --line-navy: rgba(255, 255, 255, 0.1);

  /* Type */
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 8px rgba(15, 29, 53, 0.06);
  --shadow-md: 0 18px 40px -18px rgba(15, 29, 53, 0.28);
  --shadow-lg: 0 40px 90px -30px rgba(11, 23, 44, 0.5);

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.018em;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }

.serif-i { font-style: italic; }
.gold { color: var(--gold); }
.gold-on-navy { color: var(--gold-bright); }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 10vw, 132px); position: relative; }

.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(176, 125, 52, 0.16);
}
.eyebrow.on-navy { color: var(--gold-bright); }
.eyebrow.on-navy::before { background: var(--gold-bright); box-shadow: 0 0 0 4px rgba(217, 178, 119, 0.18); }
.eyebrow.center { justify-content: center; }

.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  margin-top: 18px;
}
.section-head .lede {
  margin-top: 20px;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: var(--ink-soft);
  max-width: 620px;
}
.section-head.center .lede { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.01em;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), background .25s, box-shadow .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--navy-800); color: var(--on-navy); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-gold { background: linear-gradient(180deg, var(--gold-soft), var(--gold)); color: #2a1d08; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -14px rgba(176,125,52,.7); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { background: rgba(28,42,65,.05); border-color: var(--ink); transform: translateY(-2px); }
.btn-onnavy { background: rgba(255,255,255,.07); color: var(--on-navy); border-color: rgba(255,255,255,.22); backdrop-filter: blur(6px); }
.btn-onnavy:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.btn-lg { padding: 17px 32px; font-size: 16.5px; }
.btn-wa svg { width: 19px; height: 19px; }

.micro {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: var(--ink-faint);
}

/* ---------- Navbar ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 60;
  transition: background .3s, box-shadow .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(246, 239, 228, 0.82);
  backdrop-filter: saturate(1.4) blur(16px);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(255,255,255,.5) inset;
}
.nav-inner {
  display: flex; align-items: center; gap: 18px;
  height: 70px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 11px;
  background: linear-gradient(155deg, var(--navy-600), var(--navy-900));
  color: #fff; display: grid; place-items: center;
  font-family: var(--serif); font-style: italic; font-weight: 600; font-size: 18px;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,.18);
  letter-spacing: -0.02em;
}
.brand-name { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--ink); letter-spacing: -.01em; }
.brand-name b { font-style: normal; font-weight: 700; font-family: var(--sans); letter-spacing: .01em; }
.nav-links { display: flex; gap: 4px; margin-left: 18px; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--ink-soft);
  padding: 9px 14px; border-radius: 999px; transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--ink); background: rgba(28,42,65,.05); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 12px; }

.lang-toggle {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line-strong); border-radius: 999px;
  overflow: hidden; font-family: var(--mono); font-size: 12px; font-weight: 500;
}
.lang-toggle button {
  border: 0; background: transparent; cursor: pointer;
  padding: 7px 11px; color: var(--ink-faint); transition: background .2s, color .2s;
  font-family: inherit; font-size: inherit; letter-spacing: .04em;
}
.lang-toggle button.active { background: var(--navy-800); color: var(--on-navy); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav .btn { padding: 11px 20px; font-size: 14.5px; }
.nav-burger { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 18% 8%, rgba(64, 96, 150, .55), transparent 55%),
    radial-gradient(80% 70% at 92% 18%, rgba(176, 125, 52, .22), transparent 52%),
    linear-gradient(168deg, #18294a 0%, #11203b 48%, #0c1830 100%);
  color: var(--on-navy);
  padding-top: 132px;
  padding-bottom: clamp(40px, 7vw, 80px);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.5), transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 14px 7px 11px; border-radius: 999px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  font-size: 13px; color: var(--on-navy-soft); font-weight: 500;
  backdrop-filter: blur(6px);
}
.hero-badge svg { width: 15px; height: 15px; color: var(--gold-bright); }
.hero-badge b { color: var(--on-navy); font-weight: 600; }

.hero h1 {
  font-size: clamp(2.6rem, 6.4vw, 5.1rem);
  margin-top: 26px;
  max-width: 16ch;
  color: #fff;
  font-weight: 500;
}
.hero h1 .serif-i { color: var(--gold-bright); }
.hero-sub {
  margin-top: 26px;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  color: var(--on-navy-soft);
  max-width: 54ch;
  line-height: 1.62;
}
.hero-sub b { color: var(--on-navy); font-weight: 600; }
.hero-actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-trust { margin-top: 22px; display: flex; align-items: center; gap: 10px; color: var(--on-navy-faint); }
.hero-trust .micro { color: var(--on-navy-faint); }
.hero-trust .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--on-navy-faint); }

/* hero figure */
.hero-figure {
  margin-top: clamp(48px, 7vw, 86px);
  position: relative;
  perspective: 1800px;
}
.browser {
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.16);
  overflow: hidden;
}
.browser-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; background: #f3eee5; border-bottom: 1px solid var(--line);
}
.browser-bar .dots { display: flex; gap: 7px; }
.browser-bar .dots i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.browser-bar .dots i:nth-child(1){ background:#e2766b; }
.browser-bar .dots i:nth-child(2){ background:#e8b14f; }
.browser-bar .dots i:nth-child(3){ background:#5db073; }
.browser-bar .url {
  margin-left: 8px; flex: 1; max-width: 360px;
  font-family: var(--mono); font-size: 12px; color: var(--ink-faint);
  background: #fff; border: 1px solid var(--line); border-radius: 8px;
  padding: 5px 12px; text-align: center; letter-spacing: .01em;
}
.browser-shot { display: block; width: 100%; height: auto; }
.hero-figure .browser { transform: rotateX(6deg) translateZ(0); transform-origin: center top; }

.hero-figure .float-card {
  position: absolute; right: -2%; bottom: -7%;
  background: var(--paper); color: var(--ink);
  border-radius: 16px; padding: 16px 18px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  display: flex; align-items: center; gap: 13px;
  max-width: 280px;
}
.float-card .ico {
  width: 38px; height: 38px; border-radius: 10px; flex: none;
  background: #e8f0e6; color: #3f7a4f; display: grid; place-items: center;
}
.float-card .ico svg { width: 20px; height: 20px; }
.float-card b { font-size: 14.5px; display: block; }
.float-card span { font-size: 12.5px; color: var(--ink-soft); }

/* ---------- Trust strip ---------- */
.strip {
  background: var(--navy-900);
  color: var(--on-navy-soft);
  border-top: 1px solid var(--line-navy);
}
.strip-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line-navy);
}
.strip-item {
  background: var(--navy-900);
  padding: 26px clamp(16px, 2.4vw, 30px);
  display: flex; flex-direction: column; gap: 4px;
}
.strip-item .k { font-family: var(--serif); font-size: 1.7rem; color: #fff; line-height: 1; }
.strip-item .l { font-size: 13.5px; color: var(--on-navy-soft); }
.strip-item .ic { color: var(--gold-bright); margin-bottom: 8px; }
.strip-item .ic svg { width: 22px; height: 22px; }

/* ---------- Features ---------- */
.features { background: var(--cream); }
.feature-grid {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.fcard {
  grid-column: span 1;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.fcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.fcard .ico {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 20px;
  background: var(--paper-2); color: var(--navy-700);
  border: 1px solid var(--line);
}
.fcard .ico svg { width: 23px; height: 23px; }
.fcard h3 { font-size: 1.32rem; margin-bottom: 9px; line-height: 1.16; }
.fcard p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }
.fcard .tag {
  margin-top: 14px; display: inline-block;
  font-family: var(--mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--gold); background: rgba(176,125,52,.09);
  padding: 4px 9px; border-radius: 6px;
}
/* feature spotlight (wide) */
.fcard.wide { grid-column: span 2; display: flex; flex-direction: column; }
.fcard.tall { grid-row: span 2; }

/* ---------- SatuSehat highlight ---------- */
.satusehat {
  background: linear-gradient(170deg, #16294a, #0e1c34);
  color: var(--on-navy);
  position: relative; overflow: hidden;
}
.satusehat::before {
  content: ""; position: absolute; right: -10%; top: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(176,125,52,.2), transparent 65%);
  pointer-events: none;
}
.ss-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 5vw, 72px); align-items: center; position: relative; z-index: 2; }
.satusehat h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); margin-top: 18px; }
.satusehat .lede { color: var(--on-navy-soft); margin-top: 20px; font-size: 1.1rem; }
.ss-list { margin-top: 30px; display: grid; gap: 16px; }
.ss-list li { display: flex; gap: 14px; align-items: flex-start; }
.ss-list .chk {
  flex: none; width: 26px; height: 26px; border-radius: 8px; margin-top: 1px;
  background: rgba(217,178,119,.16); color: var(--gold-bright);
  display: grid; place-items: center;
}
.ss-list .chk svg { width: 15px; height: 15px; }
.ss-list b { color: #fff; font-weight: 600; }
.ss-list span { color: var(--on-navy-soft); font-size: 14.5px; display: block; margin-top: 2px; }
.ss-figure { position: relative; }
.ss-figure .browser { border-color: rgba(255,255,255,.12); }
.ss-chips { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px; }
.ss-chip {
  font-family: var(--mono); font-size: 12px; letter-spacing: .03em;
  padding: 8px 13px; border-radius: 999px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13);
  color: var(--on-navy-soft);
}
.ss-chip b { color: var(--gold-bright); font-weight: 600; }

/* ---------- Showcase tabs ---------- */
.showcase { background: var(--cream-2); }
.tabs {
  margin-top: 40px; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
}
.tab {
  font-family: var(--sans); font-weight: 600; font-size: 14.5px;
  padding: 10px 18px; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--line-strong); background: transparent; color: var(--ink-soft);
  transition: all .2s;
}
.tab:hover { border-color: var(--ink); color: var(--ink); }
.tab.active { background: var(--navy-800); color: var(--on-navy); border-color: var(--navy-800); }
.showcase-stage { margin-top: 34px; }
.showcase-figure {
  max-width: 1080px; margin: 0 auto;
  border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  background: #fff;
}
.showcase-figure .browser-shot { transition: opacity .35s; }
.showcase-caption {
  max-width: 1080px; margin: 22px auto 0; text-align: center;
}
.showcase-caption h3 { font-size: 1.5rem; }
.showcase-caption p { color: var(--ink-soft); margin-top: 8px; max-width: 60ch; margin-inline: auto; font-size: 15px; }

/* ---------- How it works ---------- */
.how { background: var(--cream); }
.steps { margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding-top: 30px; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--mono); font-size: 13px; font-weight: 600; letter-spacing: .1em;
  color: var(--gold);
}
.step .bar { height: 2px; background: var(--line); margin: 14px 0 22px; position: relative; }
.step .bar::after { content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 34px; background: var(--gold); }
.step h3 { font-size: 1.36rem; margin-bottom: 10px; }
.step p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }

/* ---------- For whom ---------- */
.whom { background: var(--paper); }
.whom-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.wcard {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; background: var(--cream);
  transition: transform .3s, box-shadow .3s;
}
.wcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.wcard .ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--paper); border: 1px solid var(--line); color: var(--navy-700); margin-bottom: 18px; }
.wcard .ico svg { width: 22px; height: 22px; }
.wcard h3 { font-size: 1.3rem; margin-bottom: 12px; line-height: 1.16; }
.wcard p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }
.wcard.feature {
  grid-column: span 1; grid-row: span 2;
  background: linear-gradient(168deg, #1b2f52, #0f1e38);
  color: var(--on-navy); border-color: transparent;
  display: flex; flex-direction: column;
}
.wcard.feature .ico { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); color: var(--gold-bright); }
.wcard.feature h3 { color: #fff; font-size: 1.7rem; }
.wcard.feature p { color: var(--on-navy-soft); font-size: 15px; }
.wcard.feature .pill {
  margin-top: auto; align-self: flex-start;
  font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold-bright); border: 1px solid rgba(217,178,119,.3); border-radius: 999px;
  padding: 6px 12px;
}
.wcard.feature .whom-list { margin-top: 22px; display: grid; gap: 10px; }
.wcard.feature .whom-list li { display: flex; gap: 10px; font-size: 14.5px; color: var(--on-navy-soft); align-items: center; }
.wcard.feature .whom-list svg { width: 16px; height: 16px; color: var(--gold-bright); flex: none; }

/* ---------- FAQ ---------- */
.faq { background: var(--cream); }
.faq-wrap { margin-top: 48px; max-width: 860px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; cursor: pointer;
  background: transparent; border: 0; padding: 26px 8px;
  display: flex; align-items: center; gap: 20px; justify-content: space-between;
  font-family: var(--serif); font-size: clamp(1.12rem, 2vw, 1.4rem); font-weight: 500; color: var(--ink);
  letter-spacing: -.01em;
}
.faq-q .ix {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--line-strong); display: grid; place-items: center;
  transition: transform .3s, background .3s, color .3s, border-color .3s;
  color: var(--ink-soft);
}
.faq-q .ix svg { width: 16px; height: 16px; }
.faq-item.open .faq-q .ix { transform: rotate(45deg); background: var(--navy-800); color: #fff; border-color: var(--navy-800); }
.faq-a { overflow: hidden; height: 0; transition: height .35s cubic-bezier(.2,.7,.3,1); }
.faq-a-inner { padding: 0 50px 26px 8px; color: var(--ink-soft); font-size: 15.5px; line-height: 1.65; }

/* ---------- Closing CTA ---------- */
.closing {
  background:
    radial-gradient(90% 120% at 50% 0%, rgba(176,125,52,.22), transparent 55%),
    linear-gradient(168deg, #18294a, #0c1830);
  color: var(--on-navy); text-align: center;
}
.closing h2 { color: #fff; font-size: clamp(2.2rem, 5vw, 4rem); max-width: 18ch; margin-inline: auto; }
.closing h2 .serif-i { color: var(--gold-bright); }
.closing .lede { color: var(--on-navy-soft); margin: 22px auto 0; max-width: 50ch; font-size: 1.12rem; }
.closing .hero-actions { justify-content: center; margin-top: 38px; }
.closing .contact-line { margin-top: 26px; }
.closing .contact-line .micro { color: var(--on-navy-faint); }
.closing .contact-line a { color: var(--gold-bright); }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: var(--on-navy-soft); padding-block: 64px 36px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.footer .brand-name { color: #fff; }
.footer-blurb { margin-top: 18px; max-width: 34ch; font-size: 14.5px; color: var(--on-navy-soft); line-height: 1.6; }
.footer-badge {
  margin-top: 22px; display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; color: var(--on-navy-soft);
  border: 1px solid var(--line-navy); border-radius: 999px; padding: 8px 14px;
}
.footer-badge svg { width: 15px; height: 15px; color: var(--gold-bright); }
.footer h4 { font-family: var(--sans); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--on-navy-faint); font-weight: 600; margin-bottom: 16px; }
.footer ul { display: grid; gap: 11px; }
.footer ul a { font-size: 14.5px; color: var(--on-navy-soft); transition: color .2s; }
.footer ul a:hover { color: #fff; }
.footer-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line-navy);
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: 13px; color: var(--on-navy-faint);
}
.footer-bottom .micro { color: var(--on-navy-faint); }

/* ---------- Reveal (kept visible by default; entrance handled safely) ---------- */
.reveal { opacity: 1; transform: none; }
.anim-ready .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.anim-ready .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .anim-ready .reveal { opacity: 1; transform: none; transition: none; }
  .hero-figure .browser { transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .fcard.wide { grid-column: span 2; }
  .fcard.tall { grid-row: span 1; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
  .ss-grid { grid-template-columns: 1fr; }
  .whom-grid { grid-template-columns: repeat(2, 1fr); }
  .wcard.feature { grid-column: span 2; grid-row: span 1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .nav-burger { display: inline-grid; }
  .nav .btn.hide-sm { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .fcard.wide { grid-column: span 1; }
  .steps { grid-template-columns: 1fr; }
  .whom-grid { grid-template-columns: 1fr; }
  .wcard.feature { grid-column: span 1; }
  .hero-figure .float-card { position: static; margin: 18px auto 0; max-width: none; }
  .hero-figure .browser { transform: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .strip-inner { grid-template-columns: 1fr 1fr; }
  .hero h1 { max-width: none; }
}
@media (max-width: 460px) {
  .footer-top { grid-template-columns: 1fr; }
  .lang-toggle { order: 3; }
}
