/* ============================================================
   ROWLAND SCHOOL OF MOTORING
   Design system — shared across all pages
   Navy #0A2342 · Red #C0392B · White #FDFCFA · Grey #4A4A4A
============================================================ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:     #0A2342;
  --navy-mid: #0d2c52;
  --navy-dk:  #061628;
  --red:      #C0392B;
  --red-dk:   #a93226;
  --white:    #FDFCFA;
  --off:      #F5F4F1;
  --grey:     #4A4A4A;
  --grey-lt:  #6e6e6e;
  --grey-xlt: #a0a0a0;
  --border:   #e2e0dc;
  --border-dk:rgba(255,255,255,0.1);
  --wa:       #25D366;

  --ff-display: 'Barlow Condensed', sans-serif;
  --ff-body:    'Open Sans', sans-serif;
  --ff-ui:      'Inter', sans-serif;

  --r:   6px;
  --r-lg:12px;
  --sh:  0 2px 16px rgba(10,35,66,0.08);
  --sh-lg:0 8px 40px rgba(10,35,66,0.12);
  --ease:0.22s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  color: var(--grey);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 88px 0; }
.section--sm{ padding: 56px 0; }

/* Labels */
.label {
  display: inline-block;
  font-family: var(--ff-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.label--light { color: rgba(255,255,255,0.5); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-ui); font-weight: 600;
  border-radius: var(--r); border: none; cursor: pointer;
  transition: var(--ease); white-space: nowrap;
  text-decoration: none;
}
.btn--lg { padding: 15px 26px; font-size: 14px; }
.btn--md { padding: 12px 22px; font-size: 13px; }
.btn--sm { padding: 9px 16px;  font-size: 12px; }
.btn--full { width: 100%; justify-content: center; }

.btn--red     { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--red-dk); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(192,57,43,0.3); }

.btn--navy    { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-mid); transform: translateY(-1px); }

.btn--outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.07); }

.btn--ghost   { background: transparent; color: var(--navy); border: 1.5px solid var(--border); }
.btn--ghost:hover { border-color: var(--navy); background: var(--off); }

.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { background: #1ebe5b; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,0.3); }

/* ── Tag chips ── */
.chip {
  display: inline-block;
  font-family: var(--ff-ui); font-size: 12px; font-weight: 600;
  padding: 5px 12px; border-radius: 100px;
  background: rgba(192,57,43,0.08); color: var(--red);
  border: 1px solid rgba(192,57,43,0.18);
}

/* ============================================================
   NAV
============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  border-bottom: 1px solid transparent;
  transition: background var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.nav.scrolled {
  background: var(--navy);
  border-color: rgba(255,255,255,0.07);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.nav__bar {
  display: flex; align-items: center;
  height: 68px; gap: 0;
  max-width: 1180px; margin: 0 auto; padding: 0 28px;
}
.nav__logo { margin-right: auto; flex-shrink: 0; }
.nav__logo img { height: 30px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }

/* Desktop links */
.nav__links {
  display: flex; align-items: center; gap: 4px;
}
.nav__item { position: relative; }
.nav__link {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--ff-ui); font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.72); padding: 8px 12px;
  border-radius: var(--r); transition: color var(--ease), background var(--ease);
  cursor: pointer; background: none; border: none;
}
.nav__link:hover, .nav__link.active { color: #fff; background: rgba(255,255,255,0.07); }
.nav__link svg { transition: transform var(--ease); }
.nav__item:hover .nav__link svg { transform: rotate(180deg); }

/* Dropdown */
.nav__drop {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--navy-dk); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg); padding: 8px; min-width: 210px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  z-index: 100;
}
.nav__item:hover .nav__drop { opacity: 1; visibility: visible; transform: none; }
.nav__drop a {
  display: block; padding: 9px 14px;
  font-family: var(--ff-ui); font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.65); border-radius: var(--r);
  transition: color var(--ease), background var(--ease);
}
.nav__drop a:hover { color: #fff; background: rgba(255,255,255,0.07); }

.nav__cta { display: flex; align-items: center; gap: 8px; margin-left: 20px; }

/* Mobile burger */
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: 16px;
}
.nav__burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: var(--ease); }
.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav panel */
.nav__mobile {
  display: none; flex-direction: column;
  position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--navy-dk); overflow-y: auto; padding: 24px 28px 40px;
  border-top: 1px solid rgba(255,255,255,0.07);
  z-index: 190;
}
.nav__mobile.open { display: flex; }
.nav__mobile-group { margin-bottom: 24px; }
.nav__mobile-group-label {
  font-family: var(--ff-ui); font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); padding: 0 4px; margin-bottom: 8px;
}
.nav__mobile a {
  display: block; padding: 12px 4px;
  font-family: var(--ff-ui); font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--ease);
}
.nav__mobile a:hover { color: #fff; }
.nav__mobile-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }

