/* ============================================================
   Roavia — marketing site
   Brand: navy #123B5D · gold #D8A24A · sand #E8DDC8 · sage #7FA281
   ============================================================ */

:root {
  --blue: #123B5D;
  --blue-dark: #0E2E47;
  --blue-light: #1A5280;
  --blue-pale: #EAF0F6;
  --gold: #D8A24A;
  --gold-dark: #B8862E;
  --sand: #E8DDC8;
  --sand-light: #F5F1E8;
  --sage: #7FA281;
  --ink: #11212f;
  --muted: #5b6b78;
  --line: #e7e2d6;
  --white: #ffffff;
  --radius: 16px;
  --shadow-sm: 0 1px 3px rgba(18,59,93,.08), 0 1px 2px rgba(18,59,93,.06);
  --shadow-md: 0 12px 30px -12px rgba(18,59,93,.25);
  --shadow-lg: 0 30px 60px -20px rgba(18,59,93,.35);
  --maxw: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.15; margin: 0; letter-spacing: -.01em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 780px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 600; font-size: .95rem; padding: .7rem 1.25rem;
  border-radius: 999px; border: 1.5px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn--lg { padding: .9rem 1.7rem; font-size: 1.02rem; }
.btn--block { display: flex; width: 100%; }
.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--gold { background: var(--gold); color: var(--blue-dark); }
.btn--gold:hover { background: var(--gold-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--outline { background: #fff; color: var(--blue); border-color: var(--line); }
.btn--outline:hover { border-color: var(--blue); transform: translateY(-1px); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn--ghost { background: transparent; color: var(--blue); }
.btn--ghost:hover { color: var(--gold-dark); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 1rem;
}
.eyebrow--center { text-align: center; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85); backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent; transition: box-shadow .2s, border-color .2s;
}
.nav--scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.nav__inner { display: flex; align-items: center; gap: 1.5rem; height: 72px; }
.nav__brand img { height: 34px; }
.nav__links { display: flex; gap: 1.6rem; margin-left: auto; font-weight: 500; font-size: .95rem; }
.nav__links a { color: var(--muted); transition: color .15s; }
.nav__links a:hover { color: var(--blue); }
.nav__cta { display: flex; gap: .6rem; align-items: center; }
.nav__burger {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  cursor: pointer; padding: 8px; margin-left: auto;
}
.nav__burger span { width: 24px; height: 2px; background: var(--blue); border-radius: 2px; transition: .25s; }

/* Language switcher */
.lang { position: relative; }
.lang__btn {
  list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: .4rem;
  color: var(--blue); font-weight: 600; font-size: .9rem; padding: .5rem .7rem;
  border: 1px solid var(--line); border-radius: 999px; white-space: nowrap; user-select: none;
}
.lang__btn::-webkit-details-marker { display: none; }
.lang__btn::after { content: "▾"; font-size: .7rem; color: var(--muted); }
.lang__btn:hover { border-color: var(--blue); }
.lang__globe { flex-shrink: 0; }
.lang__menu {
  position: absolute; right: 0; top: calc(100% + 8px); min-width: 168px; z-index: 60;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-md);
  padding: .4rem; display: flex; flex-direction: column;
}
.lang__menu a { padding: .55rem .7rem; border-radius: 8px; color: var(--blue); font-size: .92rem; font-weight: 500; }
.lang__menu a:hover { background: var(--blue-pale); }
.lang__menu a.is-active { color: var(--gold-dark); font-weight: 600; }
.lang__menu a.is-active::after { content: " ✓"; }

/* ---------- Hero (full-bleed image) ---------- */
.hero {
  position: relative; overflow: hidden; background: var(--blue-dark);
  min-height: clamp(560px, 82vh, 760px); display: flex; align-items: center;
}
.hero__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(14,46,71,.94) 0%, rgba(14,46,71,.80) 34%, rgba(14,46,71,.40) 64%, rgba(14,46,71,.12) 100%),
    linear-gradient(0deg, rgba(14,46,71,.55) 0%, rgba(14,46,71,0) 42%);
}
.hero__inner { position: relative; padding: 4.5rem 24px; width: 100%; }
.hero__copy { max-width: 38rem; }
.hero__copy h1 { font-size: clamp(2.5rem, 5.2vw, 4rem); font-weight: 800; color: #fff; }
.hero__sub { font-size: 1.14rem; color: rgba(255,255,255,.86); max-width: 34rem; margin: 1.3rem 0 2rem; }
.hero__actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.hero__trust {
  list-style: none; display: flex; align-items: center; gap: .9rem; flex-wrap: wrap;
  padding: 0; margin: 2.2rem 0 0; color: rgba(255,255,255,.75); font-size: .92rem;
}
.hero__trust strong { color: #fff; font-weight: 600; }
.hero__trust .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); display: inline-block; }
.eyebrow--light { color: var(--gold); }

/* ---------- Strip ---------- */
.strip { background: var(--blue); color: #fff; }
.strip__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding: 2.2rem 24px; text-align: center; }
.stat b { display: block; font-size: 1.5rem; font-weight: 700; color: #fff; }
.stat span { font-size: .88rem; color: rgba(255,255,255,.7); }

/* ---------- Sections ---------- */
.section { padding: 6rem 0; }
.section--alt { background: var(--sand-light); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 3.2rem; }
.section__head h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; color: var(--blue); }
.section__head p { color: var(--muted); margin-top: 1rem; font-size: 1.05rem; }

/* ---------- Feature grid ---------- */
.grid { display: grid; gap: 1.4rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.7rem; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  font-size: 1.5rem; margin-bottom: 1.1rem;
}
.feature__icon--blue { background: var(--blue-pale); }
.feature__icon--gold { background: #f6e9d0; }
.feature__icon--sage { background: #e6efe6; }
.feature h3 { font-size: 1.2rem; color: var(--blue); margin-bottom: .5rem; }
.feature p { color: var(--muted); font-size: .96rem; margin: 0; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: start; gap: 1rem; }
.step { text-align: center; padding: 0 1rem; }
.step__num {
  display: grid; place-items: center; width: 52px; height: 52px; margin: 0 auto 1.1rem;
  background: var(--blue); color: #fff; border-radius: 50%; font-weight: 700; font-size: 1.25rem;
  box-shadow: 0 0 0 8px rgba(18,59,93,.07);
}
.step h3 { color: var(--blue); font-size: 1.2rem; margin-bottom: .5rem; }
.step p { color: var(--muted); font-size: .96rem; margin: 0; }
.step__line { height: 2px; background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 16px); margin-top: 25px; min-width: 40px; }

/* ---------- Split sections ---------- */
.split__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split--reverse .split__visual { order: -1; }
.split__text h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); color: var(--blue); margin-bottom: 1rem; }
.split__text p { color: var(--muted); font-size: 1.05rem; }
.ticks { list-style: none; padding: 0; margin: 1.5rem 0 2rem; display: grid; gap: .7rem; }
.ticks li { position: relative; padding-left: 2rem; color: var(--ink); font-weight: 500; }
.ticks li::before {
  content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px;
  background: var(--sage); color: #fff; border-radius: 50%; display: grid; place-items: center;
  font-size: .72rem; font-weight: 700;
}

