@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800;900&family=Open+Sans:wght@400;500;600;700&display=swap');

/* ── Reset ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', Arial, sans-serif; background: #f4f4f0; color: #22334B; font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
[hidden] { display: none !important; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Tokens ───────────────────────────────────────────────────────────────── */
:root {
  --navy:        #22334B;
  --green:       #94C13F;
  --white:       #ffffff;
  --light:       #f4f4f0;
  --light-green: #f2f8e8;
  --muted:       rgba(255,255,255,0.55);
  --border-dark: rgba(255,255,255,0.1);
  --border-light:#e8e8e0;
  --text-muted:  #888;
  --max:         960px;
}

/* ── Typography — Outfit for headings, Open Sans for body ────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  color: #22334B;
}
h1 {
  font-size: clamp(38px, 6vw, 62px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
h3 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  letter-spacing: -0.01em;
}
p { font-size: 16px; line-height: 1.7; }

/* ── Layout ───────────────────────────────────────────────────────────────── */
.container  { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.container--wide { max-width: 1120px; }
.section    { padding: 72px 0; }

/* ── Nav ──────────────────────────────────────────────────────────────────── */
.nav {
  background: var(--navy);
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav__logo img {
  height: 48px;
  width: auto;
}
.nav__product {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 1000;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,0.15);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}
.nav__links a:hover { color: var(--white); }
.nav__cta {
  background: var(--green) !important;
  color: var(--white) !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 4px;
}
.nav__cta:hover { opacity: 0.9; }
.nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-size: 22px;
  line-height: 1;
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 88px 32px 80px;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 24px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--green);
  flex-shrink: 0;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  max-width: 680px;
}
.hero h1 em {
  font-style: normal;
  color: var(--green);
}
.hero__sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 40px;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero__ghost {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
}
.hero__stats {
  margin-top: 64px;
  padding-top: 44px;
  border-top: 1px solid var(--border-dark);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hero__stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.hero__stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

/* ── Section labels ───────────────────────────────────────────────────────── */
.eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}
.rule {
  width: 32px;
  height: 3px;
  background: var(--green);
  margin-bottom: 24px;
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 40px;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s;
}
.btn:hover { opacity: 0.88; }
.btn--green { background: var(--green); color: var(--white); }
.btn--navy  { background: var(--navy);  color: var(--white); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}

/* ── Problem section ──────────────────────────────────────────────────────── */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
.problem-card {
  background: var(--light);
  border-left: 3px solid var(--border-light);
  padding: 20px 22px;
  border-radius: 0 4px 4px 0;
}
.problem-card.highlight {
  border-left-color: var(--green);
  background: var(--light-green);
}
.problem-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.problem-card__body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Steps ────────────────────────────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; }
.step {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
}
.step:last-child { border-bottom: none; }
.step__num {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--green);
  width: 28px;
  flex-shrink: 0;
  padding-top: 2px;
  letter-spacing: 0.04em;
}
.step__title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.step__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.step__day {
  display: inline-block;
  margin-top: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--light-green);
  padding: 3px 10px;
  border-radius: 3px;
}

/* ── Features grid ────────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.feature-card {
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 24px;
}
.feature-card__icon {
  width: 36px;
  height: 36px;
  background: var(--green);
  border-radius: 6px;
  margin-bottom: 16px;
}
.feature-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.feature-card__body {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ── Pillars ──────────────────────────────────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pillar {
  border-top: 2px solid rgba(255,255,255,0.3);
  padding-top: 20px;
}
.pillar__title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.pillar__body {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
}

/* ── Pricing ──────────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
  margin-bottom: 20px;
}
.price-card {
  border: 1.5px solid var(--border-light);
  border-radius: 8px;
  padding: 28px;
  background: var(--white);
}
.price-card--featured { border-color: var(--green); }
.price-card__tag {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}
.price-card__name {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.price-card__amount {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--navy);
  margin: 12px 0 4px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-card__period {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.price-card__items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-card__item {
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.price-card__item::before {
  content: '—';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-note {
  font-size: 14px;
  color: var(--text-muted);
  background: var(--light);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 16px 20px;
  line-height: 1.7;
}

/* ── Testimonials ─────────────────────────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 24px;
}
.testi-card__quote {
  font-size: 14px;
  color: #444;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 18px;
}
.testi-card__name {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.testi-card__company {
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
  margin-top: 3px;
}

/* ── CTA strip ────────────────────────────────────────────────────────────── */
.cta-strip {
  background: var(--navy);
  padding: 88px 32px;
  text-align: center;
}
.cta-strip h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.cta-strip p {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
.cta-strip__credit {
  margin-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.2);
}
.cta-strip__credit a {
  color: rgba(255,255,255,0.35);
}
.cta-strip__credit a:hover {
  color: rgba(255,255,255,0.6);
}