/* ============================================================
   HERO — Home page (editorial split design)
============================================================ */
.hero {
  background: var(--navy);
  background-image:
    linear-gradient(135deg, rgba(6,22,40,0.97) 0%, rgba(10,35,66,0.88) 52%, rgba(8,28,54,0.72) 100%),
    url('https://images.unsplash.com/photo-1494976388531-d1058494cdd8?auto=format&fit=crop&w=1920&q=75');
  background-size: cover;
  background-position: center 40%;
  min-height: 100vh;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  padding-top: 68px;
}

/* Subtle dot texture */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Red vertical accent bar on far left */
.hero::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--red);
  opacity: 0.7;
}

.hero__inner {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 1;
  padding: 60px 28px 48px;
  max-width: 1180px; margin: 0 auto; width: 100%;
}

/* Eyebrow row */
.hero__eyebrow {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px; flex-wrap: wrap;
}
.hero__eyebrow-badge img {
  height: 40px; width: auto;
  filter: brightness(0) invert(1); opacity: 0.75;
}
.hero__eyebrow-line {
  width: 1px; height: 28px;
  background: rgba(255,255,255,0.15);
}
.hero__eyebrow-text {
  font-family: var(--ff-ui); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* Main headline + stat panel layout */
.hero__body {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 0;
  align-items: end;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 36px;
  margin-bottom: 0;
}

/* Headline side */
.hero__hl-block { padding-right: 60px; padding-bottom: 40px; }

.hero__hl {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(60px, 9.5vw, 118px);
  line-height: 0.9;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 28px;
}
.hero__hl em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.25);
}
.hero__hl-sub {
  font-size: 16px; line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin-bottom: 32px;
}
.hero__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Stat panel side */
.hero__stat-panel {
  border-left: 1px solid rgba(255,255,255,0.1);
  padding-left: 40px;
  padding-bottom: 40px;
}
.hero__stat-panel-label {
  font-family: var(--ff-ui); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 12px;
}
.hero__big-num {
  font-family: var(--ff-display); font-weight: 900;
  font-size: 96px; line-height: 0.9;
  color: var(--white);
  display: flex; align-items: flex-start;
}
.hero__big-num sup {
  font-size: 40px; margin-top: 10px; color: var(--red);
}
.hero__vs {
  font-family: var(--ff-ui); font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-top: 10px; margin-bottom: 28px;
}
.hero__vs strong { color: rgba(255,255,255,0.65); }

