/* ==========================================================================
   Car Driving School Victoria
   Tokens are locked. Yellow is the only accent. Roboto only.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --white: #ffffff;
  --black: #000000;
  --yellow: #f5b400;

  /* Neutral grey: secondary body text only, never a background surface. */
  --grey: #5b5b5b;
  --grey-on-black: #b4b4b4;

  /* Hairlines and card surfaces are built from black/white at low alpha,
     so no off-white or grey surface colour is ever introduced. */
  --rule: rgba(0, 0, 0, 0.12);
  --rule-on-black: rgba(255, 255, 255, 0.16);
  --rule-on-yellow: rgba(0, 0, 0, 0.18);

  /* One radius scale. */
  --r-card: 16px;
  --r-pill: 999px;

  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.05), 0 8px 24px rgba(0, 0, 0, 0.07);
  --shadow-card-hover: 0 2px 4px rgba(0, 0, 0, 0.06), 0 16px 40px rgba(0, 0, 0, 0.12);
  --shadow-feed: 0 2px 6px rgba(0, 0, 0, 0.06), 0 24px 60px rgba(0, 0, 0, 0.1);

  --bar-h: 40px;
  --nav-h: 72px;

  --pad-x: 24px;
  --max: 1180px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

p { margin: 0; }
figure, blockquote { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 200;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  padding: 12px 20px;
  border-radius: var(--r-pill);
}
.skip-link:focus { top: 12px; }

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.section { padding-block: clamp(56px, 8vw, 96px); }
.section--tight { padding-block: clamp(44px, 5vw, 64px); }

.section-black { background: var(--black); color: var(--white); }
.section-yellow { background: var(--yellow); color: var(--black); }

/* ---------- Type ---------- */
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 16px;
}
.eyebrow::after {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-top: 8px;
  background: var(--yellow);
  border-radius: 2px;
}
.section-black .eyebrow { color: var(--yellow); }
.section-black .eyebrow::after { background: var(--yellow); }
.section-yellow .eyebrow { color: var(--black); }
.section-yellow .eyebrow::after { background: var(--black); }

.h1 { font-size: clamp(38px, 5.6vw, 66px); }
.h2 { font-size: clamp(30px, 3.9vw, 46px); }
.h3 { font-size: clamp(19px, 1.5vw, 22px); font-weight: 700; letter-spacing: -0.01em; }

.lede {
  font-size: clamp(16px, 1.25vw, 19px);
  color: var(--grey);
  max-width: 54ch;
}
.section-black .lede { color: var(--grey-on-black); }
.section-yellow .lede { color: var(--black); }

.h1 + .lede, .h2 + .lede { margin-top: 16px; }

/* Yellow highlight marker: black text stays, yellow is only the mark. */
.mark {
  position: relative;
  display: inline-block;
  z-index: 0;
  padding-inline: 0.14em;
}
.mark::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: -0.05em;
  bottom: -0.05em;
  background: var(--yellow);
  border-radius: 4px;
}
.section-black .mark { color: var(--black); }
.section-yellow .mark { color: var(--white); }
.section-yellow .mark::after { background: var(--black); }

.mark--nowrap { white-space: nowrap; }


/* ---------- Buttons: pill everywhere, one scale ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 30px;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease,
              color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { flex: none; }

.btn--sm { min-height: 46px; padding: 0 22px; font-size: 15px; }
.btn--block { width: 100%; }

/* On white */
.btn--primary { background: var(--yellow); color: var(--black); }
.btn--primary:hover { box-shadow: 0 10px 26px rgba(245, 180, 0, 0.4); }

.btn--secondary { background: transparent; color: var(--black); border-color: var(--black); }
.btn--secondary:hover { background: var(--black); color: var(--white); }

/* On black */
.btn--secondary-inv { background: transparent; color: var(--white); border-color: var(--white); }
.btn--secondary-inv:hover { background: var(--white); color: var(--black); }

/* On the yellow band the primary flips to black fill for contrast. */
.btn--on-yellow { background: var(--black); color: var(--white); }
.btn--on-yellow:hover { box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28); }
.btn--on-yellow-outline { background: transparent; color: var(--black); border-color: var(--black); }
.btn--on-yellow-outline:hover { background: var(--black); color: var(--white); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
}