/* routing panel */
.panel {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 1.4rem;
  box-shadow: var(--shadow-md); max-width: 420px; margin: 0 auto; width: 100%;
}
.panel__leg { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: .9rem; padding: .65rem 0; }
.panel__leg + .panel__leg { border-top: 1px solid var(--line); }
.panel__leg b { color: var(--blue); font-size: .98rem; }
.panel__leg small { color: var(--muted); font-size: .82rem; display: block; }
.panel__meta { color: var(--muted); font-size: .82rem; font-weight: 600; }
.panel__dot { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; }
.panel__dot--start { background: var(--blue); }
.panel__dot--mid { background: var(--sage); }
.panel__dot--end { background: var(--gold); }
.panel__dot--start, .panel__dot--mid, .panel__dot--end {
  box-shadow: inset 0 0 0 4px rgba(255,255,255,.85), 0 0 0 1px var(--line);
}
.panel__dot--ferry { background: var(--blue-pale); font-size: .95rem; }
.panel__leg--ferry { background: var(--blue-pale); margin: .3rem -.6rem; padding: .65rem .6rem; border-radius: 10px; border-top: 0 !important; }
.panel__foot { display: flex; justify-content: space-between; align-items: center; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); font-size: .85rem; color: var(--muted); }
.tag { background: #e6efe6; color: var(--sage); font-weight: 600; padding: .25rem .6rem; border-radius: 99px; font-size: .76rem; }

/* budget panel */
.panel--budget .panel__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1rem; }
.panel--budget .panel__head b { color: var(--blue); font-size: 1.05rem; }
.panel--budget .panel__head span { color: var(--muted); font-size: .85rem; }
.budget--lg .budget__row { font-size: .95rem; margin-bottom: .2rem; }
.budget--lg .budget__bar { height: 10px; }
.budget--lg small { color: var(--sage); font-weight: 600; }
.cats { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: .65rem; }
.cats li { display: flex; align-items: center; gap: .6rem; font-size: .92rem; color: var(--ink); }
.cats li b { margin-left: auto; color: var(--blue); }
.cats__dot { width: 11px; height: 11px; border-radius: 50%; }

