/* ==========================================================================
   Form Services USA — Design System
   ========================================================================== */

:root {
  /* Brand palette */
  --navy-900: #0b1f3a;
  --navy-800: #12294c;
  --navy-700: #1a3a66;
  --blue-600: #1e5fd8;
  --blue-500: #2f74f0;
  --blue-400: #5b93ff;
  --blue-50:  #eef4ff;
  --sky-50:   #f4f8ff;

  --green-500: #16a34a;
  --green-50:  #ecfdf3;
  --amber-500: #f59e0b;
  --red-500:   #ef4444;

  --ink-900: #0d1424;
  --ink-700: #334155;
  --ink-500: #64748b;
  --ink-400: #94a3b8;
  --line:    #e2e8f0;
  --line-2:  #eef2f7;
  --paper:   #ffffff;
  --bg:      #f7f9fc;

  /* Type */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Radius & shadow */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 26px;
  --shadow-sm: 0 1px 2px rgba(13, 20, 36, .06), 0 1px 3px rgba(13, 20, 36, .05);
  --shadow-md: 0 6px 20px rgba(13, 20, 36, .08);
  --shadow-lg: 0 18px 50px rgba(13, 20, 36, .14);
  --shadow-blue: 0 12px 30px rgba(30, 95, 216, .28);

  --container: 1180px;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* Reset ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--ink-900);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

/* Layout helpers --------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.section { padding: 88px 0; }
.section--tight { padding: 60px 0; }
.center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-50);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: var(--navy-900);
}
.section-sub {
  font-size: 1.08rem;
  color: var(--ink-500);
  max-width: 620px;
  margin: 16px auto 0;
}

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: .96rem;
  padding: 12px 22px;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  transition: transform .15s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: linear-gradient(180deg, var(--blue-500), var(--blue-600));
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn--primary:hover { box-shadow: 0 16px 38px rgba(30, 95, 216, .38); transform: translateY(-1px); }
.btn--ghost {
  background: #fff;
  color: var(--navy-800);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn--ghost:hover { border-color: var(--blue-400); color: var(--blue-600); }
.btn--light {
  background: rgba(255,255,255,.14);
  color: #fff;
  border-color: rgba(255,255,255,.28);
  backdrop-filter: blur(6px);
}
.btn--light:hover { background: rgba(255,255,255,.24); }
.btn--lg { padding: 15px 30px; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* Navbar ----------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 1.16rem;
  color: var(--navy-900);
  letter-spacing: -.02em;
}
.brand__mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--blue-500), var(--navy-800));
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.brand__mark svg { width: 20px; height: 20px; }
.brand span b { color: var(--blue-600); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}
.nav__links a {
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink-700);
  transition: color .15s var(--ease);
}
.nav__links a:hover { color: var(--blue-600); }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__toggle {
  display: none;
  background: none; border: none;
  width: 42px; height: 42px;
  border-radius: 10px;
}
.nav__toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--navy-900); margin: 4px auto;
  border-radius: 2px; transition: .25s var(--ease);
}

/* Hero ------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(47,116,240,.16), transparent 60%),
    linear-gradient(180deg, #fbfcff, var(--bg));
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  padding: 84px 0 96px;
}
.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  font-weight: 850;
  line-height: 1.06;
  letter-spacing: -.03em;
  color: var(--navy-900);
}
.hero h1 .grad {
  background: linear-gradient(120deg, var(--blue-500), var(--blue-400));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead {
  font-size: 1.18rem;
  color: var(--ink-500);
  margin-top: 22px;
  max-width: 520px;
}
.hero__cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero__trust {
  display: flex; align-items: center; gap: 22px;
  margin-top: 34px; flex-wrap: wrap;
  color: var(--ink-500); font-size: .9rem;
}
.hero__trust .stars { color: var(--amber-500); letter-spacing: 2px; }
.hero__media { position: relative; }
.hero__media img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.hero__badge {
  position: absolute;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  font-weight: 600; font-size: .9rem;
}
.hero__badge--tl { top: 22px; left: -22px; }
.hero__badge--br { bottom: 26px; right: -18px; }
.hero__badge .ic {
  width: 36px; height: 36px; border-radius: 9px;
  display: grid; place-items: center; color: #fff;
}
.hero__badge small { display: block; color: var(--ink-400); font-weight: 500; font-size: .78rem; }

/* Logo strip ------------------------------------------------------------- */
.logos {
  padding: 34px 0;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  background: #fff;
}
.logos__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap;
  opacity: .62;
}
.logos__row span {
  font-weight: 800; font-size: 1.1rem; letter-spacing: -.02em;
  color: var(--ink-500);
}