/* Yellow icon chip, black glyph. */
.chip {
  flex: none;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: var(--r-card);
  background: var(--yellow);
  color: var(--black);
}
.chip--sm { width: 38px; height: 38px; border-radius: 12px; }

/* ---------- Stars ---------- */
.stars { display: inline-flex; gap: 2px; color: var(--yellow); }
.stars svg { width: 16px; height: 16px; }
.stars--lg svg { width: 20px; height: 20px; }

/* ==========================================================================
   Global chrome
   ========================================================================== */

/* Utility bar: yellow background, black text. */
.utility {
  background: var(--yellow);
  color: var(--black);
  min-height: var(--bar-h);
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
}
.utility .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.utility-left { display: inline-flex; align-items: center; gap: 8px; }
.utility-left .stars { color: var(--black); }
.utility-right { display: inline-flex; align-items: center; gap: 12px; }
.utility-sep { width: 1px; height: 14px; background: var(--rule-on-yellow); }

/* Nav: black background, white text, sticky on scroll. */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: box-shadow 200ms ease, border-color 200ms ease;
}
.nav.is-stuck {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
  border-bottom-color: var(--rule-on-black);
}
.nav .wrap {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 44px);
}

.nav-logo { flex: none; display: block; }
.nav-logo img { height: 42px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.9vw, 30px);
  margin-left: auto;
}
.nav-links a {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  color: var(--white);
  white-space: nowrap;
  padding-block: 6px;
  transition: color 160ms ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}
.nav-links a:hover { color: var(--yellow); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 18px; }

.nav-call { text-decoration: none; text-align: right; line-height: 1.15; }
.nav-call span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-on-black);
}
.nav-call strong {
  display: block;
  font-size: 19px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.01em;
  transition: color 160ms ease;
}
.nav-call:hover strong { color: var(--yellow); }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--rule-on-black);
  border-radius: 12px;
  color: var(--white);
  cursor: pointer;
}

.nav-drawer { display: none; }

/* Floating WhatsApp button */
.wa-fab {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 150;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: var(--r-pill);
  background: #25d366;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
  animation: wa-in 420ms cubic-bezier(0.2, 0.8, 0.3, 1) 900ms both;
}
.wa-fab:hover { transform: scale(1.07); box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3); }
.wa-fab svg { width: 30px; height: 30px; }

@keyframes wa-in {
  from { opacity: 0; transform: scale(0.6); }
  to { opacity: 1; transform: scale(1); }
}

/* ==========================================================================
   1. Hero
   ========================================================================== */
.hero { padding-block: clamp(48px, 6vw, 88px); }
.hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.17fr) minmax(0, 0.83fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

/* Two lines, always. Sizes are tuned so neither line can wrap. */
.hero h1 { margin-bottom: 22px; font-size: clamp(38px, 4vw, 56px); }
.hero h1 > span { display: block; white-space: nowrap; }
.hero .lede { margin-bottom: 30px; }
.hero .btn-row { margin-bottom: 26px; }

.rating-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 15px;
}
.rating-row .g-block { display: inline-flex; align-items: center; gap: 8px; }
.rating-row strong { font-weight: 700; }
.rating-row .muted { color: var(--grey); }
.rating-row .divider { width: 1px; height: 20px; background: var(--rule); }

/* Two vertical Instagram scroll walls */
.feed {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  height: 560px;
  overflow: hidden;
  border-radius: var(--r-card);
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.1));
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 12%, #000 88%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0, #000 12%, #000 88%, transparent 100%);
}
.feed-col { position: relative; overflow: hidden; }
.feed-track {
  display: flex;
  flex-direction: column;
  gap: 16px;
  will-change: transform;
  animation: feed-up var(--dur, 46s) linear infinite;
}
.feed-col--b .feed-track { animation-duration: var(--dur-b, 62s); }

@keyframes feed-up {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(0, -50%, 0); }
}

.feed:hover .feed-track,
.feed:focus-within .feed-track { animation-play-state: paused; }