/* Progress bar in stat panel */
.hero__bars { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.hero__bar-row { display: flex; flex-direction: column; gap: 5px; }
.hero__bar-meta {
  display: flex; justify-content: space-between;
  font-family: var(--ff-ui); font-size: 11px;
  color: rgba(255,255,255,0.4);
}
.hero__bar-track {
  height: 6px; background: rgba(255,255,255,0.08);
  border-radius: 100px; overflow: hidden;
}
.hero__bar-fill {
  height: 100%; border-radius: 100px;
  width: 0; transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}
.hero__bar-fill--bill { background: var(--red); }
.hero__bar-fill--nat  { background: rgba(255,255,255,0.3); }

/* Bottom strip: 4 quick stats */
.hero__strip {
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  max-width: 1180px; margin: 0 auto; width: 100%;
  position: relative; z-index: 1;
}
.hero__strip-item {
  flex: 1; padding: 22px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hero__strip-item:last-child { border-right: none; }
.hero__strip-val {
  font-family: var(--ff-display); font-weight: 800; font-size: 26px;
  color: var(--white); display: block; line-height: 1;
}
.hero__strip-lbl {
  font-family: var(--ff-ui); font-size: 11px;
  color: rgba(255,255,255,0.38);
  margin-top: 4px; display: block;
}

/* ============================================================
   PAGE HERO — Interior pages
============================================================ */
.page-hero {
  background: var(--navy);
  padding: 120px 0 64px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%; background: var(--red); opacity: 0.7;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--ff-display); font-weight: 900;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.95; color: var(--white);
  text-transform: uppercase; letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 17px; color: rgba(255,255,255,0.55);
  max-width: 540px; line-height: 1.7; margin-bottom: 28px;
}
.page-hero__crumb {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--ff-ui); font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.page-hero__crumb a { color: rgba(255,255,255,0.45); transition: color var(--ease); }
.page-hero__crumb a:hover { color: #fff; }
.page-hero__crumb svg { opacity: 0.4; }

/* Sub-nav (Lessons + Test Prep pages) */
.sub-nav {
  background: var(--navy-dk);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky; top: 68px; z-index: 50;
}
.sub-nav__inner {
  display: flex; align-items: center; gap: 4px;
  max-width: 1180px; margin: 0 auto; padding: 0 28px;
  overflow-x: auto; scrollbar-width: none;
}
.sub-nav__inner::-webkit-scrollbar { display: none; }
.sub-nav a {
  font-family: var(--ff-ui); font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.5);
  padding: 16px 14px; white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color var(--ease), border-color var(--ease);
}
.sub-nav a:hover { color: rgba(255,255,255,0.85); }
.sub-nav a.active { color: #fff; border-bottom-color: var(--red); }

/* ============================================================
   SECTION HEADINGS
============================================================ */
.sh {
  font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.02; color: var(--navy);
  text-transform: uppercase; letter-spacing: -0.3px;
}
.sh--light { color: var(--white); }
.sh--red   { color: var(--red); }
.sh em { font-style: normal; color: var(--red); }

.section-intro {
  font-size: 17px; color: var(--grey-lt);
  max-width: 560px; line-height: 1.75;
  margin-top: 12px;
}
.section-intro--light { color: rgba(255,255,255,0.55); }

/* ============================================================
   USP ROW — Home
============================================================ */
.usp { background: var(--white); }
.usp__grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
}
.usp__item {
  padding: 40px 36px;
  border-right: 1px solid var(--border);
  transition: background var(--ease);
}
.usp__item:last-child { border-right: none; }
.usp__item:hover { background: var(--off); }
.usp__icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(192,57,43,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); margin-bottom: 20px;
}
.usp__num {
  font-family: var(--ff-display); font-weight: 900; font-size: 52px;
  line-height: 1; color: var(--navy); margin-bottom: 6px;
}
.usp__num sup { font-size: 24px; color: var(--red); }
.usp__title {
  font-family: var(--ff-display); font-weight: 700; font-size: 22px;
  color: var(--navy); margin-bottom: 10px; text-transform: uppercase;
}
.usp__body { font-size: 14px; line-height: 1.75; color: var(--grey-lt); }

/* ============================================================
   PASS RATE — Home
============================================================ */
.pass { background: var(--navy); }

.pass__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.pass__left .sh { margin-bottom: 16px; }

.pass__callout {
  background: rgba(192,57,43,0.12);
  border: 1px solid rgba(192,57,43,0.25);
  border-radius: var(--r-lg); padding: 28px 32px;
  margin-bottom: 32px;
}
.pass__callout-num {
  font-family: var(--ff-display); font-weight: 900; font-size: 72px;
  color: var(--red); line-height: 1; display: block;
}
.pass__callout-txt {
  font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-top: 8px;
}
.pass__callout-txt strong { color: #fff; }

.pass__bars { display: flex; flex-direction: column; gap: 24px; }
.pass__bar { display: flex; flex-direction: column; gap: 8px; }
.pass__bar-hd {
  display: flex; justify-content: space-between; align-items: baseline;
}
.pass__bar-name {
  font-family: var(--ff-ui); font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.75);
}
.pass__bar-val {
  font-family: var(--ff-display); font-weight: 800; font-size: 22px;
  color: var(--white);
}
.pass__track {
  height: 10px; background: rgba(255,255,255,0.07);
  border-radius: 100px; overflow: hidden;
}
.pass__fill {
  height: 100%; border-radius: 100px; width: 0;
  transition: width 1.4s cubic-bezier(0.4,0,0.2,1);
}
.pass__fill--bill { background: var(--red); }
.pass__fill--nat  { background: rgba(255,255,255,0.22); }