/* Feature cards ---------------------------------------------------------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-400); }
.card__ic {
  width: 52px; height: 52px;
  border-radius: 13px;
  display: grid; place-items: center;
  background: var(--blue-50); color: var(--blue-600);
  margin-bottom: 18px;
}
.card__ic svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy-900); }
.card p { color: var(--ink-500); margin-top: 8px; font-size: .97rem; }

/* Steps ------------------------------------------------------------------ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { position: relative; padding: 28px 22px; }
.step__num {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800; color: #fff;
  background: linear-gradient(145deg, var(--blue-500), var(--navy-800));
  box-shadow: var(--shadow-blue);
  margin-bottom: 16px;
}
.step h3 { font-size: 1.08rem; color: var(--navy-900); }
.step p { color: var(--ink-500); font-size: .93rem; margin-top: 6px; }

/* Split feature ---------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img { border-radius: var(--r-lg); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; }
.split .checklist { margin-top: 22px; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-700); }
.checklist .tick {
  flex: none; width: 24px; height: 24px; border-radius: 50%;
  background: var(--green-50); color: var(--green-500);
  display: grid; place-items: center; margin-top: 1px;
}
.checklist li b { color: var(--navy-900); }

/* Template gallery ------------------------------------------------------- */
.filters {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center; margin: 34px 0 40px;
}
.filter {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-700);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: .9rem; font-weight: 600;
  transition: .15s var(--ease);
}
.filter:hover { border-color: var(--blue-400); color: var(--blue-600); }
.filter.is-active {
  background: var(--navy-900); color: #fff; border-color: var(--navy-900);
}
.tpl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tpl {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  display: flex; flex-direction: column;
}
.tpl:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.tpl__thumb { position: relative; aspect-ratio: 3/2; overflow: hidden; background: var(--blue-50); }
.tpl__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.tpl:hover .tpl__thumb img { transform: scale(1.06); }
.tpl__tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(11,31,58,.9); color: #fff;
  font-size: .74rem; font-weight: 700; letter-spacing: .04em;
  padding: 5px 11px; border-radius: 999px; text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.tpl__pro {
  position: absolute; top: 12px; right: 12px;
  background: linear-gradient(145deg, var(--amber-500), #d97706);
  color: #fff; font-size: .72rem; font-weight: 800;
  padding: 5px 10px; border-radius: 999px; letter-spacing: .05em;
}
.tpl__body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.tpl__body h3 { font-size: 1.06rem; color: var(--navy-900); }
.tpl__body p { color: var(--ink-500); font-size: .88rem; margin-top: 5px; flex: 1; }
.tpl__meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line-2);
  font-size: .84rem; color: var(--ink-400);
}
.tpl__meta .fmt { display: flex; gap: 6px; }
.tpl__meta .fmt span {
  background: var(--sky-50); color: var(--blue-600);
  font-weight: 700; padding: 3px 8px; border-radius: 6px; font-size: .72rem;
}
.tpl__dl { color: var(--blue-600); font-weight: 700; display: inline-flex; align-items: center; gap: 5px; }