.feed-card {
  display: block;
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--black);
  box-shadow: var(--shadow-feed);
  transition: transform 220ms ease;
}
.feed-card:hover { transform: translateY(-3px) scale(1.012); }
.feed-card img {
  width: 100%;
  height: auto;
  /* Locked to the placeholder ratio so the columns have their full height
     before the live post images load, and the loop timing measures true. */
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* ==========================================================================
   2. Trust bar: black surface, reversed text
   ========================================================================== */
.trust { background: var(--black); color: var(--white); }

.trust-inner {
  display: flex;
  align-items: center;
  padding-block: 30px;
}

.trust-item {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.trust-sep {
  flex: none;
  width: 1px;
  align-self: stretch;
  background: var(--rule-on-black);
}

/* Google block: mark, then stars over label, then the figure. */
.t-rating {
  display: flex;
  align-items: center;
  gap: 14px;
}
.t-icon { flex: none; display: block; }
.t-icon svg { width: 42px; height: 42px; }

.t-meta { display: flex; flex-direction: column; align-items: flex-start; }

.t-stars {
  color: var(--yellow);
  font-size: 21px;
  line-height: 1;
  letter-spacing: 3px;
}

.t-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-on-black);
  margin-top: 7px;
  white-space: nowrap;
}

.t-big {
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--white);
}

.trust-item > .t-lbl { margin-top: 8px; }

/* ==========================================================================
   3. Lessons: asymmetric grid, one larger feature tile
   ========================================================================== */
.lessons-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.lessons-head .h2 { max-width: 18ch; }

.lessons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(0, auto);
  gap: 20px;
}

.lesson {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 30px;
  text-decoration: none;
  border: 1px solid var(--rule);
  border-radius: var(--r-card);
  background: var(--white);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.lesson:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(0, 0, 0, 0.2);
}
.lesson p { color: var(--grey); font-size: 15.5px; }
.lesson .go {
  margin-top: auto;
  padding-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}
.lesson .go svg { transition: transform 200ms ease; }
.lesson:hover .go svg { transform: translateX(4px); }

/* Wide tile: closes the last row so the grid has no empty cell. */
.lesson--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) auto;
  align-items: center;
  gap: 30px;
  padding: 26px 30px;
}
.lesson-wide-head { display: flex; align-items: center; gap: 14px; }
.lesson--wide .go { margin-top: 0; padding-top: 0; }

/* Feature tile: spans two columns and two rows, black surface. */
.lesson--feature {
  grid-column: span 2;
  grid-row: span 2;
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
  padding: clamp(30px, 3vw, 44px);
  justify-content: flex-end;
  min-height: 320px;
}
.lesson--feature .h3 { font-size: clamp(24px, 2.4vw, 32px); font-weight: 900; }
.lesson--feature p { color: var(--grey-on-black); font-size: 16.5px; max-width: 42ch; }
.lesson--feature .go { color: var(--yellow); }
.lesson--feature .chip { margin-bottom: 4px; }

.feature-ticks { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.feature-ticks li {
  position: relative;
  padding-left: 28px;
  font-size: 15.5px;
  color: var(--grey-on-black);
}
.feature-ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.44em;
  width: 15px;
  height: 8px;
  border-left: 2.5px solid var(--yellow);
  border-bottom: 2.5px solid var(--yellow);
  transform: rotate(-45deg);
}

.lesson-badge {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--black);
  padding: 6px 14px;
  border-radius: var(--r-pill);
}

.lessons-note {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--grey);
}
.lessons-note .dash { width: 22px; height: 3px; background: var(--yellow); border-radius: 2px; flex: none; }

/* ==========================================================================
   4. Why choose us
   ========================================================================== */
.why .wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: start;
}
.why .lede { margin-bottom: 32px; }

.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat {
  padding: 22px 24px;
  border: 1px solid var(--rule-on-black);
  border-radius: var(--r-card);
  border-left: 4px solid var(--yellow);
  background: rgba(255, 255, 255, 0.04);
}
.stat b {
  display: block;
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.1;
}
.stat span { display: block; margin-top: 6px; font-size: 14px; color: var(--grey-on-black); }