.pass__right {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.pass__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg); padding: 28px 24px;
  transition: background var(--ease), border-color var(--ease);
}
.pass__card:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.14); }
.pass__card-ico {
  width: 44px; height: 44px; border-radius: 8px;
  background: rgba(192,57,43,0.18); display: flex; align-items: center;
  justify-content: center; color: #e74c3c; margin-bottom: 16px;
}
.pass__card h3 {
  font-family: var(--ff-display); font-weight: 700; font-size: 18px;
  color: var(--white); margin-bottom: 8px;
}
.pass__card p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* ============================================================
   LESSONS GRID — Home preview
============================================================ */
.lessons { background: var(--off); }
.lessons__grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1px;
  background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
  margin-top: 48px;
}
.lessons__card {
  background: var(--white); padding: 36px 28px;
  transition: background var(--ease);
}
.lessons__card:hover { background: var(--off); }
.lessons__card--featured { background: var(--navy); }
.lessons__card--featured:hover { background: var(--navy-mid); }
.lessons__card--featured h3 { color: #fff; }
.lessons__card--featured p  { color: rgba(255,255,255,0.55); }

.lessons__card-ico {
  width: 48px; height: 48px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.lessons__card:not(.lessons__card--featured) .lessons__card-ico { background: rgba(10,35,66,0.06); color: var(--navy); }
.lessons__card--featured .lessons__card-ico { background: rgba(255,255,255,0.09); color: #e74c3c; }

.lessons__card h3 {
  font-family: var(--ff-display); font-weight: 700; font-size: 22px;
  color: var(--navy); margin-bottom: 10px; text-transform: uppercase;
}
.lessons__card p { font-size: 14px; color: var(--grey-lt); line-height: 1.7; margin-bottom: 20px; }

.lessons__price {
  font-family: var(--ff-display); font-weight: 800; font-size: 38px;
  color: var(--white); line-height: 1;
}
.lessons__price span { font-size: 14px; font-weight: 500; opacity: 0.6; font-family: var(--ff-ui); }
.lessons__price-sub { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 6px; }

/* ============================================================
   LOCAL KNOWLEDGE — Home
============================================================ */
.local { background: var(--white); }
.local__grid { display: grid; grid-template-columns: 1fr 360px; gap: 80px; align-items: start; }
.local__content .sh { margin-bottom: 16px; }
.local__intro { font-size: 16px; color: var(--grey-lt); line-height: 1.75; margin-bottom: 40px; max-width: 520px; }

.local__routes { display: flex; flex-direction: column; gap: 0; }
.local__route {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.local__route:first-child { border-top: 1px solid var(--border); }
.local__route-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--red); flex-shrink: 0; margin-top: 6px;
}
.local__route strong {
  display: block; font-family: var(--ff-ui); font-size: 14px; font-weight: 700;
  color: var(--navy); margin-bottom: 5px;
}
.local__route p { font-size: 14px; color: var(--grey-lt); line-height: 1.65; }

.local__panel {
  background: var(--navy); border-radius: var(--r-lg);
  padding: 32px; color: #fff;
  position: sticky; top: 88px;
}
.local__panel-title {
  font-family: var(--ff-display); font-weight: 700; font-size: 18px;
  text-transform: uppercase; letter-spacing: 0.04em; color: var(--white);
  margin-bottom: 20px;
}
.local__areas { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.local__area {
  font-family: var(--ff-ui); font-size: 12px; font-weight: 600;
  padding: 6px 12px; border-radius: 100px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75); transition: var(--ease);
}
.local__area:hover { background: rgba(192,57,43,0.2); border-color: rgba(192,57,43,0.35); color: #fff; }
.local__panel-note {
  font-family: var(--ff-ui); font-size: 12px;
  color: rgba(255,255,255,0.35); line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px;
}

/* ============================================================
   TESTIMONIALS — preview
============================================================ */
.reviews { background: var(--off); }
.reviews__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.review-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  transition: var(--ease);
}
.review-card:hover { box-shadow: var(--sh); transform: translateY(-2px); border-color: rgba(10,35,66,0.15); }
.review-card__stars { color: #f59e0b; font-size: 16px; letter-spacing: 2px; }
.review-card blockquote {
  font-size: 15px; font-style: italic; color: var(--grey);
  line-height: 1.75; flex: 1;
}
.review-card__by {
  display: flex; align-items: center; gap: 12px;
}
.review-card__av {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-weight: 700; font-size: 15px;
  flex-shrink: 0;
}
.review-card__by strong { display: block; font-family: var(--ff-ui); font-size: 13px; font-weight: 700; color: var(--navy); }
.review-card__by span  { font-size: 12px; color: var(--grey-xlt); }
.review-card__badge {
  font-family: var(--ff-ui); font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 100px;
  background: #dcfce7; color: #15803d; width: fit-content;
}

/* ============================================================
   GUIDES — Home
============================================================ */
.guides { background: var(--white); }
.guides__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.guide-card {
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 32px; transition: var(--ease);
}
.guide-card:hover { background: var(--off); border-color: rgba(10,35,66,0.18); transform: translateY(-2px); }
.guide-card__ico {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(10,35,66,0.06); display: flex; align-items: center;
  justify-content: center; color: var(--navy); margin-bottom: 20px;
}
.guide-card h3 {
  font-family: var(--ff-display); font-weight: 700; font-size: 22px;
  color: var(--navy); text-transform: uppercase; margin-bottom: 10px;
}
.guide-card p { font-size: 14px; color: var(--grey-lt); line-height: 1.75; }

/* ============================================================
   FAQ
============================================================ */
.faq { background: var(--white); }
.faq__layout { display: grid; grid-template-columns: 300px 1fr; gap: 80px; align-items: start; }
.faq__left h2 { margin-bottom: 16px; }
.faq__left p  { font-size: 15px; color: var(--grey-lt); line-height: 1.7; margin-bottom: 28px; }

.faq__list { display: flex; flex-direction: column; }
.faq__q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 20px 0;
  font-family: var(--ff-ui); font-size: 15px; font-weight: 600;
  color: var(--navy); background: none; border: none;
  border-bottom: 1px solid var(--border); cursor: pointer; text-align: left;
  transition: color var(--ease);
}
.faq__q:hover, .faq__q[aria-expanded="true"] { color: var(--red); }
.faq__q svg { flex-shrink: 0; transition: transform var(--ease); color: var(--grey-xlt); }
.faq__q[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease; }
.faq__a.open { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { font-size: 14px; color: var(--grey-lt); line-height: 1.8; padding: 16px 0 24px; }

/* ============================================================
   CTA BAND
============================================================ */
.cta-band { background: var(--red); padding: 72px 0; }
.cta-band__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-band h2 {
  font-family: var(--ff-display); font-weight: 800; font-size: clamp(30px, 4vw, 50px);
  color: #fff; text-transform: uppercase; letter-spacing: -0.3px; line-height: 1.05;
}
.cta-band p { color: rgba(255,255,255,0.75); font-size: 16px; margin-top: 8px; }
.cta-band__btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
.btn--white { background: #fff; color: var(--red); }
.btn--white:hover { background: var(--off); transform: translateY(-1px); }
.btn--white-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.45); }
.btn--white-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ============================================================
   LESSONS PAGE
============================================================ */
.lesson-section { padding: 72px 0; border-bottom: 1px solid var(--border); }
.lesson-section:last-of-type { border-bottom: none; }
.lesson-section__grid { display: grid; grid-template-columns: 1fr 400px; gap: 72px; align-items: start; }
.lesson-section__grid.flip { direction: rtl; }
.lesson-section__grid.flip > * { direction: ltr; }

.lesson-section h2 { margin-bottom: 16px; }
.lesson-section .section-intro { margin-bottom: 28px; }
.lesson-feature-list { display: flex; flex-direction: column; gap: 12px; margin: 24px 0 32px; }
.lesson-feature-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14px; color: var(--grey-lt); line-height: 1.65;
}
.lesson-feature-list li svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }

/* Price card */
.price-card {
  background: var(--navy); color: #fff;
  border-radius: var(--r-lg); padding: 40px;
  display: flex; flex-direction: column; gap: 0;
}
.price-card__label {
  font-family: var(--ff-ui); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.4); margin-bottom: 12px;
}
.price-card__main {
  display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px;
}
.price-card__amt {
  font-family: var(--ff-display); font-weight: 900; font-size: 80px;
  color: var(--white); line-height: 1;
}
.price-card__unit { font-family: var(--ff-ui); font-size: 16px; color: rgba(255,255,255,0.45); }
.price-card__divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 24px 0; }
.price-card__block { margin-bottom: 24px; }
.price-card__block-val {
  font-family: var(--ff-display); font-weight: 800; font-size: 42px;
  color: #e74c3c; line-height: 1;
}
.price-card__block-lbl { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 4px; }
.price-card__note { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.65; margin-bottom: 28px; }

/* Info card (generic) */
.info-card {
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 36px; background: var(--off);
}
.info-card h3 {
  font-family: var(--ff-display); font-weight: 700; font-size: 24px;
  color: var(--navy); text-transform: uppercase; margin-bottom: 14px;
}
.info-card p { font-size: 14px; color: var(--grey-lt); line-height: 1.75; margin-bottom: 12px; }