/* Pricing ---------------------------------------------------------------- */
.toggle-wrap { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 30px 0 46px; }
.toggle-wrap span { font-weight: 600; color: var(--ink-500); }
.toggle-wrap span.is-active { color: var(--navy-900); }
.switch { position: relative; width: 56px; height: 30px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
  position: absolute; inset: 0; cursor: pointer;
  background: var(--blue-600); border-radius: 999px; transition: .25s;
}
.slider::before {
  content: ""; position: absolute; height: 22px; width: 22px;
  left: 4px; top: 4px; background: #fff; border-radius: 50%; transition: .25s;
  box-shadow: 0 1px 3px rgba(0,0,0,.25);
}
.switch input:checked + .slider::before { transform: translateX(26px); }
.badge-save {
  background: var(--green-50); color: var(--green-500);
  font-size: .78rem; font-weight: 800; padding: 4px 10px; border-radius: 999px;
}
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.plan {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 34px 30px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.plan--pop {
  border-color: var(--blue-500);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}
.plan__flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(180deg, var(--blue-500), var(--blue-600));
  color: #fff; font-size: .76rem; font-weight: 800; letter-spacing: .06em;
  padding: 6px 16px; border-radius: 999px; text-transform: uppercase;
  box-shadow: var(--shadow-blue);
}
.plan h3 { font-size: 1.3rem; color: var(--navy-900); }
.plan__desc { color: var(--ink-500); font-size: .92rem; margin-top: 4px; min-height: 42px; }
.plan__price { margin: 20px 0 6px; display: flex; align-items: baseline; gap: 4px; }
.plan__price .amt { font-size: 3rem; font-weight: 850; color: var(--navy-900); letter-spacing: -.03em; }
.plan__price .per { color: var(--ink-400); font-weight: 600; }
.plan__note { font-size: .84rem; color: var(--ink-400); margin-bottom: 24px; }
.plan ul { display: grid; gap: 13px; margin-bottom: 28px; }
.plan li { display: flex; gap: 11px; color: var(--ink-700); font-size: .94rem; }
.plan li .tick { flex: none; width: 20px; height: 20px; border-radius: 50%; background: var(--green-50); color: var(--green-500); display: grid; place-items: center; }
.plan li.off { color: var(--ink-400); }
.plan li.off .tick { background: #f1f5f9; color: var(--ink-400); }
.plan .btn { margin-top: auto; }

/* CTA banner ------------------------------------------------------------- */
.cta-band {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl);
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
  color: #fff; padding: 64px 56px;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 90% 10%, rgba(47,116,240,.4), transparent 60%);
}
.cta-band__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.4fr 1fr; gap: 30px; align-items: center; }
.cta-band h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -.02em; }
.cta-band p { color: rgba(255,255,255,.78); margin-top: 12px; font-size: 1.05rem; }
.cta-band__actions { display: flex; gap: 14px; justify-content: flex-end; flex-wrap: wrap; }