.feature-list { display: flex; flex-direction: column; gap: 12px; }
.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  border: 1px solid var(--rule-on-black);
  border-radius: var(--r-card);
  background: rgba(255, 255, 255, 0.04);
  transition: background-color 200ms ease, transform 200ms ease;
}
.feature:hover { background: rgba(255, 255, 255, 0.09); transform: translateX(4px); }
.feature h3 { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 4px; }
.feature p { font-size: 15px; color: var(--grey-on-black); }

/* ==========================================================================
   5. How it works
   ========================================================================== */
.steps-head { text-align: center; margin-bottom: 48px; }
.steps-head .eyebrow { display: inline-block; }
.steps-head .eyebrow::after { margin-inline: auto; }
.steps-head .lede { margin-inline: auto; text-align: center; }
.steps-head .h2 { margin-bottom: 16px; }

/* Step markup is the shared ".beeline" (see Inner pages, below). */
.steps-cta { margin-top: 48px; display: flex; justify-content: center; }

/* ==========================================================================
   6. Pricing teaser
   ========================================================================== */
.pricing .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.pricing-figure {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}
.pricing-figure em {
  font-style: normal;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--black);
}
.pricing-text p { color: var(--black); margin-top: 12px; font-size: 16px; }

/* ==========================================================================
   7. Reviews
   ========================================================================== */
.reviews-head { text-align: center; margin-bottom: 44px; }
.reviews-head .eyebrow { display: inline-block; }
.reviews-head .eyebrow::after { margin-inline: auto; }

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--rule);
  border-radius: var(--r-card);
  background: var(--white);
  box-shadow: var(--shadow-card);
}
.review .stars { margin-bottom: 16px; }
.review blockquote {
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 500;
}
.review figcaption {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  font-size: 14.5px;
}
.review figcaption b { display: block; font-weight: 700; }
.review figcaption span { color: var(--grey); }

/* Clearly marked slot for a review that has not been pasted in yet. */
.review--empty {
  border-style: dashed;
  border-color: rgba(0, 0, 0, 0.32);
  box-shadow: none;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  min-height: 230px;
}
.review--empty .slot-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--black);
  padding: 6px 14px;
  border-radius: var(--r-pill);
}
.review--empty p { color: var(--grey); font-size: 15px; }

.reviews-foot { margin-top: 32px; display: flex; justify-content: center; }

/* ==========================================================================
   8. Areas + Get in Touch
   ========================================================================== */
.areas .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.27fr) minmax(0, 0.86fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.areas .lede { margin-bottom: 28px; }

.suburbs { display: flex; flex-wrap: wrap; gap: 10px; }
.suburbs a {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border: 1px solid var(--rule);
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.suburbs a:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
  font-weight: 700;
  transform: translateY(-2px);
}

.contact-card { padding: clamp(28px, 3vw, 38px); }
.contact-card h3 { margin-bottom: 8px; font-size: 22px; font-weight: 900; }
.contact-card > p { color: var(--grey); font-size: 15.5px; margin-bottom: 24px; }

.contact-list { display: flex; flex-direction: column; margin-bottom: 26px; }
.contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-block: 16px;
  border-bottom: 1px solid var(--rule);
}
.contact-list li:first-child { padding-top: 0; }
.contact-list a, .contact-list span { text-decoration: none; font-weight: 700; font-size: 16px; }
.contact-list .contact-sub { display: block; font-weight: 400; font-size: 13.5px; color: var(--grey); }

/* ==========================================================================
   9. FAQ
   ========================================================================== */
.faq-head { text-align: center; margin-bottom: 40px; }
.faq-head .eyebrow { display: inline-block; }
.faq-head .eyebrow::after { margin-inline: auto; }