/* ============================================================
   TEST PREP PAGE
============================================================ */
.prep-section { padding: 72px 0; border-bottom: 1px solid var(--border); }
.prep-section:last-of-type { border-bottom: none; }
.prep-section .sh { margin-bottom: 14px; }
.prep-section .section-intro { margin-bottom: 36px; }
.prep-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.prep-table th {
  text-align: left; padding: 12px 16px;
  font-family: var(--ff-ui); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  background: var(--navy); color: rgba(255,255,255,0.7);
}
.prep-table th:first-child { border-radius: var(--r) 0 0 0; }
.prep-table th:last-child  { border-radius: 0 var(--r) 0 0; }
.prep-table td {
  padding: 14px 16px; font-size: 14px;
  border-bottom: 1px solid var(--border);
  color: var(--grey); line-height: 1.6;
}
.prep-table tr:last-child td { border-bottom: none; }
.prep-table tr:nth-child(odd) td { background: var(--off); }
.prep-table td:first-child { font-weight: 600; color: var(--navy); }

.smtm-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 8px; }
.smtm-card {
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 24px; background: var(--white);
}
.smtm-card__q {
  font-family: var(--ff-ui); font-size: 14px; font-weight: 700;
  color: var(--navy); margin-bottom: 10px; line-height: 1.4;
}
.smtm-card__type {
  display: inline-block;
  font-family: var(--ff-ui); font-size: 11px; font-weight: 600;
  padding: 3px 10px; border-radius: 100px; margin-bottom: 10px;
}
.smtm-card__type--show { background: rgba(192,57,43,0.1); color: var(--red); }
.smtm-card__type--tell { background: rgba(10,35,66,0.07); color: var(--navy); }
.smtm-card__a { font-size: 13px; color: var(--grey-lt); line-height: 1.65; }

/* ============================================================
   MEET BILL PAGE
============================================================ */
.bill-grid { display: grid; grid-template-columns: 380px 1fr; gap: 72px; align-items: start; }
.bill-photo {
  background: var(--navy); border-radius: var(--r-lg);
  aspect-ratio: 3/4; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
  color: rgba(255,255,255,0.3); position: relative; overflow: hidden;
}
.bill-photo__overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(6,22,40,0.95), transparent);
  padding: 32px 28px;
}
.bill-photo__name {
  font-family: var(--ff-display); font-weight: 800; font-size: 26px;
  color: var(--white); text-transform: uppercase;
}
.bill-photo__title { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 4px; }

.bill-content .sh { margin-bottom: 20px; }
.bill-content p { font-size: 15px; color: var(--grey-lt); line-height: 1.8; margin-bottom: 18px; }
.bill-content p:last-of-type { margin-bottom: 0; }

.bill-creds {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin: 36px 0;
}
.bill-cred {
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 24px;
}
.bill-cred__val {
  font-family: var(--ff-display); font-weight: 900; font-size: 44px;
  color: var(--navy); line-height: 1; display: block;
}
.bill-cred__val sup { font-size: 20px; color: var(--red); }
.bill-cred__lbl { font-family: var(--ff-ui); font-size: 12px; color: var(--grey-xlt); margin-top: 4px; }