/* ---------- Pricing ---------- */
.cur-toggle {
  display: inline-flex; margin: 0 auto 2.5rem; gap: 4px; padding: 4px;
  background: var(--blue-pale); border-radius: 999px; position: relative; left: 50%; transform: translateX(-50%);
}
.cur-toggle__btn {
  border: 0; background: transparent; cursor: pointer; font-family: inherit; font-weight: 600;
  font-size: .9rem; color: var(--muted); padding: .5rem 1.1rem; border-radius: 999px; transition: all .18s;
}
.cur-toggle__btn.is-active { background: #fff; color: var(--blue); box-shadow: var(--shadow-sm); }

.pricing { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.6rem; max-width: 840px; margin: 0 auto; align-items: stretch; }
.plan {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.2rem 2rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.plan--featured { border: 2px solid var(--gold); box-shadow: var(--shadow-md); }
.plan__badge {
  position: absolute; top: 0; right: 2rem; transform: translateY(-50%);
  background: var(--gold); color: var(--blue-dark); font-size: .72rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; padding: .35rem .8rem; border-radius: 999px;
}
.plan__name { font-size: 1.25rem; color: var(--blue); margin-bottom: .6rem; }
.plan__price { display: flex; align-items: baseline; gap: .4rem; margin-bottom: .4rem; }
.plan__amount { font-size: 2.5rem; font-weight: 800; color: var(--blue); line-height: 1; }
.plan__per { color: var(--muted); font-weight: 600; font-size: 1rem; }
.plan__tag { color: var(--muted); font-size: .9rem; margin: 0 0 1.4rem; min-height: 2.6em; }
.plan__feats { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: .7rem; }
.plan__feats li { position: relative; padding-left: 1.9rem; color: var(--ink); font-size: .96rem; }
.plan__feats li::before {
  content: "✓"; position: absolute; left: 0; top: 1px; width: 20px; height: 20px;
  background: var(--sage); color: #fff; border-radius: 50%; display: grid; place-items: center;
  font-size: .68rem; font-weight: 700;
}
.plan--featured .plan__feats li::before { background: var(--gold); }
.plan--featured .plan__feats li:first-child { color: var(--muted); font-weight: 600; }
.plan--featured .plan__feats li:first-child::before { background: transparent; color: var(--gold-dark); content: "★"; }
.pricing__note { text-align: center; color: var(--muted); font-size: .9rem; margin: 2rem auto 0; max-width: 38rem; }

/* ---------- Quote ---------- */
.quote-wrap { background: var(--blue); }
.quote { max-width: 820px; margin: 0 auto; text-align: center; position: relative; color: #fff; }
.quote__mark { font-size: 5rem; line-height: .6; color: var(--gold); font-family: Georgia, serif; height: 2.2rem; }
.quote blockquote { font-size: clamp(1.25rem, 2.6vw, 1.7rem); font-weight: 500; margin: 0 0 2rem; color: #fff; }
.quote figcaption { display: inline-flex; align-items: center; gap: .8rem; text-align: left; }
.avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--gold); color: var(--blue-dark); font-weight: 700; display: grid; place-items: center; font-size: .9rem; }
.quote figcaption b { display: block; color: #fff; }
.quote figcaption small { color: rgba(255,255,255,.65); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .8rem; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 0 1.3rem;
  box-shadow: var(--shadow-sm);
}
.faq summary {
  list-style: none; cursor: pointer; font-weight: 600; color: var(--blue);
  padding: 1.1rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--gold-dark); transition: transform .2s; line-height: 1; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--muted); margin: 0 0 1.2rem; font-size: .98rem; }

/* ---------- CTA ---------- */
.cta { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); color: #fff; text-align: center; }
.cta__inner { padding: 6rem 24px; position: relative; }
.cta .sun {
  position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(216,162,74,.35), transparent 65%); pointer-events: none;
}
.cta h2 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; margin-bottom: 1rem; }
.cta p { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 36rem; margin: 0 auto 2rem; }
.cta__actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.2rem; }
.cta small { color: rgba(255,255,255,.6); }