.faq-list { max-width: 840px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--rule-on-black);
  border-radius: var(--r-card);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition: border-color 200ms ease, background-color 200ms ease;
}
.faq-item[open] { border-color: rgba(255, 255, 255, 0.3); background: rgba(255, 255, 255, 0.07); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-icon {
  flex: none;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: var(--r-pill);
  background: var(--yellow);
  color: var(--black);
  transition: transform 220ms ease;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-a { padding: 0 26px 24px; color: var(--grey-on-black); font-size: 16px; max-width: 68ch; }

/* ==========================================================================
   10. CTA band
   ========================================================================== */
.cta-band .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band .h2 { max-width: 20ch; margin-bottom: 12px; }
.cta-band p { font-size: 17px; max-width: 46ch; }

/* ==========================================================================
   11. Footer
   ========================================================================== */
.footer { background: var(--black); color: var(--white); padding-top: clamp(56px, 6vw, 78px); }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr) minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: 48px;
}
.footer-brand img { height: 46px; width: auto; margin-bottom: 20px; }
.footer-brand p { color: var(--grey-on-black); font-size: 15px; max-width: 38ch; }
.footer-brand p + p { margin-top: 12px; }

.footer h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-on-black);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a {
  font-size: 15px;
  color: var(--white);
  text-decoration: none;
  transition: color 160ms ease;
}
.footer-col a:hover { color: var(--yellow); }
.footer-col--areas ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 18px;
}
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--r-pill);
  border: 1px solid var(--rule-on-black);
  color: var(--white);
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}
.footer-social a:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid var(--rule-on-black);
  padding-block: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--grey-on-black);
}
.footer-bottom > :nth-child(2) { text-align: center; }
.footer-bottom > :nth-child(3) { text-align: right; }
.footer-bottom a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a:hover { color: var(--yellow); }
.footer-bottom .heart { color: var(--yellow); display: inline-block; vertical-align: -2px; }

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
/* Scoped to .js so the page is fully visible if the script never runs. */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 640ms cubic-bezier(0.22, 0.75, 0.3, 1),
              transform 640ms cubic-bezier(0.22, 0.75, 0.3, 1);
}
.js .reveal.is-in { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: 80ms; }
.js .reveal[data-delay="2"] { transition-delay: 160ms; }
.js .reveal[data-delay="3"] { transition-delay: 240ms; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 14px; }
  .nav-call strong { font-size: 17px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .lessons-grid { grid-template-columns: 1fr 1fr; }
  .lesson--feature { grid-column: span 2; grid-row: auto; }
  .why .wrap, .areas .wrap, .hero .wrap { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  /* Trust bar stacks, and the rules turn horizontal. */
  .trust-inner { flex-direction: column; padding-block: 8px; }
  .trust-item { width: 100%; padding-block: 22px; }
  .trust-sep { width: 100%; height: 1px; align-self: auto; }
  .t-rating { justify-content: center; }
}

/* Single column under 768px, full width, comfortable padding. */
@media (max-width: 768px) {
  body { font-size: 16px; }

  .utility { font-size: 12px; }
  .utility-right { display: none; }
  .utility .wrap { justify-content: center; }

  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav .wrap { gap: 12px; }
  .nav-logo img { height: 34px; }

  .nav-drawer {
    display: block;
    background: var(--black);
    border-top: 1px solid var(--rule-on-black);
    overflow: hidden;
    max-height: 0;
    transition: max-height 320ms cubic-bezier(0.3, 0.8, 0.3, 1);
  }
  .nav-drawer.is-open { max-height: 520px; }
  .nav-drawer .wrap { display: block; height: auto; padding-block: 20px 26px; }
  .nav-drawer ul { display: flex; flex-direction: column; }
  .nav-drawer ul a {
    display: block;
    padding-block: 14px;
    font-size: 17px;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid var(--rule-on-black);
  }
  .nav-drawer .drawer-actions { display: grid; gap: 12px; margin-top: 22px; }

  /* Hero stacks: text first, feed below. Headline stays two lines. */
  .hero { padding-block: 36px 44px; }
  .hero .wrap { gap: 34px; }
  .hero h1 { font-size: min(7.9vw, 32px); }
  .hero .btn-row { gap: 12px; }
  .hero .btn-row .btn { flex: 1 1 100%; }
  /* The rule only separates items that sit on one line. */
  .rating-row .divider { display: none; }
  .rating-row { gap: 10px 14px; }
  .feed { height: 440px; gap: 12px; }
  .feed-track { gap: 12px; }

  .lessons-grid { grid-template-columns: 1fr; }
  .lesson--feature { grid-column: auto; min-height: 0; }
  .lesson--wide { grid-template-columns: 1fr; gap: 14px; padding: 30px; align-items: start; }
  .lessons-head { margin-bottom: 32px; }

  .stat-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 18px; }

  .pricing .wrap { flex-direction: column; align-items: stretch; gap: 22px; }
  .pricing-figure { flex-wrap: wrap; font-size: clamp(30px, 8.4vw, 40px); }
  .pricing .btn { width: 100%; }

  .contact-card { padding: 24px; }

  .faq-q { padding: 18px 20px; font-size: 16px; }
  .faq-a { padding: 0 20px 20px; font-size: 15.5px; }

  .cta-band .btn-row { width: 100%; }
  .cta-band .btn-row .btn { flex: 1 1 100%; }

  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-col--areas ul { grid-template-columns: 1fr 1fr; }
  .footer-bottom { grid-template-columns: 1fr; text-align: center; gap: 10px; }
  .footer-bottom > :nth-child(2), .footer-bottom > :nth-child(3) { text-align: center; }

  .wa-fab { width: 54px; height: 54px; }
  .wa-fab svg { width: 27px; height: 27px; }
}