/* ============================================================
   TESTIMONIALS PAGE
============================================================ */
.testims__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-grid { display: grid; grid-template-columns: 380px 1fr; gap: 72px; align-items: start; }
.contact-info .sh { margin-bottom: 20px; }
.contact-info p { font-size: 15px; color: var(--grey-lt); line-height: 1.75; margin-bottom: 32px; }
.contact-methods { display: flex; flex-direction: column; gap: 14px; }
.contact-method {
  display: flex; gap: 16px; align-items: center;
  padding: 18px 20px; border-radius: var(--r-lg);
  border: 1px solid var(--border); transition: var(--ease);
}
.contact-method:hover { border-color: rgba(10,35,66,0.2); background: var(--off); }
.contact-method__ico {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(10,35,66,0.06); display: flex; align-items: center;
  justify-content: center; color: var(--navy); flex-shrink: 0;
}
.contact-method__ico--wa { background: rgba(37,211,102,0.1); color: var(--wa); }
.contact-method strong { display: block; font-family: var(--ff-ui); font-size: 14px; font-weight: 700; color: var(--navy); }
.contact-method span   { font-size: 13px; color: var(--grey-xlt); }

/* Contact form */
.contact-form-wrap {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 40px;
}
.form-grid { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: flex; gap: 16px; }
.form-row > .form-group { flex: 1; min-width: 0; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: var(--ff-ui); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--grey);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: var(--r);
  font-family: var(--ff-body); font-size: 14px; color: var(--navy);
  background: var(--white); outline: none; transition: border-color var(--ease);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey-xlt); }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%236e6e6e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 12px; color: var(--grey-xlt); text-align: center; margin-top: 4px; }
.form-success {
  display: none; align-items: center; gap: 12px; justify-content: center;
  background: #dcfce7; color: #15803d; border-radius: var(--r-lg);
  padding: 20px; font-family: var(--ff-ui); font-size: 15px; font-weight: 600;
}
.form-success.visible { display: flex; }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: var(--navy-dk); }
.footer__top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; padding: 64px 0 48px;
}
.footer__brand-logo { height: 28px; width: auto; filter: brightness(0) invert(1); opacity: 0.6; margin-bottom: 16px; }
.footer__brand p { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.7; margin-bottom: 20px; }
.footer__brand-contact { display: flex; flex-direction: column; gap: 8px; }
.footer__brand-contact a {
  font-family: var(--ff-ui); font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.55); transition: color var(--ease);
}
.footer__brand-contact a:hover { color: #fff; }

.footer__col h4 {
  font-family: var(--ff-display); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4); margin-bottom: 16px;
}
.footer__col a {
  display: block; font-size: 13px; color: rgba(255,255,255,0.4);
  padding: 5px 0; transition: color var(--ease);
}
.footer__col a:hover { color: rgba(255,255,255,0.85); }
.footer__col-areas { display: flex; flex-wrap: wrap; gap: 4px; }
.footer__col-areas span { font-size: 11px; color: rgba(255,255,255,0.3); }
.footer__col-areas span::after { content: '·'; margin-left: 4px; opacity: 0.3; }
.footer__col-areas span:last-child::after { display: none; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.footer__bottom span { font-size: 11px; color: rgba(255,255,255,0.22); }
.footer__bottom a { font-size: 11px; color: rgba(255,255,255,0.3); transition: color var(--ease); }
.footer__bottom a:hover { color: rgba(255,255,255,0.7); }

/* DVSA badge in footer */
.footer__dvsa { height: 44px; width: auto; filter: brightness(0) invert(1); opacity: 0.25; margin-top: 20px; }

/* ============================================================
   STICKY MOBILE CTA
============================================================ */
.mob-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 180; background: var(--navy-dk);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 12px 16px; gap: 10px;
}
.mob-cta a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 14px 10px; border-radius: var(--r);
  font-family: var(--ff-ui); font-size: 13px; font-weight: 600;
  transition: var(--ease);
}
.mob-cta__call { background: rgba(255,255,255,0.07); color: #fff; border: 1px solid rgba(255,255,255,0.12); }
.mob-cta__call:hover { background: rgba(255,255,255,0.14); }
.mob-cta__book { background: var(--red); color: #fff; }
.mob-cta__book:hover { background: var(--red-dk); }

/* ============================================================
   IMAGES & MEDIA
============================================================ */

/* Lesson section banner image */
.lesson-img {
  width: 100%; height: 280px;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 48px;
  position: relative;
}
.lesson-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.lesson-img:hover img { transform: scale(1.03); }
.lesson-img__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 28px 20px;
  background: linear-gradient(to top, rgba(6,22,40,0.75), transparent);
  color: rgba(255,255,255,0.85);
  font-family: var(--ff-ui); font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* Bill photo real image */
.bill-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  border-radius: var(--r-lg);
}

/* Approach / 3-col card grid (Meet Bill) */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Test Prep two-column layout */
.prep-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
  align-items: start;
}