/* ── Contact form ─────────────────────────────────────────────────────────── */
.form {
  max-width: 580px;
  margin-top: 36px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form__label {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.form__input,
.form__textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 15px;
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: 4px;
  padding: 12px 16px;
  transition: border-color 0.15s;
  width: 100%;
}
.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--green);
}
.form__textarea { resize: vertical; min-height: 130px; }
.form__message {
  font-size: 14px;
  margin-top: 12px;
  min-height: 20px;
}
.form__hint {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}
.form__hint strong {
  color: var(--navy);
  font-weight: 700;
}

/* ── Test drive journey ──────────────────────────────────────────────────── */
.testdrive-page .nav {
  height: 64px;
}
.testdrive-page .nav__logo img {
  height: 42px;
}
.testdrive-shell {
  background: var(--light);
  min-height: calc(100vh - 64px);
  padding: 18px 0 48px;
}
.testdrive {
  display: flex;
  flex-direction: column;
  gap: 14px;
  scroll-margin-top: 96px;
}
.testdrive__progress {
  background: var(--navy);
  border-radius: 8px;
  padding: 6px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.journey-step {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 6px;
  color: rgba(255,255,255,0.55);
  min-width: 0;
}
.journey-step.is-active {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}
.journey-step.is-complete {
  color: rgba(255,255,255,0.82);
}
.journey-step__num {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  background: var(--green);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.journey-step strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  line-height: 1.3;
}
.journey-step small {
  display: none;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,255,255,0.42);
}
.testdrive__panel {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 24px 40px;
  box-shadow: 0 12px 30px rgba(34,51,75,0.06);
}
.testdrive__panel .section-title {
  font-size: clamp(24px, 3.2vw, 34px);
  margin-bottom: 10px;
}
.testdrive__panel .section-sub {
  margin-bottom: 22px;
}
.testdrive__panel .form__row {
  margin-bottom: 12px;
}
.testdrive__panel .form__field {
  margin-bottom: 12px;
}
.testdrive__panel .form__input,
.testdrive__panel .form__textarea {
  padding: 10px 16px;
}
.testdrive__panel .form__hint {
  margin-top: -4px;
}
.testdrive-screen {
  display: none;
}
.testdrive-screen.is-active {
  display: block;
}
.testdrive-form__textarea {
  min-height: 62px;
}
.google-auth-card {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 18px;
  max-width: 760px;
  background: var(--light);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 18px;
  margin-bottom: 18px;
}
.google-auth-card.is-ready {
  background: var(--light-green);
  border-color: rgba(148,193,63,0.45);
}
.google-auth-card.is-error {
  background: #fff4f4;
  border-color: rgba(224,90,90,0.45);
}
.google-auth-card__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.google-auth-card__eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}
.google-auth-card strong {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  color: var(--navy);
  line-height: 1.35;
}
.google-auth-card span:last-child {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.google-auth-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  flex-shrink: 0;
}
.auth-choice {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: 6px;
  color: var(--navy);
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}
.auth-choice:hover,
.auth-choice:focus {
  border-color: var(--green);
  outline: none;
  transform: translateY(-1px);
}
.auth-choice:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}
.auth-choice img {
  width: 18px;
  height: 18px;
}
.auth-choice__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  color: var(--navy);
  font-size: 13px;
  line-height: 1;
}
.testdrive-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.nda-card {
  background: var(--light);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
}
.nda-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin-bottom: 22px;
}
.nda-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #555;
  line-height: 1.65;
}
.nda-list li::before {
  content: '—';
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
}
.nda-accept {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--navy);
  line-height: 1.6;
  cursor: pointer;
}
.nda-accept input {
  accent-color: var(--green);
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}
.provision-card {
  background: var(--navy);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 14px;
}
.provision-card__top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.provision-card__label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.provision-card__status {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}
.provision-card__substatus {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.provision-card__countdown {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  text-align: right;
  white-space: nowrap;
}
.provision-bar {
  height: 8px;
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
  overflow: hidden;
}
.provision-bar__fill {
  width: 0%;
  height: 100%;
  background: var(--green);
  border-radius: inherit;
  transition: width 0.4s ease;
}
.provision-note {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 18px 0 28px;
}
.provision-log-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin: 18px 0 8px;
}
.provision-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
}
.provision-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 13px 16px;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
}
.provision-item:last-child {
  border-bottom: 0;
}
.provision-item__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--border-light);
  margin-top: 6px;
  flex-shrink: 0;
}
.provision-item strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--navy);
  line-height: 1.35;
}
.provision-item small {
  display: block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 2px;
}
.provision-item.is-active {
  background: var(--light-green);
}
.provision-item.is-active .provision-item__dot {
  border-color: var(--green);
  background: var(--green);
}
.provision-item.is-complete .provision-item__dot {
  border-color: var(--green);
  background: var(--green);
}
.provision-item.is-complete {
  background: #fff;
}
.provision-item.is-complete strong {
  color: rgba(34,51,75,0.72);
}
.provision-item.is-complete small {
  color: rgba(136,136,136,0.72);
}
.provision-item.is-error {
  background: #fff4f4;
}
.provision-item.is-error .provision-item__dot {
  border-color: #e05a5a;
  background: #e05a5a;
}
.ready-card {
  background: var(--light-green);
  border: 1.5px solid var(--green);
  border-radius: 8px;
  padding: 28px;
}
.ready-card__tag {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.ready-card h3 {
  margin-bottom: 10px;
}
.ready-card p {
  max-width: 560px;
  font-size: 15px;
  color: #555;
  margin-bottom: 22px;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.footer {
  background: #16243A;
  padding: 22px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__left {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}
.footer__right {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}
.footer__right a {
  color: rgba(255,255,255,0.4);
}
.footer__right a:hover {
  color: rgba(255,255,255,0.7);
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .hero { padding: 56px 20px 52px; }
  .nav { padding: 0 20px; }

  .hero__stats       { grid-template-columns: 1fr 1fr; }
  .problem-grid      { grid-template-columns: 1fr; }
  .features-grid     { grid-template-columns: 1fr; }
  .pillars           { grid-template-columns: 1fr; gap: 20px; }
  .pricing-grid      { grid-template-columns: 1fr; }
  .testi-grid        { grid-template-columns: 1fr; }
  .form__row         { grid-template-columns: 1fr; }
  .testdrive__progress { grid-template-columns: 1fr 1fr; }
  .testdrive__panel  { padding: 28px 20px; }
  .google-auth-card { align-items: flex-start; flex-direction: column; }
  .google-auth-card__actions { justify-content: flex-start; }
  .provision-card__top { flex-direction: column; }

  .nav__links        { display: none; }
  .nav__links.open   {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 24px 20px;
    gap: 20px;
    border-top: 1px solid var(--border-dark);
    z-index: 99;
  }
  .nav__hamburger    { display: block; }
}

@media (max-width: 480px) {
  .hero__stats { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }
  h2 { font-size: 24px; }
  .price-card__amount { font-size: 36px; }
  .testdrive__progress { grid-template-columns: 1fr; }
  .journey-step { padding: 12px; }
  .provision-card__status { font-size: 21px; }
}