@media (max-width: 420px) {
  .stat-grid { grid-template-columns: 1fr; }
  .footer-col--areas ul { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Reduced motion: feed stops, reveals become instant.
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .feed-track { animation: none !important; }
  .wa-fab { animation: none; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .lesson:hover, .feature:hover, .feed-card:hover, .suburbs a:hover { transform: none; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media print {
  .nav, .utility, .wa-fab { position: static; }
  .feed { display: none; }
}

/* ==========================================================================
   Inner pages (generated by build/build.mjs)
   These reuse the tokens, type scale, buttons, cards, and section surfaces
   above. Nothing here introduces a new colour or a new radius.
   ========================================================================== */

/* ---------- Breadcrumb ---------- */
.crumbs {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  font-size: 13.5px;
}
.crumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-block: 12px;
}
.crumbs li { display: inline-flex; align-items: center; gap: 8px; color: var(--grey); }
.crumbs li:not(:first-child)::before {
  content: "";
  width: 6px; height: 6px;
  border-top: 2px solid var(--grey);
  border-right: 2px solid var(--grey);
  transform: rotate(45deg);
  opacity: 0.5;
}
.crumbs a { color: var(--grey); text-decoration: none; }
.crumbs a:hover { color: var(--black); }
.crumbs li[aria-current="page"] { color: var(--black); font-weight: 700; }

/* ---------- Page hero ---------- */
.page-hero {
  padding-block: clamp(48px, 7vw, 92px);
}
.page-hero .h1 { max-width: 20ch; }
.page-hero .lede { margin-top: 18px; }
.page-hero-inner { max-width: 640px; }

/* Photo hero: image behind, gradient scrim, white text. */
.page-hero--photo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  padding-block: clamp(64px, 10vw, 128px);
}
.page-hero-media { position: absolute; inset: 0; z-index: -2; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.68) 42%, rgba(0, 0, 0, 0.32) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15));
}
.page-hero--photo .eyebrow { color: var(--yellow); }
.page-hero--photo .eyebrow::after { background: var(--yellow); }
.page-hero--photo .lede { color: rgba(255, 255, 255, 0.92); }
/* The mark keeps its yellow fill and black text on the dark hero. */
.page-hero--photo .mark { color: var(--black); }
/* Lead phrase on its own line; the marked phrase stays on one line. */
.page-hero--photo .h1 { font-size: clamp(29px, 4.4vw, 50px); }
.page-hero--photo .h1-lead { display: block; }
.page-hero--photo .h1 .mark { white-space: nowrap; }

/* ---------- Prose ---------- */
.prose { max-width: 68ch; font-size: 16.5px; }
.prose p + p { margin-top: 16px; }
.prose a { color: inherit; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--yellow); text-decoration-thickness: 2px; }
.prose a:hover { color: var(--grey); }
.section-black .prose { color: var(--grey-on-black); }
.section-black .prose a { color: var(--white); }
.section-yellow .prose a { text-decoration-color: var(--black); }
.prose .suburbs { margin-top: 22px; }
.prose .ticks { margin-top: 8px; }