/* Test Prep detail layout (main content + sidebar) */
.prep-detail-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  margin-top: 48px;
  align-items: start;
}

/* Generic section image block */
.section-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
}
.section-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* Page hero with background photo */
.page-hero--photo {
  background-image:
    linear-gradient(180deg, rgba(6,22,40,0.88) 0%, rgba(10,35,66,0.82) 100%),
    var(--page-hero-bg);
  background-size: cover;
  background-position: center;
}

/* ============================================================
   SCROLL ANIMATIONS
============================================================ */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .hero__body { grid-template-columns: 1fr; }
  .hero__hl-block { padding-right: 0; padding-bottom: 32px; }
  .hero__stat-panel { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); padding-left: 0; padding-top: 32px; }
  .pass__grid  { grid-template-columns: 1fr; gap: 48px; }
  .pass__right { grid-template-columns: repeat(2,1fr); }
  .local__grid { grid-template-columns: 1fr; gap: 48px; }
  .local__panel { position: static; }
  .reviews__grid { grid-template-columns: repeat(2,1fr); }
  .guides__grid  { grid-template-columns: repeat(2,1fr); }
  .faq__layout   { grid-template-columns: 1fr; gap: 40px; }
  .bill-grid     { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid  { grid-template-columns: 1fr; gap: 40px; }
  .footer__top   { grid-template-columns: 1fr 1fr; }
  .lesson-section__grid { grid-template-columns: 1fr; gap: 40px; }
  .lesson-section__grid.flip { direction: ltr; }
  .testims__grid { grid-template-columns: repeat(2,1fr); }
  .smtm-grid     { grid-template-columns: 1fr; }
  /* Image & grid classes */
  .approach-grid    { grid-template-columns: 1fr 1fr; }
  .prep-two-col     { grid-template-columns: 1fr; gap: 32px; }
  .prep-detail-grid { grid-template-columns: 1fr; }
  .lesson-img       { height: 220px; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .lessons__grid { grid-template-columns: 1fr 1fr; }
  .usp__grid { grid-template-columns: 1fr; }
  .usp__item { border-right: none; border-bottom: 1px solid var(--border); }
  .usp__item:last-child { border-bottom: none; }
  .pass__right   { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .guides__grid  { grid-template-columns: 1fr; }
  .hero__strip   { flex-wrap: wrap; }
  .hero__strip-item { flex: 0 0 50%; border-right: 1px solid rgba(255,255,255,0.08); }
  .hero__strip-item:nth-child(2) { border-right: none; }
  .cta-band__inner { flex-direction: column; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .mob-cta { display: flex; }
  body { padding-bottom: 68px; }
  .form-row { flex-direction: column; }
  .testims__grid { grid-template-columns: 1fr; }
  .bill-creds { grid-template-columns: 1fr 1fr; }
  /* Image & grid classes */
  .approach-grid { grid-template-columns: 1fr; }
  .lesson-img    { height: 200px; margin-bottom: 32px; }
  .bill-grid .bill-photo { aspect-ratio: 4/3; }
  /* Sub-nav scrollable on mobile */
  .sub-nav__inner { padding: 0 20px; }
  /* Test prep inline section padding */
  .prep-section { padding: 56px 0; }
}

@media (max-width: 480px) {
  .lessons__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__strip-item { flex: 0 0 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .bill-creds { grid-template-columns: 1fr; }
  .lesson-img { height: 180px; }
  .cta-band__btns { flex-direction: column; }
  .cta-band__btns .btn { width: 100%; justify-content: center; }
}