/* ---------- Footer ---------- */
.footer { background: var(--blue-dark); color: rgba(255,255,255,.75); padding-top: 4rem; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: 3rem; padding-bottom: 3rem; }
.footer__brand img { height: 56px; background: #fff; padding: 10px 14px; border-radius: 12px; margin-bottom: 1.1rem; }
.footer__brand p { font-size: .94rem; max-width: 22rem; margin: 0; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.footer__cols h4 { color: #fff; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
.footer__cols a { display: block; color: rgba(255,255,255,.65); font-size: .92rem; padding: .3rem 0; transition: color .15s; }
.footer__cols a:hover { color: var(--gold); }
.footer__bar {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem;
  padding: 1.5rem 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: .85rem; color: rgba(255,255,255,.5);
}
.footer__tag { color: var(--gold); font-style: italic; }

/* ---------- Footer subscribe form ---------- */
.footer__subscribe {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 2rem 3rem; align-items: start;
  padding: 2.2rem 24px; border-top: 1px solid rgba(255,255,255,.1);
}
.footer__sub-copy h4 { color: #fff; font-size: 1.1rem; margin: 0 0 .4rem; }
.footer__sub-copy p { font-size: .92rem; margin: 0; max-width: 26rem; }
.subscribe { width: 100%; }
.subscribe__row { display: flex; gap: .6rem; flex-wrap: wrap; }
.subscribe input[type="email"] {
  flex: 1 1 220px; min-width: 0; font: inherit; font-size: .95rem; color: var(--ink);
  padding: .7rem .9rem; border: 1px solid rgba(255,255,255,.25); border-radius: 999px;
  background: #fff;
}
.subscribe input[type="email"]:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.subscribe__hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.subscribe button {
  flex: 0 0 auto; font: inherit; font-weight: 700; font-size: .95rem; cursor: pointer;
  padding: .7rem 1.4rem; border: 0; border-radius: 999px; background: var(--gold); color: var(--blue-dark);
  transition: background .2s, transform .15s;
}
.subscribe button:hover { background: #fff; transform: translateY(-1px); }
.subscribe button:disabled { opacity: .6; cursor: default; transform: none; }
.subscribe__msg { font-size: .88rem; margin: .7rem 0 0; min-height: 1.2em; }
.subscribe__msg.is-ok { color: #7fd6a8; }
.subscribe__msg.is-err { color: #f2a5a0; }
.subscribe__consent { font-size: .78rem; color: rgba(255,255,255,.5); margin: .5rem 0 0; }
.subscribe__consent a { color: rgba(255,255,255,.75); text-decoration: underline; }
.subscribe__consent a:hover { color: var(--gold); }

/* ---------- Legal / privacy page ---------- */
.legal { padding: 1rem 0 2rem; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--blue); font-weight: 800; margin-bottom: .6rem; }
.legal__meta { color: var(--muted); font-size: .9rem; margin: 0 0 1.8rem; }
.legal__note {
  background: var(--sand-light); border: 1px solid var(--line); border-radius: 10px;
  padding: .8rem 1rem; font-size: .9rem; color: var(--muted); margin-bottom: 2rem;
}
.legal h2 { font-size: 1.25rem; color: var(--blue); margin: 2.2rem 0 .6rem; }
.legal p, .legal li { color: var(--ink); font-size: 1rem; line-height: 1.7; }
.legal ul { padding-left: 1.2rem; margin: .6rem 0 1rem; display: grid; gap: .4rem; }
.legal a { color: var(--gold-dark); text-decoration: underline; }

/* ---------- Launch modal ---------- */
.modal[hidden] { display: none; }
.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 1.2rem; }
.modal__overlay { position: absolute; inset: 0; background: rgba(14,46,71,.55); backdrop-filter: blur(2px); }
.modal__box {
  position: relative; z-index: 1; background: #fff; border-radius: 18px; max-width: 30rem; width: 100%;
  padding: 2.4rem 2rem 2rem; box-shadow: var(--shadow-lg); text-align: center; animation: modalIn .25s ease-out;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(10px) scale(.98); } to { opacity: 1; transform: none; } }
.modal__close {
  position: absolute; top: .5rem; right: .7rem; background: none; border: 0; cursor: pointer;
  font-size: 1.8rem; line-height: 1; color: var(--muted); padding: .2rem .5rem;
}
.modal__close:hover { color: var(--blue); }
.modal__badge {
  display: inline-block; background: var(--gold); color: var(--blue-dark); font-weight: 700; font-size: .72rem;
  letter-spacing: .06em; text-transform: uppercase; padding: .25rem .7rem; border-radius: 999px; margin-bottom: 1rem;
}
.modal__title { font-size: clamp(1.35rem, 3.5vw, 1.6rem); color: var(--blue); margin: 0 0 .7rem; }
.modal__text { color: var(--muted); font-size: 1rem; line-height: 1.55; margin: 0 0 1.5rem; }
/* subscribe form on the light modal background */
.subscribe--modal input[type="email"] { border-color: var(--line); }
.subscribe--modal .subscribe__consent { color: var(--muted); }
.subscribe--modal .subscribe__consent a { color: var(--gold-dark); }
.subscribe--modal .subscribe__msg.is-ok { color: var(--sage); }
.subscribe--modal .subscribe__msg.is-err { color: #c0392b; }
@media (prefers-reduced-motion: reduce) { .modal__box { animation: none; } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .pin, .card-float { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; margin-left: 0; }
  .lang { margin-left: auto; }
  .lang__btn span { display: none; }
  .lang__btn::after { content: none; }
  body.nav-open .nav__links {
    display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; padding: 1rem 24px 1.5rem; gap: .4rem; box-shadow: var(--shadow-md); border-bottom: 1px solid var(--line);
  }
  body.nav-open .nav__links a { padding: .6rem 0; font-size: 1rem; }

  .hero { min-height: 0; }
  .hero__inner { padding: 4rem 24px; }
  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(14,46,71,.78) 0%, rgba(14,46,71,.62) 45%, rgba(14,46,71,.55) 100%);
  }

  .grid--3 { grid-template-columns: 1fr 1fr; }
  .pricing { grid-template-columns: 1fr; max-width: 420px; }
  .steps { grid-template-columns: 1fr; gap: 2rem; }
  .step__line { display: none; }
  .split__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .split--reverse .split__visual { order: 0; }
  .strip__inner { grid-template-columns: 1fr 1fr; gap: 1.8rem; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__subscribe { grid-template-columns: 1fr; gap: 1.2rem; }
}

@media (max-width: 560px) {
  .section { padding: 4rem 0; }
  .grid--3 { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .hero__trust .dot { display: none; }
}

/* ============================================================
   Roadmap page (/roadmap/)
   ============================================================ */
.nav__links a.is-active { color: var(--blue); font-weight: 600; }

.road-hero {
  text-align: center;
  padding: 4.5rem 0 1rem;
  background: linear-gradient(180deg, var(--sand-light) 0%, #fff 100%);
}
.road-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--blue);
  line-height: 1.1;
}
.road-hero__sub {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 1.1rem auto 0;
  max-width: 42rem;
}

.road-board { padding-top: 3rem; }
.road-cols { display: grid; gap: 1.4rem; align-items: start; }
.road-cols--2 { grid-template-columns: repeat(2, 1fr); max-width: 900px; margin: 0 auto; }
.road-col {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.6rem 1.5rem;
}
.road-col__head { margin-bottom: 1.2rem; }
.road-col__head h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue);
  margin-top: .7rem;
}

.road-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: 999px;
}
.road-pill::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 999px;
  background: currentColor;
}
.road-pill--now  { color: var(--gold-dark); background: #F7EDD8; }
.road-pill--next { color: var(--blue-light); background: var(--blue-pale); }
.road-pill--done { color: #4a7d54; background: #E7F0E8; }

.road-list { list-style: none; display: grid; gap: .9rem; }
.road-item {
  border-left: 3px solid var(--line);
  padding: .15rem 0 .15rem 1rem;
}
.road-item h3 {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .25rem;
}
.road-item p { color: var(--muted); font-size: .93rem; margin: 0; line-height: 1.5; }
.road-item--done { border-left-color: var(--sage); }
.road-item--done h3::before {
  content: "✓";
  color: #4a7d54;
  font-weight: 700;
  margin-right: .4rem;
}

.road-note {
  max-width: 44rem;
  margin: 3rem auto 0;
  text-align: center;
  color: var(--muted);
  font-size: .9rem;
  font-style: italic;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .road-cols { grid-template-columns: 1fr; }
  .road-hero { padding-top: 3rem; }
}