.section .reveal > .eyebrow + .h2 { margin-bottom: 20px; }
.section .prose { margin-top: 18px; }

/* ---------- Tick list ---------- */
.ticks { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; max-width: 60ch; }
.ticks li {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  line-height: 1.5;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.36em;
  width: 15px;
  height: 8px;
  border-left: 2.5px solid var(--yellow);
  border-bottom: 2.5px solid var(--yellow);
  transform: rotate(-45deg);
}
.section-black .ticks li { color: var(--grey-on-black); }

/* ---------- Two column split ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.two-col .h2 { font-size: clamp(24px, 2.6vw, 32px); }

/* ---------- Link card grid (reuses .lesson) ---------- */
.link-grid { display: grid; gap: 20px; }
.link-grid--2 { grid-template-columns: repeat(2, 1fr); }
.link-grid--3 { grid-template-columns: repeat(3, 1fr); }
.link-grid .lesson { min-height: 100%; }
.section-black .link-grid .lesson {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--rule-on-black);
  color: var(--white);
}
.section-black .link-grid .lesson p { color: var(--grey-on-black); }
.section-black .link-grid .lesson:hover { border-color: rgba(255, 255, 255, 0.3); }

/* ---------- Mid-page CTA ---------- */
.mid-cta {
  padding-block: clamp(28px, 4vw, 44px);
}
.mid-cta .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.mid-cta p { font-weight: 700; font-size: 18px; }

/* ---------- Areas hub + "where we teach" ---------- */
.areas-hub,
.where-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.areas-hub .suburbs,
.where-grid .suburbs { margin-top: 22px; }

/* Google Maps embed */
.map-embed {
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 3;
  background: rgba(0, 0, 0, 0.04);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.section-black .map-embed { border-color: var(--rule-on-black); }

/* ---------- "The range" section (driving lessons hub) ---------- */
.range-head {
  max-width: 62ch;
  margin-bottom: 44px;
}
.range-head .lede { margin-top: 16px; }
.range-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.range-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--rule);
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--white);
  text-decoration: none;
  color: var(--black);
  box-shadow: var(--shadow-card);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.range-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(0, 0, 0, 0.2);
}
.range-card > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.range-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  flex: 1 1 auto;
}
.range-card-body p { color: var(--grey); font-size: 14.5px; flex: 1 1 auto; }
.range-card .go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  margin-top: 4px;
}
.range-card:hover .go svg { transform: translateX(4px); }
.range-card .go svg { transition: transform 200ms ease; }

/* ---------- "Bee line" steps (how it works) ---------- */
.beeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.beeline::before {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  top: 47px;
  height: 3px;
  background: var(--yellow);
  z-index: 0;
}
.beeline-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.beeline-num {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: var(--r-pill);
  background: var(--yellow);
  color: var(--black);
  font-size: 46px;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  box-shadow: 0 0 0 8px var(--black);
}
.section:not(.section-black) .beeline-num { box-shadow: 0 0 0 8px var(--white); }
.beeline-step p { max-width: 26ch; color: var(--grey); font-size: 15.5px; }
.section-black .beeline-step p { color: var(--grey-on-black); }

/* ---------- Media split (about page) ---------- */
.media-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}
.media-split .h2 { font-size: clamp(24px, 2.8vw, 34px); }
.media-split-img img {
  width: 100%;
  border-radius: var(--r-card);
  object-fit: cover;
  aspect-ratio: 3 / 2;
  box-shadow: var(--shadow-card);
}
.section-black .media-split-img img { box-shadow: none; }

/* Bigger icon chips on the about cards */
.about-cards .chip {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  margin-bottom: 4px;
}