/* Testimonials ----------------------------------------------------------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-sm);
}
.quote .stars { color: var(--amber-500); letter-spacing: 2px; margin-bottom: 12px; }
.quote p { color: var(--ink-700); font-size: .98rem; }
.quote__who { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.quote__av {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(145deg, var(--blue-400), var(--navy-800));
  color: #fff; display: grid; place-items: center; font-weight: 700;
}
.quote__who b { display: block; color: var(--navy-900); font-size: .95rem; }
.quote__who small { color: var(--ink-400); }

/* Stats ------------------------------------------------------------------ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 20px; }
.stat b { display: block; font-size: 2.6rem; font-weight: 850; color: var(--blue-600); letter-spacing: -.03em; }
.stat span { color: var(--ink-500); font-weight: 500; }

/* FAQ -------------------------------------------------------------------- */
.faq { max-width: 780px; margin-inline: auto; display: grid; gap: 14px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.faq__q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 22px; font-size: 1.02rem; font-weight: 600; color: var(--navy-900);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq__q .chev { transition: transform .25s var(--ease); color: var(--ink-400); flex: none; }
.faq__item.open .chev { transform: rotate(180deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq__a p { padding: 0 22px 20px; color: var(--ink-500); }

/* Footer ----------------------------------------------------------------- */
.footer { background: var(--navy-900); color: rgba(255,255,255,.72); padding: 66px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand { color: #fff; }
.footer p.desc { margin-top: 16px; max-width: 300px; font-size: .93rem; color: rgba(255,255,255,.6); }
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.footer li { margin-bottom: 10px; }
.footer li a { font-size: .93rem; transition: color .15s var(--ease); }
.footer li a:hover { color: #fff; }
.footer__bottom {
  margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .88rem; color: rgba(255,255,255,.5);
}
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.08); display: grid; place-items: center;
  transition: .18s var(--ease);
}
.footer__social a:hover { background: var(--blue-600); }

/* Auth pages ------------------------------------------------------------- */
.auth {
  min-height: calc(100vh - 70px);
  display: grid; grid-template-columns: 1fr 1fr;
}
.auth__side {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--navy-900), var(--navy-700));
  color: #fff; padding: 60px; display: flex; flex-direction: column; justify-content: center;
}
.auth__side::after { content: ""; position: absolute; inset: 0; background: radial-gradient(500px 300px at 20% 10%, rgba(47,116,240,.35), transparent 60%); }
.auth__side-in { position: relative; z-index: 1; max-width: 420px; }
.auth__side h2 { font-size: 2rem; font-weight: 800; letter-spacing: -.02em; line-height: 1.15; }
.auth__side p { color: rgba(255,255,255,.75); margin-top: 16px; }
.auth__side .checklist { margin-top: 30px; gap: 16px; }
.auth__side .checklist li { color: rgba(255,255,255,.9); }
.auth__side .checklist .tick { background: rgba(255,255,255,.15); color: #fff; }
.auth__form-wrap { display: grid; place-items: center; padding: 48px 24px; }
.auth__card { width: 100%; max-width: 420px; }
.auth__card h1 { font-size: 1.8rem; font-weight: 800; color: var(--navy-900); letter-spacing: -.02em; }
.auth__card .sub { color: var(--ink-500); margin-top: 8px; margin-bottom: 30px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .9rem; color: var(--navy-800); margin-bottom: 7px; }
.field input {
  width: 100%; padding: 13px 15px;
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: #fff; transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field input:focus { outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(47,116,240,.15); }
.field input.invalid { border-color: var(--red-500); }
.field .err { color: var(--red-500); font-size: .82rem; margin-top: 6px; display: none; }
.field .err.show { display: block; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.auth__meta { display: flex; align-items: center; justify-content: space-between; font-size: .88rem; margin: 4px 0 22px; }
.auth__meta label { display: flex; align-items: center; gap: 7px; color: var(--ink-700); cursor: pointer; }
.auth__meta a { color: var(--blue-600); font-weight: 600; }
.divider { display: flex; align-items: center; gap: 14px; margin: 24px 0; color: var(--ink-400); font-size: .85rem; }
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.social-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.social-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid var(--line); background: #fff; border-radius: var(--r-md);
  padding: 11px; font-weight: 600; font-size: .9rem; color: var(--navy-800);
  transition: .15s var(--ease);
}
.social-btn:hover { border-color: var(--blue-400); background: var(--sky-50); }
.auth__foot { text-align: center; margin-top: 26px; color: var(--ink-500); font-size: .93rem; }
.auth__foot a { color: var(--blue-600); font-weight: 700; }
.toast {
  position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--navy-900); color: #fff; padding: 14px 22px; border-radius: var(--r-md);
  box-shadow: var(--shadow-lg); font-weight: 600; font-size: .93rem;
  opacity: 0; pointer-events: none; transition: .3s var(--ease); z-index: 100;
  display: flex; align-items: center; gap: 10px;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast .ic { color: var(--green-500); }

/* Page header (sub pages) ------------------------------------------------ */
.page-head {
  background: linear-gradient(180deg, #fbfcff, var(--bg));
  padding: 64px 0 40px; text-align: center;
  border-bottom: 1px solid var(--line-2);
}
.page-head h1 { font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 850; letter-spacing: -.03em; color: var(--navy-900); }
.page-head p { color: var(--ink-500); font-size: 1.1rem; margin-top: 14px; max-width: 600px; margin-inline: auto; }
.breadcrumb { font-size: .86rem; color: var(--ink-400); margin-bottom: 18px; }
.breadcrumb a { color: var(--blue-600); }

/* Reveal animation ------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* Responsive ------------------------------------------------------------- */
@media (max-width: 960px) {
  .hero__grid, .split, .cta-band__inner, .auth { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .grid-3, .steps, .plans, .quotes, .tpl-grid, .stats, .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .plan--pop { transform: none; }
  .cta-band__actions { justify-content: flex-start; }
  .auth__side { display: none; }
  .section { padding: 64px 0; }
}
@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .nav.open .nav__links {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 70px; left: 0; right: 0;
    background: #fff; padding: 18px 24px; gap: 6px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
  }
  .nav.open .nav__links a { padding: 12px 8px; border-radius: 8px; }
  .nav.open .nav__links a:hover { background: var(--sky-50); }
  .grid-3, .steps, .plans, .quotes, .tpl-grid, .stats, .footer__grid { grid-template-columns: 1fr; }
  .cta-band { padding: 44px 28px; }
  .field--row { grid-template-columns: 1fr; }
  .hero__badge--tl { left: 8px; }
  .hero__badge--br { right: 8px; }
}