/* ---------- Pricing table ---------- */
.pricing-table {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
  align-items: stretch;
}
.tier {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 28px 24px;
  border: 1px solid var(--rule);
  border-radius: var(--r-card);
  background: var(--white);
  box-shadow: var(--shadow-card);
}
.tier--pop {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}
.tier .lesson-badge { align-self: flex-start; margin-bottom: 10px; background: var(--black); color: var(--yellow); }
.tier-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
}
.tier--pop .tier-name { color: var(--black); }
.tier-price {
  font-size: clamp(34px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 10px 0 2px;
}
.tier-unit { font-size: 13px; color: var(--grey); margin-bottom: 16px; }
.tier--pop .tier-unit { color: var(--black); }
.tier .ticks { flex: 1 1 auto; margin-top: 6px; margin-bottom: 20px; }
.tier .ticks li { font-size: 14.5px; }
.tier--pop .ticks li::before { border-color: var(--black); }
.tier .btn { margin-top: auto; }

/* ---------- To-confirm marker ---------- */
.todo {
  display: inline-block;
  padding: 3px 10px;
  border: 1px dashed currentColor;
  border-radius: var(--r-pill);
  font-size: 13.5px;
  font-weight: 700;
  opacity: 0.9;
}
.todo-guess { font-weight: 400; opacity: 0.8; }

/* ---------- Footer tweaks ---------- */
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a[aria-label="WhatsApp"] svg { width: 15px; height: 15px; }
.footer-bottom .heart { color: #e0392b; }
.footer-bottom a.frw {
  color: var(--grey-on-black);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-bottom a.frw:hover { color: var(--white); }

/* ---------- Eligibility checker ---------- */
[hidden] { display: none !important; }
.elig-steps { list-style: none; margin: 0; padding: 0; }
.elig-step { list-style: none; }
/* Always a dark panel, so it reads the same on any section surface. */
.eligibility {
  max-width: 640px;
  margin-inline: auto;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-card);
  background: var(--black);
  color: var(--white);
}
.elig-step fieldset { border: 0; padding: 0; margin: 0; }
.elig-step legend {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
}
.elig-count {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 10px;
}
.elig-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border: 1px solid var(--rule-on-black);
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 10px;
  transition: background-color 140ms ease, border-color 140ms ease;
}
.elig-opt:hover { background: rgba(255, 255, 255, 0.07); }
.elig-opt:has(input:checked) { border-color: var(--yellow); background: rgba(245, 180, 0, 0.14); }
.elig-opt input { width: 18px; height: 18px; accent-color: var(--yellow); flex: none; }
.elig-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 8px; }
.elig-nav [data-elig="next"] { margin-left: auto; }
.elig-result { margin-top: 8px; }
.elig-result-title { font-size: clamp(22px, 3vw, 30px); margin-bottom: 12px; }
.elig-result-body { color: var(--grey-on-black); font-size: 16.5px; margin-bottom: 20px; max-width: 52ch; }
.elig-result-actions { margin-bottom: 20px; }
.elig-reset {
  background: none;
  border: 0;
  color: var(--yellow);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- FAQ on a white surface (suburb pages) ---------- */
.section:not(.section-black):not(.section-yellow) .faq-item {
  border-color: var(--rule);
  background: var(--white);
}
.section:not(.section-black):not(.section-yellow) .faq-item[open] {
  border-color: rgba(0, 0, 0, 0.28);
  background: var(--white);
}
.section:not(.section-black):not(.section-yellow) .faq-q { color: var(--black); }
.section:not(.section-black):not(.section-yellow) .faq-a { color: var(--grey); }

/* ---------- Inner-page responsive ---------- */
@media (max-width: 1000px) {
  .pricing-table { grid-template-columns: repeat(2, 1fr); }
  .range-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .two-col,
  .areas-hub,
  .where-grid,
  .media-split { grid-template-columns: 1fr; }
  .media-split--rev .media-split-img { order: 2; }
  .link-grid--2,
  .link-grid--3 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .mid-cta .wrap { flex-direction: column; align-items: stretch; }
  .mid-cta .btn { width: 100%; }
  .elig-nav .btn { flex: 1 1 auto; }
  .pricing-table { grid-template-columns: 1fr; }
  .range-grid { grid-template-columns: 1fr; }
  .beeline { grid-template-columns: 1fr; gap: 30px; }
  .beeline::before {
    left: 50%;
    right: auto;
    top: 6%;
    bottom: 6%;
    width: 3px;
    height: auto;
    transform: translateX(-50%);
  }
  .beeline-num { width: 78px; height: 78px; font-size: 38px; }
}
