/* ========================================
   Cork Driving Lessons — Unified Stylesheet
   Adapted from RSA School base for drivinglessoncork.ie
   Cork identity: deep teal accent, maritime warmth
   Last updated: 2026-03-28
   ======================================== */

/* --- CSS Variables --- */
:root {
  --bg-deep: #0a0e12;
  --bg-surface: #111820;
  --bg-elevated: #182028;
  --bg-subtle: #1e2830;
  --bg-warm: #12150f;
  --bg-accent-subtle: rgba(20, 140, 130, 0.06);
  --text-primary: #eef0f2;
  --text-secondary: #9da8b2;
  --text-muted: #5e6b78;
  --accent-red: #148c82;
  --accent-red-bright: #1aafa3;
  --accent-green: #2db88a;
  --accent-green-soft: rgba(45, 184, 138, 0.08);
  --accent-green-dim: rgba(45, 184, 138, 0.12);
  --accent-amber: #e6a817;
  --accent-amber-soft: rgba(230, 168, 23, 0.08);
  --accent-gold: #e8b84b;
  --accent-gold-soft: rgba(232, 184, 75, 0.1);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-medium: rgba(255, 255, 255, 0.1);
  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max-width: 1320px;
}

/* --- Base / Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); font-weight: 400; line-height: 1.65; color: var(--text-primary); background: var(--bg-deep); }
img { max-width: 100%; display: block; }
a { color: var(--accent-red-bright); text-decoration: none; }
a:hover { color: var(--text-primary); }
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }

/* --- Typography --- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

.breadcrumb { padding: 0.6rem 0; font-size: 0.72rem; color: var(--text-muted); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--text-secondary); }
.breadcrumb span { margin: 0 0.4em; }

.section { padding: 3.5rem 0; }
.section-alt { background: var(--bg-surface); }
.section-warm { background: var(--bg-warm); }
.section-label { font-family: var(--font-display); font-size: 0.78rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.16em; color: var(--text-muted); margin-bottom: 1.5rem; }
.section h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.12; letter-spacing: -0.025em; color: var(--text-primary); margin-bottom: 1rem; }
.section h2 em { font-style: normal; color: var(--accent-red-bright); }
.section-subtitle { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 2.5rem; max-width: 60ch; }
.prose { max-width: 65ch; font-size: 1.08rem; line-height: 1.7; color: var(--text-secondary); }
.prose p + p { margin-top: 1.25rem; }

/* --- Header (LOCKED) --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 130px;
  background: rgba(12, 12, 13, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
}
.nav-logo {
  height: 100px;
  width: auto;
}
.nav-logo-cork {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.7rem;
  color: var(--accent-green);
  letter-spacing: 2em;
  margin-left: 23px;
  text-transform: uppercase;
  margin-top: -4px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-phone {
  background: var(--accent-red);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.6em 1.2em;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.nav-phone:hover {
  background: var(--accent-red-bright);
}

.nav-cta { font-family: var(--font-display); font-weight: 600; font-size: 0.82rem; color: #fff; background: var(--accent-red); padding: 0.5em 1.1em; border-radius: 2px; }
.nav-cta:hover { background: var(--accent-red-bright); color: #fff; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 130px;
  left: 0;
  right: 0;
  background: rgba(12, 12, 13, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 2rem;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  text-decoration: none;
}

/* --- Hero: v3 Grid --- */
.hero { min-height: 80dvh; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 3rem; padding-top: 64px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse 80% 60% at 30% 40%, rgba(201,58,46,0.07), transparent 70%), radial-gradient(ellipse 50% 50% at 80% 70%, rgba(45,184,138,0.04), transparent); pointer-events: none; }
.hero-text { position: relative; z-index: 2; padding: 4rem 0 4rem 1.5rem; max-width: 600px; margin-left: auto; }
.hero-location { font-family: var(--font-display); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent-red-bright); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.75em; }
.hero-location::before { content: ''; width: 28px; height: 2px; background: var(--accent-red); }
.hero h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1.06; letter-spacing: -0.035em; color: var(--text-primary); margin-bottom: 1.5rem; }
.hero h1 em { font-style: normal; color: var(--accent-green); }
.hero-lead { font-size: 1.1rem; line-height: 1.7; color: var(--text-secondary); margin-bottom: 2rem; max-width: 50ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; margin-bottom: 2rem; }
.hero-image-col { position: relative; height: 100%; min-height: 500px; overflow: hidden; }
.hero-image-col img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-image-overlay { position: absolute; inset: 0; background: linear-gradient(to right, var(--bg-deep) 0%, rgba(12,12,13,0.4) 30%, transparent 60%); z-index: 1; pointer-events: none; }
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; }
.trust-google { display: flex; align-items: center; gap: 0.5rem; }
.trust-google img { height: 22px; width: auto; }
.trust-stars { color: var(--accent-gold); font-size: 1.3rem; letter-spacing: 0.05em; }
.trust-count { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--text-primary); }
.trust-count span { color: var(--text-muted); font-weight: 400; }
.trust-divider { width: 1px; height: 20px; background: var(--border-medium); }
.trust-badges { display: flex; align-items: center; gap: 0.75rem; font-family: var(--font-display); font-size: 0.88rem; font-weight: 500; color: var(--text-muted); }
.trust-badge { display: flex; align-items: center; gap: 0.35em; }
.trust-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-green); }

/* --- Hero: v1 Bold (homepage style for location pages) --- */
.hero-bold {
  position: relative; overflow: hidden; text-align: center;
  padding: 160px 1.5rem 4rem; min-height: 80dvh;
  display: flex; align-items: center; justify-content: center;
}
.hero-bold::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(45,184,138,0.06), transparent 70%),
              radial-gradient(ellipse 60% 50% at 30% 60%, rgba(201,58,46,0.04), transparent);
  pointer-events: none;
}
.hero-bold-content {
  position: relative; z-index: 2; max-width: 920px; margin: 0 auto;
}

/* --- Hero: v1 Fullwidth (legacy) --- */
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, var(--bg-deep) 0%, rgba(11,13,14,0.85) 40%, rgba(11,13,14,0.5) 70%, rgba(11,13,14,0.3) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-breadcrumb { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 1.5rem; padding-top: 24px; }
.hero-breadcrumb a { color: var(--text-muted); }
.hero-breadcrumb a:hover { color: var(--text-secondary); }
.hero-eyebrow { font-family: var(--font-display); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em; color: var(--accent-red-bright); margin-bottom: 1.25rem; }
.hero-sub { font-size: 1.1rem; line-height: 1.7; color: var(--text-secondary); max-width: 600px; margin: 0 auto 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.hero-trust-stars { color: var(--accent-gold); font-size: 1.3rem; letter-spacing: 0.1em; }
.hero-trust-text { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--text-primary); }
.hero-trust-text span { font-weight: 400; color: var(--text-muted); }
.hero-trust-sep { width: 1px; height: 18px; background: var(--border-medium); }
.hero-trust-badge { font-family: var(--font-display); font-size: 0.72rem; font-weight: 500; color: var(--text-muted); display: flex; align-items: center; gap: 0.3em; }
.hero-trust-badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent-green); }

/* --- Instructor Strip (v3) --- */
.instructor-strip { background: var(--bg-surface); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); padding: 2rem 0; overflow: hidden; }
.instructor-strip .container { display: flex; align-items: center; gap: 2.5rem; }
.instructor-strip-label { font-family: var(--font-display); font-size: 0.72rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); white-space: nowrap; flex-shrink: 0; }
.instructor-photos { display: flex; gap: 0.5rem; align-items: center; overflow-x: auto; flex: 1; }
.instructor-photos::-webkit-scrollbar { display: none; }
.instructor-photo { width: 58px; height: 58px; border-radius: 50%; overflow: hidden; border: 2px solid var(--bg-deep); flex-shrink: 0; background: var(--bg-elevated); }
.instructor-photo img { width: 100%; height: 100%; object-fit: cover; }
.instructor-strip-text { font-family: var(--font-display); font-size: 0.92rem; color: var(--text-secondary); flex-shrink: 0; }
.instructor-strip-text strong { color: var(--text-primary); }

/* --- Notice Banner (v1) --- */
.notice-banner { background: var(--accent-gold-soft); border-bottom: 1px solid rgba(232, 184, 75, 0.15); padding: 1rem 0; }
.notice-banner .container { display: flex; align-items: center; gap: 1rem; }
.notice-icon { font-size: 1.2rem; flex-shrink: 0; }
.notice-text { font-size: 0.95rem; color: var(--text-secondary); }
.notice-text strong { color: var(--text-primary); font-weight: 600; }
.notice-text a { color: var(--accent-gold); font-weight: 500; }

/* --- Services: v3 Grid --- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-subtle); margin-top: 2rem; }
.service-card { background: var(--bg-deep); padding: 2rem; position: relative; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 2rem; right: 2rem; height: 1px; background: var(--border-subtle); }
.service-card:hover { background: var(--bg-surface); }
.service-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--text-primary); margin-bottom: 0.6rem; line-height: 1.3; }
.service-card .price-tag { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; color: var(--accent-green); margin-bottom: 0.6rem; }
.service-card .price-tag small { font-size: 0.65em; font-weight: 400; color: var(--text-muted); }
.service-card p { font-size: 0.95rem; line-height: 1.6; color: var(--text-secondary); }
.service-card .service-link { display: inline-flex; align-items: center; gap: 0.4em; font-family: var(--font-display); font-weight: 500; font-size: 0.88rem; color: var(--accent-red-bright); margin-top: 0.75rem; }
.service-card .service-link::after { content: '\2192'; }

/* --- Services: v1 Scroll --- */
.services-scroll { display: flex; gap: 1rem; overflow-x: auto; padding: 2rem 0 1rem; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; width: 100%; }
.services-scroll::-webkit-scrollbar { height: 4px; }
.services-scroll::-webkit-scrollbar-track { background: var(--bg-subtle); }
.services-scroll::-webkit-scrollbar-thumb { background: var(--border-medium); border-radius: 2px; }
.service-card { flex: 0 0 300px; scroll-snap-align: start; padding: 2rem; background: var(--bg-elevated); border: 1px solid var(--border-subtle); transition: border-color 0.2s; }
.service-card:hover { border-color: var(--border-medium); }
.service-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--text-primary); margin-bottom: 0.5rem; line-height: 1.3; }
.service-price { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; color: var(--accent-green); margin-bottom: 0.5rem; }
.service-price small { font-size: 0.55em; font-weight: 400; color: var(--text-muted); }
.service-card p { font-size: 0.85rem; line-height: 1.6; color: var(--text-secondary); }
.service-link { display: inline-flex; align-items: center; gap: 0.3em; font-family: var(--font-display); font-size: 0.88rem; font-weight: 500; color: var(--accent-red-bright); margin-top: 0.75rem; }
.service-link::after { content: '\2192'; }

/* --- Test Centres --- */
.centres-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; margin-bottom: 2rem; }
.centre-card { padding: 1.75rem; background: var(--bg-elevated); border-top: 3px solid var(--accent-green); }
.centre-card.alt { border-top-color: var(--accent-gold); }
.centre-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--text-primary); margin-bottom: 0.5rem; }
.centre-card .addr { font-size: 0.92rem; color: var(--text-muted); line-height: 1.5; }
.centre-card .eircode { display: inline-block; margin-top: 0.4rem; font-family: var(--font-display); font-weight: 500; font-size: 0.75rem; padding: 0.15em 0.5em; }
.centre-card .eircode.green { color: var(--accent-green); background: var(--accent-green-soft); }
.centre-card .eircode.gold { color: var(--accent-gold); background: var(--accent-gold-soft); }
.centre-card .distance { font-family: var(--font-display); font-size: 0.78rem; color: var(--text-secondary); margin-top: 0.6rem; }

/* --- CTA Banner (v1) --- */
.cta-banner { background: var(--accent-red); padding: 3.5rem 0; text-align: center; }
.cta-banner h2 { color: #fff; margin-bottom: 0.75rem; font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 2rem; max-width: 50ch; margin-left: auto; margin-right: auto; }
.cta-banner .btn-book { font-size: 1.05rem; padding: 1em 2.2em; }
.cta-banner .cta-phone { display: block; margin-top: 1rem; font-family: var(--font-display); font-weight: 600; font-size: 0.88rem; color: rgba(255,255,255,0.7); }
.cta-banner .cta-phone a { color: #fff; }

/* --- Stories: v3 Featured Grid --- */
.story-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2rem; }
.story-card { padding: 2rem; background: var(--bg-elevated); position: relative; overflow: hidden; }
.story-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--accent-red); }
.story-stars { color: var(--accent-gold); font-size: 1.5rem; letter-spacing: 0.12em; margin-bottom: 1rem; }
.story-name { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--text-primary); }
.story-meta { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.75rem; margin-top: 0.2rem; }
.story-text { font-size: 1rem; line-height: 1.75; color: var(--text-secondary); }
.story-featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.story-featured-text { padding: 2.5rem; background: var(--bg-elevated); position: relative; }
.story-featured-text::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--accent-red); }
.story-featured-image { position: relative; min-height: 280px; overflow: hidden; }
.story-featured-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.story-featured-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(12,12,13,0.3), transparent); }
.story-closing { margin-top: 2rem; font-size: 1.05rem; color: var(--text-secondary); max-width: 65ch; border-left: 2px solid var(--accent-red); padding-left: 1.25rem; }

/* --- Stories: v1 Stacked --- */
.stories-stack { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.story-accent { background: var(--accent-red); }
.story-card:nth-child(2) .story-accent { background: var(--accent-green); }
.story-card:nth-child(3) .story-accent { background: var(--accent-gold); }
.story-body { padding: 2.25rem; }
.story-header { display: flex; align-items: baseline; gap: 0.75rem; margin-bottom: 0.6rem; flex-wrap: wrap; }

/* --- Pricing: v3 Grid --- */
.proof-top { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.proof-stat { text-align: center; padding: 2rem; background: var(--bg-elevated); }
.proof-stat-number { font-family: var(--font-display); font-weight: 800; font-size: 3rem; color: var(--text-primary); letter-spacing: -0.03em; line-height: 1; }
.proof-stat-number.green { color: var(--accent-green); }
.proof-stat-number.gold { color: var(--accent-gold); }
.proof-stat-label { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.5rem; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.pricing-column { background: var(--bg-elevated); padding: 2rem; }
.pricing-column h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border-subtle); }
.price-row { display: flex; justify-content: space-between; align-items: baseline; padding: 0.55em 0; border-bottom: 1px solid var(--border-subtle); }
.price-row:last-child { border-bottom: none; }
.price-label { font-size: 0.88rem; color: var(--text-secondary); }
.price-value { font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; color: var(--text-primary); }
.price-from { font-family: var(--font-display); font-weight: 800; font-size: 2.2rem; color: var(--accent-green); letter-spacing: -0.02em; line-height: 1; }
.price-from-label { font-size: 0.75rem; color: var(--text-muted); }
.pretest-banner { margin-top: 2rem; display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; align-items: center; padding: 1.5rem 2rem; background: var(--bg-elevated); border-left: 3px solid var(--accent-gold); }
.pretest-banner-icon { font-size: 2rem; }
.pretest-banner h4 { font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; color: var(--text-primary); margin-bottom: 0.3rem; }
.pretest-banner p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.5; }
.best-for { margin-top: 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.best-for-card { padding: 1.25rem; border: 1px solid var(--border-subtle); }
.best-for-card h4 { font-family: var(--font-display); font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.5rem; }
.best-for-card.positive h4 { color: var(--accent-green); }
.best-for-card.consider h4 { color: var(--accent-gold); }
.best-for-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

/* --- Pricing: v1 Table --- */
.pricing-table { width: 100%; border-collapse: collapse; margin-top: 2rem; table-layout: fixed; }
.pricing-table th { font-family: var(--font-display); font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); text-align: left; padding: 0.9rem 1.1rem; border-bottom: 2px solid var(--border-medium); }
.pricing-table th:first-child { width: 40%; }
.pricing-table th:not(:first-child) { text-align: right; }
.pricing-table td { padding: 0.9rem 1.1rem; border-bottom: 1px solid var(--border-subtle); font-size: 0.95rem; color: var(--text-secondary); }
.pricing-table td:not(:first-child) { text-align: right; font-family: var(--font-display); font-weight: 600; color: var(--text-primary); }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table .highlight td { background: var(--accent-green-soft); }
.pricing-table .highlight td:first-child { color: var(--text-primary); font-weight: 500; }
.pricing-headline { display: flex; gap: 3rem; margin-bottom: 2rem; flex-wrap: wrap; }
.pricing-headline-item { }
.pricing-headline-price { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; color: var(--accent-green); letter-spacing: -0.03em; line-height: 1; }
.pricing-headline-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.2rem; }

/* --- Pathways: v3 Grid --- */
.pathways-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-subtle); margin-top: 2rem; }
.pathway { background: var(--bg-deep); padding: 2rem; transition: background 0.25s ease; }
.pathway:hover { background: var(--bg-surface); }
.pathway-icon { font-size: 1.6rem; margin-bottom: 0.75rem; }
.pathway-label { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--text-primary); margin-bottom: 0.6rem; }
.pathway-body { font-size: 0.95rem; line-height: 1.6; color: var(--text-secondary); margin-bottom: 1rem; }
.pathway-action { font-family: var(--font-display); font-weight: 500; font-size: 0.88rem; color: var(--accent-red-bright); display: inline-flex; align-items: center; gap: 0.4em; }
.pathway-action::after { content: '\2192'; }

/* --- Pathways: v1 Compact --- */
.pathways-compact { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.pathway-c { padding: 1.5rem; background: var(--bg-elevated); border: 1px solid var(--border-subtle); transition: border-color 0.2s; }
.pathway-c:hover { border-color: var(--border-medium); }
.pathway-c-label { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--text-primary); margin-bottom: 0.5rem; }
.pathway-c-body { font-size: 0.95rem; line-height: 1.6; color: var(--text-secondary); margin-bottom: 0.75rem; }
.pathway-c-action { font-family: var(--font-display); font-size: 0.88rem; font-weight: 500; color: var(--accent-red-bright); display: inline-flex; align-items: center; gap: 0.3em; }
.pathway-c-action::after { content: '\2192'; }

/* --- FAQ: v3 Sidebar --- */
.faq-layout { display: grid; grid-template-columns: 5fr 3fr; gap: 3rem; margin-top: 2rem; }
.faq-item { border-bottom: 1px solid var(--border-subtle); }
.faq-question { font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; color: var(--text-primary); padding: 1.25rem 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; width: 100%; background: none; border: none; text-align: left; }
.faq-question:hover { color: var(--accent-red-bright); }
.faq-question .icon { font-size: 1.2rem; color: var(--text-muted); transition: transform 0.3s ease; flex-shrink: 0; margin-left: 1rem; }
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1); }
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 1.25rem; }
.faq-answer p { font-size: 0.98rem; line-height: 1.7; color: var(--text-secondary); }
.faq-sidebar { display: flex; flex-direction: column; gap: 1rem; }
.faq-sidebar-card { background: var(--bg-elevated); padding: 1.5rem; }
.faq-sidebar-card h4 { font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; color: var(--text-primary); margin-bottom: 0.5rem; }
.faq-sidebar-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; }
.faq-sidebar-card .phone-big { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--text-primary); display: block; margin-top: 0.5rem; }

/* --- FAQ: v1 Fullwidth --- */
.faq-q { font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; color: var(--text-primary); padding: 1.1rem 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; width: 100%; background: none; border: none; text-align: left; }
.faq-q:hover { color: var(--accent-red-bright); }
.faq-q .ic { font-size: 1.1rem; color: var(--text-muted); transition: transform 0.3s; flex-shrink: 0; margin-left: 1rem; }
.faq-item.open .faq-q .ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1); }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 1rem; }
.faq-a p { font-size: 0.9rem; line-height: 1.7; color: var(--text-secondary); max-width: 70ch; }

/* --- Image Break --- */
.image-break { position: relative; height: 320px; overflow: hidden; }
.image-break img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.image-break::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, var(--bg-deep), transparent 30%, transparent 70%, var(--bg-surface)); }
.image-break-content { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 2; }
.image-break-badge { background: rgba(12,12,13,0.85); backdrop-filter: blur(12px); padding: 1.5rem 2.5rem; text-align: center; border: 1px solid var(--border-medium); }
.image-break-badge .number { font-family: var(--font-display); font-weight: 800; font-size: 2.5rem; color: var(--accent-gold); letter-spacing: -0.02em; line-height: 1; }
.image-break-badge .label { font-family: var(--font-display); font-size: 0.78rem; font-weight: 500; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.3rem; }

/* --- Proof/Trust --- */
.local-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-top: 2rem; }
.test-centre-card { background: var(--bg-elevated); padding: 2rem; border-left: 3px solid var(--accent-green); margin-bottom: 1.5rem; }
.test-centre-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--text-primary); margin-bottom: 0.75rem; }
.test-centre-card .address { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }
.eircode { display: inline-block; margin-top: 0.5rem; font-family: var(--font-display); font-weight: 500; font-size: 0.78rem; color: var(--accent-green); background: var(--accent-green-soft); padding: 0.2em 0.6em; }
.l-plate-image { margin-top: 1.5rem; position: relative; border-radius: 4px; overflow: hidden; }
.l-plate-image img { width: 100%; border-radius: 4px; }
.areas-served { margin-top: 1.5rem; }
.areas-served h3 { font-family: var(--font-display); font-weight: 600; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 0.75rem; }
.area-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.area-tag { font-family: var(--font-display); font-size: 0.78rem; font-weight: 500; color: var(--text-secondary); background: var(--bg-subtle); padding: 0.3em 0.7em; }

.local-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 2rem; }
.areas-list { margin-top: 1.5rem; }
.areas-list h3 { font-family: var(--font-display); font-weight: 600; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 0.6rem; }

/* --- Buttons --- */
.btn { display: inline-flex; align-items: center; gap: 0.5em; font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; padding: 0.9em 1.8em; border: none; border-radius: 3px; cursor: pointer; transition: all 0.2s ease; }
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--accent-red); color: #fff; }
.btn-primary:hover { background: var(--accent-red-bright); color: #fff; }
.btn-ghost { background: transparent; color: var(--text-primary); border: 1px solid var(--border-medium); }
.btn-ghost:hover { border-color: var(--text-secondary); }
.btn-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.btn-outline:hover { border-color: rgba(255,255,255,0.4); color: #fff; }
.btn-book { background: var(--accent-green); color: #fff; }
.btn-book:hover { background: #34d49e; color: #fff; }
.btn-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.btn-outline:hover { border-color: rgba(255,255,255,0.4); color: #fff; }

/* --- Footer (LOCKED) --- */
footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 1.5rem 0;
  margin-top: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column h3 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0;
}

.footer-column a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  line-height: 2.2;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--text-primary);
}

.footer-column a.accent-link {
  color: var(--accent-green);
}

.footer-column a.accent-link:hover {
  color: var(--accent-green);
  opacity: 0.8;
}

.footer-logo-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-logo-cork {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.55rem;
  color: var(--accent-green);
  letter-spacing: 2em;
  margin-left: 15px;
  text-transform: uppercase;
  margin-top: -2px;
}
.footer-brand img, .footer-logo-block img {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-secondary);
  max-width: 280px;
  margin-top: 1rem;
  line-height: 1.6;
}

.footer-phone {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 1.5rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-phone:hover {
  color: var(--accent-red-bright);
}

.footer-address-accordion summary {
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
  list-style: none;
}
.footer-address-accordion summary::marker,
.footer-address-accordion summary::-webkit-details-marker { display: none; }
.footer-address-accordion summary::after { content: ' ▸'; }
.footer-address-accordion[open] summary::after { content: ' ▾'; }
.footer-address {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--text-primary);
}

.footer-legal-sep {
  color: var(--text-muted);
}

/* --- Animations & Keyframes --- */

/* --- Media Queries --- */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .pathways-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 6rem 1.5rem 2rem; max-width: 100%; margin: 0; }
  .hero-image-col { min-height: 300px; }
  .hero h1 { font-size: clamp(1.8rem, 6vw, 2.6rem); }
  .faq-layout { grid-template-columns: 1fr; }
  .local-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 768px) {
  .proof-top { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .local-split { grid-template-columns: 1fr; }
  .story-featured { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .pathways-grid { grid-template-columns: 1fr; }
  .pathways-compact { grid-template-columns: 1fr; }
  .best-for { grid-template-columns: 1fr; }
  .centres-grid { grid-template-columns: 1fr; }
  header { height: 100px; }
  .nav-logo { height: 80px; }
  .nav-phone { font-size: 0.9rem; padding: 0.5em 1em; }
  .nav-container { padding: 0 1rem; }
  .footer-container { padding: 0 1rem; }
  .footer-grid { gap: 1.5rem; }
}

/* === V2 LOCAL FIRST === */
header .header-container {
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

header .logo {
      width: 100px;
      height: auto;
      display: flex;
      align-items: center;
    }

header .logo img {
      width: 100%;
    }

header .header-cta {
      display: flex;
      gap: 1rem;
      align-items: center;
    }

header .phone-btn {
      background: var(--accent-red);
      color: white;
      padding: 0.7rem 1.5rem;
      border-radius: 4px;
      font-weight: 600;
      font-size: 0.9rem;
      transition: background 0.3s ease;
    }

header .phone-btn:hover {
      background: var(--accent-red-bright);
      color: white;
    }

header .menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--text-secondary);
    }

.hero-v2 {
      min-height: 50vh;
      background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.65) 100%), url('/images/hero.webp') center/cover no-repeat;
      background-color: var(--bg-deep);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 3rem 1.5rem;
      position: relative;
    }

.hero-v2 .breadcrumb {
      position: absolute;
      top: 2rem;
      left: 1.5rem;
      font-size: 0.85rem;
      color: var(--text-muted);
    }

.hero-v2 .breadcrumb a {
      color: var(--accent-red-bright);
    }

.hero-v2 .eyebrow {
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 1rem;
    }

.hero-v2 h1 {
      font-family: var(--font-display);
      font-size: 3.5rem;
      font-weight: 800;
      line-height: 1.1;
      text-align: center;
      margin-bottom: 1.5rem;
    }

.hero-v2 h1 .highlight {
      color: var(--accent-red);
    }

.hero-v2 .subtitle {
      font-size: 1.15rem;
      color: var(--text-secondary);
      text-align: center;
      max-width: 600px;
      margin-bottom: 2.5rem;
    }

.hero-v2 .cta-group {
      display: flex;
      gap: 1rem;
      justify-content: center;
      margin-bottom: 3rem;
      flex-wrap: wrap;
    }

.hero-v2 .btn-primary {
      background: var(--accent-green);
      color: white;
      padding: 1rem 2rem;
      border-radius: 4px;
      font-weight: 600;
      font-size: 1rem;
      transition: background 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      width: auto;
      max-width: 280px;
    }

.hero-v2 .btn-primary:hover {
      background: #1a8a5c;
      transform: translateY(-2px);
    }

.hero-v2 .btn-outline {
      background: transparent;
      color: var(--text-primary);
      padding: 1rem 2rem;
      border: 2px solid var(--border-medium);
      border-radius: 4px;
      font-weight: 600;
      font-size: 1rem;
      transition: border-color 0.3s ease, color 0.3s ease;
      cursor: pointer;
    }

.hero-v2 .btn-outline:hover {
      border-color: var(--accent-red-bright);
      color: var(--accent-red-bright);
    }

.hero-v2 .trust-badges {
      display: flex;
      gap: 2rem;
      justify-content: center;
      font-size: 0.9rem;
      color: var(--text-muted);
    }

.hero-v2 .badge-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

.hero-v2 .badge-icon {
      color: var(--accent-green);
    }

.test-centre-v2 {
      padding: 4rem 1.5rem;
      background: var(--bg-subtle);
    }

.test-centre-v2 .container {
      position: relative;
    }

.test-centre-v2-card {
      background: var(--bg-card);
      border-left: 4px solid var(--accent-green);
      padding: 2rem;
      border-radius: 8px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      animation: slideInUp 0.6s ease;
    }

.test-centre-v2-left h2 {
      font-family: var(--font-display);
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
    }

.test-centre-v2-left .info-item {
      margin-bottom: 1.5rem;
    }

.test-centre-v2-left .info-label {
      font-size: 0.85rem;
      text-transform: uppercase;
      font-weight: 600;
      letter-spacing: 1px;
      color: var(--text-muted);
      margin-bottom: 0.5rem;
    }

.test-centre-v2-left .info-value {
      font-size: 1.1rem;
      color: var(--text-primary);
    }

.test-centre-v2-right h3 {
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
    }

.test-centre-v2-right .context-list {
      list-style: none;
    }

.test-centre-v2-right .context-list li {
      margin-bottom: 1rem;
      padding-left: 1.5rem;
      position: relative;
      color: var(--text-secondary);
      line-height: 1.6;
    }

.test-centre-v2-right .context-list li:before {
      content: "→";
      position: absolute;
      left: 0;
      color: var(--accent-green);
      font-weight: 600;
    }

.services-v2 {
      padding: 4rem 1.5rem;
      background: var(--bg-deep);
    }

.services-v2-header {
      text-align: center;
      margin-bottom: 3rem;
    }

.services-v2-header h2 {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

.services-v2-tabs {
      display: flex;
      gap: 2rem;
      border-bottom: 1px solid var(--border-subtle);
      margin-bottom: 2rem;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

.services-v2-tab {
      padding: 1rem 0;
      background: none;
      border: none;
      color: var(--text-secondary);
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      position: relative;
      transition: color 0.3s ease;
    }

.services-v2-tab.active {
      color: var(--accent-green);
    }

.services-v2-tab.active:after {
      content: '';
      position: absolute;
      bottom: -1px;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--accent-green);
    }

.services-v2-tab:hover {
      color: var(--text-primary);
    }

.services-v2-content {
      display: none;
      animation: fadeIn 0.3s ease;
    }

.services-v2-content.active {
      display: block;
    }

.services-v2-card {
      background: var(--bg-card);
      padding: 2rem;
      border-radius: 8px;
      max-width: 700px;
      margin: 0 auto;
    }

.services-v2-card h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

.services-v2-card .price {
      font-size: 1.8rem;
      color: var(--accent-green);
      font-weight: 700;
      margin-bottom: 1.5rem;
    }

.services-v2-card .description {
      color: var(--text-secondary);
      margin-bottom: 1.5rem;
      line-height: 1.7;
    }

.services-v2-card .features {
      list-style: none;
      margin-bottom: 2rem;
    }

.services-v2-card .features li {
      padding: 0.5rem 0 0.5rem 1.5rem;
      position: relative;
      color: var(--text-secondary);
    }

.services-v2-card .features li:before {
      content: "✓";
      position: absolute;
      left: 0;
      color: var(--accent-green);
      font-weight: 700;
    }

.services-v2-card .btn-cta {
      background: var(--accent-green);
      color: white;
      padding: 0.9rem 1.8rem;
      border-radius: 4px;
      border: none;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s ease;
    }

.services-v2-card .btn-cta:hover {
      background: #1a8a5c;
    }

.services-v2-card .price-detail {
      font-size: 0.95rem;
      color: var(--text-secondary);
      margin-top: -1rem;
      margin-bottom: 1.5rem;
    }

.services-v2-card .price-dual {
      font-size: 1.2rem;
      color: var(--accent-green);
      font-weight: 700;
      margin-bottom: 1.5rem;
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
    }

.services-v2-card .price-dual span {
      display: inline-block;
    }

.stories-v2 {
      padding: 4rem 1.5rem;
      background: var(--bg-subtle);
    }

.stories-v2-header {
      text-align: center;
      margin-bottom: 3rem;
    }

.stories-v2-header h2 {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

.stories-v2-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      animation: fadeIn 0.6s ease;
    }

.stories-v2-card {
      background: var(--bg-card);
      padding: 2rem;
      border-radius: 8px;
      border-left: 4px solid;
      min-height: 300px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

.stories-v2-card.accent-red {
      border-left-color: var(--accent-red);
    }

.stories-v2-card.accent-green {
      border-left-color: var(--accent-green);
    }

.stories-v2-card.accent-gold {
      border-left-color: var(--accent-gold);
    }

.stories-v2-card .story-header {
      margin-bottom: 1.5rem;
    }

.stories-v2-card .learner-name {
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

.stories-v2-card .lesson-badge {
      display: inline-block;
      background: var(--bg-elevated);
      color: var(--text-secondary);
      padding: 0.3rem 0.8rem;
      border-radius: 12px;
      font-size: 0.75rem;
      text-transform: uppercase;
      font-weight: 600;
      margin-bottom: 1rem;
    }

.stories-v2-card .rating {
      color: var(--accent-gold);
      font-size: 0.9rem;
      margin-bottom: 1rem;
    }

.stories-v2-card .quote {
      color: var(--text-secondary);
      font-style: italic;
      line-height: 1.7;
    }

.pricing-v2 {
      padding: 2.5rem 1.5rem;
      background: var(--accent-green);
      color: white;
    }

.pricing-v2 .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      flex-wrap: wrap;
    }

.pricing-v2-items {
      display: flex;
      gap: 2rem;
      flex: 1;
      flex-wrap: wrap;
    }

.pricing-v2-item {
      font-size: 0.95rem;
      line-height: 1.6;
    }

.pricing-v2-item strong {
      display: block;
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 0.2rem;
    }

.pricing-v2-cta {
      background: white;
      color: var(--accent-green);
      padding: 0.8rem 1.6rem;
      border-radius: 4px;
      border: none;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s ease, transform 0.2s ease;
    }

.pricing-v2-cta:hover {
      background: var(--bg-elevated);
      color: white;
      transform: translateY(-2px);
    }

.pathways-v2 {
      padding: 4rem 1.5rem;
      background: var(--bg-deep);
    }

.pathways-v2-header {
      text-align: center;
      margin-bottom: 3rem;
    }

.pathways-v2-header h2 {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

.pathways-v2-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      max-width: 900px;
      margin: 0 auto;
    }

.pathways-v2-item {
      display: flex;
      gap: 1rem;
    }

.pathways-v2-item .icon {
      color: var(--accent-red);
      font-weight: 700;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

.pathways-v2-item-content h3 {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

.pathways-v2-item-content a {
      color: var(--accent-red-bright);
      font-weight: 600;
    }

.pathways-v2-item-content a:hover {
      color: var(--text-primary);
    }

.pathways-v2-item-content p {
      color: var(--text-muted);
      font-size: 0.9rem;
      margin-top: 0.3rem;
    }

.faq-v2 {
      padding: 4rem 1.5rem;
      background: var(--bg-subtle);
    }

.faq-v2-header {
      text-align: center;
      margin-bottom: 3rem;
    }

.faq-v2-header h2 {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

.faq-v2-tabs {
      display: flex;
      gap: 1.5rem;
      border-bottom: 1px solid var(--border-subtle);
      margin-bottom: 2rem;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      justify-content: center;
      flex-wrap: wrap;
    }

.faq-v2-tab {
      padding: 1rem 0;
      background: none;
      border: none;
      color: var(--text-secondary);
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      position: relative;
      transition: color 0.3s ease;
    }

.faq-v2-tab.active {
      color: var(--accent-green);
    }

.faq-v2-tab.active:after {
      content: '';
      position: absolute;
      bottom: -1px;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--accent-green);
    }

.faq-v2-content {
      display: none;
      animation: fadeIn 0.3s ease;
    }

.faq-v2-content.active {
      display: block;
    }

.faq-v2-container {
      max-width: 900px;
      margin: 0 auto;
    }

.faq-v2-item {
      margin-bottom: 1.5rem;
      border: 1px solid var(--border-subtle);
      border-radius: 4px;
      overflow: hidden;
    }

.faq-v2-question {
      background: var(--bg-elevated);
      padding: 1.3rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      transition: background 0.3s ease;
    }

.faq-v2-question:hover {
      background: var(--bg-card);
    }

.faq-v2-question.active {
      background: var(--bg-card);
      color: var(--accent-green);
    }

.faq-v2-question .toggle {
      font-size: 1.2rem;
      transition: transform 0.3s ease;
    }

.faq-v2-question.active .toggle {
      transform: rotate(180deg);
    }

.faq-v2-answer {
      display: none;
      background: var(--bg-deep);
      padding: 1.3rem;
      color: var(--text-secondary);
      line-height: 1.7;
    }

.faq-v2-answer.active {
      display: block;
    }

.cta-section {
      padding: 4rem 1.5rem;
      background: var(--bg-deep);
      text-align: center;
    }

.cta-section h2 {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 3rem;
    }

footer .footer-column {
      display: flex;
      flex-direction: column;
    }

footer .footer-column h3 {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      color: var(--text-primary);
    }

footer .footer-column ul {
      list-style: none;
    }

footer .footer-column li {
      margin-bottom: 0.8rem;
    }

footer .footer-column a {
      color: var(--text-secondary);
      font-size: 0.9rem;
      transition: color 0.3s ease;
    }

footer .footer-column a:hover {
      color: var(--accent-red-bright);
    }

.lead-form-section {
      padding: 4rem 1.5rem;
      background: var(--bg-subtle);
    }

.lead-form-card {
      background: var(--bg-card);
      padding: 2.5rem;
      border-radius: 8px;
      max-width: 700px;
      margin: 0 auto;
    }

.lead-form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

.lead-form-field {
      display: flex;
      flex-direction: column;
    }

.lead-form-field.full {
      grid-column: 1 / -1;
    }

.lead-form-label {
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: var(--text-primary);
    }

.lead-form-textarea {
      background: var(--bg-elevated);
      border: 1px solid var(--border-subtle);
      color: var(--text-primary);
      padding: 0.8rem;
      border-radius: 4px;
      font-family: var(--font-body);
      font-size: 0.95rem;
      transition: border-color 0.3s ease;
    }

.lead-form-textarea:focus {
      outline: none;
      border-color: var(--accent-green);
    }

.lead-form-textarea {
      resize: vertical;
      min-height: 100px;
    }

.lead-form-radio-group {
      display: flex;
      gap: 1.5rem;
    }

.lead-form-radio {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      cursor: pointer;
    }

.lead-form-radio input[type="radio"] {
      width: 18px;
      height: 18px;
      cursor: pointer;
      accent-color: var(--accent-green);
    }

.lead-form-submit {
      background: var(--accent-green);
      color: white;
      padding: 1rem;
      border: none;
      border-radius: 4px;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.3s ease, transform 0.2s ease;
      grid-column: 1 / -1;
    }

.lead-form-submit:hover {
      background: #1a8a5c;
      transform: translateY(-2px);
    }

.lead-form-status {
      margin-top: 1.5rem;
      padding: 1rem;
      border-radius: 4px;
      text-align: center;
      font-weight: 600;
    }

.status-success {
      background: var(--accent-green-soft);
      color: var(--accent-green);
    }

.captcha-error {
      color: var(--accent-red);
      font-size: 0.85rem;
      margin-top: 0.5rem;
    }

.hero-v2 h1 {
        font-size: 2.5rem;
      }

.test-centre-v2-card {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

.stories-v2-grid {
        grid-template-columns: 1fr;
      }

.pricing-v2 .container {
        flex-direction: column;
        align-items: stretch;
      }

.pricing-v2-items {
        justify-content: space-between;
      }

.pathways-v2-list {
        grid-template-columns: 1fr;
      }

.faq-v2-tabs {
        gap: 1rem;
      }

header .logo {
        width: 80px;
      }

header .menu-toggle {
        display: block;
      }

header .header-cta {
        gap: 0.5rem;
      }

header .phone-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
      }

.hero-v2 {
        height: 60vh;
        padding: 2rem 1rem;
      }

.hero-v2 h1 {
        font-size: 1.8rem;
      }

.hero-v2 .cta-group {
        flex-direction: column;
      }

.hero-v2 .btn-primary,

.hero-v2 .btn-outline {
        width: 100%;
      }

.hero-v2 .trust-badges {
        flex-direction: column;
        gap: 1rem;
      }

.services-v2-tabs {
        flex-direction: column;
        border-bottom: none;
        border-right: 1px solid var(--border-subtle);
        gap: 0;
      }

.services-v2-tab {
        padding: 0.8rem 1rem;
        text-align: left;
        border-bottom: 1px solid var(--border-subtle);
      }

.services-v2-tab.active:after {
        display: none;
      }

.services-v2-tab.active {
        background: var(--bg-elevated);
        padding-left: 0.5rem;
        border-left: 3px solid var(--accent-green);
      }

.lead-form-grid {
        grid-template-columns: 1fr;
      }
/* === V3B PROOF HEAVY === */
.hero-v3b {
      height: 100vh;
      background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-surface) 100%);
      display: grid;
      grid-template-columns: 1fr 380px;
      align-items: center;
      gap: 4rem;
      padding: 4rem 2rem;
      position: relative;
      overflow: hidden;
      max-width: 1200px;
      margin: 0 auto;
    }

.hero-v3b::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 50%;
      height: 100%;
      background: radial-gradient(circle at top right, rgba(26, 138, 92, 0.15), transparent);
      pointer-events: none;
    }

.hero-h1 {
      font-size: 3.5rem;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 1.5rem;
    }

.hero-h1 .location {
      color: var(--accent-red);
    }

.hero-subtitle {
      font-size: 1.2rem;
      color: var(--text-secondary);
      margin-bottom: 2rem;
      max-width: 500px;
      line-height: 1.7;
    }

.cta-primary, .cta-secondary {
      padding: 1rem 2rem;
      border-radius: 4px;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
    }

.cta-primary {
      background: var(--accent-red);
      color: white;
    }

.cta-primary:hover {
      background: var(--accent-red);
      opacity: 0.9;
    }

.cta-secondary {
      background: rgba(212, 168, 67, 0.2);
      color: var(--accent-gold);
      border: 1px solid var(--accent-gold);
    }

.cta-secondary:hover {
      background: var(--accent-gold);
      color: var(--bg-deep);
    }

.hero-badges {
      display: flex;
      gap: 1.5rem;
      margin-top: 2rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

.badge {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }

.badge-label {
      font-size: 0.75rem;
      color: var(--text-secondary);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

.badge-value {
      font-weight: 700;
      color: var(--accent-gold);
    }

.hero-proof-card {
      position: relative;
      background: var(--bg-card);
      border-left: 4px solid var(--accent-gold);
      padding: 2rem;
      max-width: 380px;
      border-radius: 4px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
      animation: slideInRight 0.8s ease-out 0.2s both;
      z-index: 3;
      justify-self: end;
    }

.proof-stars {
      color: var(--accent-gold);
      font-size: 1rem;
      margin-bottom: 0.75rem;
      letter-spacing: 0.1em;
    }

.proof-quote {
      font-size: 1.1rem;
      font-style: italic;
      margin-bottom: 1rem;
      line-height: 1.6;
      color: var(--text-primary);
    }

.proof-author {
      font-size: 0.9rem;
      color: var(--text-secondary);
    }

.proof-lesson {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-top: 0.5rem;
    }

.stats-strip {
      background: var(--accent-green);
      color: white;
      padding: 4rem 2rem;
      text-align: center;
    }

.stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      max-width: var(--max-width);
      margin: 0 auto;
    }

.stat-item {
      animation: fadeInUp 0.6s ease-out backwards;
    }

.stat-item:nth-child(1) { animation-delay: 0s; }

.stat-item:nth-child(2) { animation-delay: 0.1s; }

.stat-item:nth-child(3) { animation-delay: 0.2s; }

.stat-item:nth-child(4) { animation-delay: 0.3s; }

.stat-number {
      font-size: 2.5rem;
      font-weight: 800;
      font-family: var(--font-display);
      margin-bottom: 0.5rem;
    }

.stat-label {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-weight: 500;
    }

.services-v3b {
      padding: 6rem 2rem;
      background: var(--bg-surface);
    }

.services-container {
      max-width: var(--max-width);
      margin: 0 auto;
    }

.services-h2 {
      margin-bottom: 3rem;
      text-align: center;
    }

.accordion-list {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

.accordion-item {
      border-left: 3px solid rgba(255, 255, 255, 0.1);
      background: var(--bg-elevated);
      overflow: hidden;
      animation: fadeInUp 0.6s ease-out backwards;
    }

.accordion-item:nth-child(1) { animation-delay: 0s; }

.accordion-item:nth-child(2) { animation-delay: 0.1s; }

.accordion-item:nth-child(3) { animation-delay: 0.2s; }

.accordion-item:nth-child(4) { animation-delay: 0.3s; }

.accordion-item:nth-child(5) { animation-delay: 0.4s; }

.accordion-item:nth-child(6) { animation-delay: 0.5s; }

.accordion-item.active {
      border-left-color: var(--accent-green);
    }

.accordion-header {
      padding: 1.5rem 2rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: var(--bg-card);
      transition: background 0.3s ease;
    }

.accordion-header:hover {
      background: rgba(26, 138, 92, 0.1);
    }

.accordion-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--text-primary);
    }

.accordion-price {
      font-size: 1.1rem;
      color: var(--accent-green);
      font-weight: 700;
    }

.accordion-toggle {
      font-size: 1.5rem;
      color: var(--accent-green);
      transition: transform 0.3s ease;
    }

.accordion-item.active .accordion-toggle {
      transform: rotate(180deg);
    }

.accordion-list .accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      padding: 0 2rem;
    }

.accordion-list .accordion-item.active .accordion-content {
      max-height: 500px;
      padding: 1.5rem 2rem;
    }

.accordion-description {
      margin-bottom: 1rem;
      line-height: 1.7;
      color: var(--text-secondary);
    }

.accordion-features {
      list-style: none;
      margin-bottom: 1.5rem;
    }

.accordion-features li {
      padding: 0.5rem 0;
      padding-left: 1.5rem;
      position: relative;
      color: var(--text-secondary);
    }

.accordion-features li:before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--accent-green);
      font-weight: 700;
    }

.accordion-cta {
      background: var(--accent-green);
      color: white;
      padding: 0.75rem 1.5rem;
      border-radius: 4px;
      border: none;
      cursor: pointer;
      font-weight: 600;
      transition: opacity 0.3s ease;
    }

.accordion-cta:hover {
      opacity: 0.9;
    }

.testimonials-v3b {
      padding: 6rem 2rem;
      background: var(--bg-elevated);
    }

.testimonials-container {
      max-width: var(--max-width);
      margin: 0 auto;
    }

.testimonials-h2 {
      margin-bottom: 3rem;
      text-align: center;
    }

.featured-testimonial {
      background: var(--bg-card);
      padding: 3rem;
      border-radius: 4px;
      border-left: 4px solid var(--accent-gold);
      margin-bottom: 3rem;
      text-align: center;
      animation: fadeInUp 0.8s ease-out;
    }

.featured-quote-marks {
      font-size: 4rem;
      color: var(--accent-gold);
      opacity: 0.3;
      margin-bottom: 1rem;
      line-height: 0.8;
    }

.featured-review-text {
      font-size: 1.3rem;
      line-height: 1.8;
      margin-bottom: 1.5rem;
      color: var(--text-primary);
      font-style: italic;
    }

.featured-stars {
      color: var(--accent-gold);
      font-size: 1.2rem;
      margin-bottom: 1rem;
      letter-spacing: 0.15em;
    }

.featured-author {
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: var(--text-primary);
    }

.featured-lesson {
      font-size: 0.9rem;
      color: var(--text-secondary);
    }

.supporting-quotes {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }

.quote-card {
      background: var(--bg-elevated);
      padding: 1.5rem;
      border-radius: 4px;
      border-left: 3px solid var(--accent-green);
      animation: fadeInUp 0.6s ease-out backwards;
    }

.quote-card:nth-child(1) { animation-delay: 0.2s; }

.quote-card:nth-child(2) { animation-delay: 0.4s; }

.quote-card:nth-child(3) { animation-delay: 0.6s; }

.quote-stars {
      color: var(--accent-gold);
      font-size: 0.9rem;
      margin-bottom: 0.75rem;
      letter-spacing: 0.1em;
    }

.quote-text {
      font-size: 0.95rem;
      margin-bottom: 1rem;
      line-height: 1.6;
      color: var(--text-secondary);
    }

.quote-author {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-primary);
    }

.pricing-v3b {
      padding: 6rem 2rem;
      background: var(--bg-surface);
    }

.pricing-container {
      max-width: var(--max-width);
      margin: 0 auto;
    }

.pricing-h2 {
      margin-bottom: 3rem;
      text-align: center;
    }

.pricing-card {
      background: var(--bg-card);
      padding: 2rem;
      border-radius: 4px;
      border-top: 4px solid var(--accent-red);
      animation: fadeInUp 0.8s ease-out backwards;
    }

.pricing-card:nth-child(2) {
      border-top-color: var(--accent-green);
      animation-delay: 0.2s;
    }

.pricing-card:nth-child(1) {
      animation-delay: 0s;
    }

.pricing-title {
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
      color: var(--text-primary);
    }

.pricing-hour {
      font-size: 2rem;
      font-weight: 800;
      color: var(--accent-green);
      margin-bottom: 0.5rem;
    }

.pricing-per {
      font-size: 0.9rem;
      color: var(--text-secondary);
      margin-bottom: 2rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

.pricing-packages {
      list-style: none;
    }

.pricing-packages li {
      padding: 0.75rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      color: var(--text-secondary);
      font-size: 0.95rem;
    }

.pricing-packages li:last-child {
      border-bottom: none;
    }

.pricing-package-name {
      font-weight: 600;
      color: var(--text-primary);
    }

.pricing-package-price {
      color: var(--accent-green);
      font-weight: 700;
    }

.pricing-cta {
      width: 100%;
      padding: 1rem;
      margin-top: 2rem;
      background: var(--accent-red);
      color: white;
      border: none;
      border-radius: 4px;
      font-weight: 600;
      cursor: pointer;
      transition: opacity 0.3s ease;
    }

.pricing-cta:hover {
      opacity: 0.9;
    }

.trust-v3b {
      padding: 6rem 2rem;
      background: var(--bg-elevated);
    }

.trust-container {
      max-width: var(--max-width);
      margin: 0 auto;
    }

.trust-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      text-align: center;
    }

.trust-card {
      background: var(--bg-card);
      padding: 2rem;
      border-radius: 4px;
      animation: fadeInUp 0.6s ease-out backwards;
    }

.trust-card:nth-child(1) { animation-delay: 0s; }

.trust-card:nth-child(2) { animation-delay: 0.15s; }

.trust-card:nth-child(3) { animation-delay: 0.3s; }

.trust-card:nth-child(4) { animation-delay: 0.45s; }

.trust-icon {
      font-size: 3rem;
      margin-bottom: 1rem;
    }

.trust-title {
      font-size: 1.25rem;
      margin-bottom: 0.75rem;
      color: var(--text-primary);
    }

.trust-description {
      color: var(--text-secondary);
      font-size: 0.95rem;
      line-height: 1.6;
    }

.faq-v3b {
      padding: 6rem 2rem;
      background: var(--bg-surface);
    }

.faq-container {
      max-width: var(--max-width);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 3rem;
    }

.faq-h2 {
      grid-column: 1 / -1;
      margin-bottom: 2rem;
    }

.faq-list {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

.faq-q-text {
      font-weight: 600;
      color: var(--text-primary);
    }

.faq-toggle {
      font-size: 1.25rem;
      color: var(--accent-green);
      transition: transform 0.3s ease;
    }

.faq-item.active .faq-toggle {
      transform: rotate(180deg);
    }

.faq-a-text {
      color: var(--text-secondary);
      line-height: 1.7;
    }

.sidebar-card {
      background: var(--bg-elevated);
      padding: 1.5rem;
      border-radius: 4px;
      animation: fadeInUp 0.8s ease-out 0.3s both;
    }

.sidebar-title {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: var(--text-primary);
    }

.sidebar-stat {
      font-size: 2rem;
      font-weight: 800;
      color: var(--accent-green);
      margin-bottom: 0.25rem;
    }

.sidebar-label {
      font-size: 0.85rem;
      color: var(--text-secondary);
      margin-bottom: 1rem;
    }

.sidebar-link {
      color: var(--accent-green);
      font-weight: 600;
      font-size: 0.95rem;
    }

.sidebar-link:hover {
      color: var(--accent-red);
    }

.sidebar-phone {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--accent-red);
      margin-top: 1rem;
    }

.pathways-v3b {
      padding: 6rem 2rem;
      background: var(--bg-elevated);
    }

.pathways-container {
      max-width: var(--max-width);
      margin: 0 auto;
    }

.pathways-h2 {
      margin-bottom: 3rem;
      text-align: center;
    }

.pathway-card {
      background: var(--bg-card);
      padding: 2rem;
      border-radius: 4px;
      text-align: center;
      border-top: 3px solid var(--accent-green);
      animation: fadeInUp 0.6s ease-out backwards;
      transition: transform 0.3s ease;
    }

.pathway-card:nth-child(1) { animation-delay: 0s; }

.pathway-card:nth-child(2) { animation-delay: 0.15s; }

.pathway-card:nth-child(3) { animation-delay: 0.3s; }

.pathway-card:hover {
      transform: translateY(-5px);
    }

.pathway-title {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
      color: var(--text-primary);
    }

.pathway-description {
      color: var(--text-secondary);
      font-size: 0.95rem;
      margin-bottom: 1.5rem;
      line-height: 1.6;
    }

.pathway-link {
      color: var(--accent-red-bright);
      font-weight: 600;
      font-size: 0.95rem;
    }

.pathway-link:hover {
      color: var(--accent-red);
    }

.hero-v3b { height: auto; padding: 2rem 1rem; grid-template-columns: 1fr; }

.hero-proof-card { max-width: 100%; margin-top: 2rem; justify-self: center; }

.stats-grid { grid-template-columns: 1fr 1fr; }

.stat-number { font-size: 1.75rem; }

.faq-container { grid-template-columns: 1fr; }

/* ========================================
   HERO PATTERNS (5 VARIANTS) & V2 TABBED COMPONENTS
   Added: 2026-03-22
   ======================================== */

/* --- HERO PATTERN A: .hero-v1 (Text-only, left-aligned) --- */
.hero.hero-v1 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8rem 2rem 4rem;
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.55)), url('/images/hero.webp') center/cover no-repeat;
  background-color: var(--bg-deep);
  position: relative;
}

.hero-v1 .hero-text {
  max-width: 700px;
  margin: 0;
  padding: 0;
}

.hero-v1 .hero-location {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-green);
  margin-bottom: 1.5rem;
  display: block;
}

.hero-v1 h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.hero-v1 h1 em {
  font-style: normal;
  color: var(--accent-red-bright);
}

.hero-v1 .hero-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 650px;
}

.hero-v1 .hero-ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-v1 .btn {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.hero-v1 .btn-primary {
  background: var(--accent-red-bright);
  color: #fff;
}

.hero-v1 .btn-primary:hover {
  background: var(--accent-red);
  transform: translateY(-2px);
}

.hero-v1 .btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
}

.hero-v1 .btn-ghost:hover {
  background: var(--bg-elevated);
  border-color: var(--border-medium);
}

.hero-v1 .hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hero-v1 .trust-google {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-v1 .trust-stars {
  font-size: 0.95rem;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
}

.hero-v1 .trust-count {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.hero-v1 .trust-count strong {
  color: var(--text-primary);
  font-weight: 700;
}

.hero-v1 .trust-divider {
  width: 1px;
  height: 24px;
  background: var(--border-medium);
}

.hero-v1 .trust-badges {
  display: flex;
  gap: 0.75rem;
}

.hero-v1 .trust-badge {
  display: inline-block;
  background: var(--bg-elevated);
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  border: 1px solid var(--border-subtle);
}

/* --- HERO PATTERN B: .hero-v2 (Centred text) --- */
.hero.hero-v2 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  background: var(--bg-deep);
  position: relative;
}

.hero-v2 .hero-text-centred {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.hero-v2 .hero-location {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-green);
  margin-bottom: 1.5rem;
  display: block;
}

.hero-v2 h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.hero-v2 h1 em {
  font-style: normal;
  color: var(--accent-red-bright);
}

.hero-v2 .hero-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 100%;
}

.hero-v2 .hero-ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-v2 .btn {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.hero-v2 .btn-primary {
  background: var(--accent-red-bright);
  color: #fff;
}

.hero-v2 .btn-primary:hover {
  background: var(--accent-red);
  transform: translateY(-2px);
}

.hero-v2 .btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
}

.hero-v2 .btn-ghost:hover {
  background: var(--bg-elevated);
  border-color: var(--border-medium);
}

.hero-v2 .hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.hero-v2 .trust-google {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-v2 .trust-stars {
  font-size: 0.95rem;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
}

.hero-v2 .trust-count {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.hero-v2 .trust-count strong {
  color: var(--text-primary);
  font-weight: 700;
}

.hero-v2 .trust-divider {
  width: 1px;
  height: 24px;
  background: var(--border-medium);
}

.hero-v2 .trust-badges {
  display: flex;
  gap: 0.75rem;
}

.hero-v2 .trust-badge {
  display: inline-block;
  background: var(--bg-elevated);
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  border: 1px solid var(--border-subtle);
}

/* --- HERO PATTERN C: .hero-v3b (Image + text overlay, 2 columns) --- */
.hero.hero-v3b {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  padding: 0;
  background: var(--bg-deep);
}

.hero-v3b .hero-image-col {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.hero-v3b .hero-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-v3b .hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(12, 12, 13, 0.7), rgba(45, 184, 138, 0.1));
  z-index: 1;
}

.hero-v3b .hero-text-overlay {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
  position: relative;
  z-index: 2;
}

.hero-v3b .hero-location {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-green);
  margin-bottom: 1rem;
  display: block;
}

.hero-v3b h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.hero-v3b h1 em {
  font-style: normal;
  color: var(--accent-red-bright);
}

.hero-v3b .hero-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 550px;
}

.hero-v3b .quote-overlay {
  background: var(--bg-elevated);
  border-left: 3px solid var(--accent-red-bright);
  padding: 1.5rem;
  margin-top: 2rem;
  max-width: 550px;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* --- HERO PATTERN D: .hero (Text left + image right) --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  padding: 0;
  background: var(--bg-deep);
}

.hero .hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
  position: relative;
  z-index: 2;
}

.hero .hero-location {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-green);
  margin-bottom: 1rem;
  display: block;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent-red-bright);
}

.hero .hero-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 550px;
}

.hero .hero-ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero .btn {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.hero .btn-primary {
  background: var(--accent-red-bright);
  color: #fff;
}

.hero .btn-primary:hover {
  background: var(--accent-red);
  transform: translateY(-2px);
}

.hero .btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
}

.hero .btn-ghost:hover {
  background: var(--bg-elevated);
  border-color: var(--border-medium);
}

.hero .hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hero .trust-google {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero .trust-stars {
  font-size: 0.95rem;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
}

.hero .trust-count {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.hero .trust-count strong {
  color: var(--text-primary);
  font-weight: 700;
}

.hero .trust-divider {
  width: 1px;
  height: 24px;
  background: var(--border-medium);
}

.hero .trust-badges {
  display: flex;
  gap: 0.75rem;
}

.hero .trust-badge {
  display: inline-block;
  background: var(--bg-elevated);
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  border: 1px solid var(--border-subtle);
}

.hero .hero-image-col {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.hero .hero-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(12, 12, 13, 0.6), rgba(45, 184, 138, 0.08));
  z-index: 1;
}

/* --- HERO PATTERN E: .hero-bg (Container-based with badge cards) --- */
.hero-bg {
  padding: 4rem 2rem;
  background: var(--bg-deep);
}

.hero-bg .container {
  position: relative;
}

.hero-bg .breadcrumb {
  margin-bottom: 2rem;
}

.hero-bg .eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-green);
  margin-bottom: 1rem;
  display: block;
}

.hero-bg h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.hero-bg h1 em {
  font-style: normal;
  color: var(--accent-red-bright);
}

.hero-bg .hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 700px;
}

.hero-bg .trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.hero-bg .badge {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  padding: 1.5rem;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
}

.hero-bg .badge:hover {
  background: var(--bg-subtle);
  border-color: var(--accent-green);
}

.hero-bg .badge-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: block;
}

.hero-bg .badge-value {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--accent-red-bright);
  display: block;
}

/* ========================================
   V2 TABBED COMPONENTS
   ======================================== */

/* --- SERVICES V2 TABBED --- */
.services-v2-tabbed {
  margin-top: 2.5rem;
}

.services-v2-tabbed .tab-nav {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 0;
  flex-wrap: wrap;
}

.services-v2-tabbed .tab-btn {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--text-secondary);
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.services-v2-tabbed .tab-btn:hover {
  color: var(--text-primary);
}

.services-v2-tabbed .tab-btn.active {
  color: var(--text-primary);
  border-bottom-color: var(--accent-red-bright);
  background: transparent;
}

.services-v2-tabbed .tab-content {
  display: none;
  animation: fadeIn 0.3s ease-in;
}

.services-v2-tabbed .tab-content.active {
  display: block;
}

.services-v2-tabbed .tab-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.services-v2-tabbed .price-tag {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-red-bright);
  margin-bottom: 1rem;
}

.services-v2-tabbed .price-tag small {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-secondary);
  display: block;
  margin-top: 0.25rem;
}

.services-v2-tabbed .tab-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.services-v2-tabbed .service-link {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--accent-red-bright);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.services-v2-tabbed .service-link:hover {
  color: var(--accent-red);
}

/* --- PRICING V2 COMPACT --- */
.pricing-v2-compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.pricing-v2-compact .price-item {
  background: var(--bg-elevated);
  padding: 2rem;
  border-radius: 4px;
  border: 1px solid var(--border-subtle);
  text-align: center;
  transition: all 0.3s ease;
}

.pricing-v2-compact .price-item:hover {
  background: var(--bg-subtle);
  border-color: var(--accent-green);
  transform: translateY(-4px);
}

.pricing-v2-compact .label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-v2-compact .price {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-red-bright);
}

/* --- FAQ V2 TABBED --- */
.faq-v2-tabbed {
  margin-top: 2.5rem;
}

.faq-v2-tabbed .faq-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 0;
  flex-wrap: wrap;
}

.faq-v2-tabbed .faq-tab-btn {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--text-secondary);
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-v2-tabbed .faq-tab-btn:hover {
  color: var(--text-primary);
}

.faq-v2-tabbed .faq-tab-btn.active {
  color: var(--text-primary);
  border-bottom-color: var(--accent-red-bright);
}

.faq-v2-tabbed .faq-tab-content {
  display: none;
  animation: fadeIn 0.3s ease-in;
}

.faq-v2-tabbed .faq-tab-content.active {
  display: block;
}

.faq-v2-tabbed .faq-item {
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.5rem 0;
  transition: all 0.3s ease;
}

.faq-v2-tabbed .faq-item.open {
  background: transparent;
}

.faq-v2-tabbed .faq-question {
  width: 100%;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-v2-tabbed .faq-question:hover {
  color: var(--accent-red-bright);
}

.faq-v2-tabbed .faq-question .icon {
  display: inline-block;
  font-size: 1.5rem;
  color: var(--accent-green);
  transition: transform 0.3s ease;
  margin-left: 1rem;
  flex-shrink: 0;
}

.faq-v2-tabbed .faq-item.open .faq-question .icon {
  transform: rotate(45deg);
}

.faq-v2-tabbed .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text-secondary);
}

.faq-v2-tabbed .faq-item.open .faq-answer {
  max-height: 500px;
  padding-top: 1.5rem;
}

.faq-v2-tabbed .faq-answer p {
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

/* --- IMAGE BREAK --- */
.image-break {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
  margin: 3rem 0;
  background: var(--bg-elevated);
}

.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-break-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 2rem;
  z-index: 2;
}

.image-break-badge {
  background: rgba(12, 12, 13, 0.85);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 4px;
  text-align: center;
  border: 1px solid var(--border-subtle);
  min-width: 140px;
}

.image-break-badge .number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-red-bright);
  display: block;
}

.image-break-badge .label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 0.5rem;
  display: block;
}

/* --- INSTRUCTOR STRIP --- */
.instructor-strip {
  background: var(--bg-surface);
  padding: 2rem 0;
  margin: 2rem 0;
}

.instructor-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.instructor-strip-label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

.instructor-photos {
  display: flex;
  gap: -0.75rem;
  align-items: center;
}

.instructor-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border-medium);
  overflow: hidden;
  background: var(--bg-elevated);
  flex-shrink: 0;
  margin-left: -0.75rem;
}

.instructor-photo:first-child {
  margin-left: 0;
}

.instructor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instructor-strip-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.instructor-strip-text strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* --- ANIMATIONS --- */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .hero.hero-v1,
  .hero.hero-v2 {
    padding: 6rem 1.5rem 3rem;
  }

  .hero.hero-v3b,
  .hero {
    flex-direction: column;
  }

  .hero-v3b .hero-text-overlay,
  .hero .hero-text {
    padding: 3rem 1.5rem;
  }

  .hero-v3b .hero-image-col,
  .hero .hero-image-col {
    min-height: 300px;
  }

  .services-v2-tabbed .tab-nav,
  .faq-v2-tabbed .faq-tabs {
    flex-direction: row;
    gap: 0.5rem;
  }

  .services-v2-tabbed .tab-btn,
  .faq-v2-tabbed .faq-tab-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .pricing-v2-compact {
    grid-template-columns: 1fr;
  }

  .hero-v1 .hero-ctas,
  .hero-v2 .hero-ctas,
  .hero .hero-ctas {
    flex-direction: column;
  }

  .hero-v1 .btn,
  .hero-v2 .btn,
  .hero .btn {
    width: 100%;
    text-align: center;
  }

  .hero-v1 .hero-trust,
  .hero-v2 .hero-trust,
  .hero .hero-trust {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-v2 .hero-trust {
    align-items: center;
  }

  .hero-v1 .trust-divider,
  .hero-v2 .trust-divider,
  .hero .trust-divider {
    display: none;
  }

  .instructor-strip .container {
    flex-direction: column;
    gap: 1rem;
  }

  .instructor-strip-label,
  .instructor-strip-text {
    white-space: normal;
  }
}

.featured-testimonial { padding: 1.5rem; }

/* ============================================================
   Responsive Grid Utilities
   Used by 11ty component templates instead of inline grid styles
   ============================================================ */

/* 2-column grids */
.grid-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-2col-sm { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.grid-2col-wide { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; }

/* 3-column grids */
.grid-3col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-3col-sm { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* Sidebar layouts */
.faq-sidebar-layout { display: grid; grid-template-columns: 300px 1fr; gap: 3rem; align-items: start; }

/* Case study with image */
.cs-with-image { display: grid; grid-template-columns: 1fr 280px; min-height: 200px; }

/* Pricing 2-col cards */
.grid-pricing-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3rem; }

/* Hero trust indicators */
.grid-trust-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; text-align: center; }

/* Flex headline pricing */
.flex-headline-pricing { display: flex; gap: 3rem; flex-wrap: wrap; }

@media (max-width: 768px) {
  .grid-2col,
  .grid-2col-sm,
  .grid-2col-wide,
  .grid-3col,
  .grid-3col-sm,
  .faq-sidebar-layout,
  .cs-with-image,
  .grid-pricing-cards,
  .grid-trust-2col { grid-template-columns: 1fr; }

  .flex-headline-pricing { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .grid-2col, .grid-2col-sm, .grid-3col, .grid-3col-sm { gap: 1rem; }
}

/* ========================================
   Contact Form Component
   Prefix: .lead-form
   ======================================== */

.lead-form-section {
  padding: 4rem 0;
  background: var(--bg-deep);
}

.lead-form-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.lead-form-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.lead-form-header h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.lead-form-header p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.lead-form { width: 100%; }

.lead-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.lead-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lead-form-field.full { grid-column: 1 / -1; }

.lead-form-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.4;
}

.lead-form-input,
.lead-form-select,
.lead-form-textarea {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.5;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.lead-form-input::placeholder,
.lead-form-select::placeholder {
  color: var(--text-muted);
}

.lead-form-input:focus,
.lead-form-select:focus,
.lead-form-textarea:focus {
  outline: none;
  border-color: var(--accent-green);
  background: var(--bg-elevated);
}

.lead-form-select {
  cursor: pointer;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%23a8a49d" d="M6 9L1 4h10z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.lead-form-textarea {
  resize: vertical;
  min-height: 80px;
  font-family: var(--font-body);
}

.lead-form-radio-group {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.lead-form-radio {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.lead-form-radio input[type="radio"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-medium);
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.lead-form-radio input[type="radio"]:hover {
  border-color: var(--accent-green);
}

.lead-form-radio input[type="radio"]:checked {
  border-color: var(--accent-green);
  background: var(--accent-green);
  box-shadow: inset 0 0 0 3px #fff;
}

.lead-form-radio span { line-height: 1.4; }

.lead-form-captcha { grid-column: 1 / -1; }

.captcha-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: flex-start;
}

.captcha-row .lead-form-label { grid-column: 1 / -1; }
.captcha-input { width: 100px; }

.captcha-error {
  color: var(--accent-red);
  font-size: 0.85rem;
  margin-top: 0.5rem;
  grid-column: 1 / -1;
}

.lead-form-submit {
  grid-column: 1 / -1;
  background: var(--accent-green);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.2s ease, background-color 0.2s ease;
  text-transform: none;
  letter-spacing: 0;
}

.lead-form-submit:hover { filter: brightness(1.1); }
.lead-form-submit:active { filter: brightness(0.95); }

.lead-form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.lead-form-status {
  margin-top: 2rem;
  padding: 1.25rem;
  border-radius: 8px;
  text-align: center;
  display: none;
}

.lead-form-status.show { display: block; }

.status-success {
  background: rgba(45, 184, 138, 0.1);
  border: 1px solid var(--accent-green);
  color: var(--accent-green);
  padding: 0;
  margin: 0;
  line-height: 1.6;
}

.status-error {
  background: rgba(201, 58, 46, 0.1);
  border: 1px solid var(--accent-red);
  color: var(--accent-red);
  padding: 0;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .lead-form-grid { grid-template-columns: 1fr; }
  .lead-form-field.full { grid-column: 1; }
  .lead-form-card { padding: 1.5rem; border-radius: 10px; }
  .lead-form-header h2 { font-size: 1.5rem; }
  .lead-form-radio-group { gap: 1.5rem; }
  .captcha-row { grid-template-columns: 1fr; }
  .captcha-input { width: 100%; }
}

@media (max-width: 480px) {
  .lead-form-section { padding: 2rem 0; }
  .lead-form-card { padding: 1.25rem; }
  .lead-form-header h2 { font-size: 1.25rem; }
  .lead-form-header p { font-size: 0.9rem; }
  .lead-form-grid { gap: 1rem; }
  .lead-form-radio-group { gap: 1rem; }
}

/* ========================================
   HOMEPAGE
   ======================================== */

/* === Hero === */
.hero {
  min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 160px 1.5rem 80px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 40%, rgba(45, 184, 138, 0.06), transparent 70%);
  pointer-events: none;
}
/* === Homepage Hero (editorial style) === */
.hero-content { position: relative; z-index: 2; max-width: 960px; margin: 0 auto; text-align: center; }

/* Hero image divider */
.hero-image-divider {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.25rem;
}
.hero .hero-image-divider img,
.hero-image-divider img {
  width: auto !important;
  height: 150px !important;
  object-fit: cover !important;
  object-position: top !important;
  position: relative;
  z-index: 2;
  margin-bottom: 0 !important;
}
.hero-divider-line {
  width: 100%;
  max-width: 480px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(45, 184, 138, 0.5), transparent);
  position: relative;
  z-index: 1;
}

/* Red uppercase label */
.hero .hero-label,
.hero-label {
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--accent-red-bright, #e74c3c);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

/* Mixed-weight headline */
.hero-headline {
  font-family: var(--font-display); line-height: 1.15; letter-spacing: -0.03em;
  margin-bottom: 2.5rem; max-width: 920px; margin-left: auto; margin-right: auto;
}
.hero-big {
  font-weight: 800; font-size: clamp(2.2rem, 5vw, 3.8rem); color: var(--text-primary);
}
.hero-light {
  font-weight: 400; font-size: clamp(1.1rem, 2.4vw, 1.7rem); color: var(--text-muted);
  font-style: italic;
}
.hero-green {
  font-weight: 800; font-size: clamp(1.6rem, 3.8vw, 3.8rem); color: var(--accent-green) !important;
  font-style: normal;
}
.hero-green-dot {
  font-weight: 800; font-size: clamp(2.8rem, 5.5vw, 4.4rem); color: var(--accent-green);
}
.hero-headline span.hero-big:nth-child(5) {
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  white-space: nowrap;
}

/* Search bar */
.hero-search-bar {
  display: flex; align-items: center; max-width: 580px; margin: 0 auto 2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px; overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.hero-search-bar:focus-within {
  border-color: rgba(45, 184, 138, 0.3);
  box-shadow: 0 0 30px rgba(45, 184, 138, 0.06), 0 4px 20px rgba(0,0,0,0.2);
}
.hero-search-icon {
  display: flex; align-items: center; justify-content: center;
  padding-left: 1.25rem; color: var(--text-muted); flex-shrink: 0;
}
.hero-search-input {
  flex: 1; background: transparent; border: none; outline: none;
  color: var(--text-primary); font-size: 1rem; font-family: var(--font-body);
  padding: 1em 0.75em;
}
.hero-search-input::placeholder { color: var(--text-muted); }
.hero-search-btn {
  background: var(--accent-green); color: #fff; border: none;
  font-family: var(--font-display); font-weight: 600; font-size: 0.92rem;
  padding: 0.75em 1.75em; margin: 5px; border-radius: 100px;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
  white-space: nowrap; flex-shrink: 0;
}
.hero-search-btn:hover { background: var(--accent-green-bright, #34d399); transform: scale(1.03); }
.hero-search-btn:active { transform: scale(0.97); }

/* Animated background orbs */
.hero-bg-orbs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.25; will-change: transform; }
.orb-green { width: 320px; height: 320px; background: var(--accent-green); top: 15%; right: 10%; animation: drift1 22s ease-in-out infinite; }
.orb-amber { width: 280px; height: 280px; background: #f59e0b; top: 40%; left: 50%; transform: translateX(-50%); animation: drift3 25s ease-in-out infinite; }
.orb-red { width: 260px; height: 260px; background: var(--accent-red); bottom: 15%; left: 8%; animation: drift2 28s ease-in-out infinite; }
@keyframes drift1 { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(-40px, 25px) scale(1.05); } 66% { transform: translate(20px, -15px) scale(0.95); } }
@keyframes drift2 { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(25px, -35px) scale(0.95); } 66% { transform: translate(-20px, 20px) scale(1.05); } }
@keyframes drift3 { 0%, 100% { transform: translateX(-50%) translate(0, 0) scale(1); } 33% { transform: translateX(-50%) translate(30px, -20px) scale(1.05); } 66% { transform: translateX(-50%) translate(-25px, 30px) scale(0.95); } }
@media (prefers-reduced-motion: reduce) { .orb { animation: none !important; } }

/* sr-only utility */
.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; }

/* Trust pills */
.hero-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-bottom: 2rem; }
.hero-pill {
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 500; color: var(--text-secondary);
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px; padding: 0.55em 1.15em;
  display: flex; align-items: center; gap: 0.45em;
}
.hero-pill-icon { color: var(--accent-gold, #f59e0b); flex-shrink: 0; }

/* Instructor avatars row */
.hero-instructors {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  margin-top: 0.5rem;
}
.hero-instructor-avatars {
  display: flex;
}
.hero-instructor-avatars img {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--bg-primary, #111);
  object-fit: cover; margin-left: -18px;
}
.hero-instructor-avatars img:first-child { margin-left: 0; }
.hero-instructor-text {
  font-family: var(--font-display); font-size: 0.85rem; color: var(--text-muted);
}

/* Hero contact line */
.hero-contact-line {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  margin-top: 1.5rem;
}
.hero-phone {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  color: var(--accent-green); text-decoration: none;
  transition: color 0.2s;
}
.hero-phone:hover { color: var(--accent-green-bright, #34d399); }
.hero-phone svg { flex-shrink: 0; }

/* Hero responsive */
@media (max-width: 768px) {
  .hero, .hero-bold { padding: 120px 1.25rem 60px; min-height: auto; }
  .hero-headline { max-width: 100%; }
  .hero-headline span.hero-big:nth-child(5) { white-space: normal; font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .hero-big { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .hero-light { font-size: clamp(0.95rem, 3.5vw, 1.3rem); }
  .hero-green { font-size: clamp(1.3rem, 5.5vw, 2rem); }
  .hero-green-dot { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .hero-search-bar { max-width: 100%; }
  .hero-instructors { flex-direction: column; gap: 0.5rem; }
  .hero-instructor-avatars img { width: 36px; height: 36px; margin-left: -14px; }
  .hero-instructor-avatars img:first-child { margin-left: 0; }
  .orb-green { width: 200px; height: 200px; }
  .orb-amber { width: 180px; height: 180px; }
  .orb-red { width: 160px; height: 160px; }
}
@media (max-width: 480px) {
  .hero, .hero-bold { padding: 100px 1rem 48px; }
  .hero-headline { margin-bottom: 1.75rem; }
  .hero-label { font-size: 0.72rem; margin-bottom: 1rem; }
  .hero-pills { gap: 0.4rem; flex-direction: column; align-items: center; }
  .hero-pill { font-size: 0.72rem; padding: 0.4em 0.85em; }
  .hero-search-btn { padding: 0.65em 1.25em; font-size: 0.85rem; }
  .hero-instructor-avatars img { width: 32px; height: 32px; margin-left: -12px; }
  .hero-instructor-avatars img:first-child { margin-left: 0; }
  .hero-instructor-text { font-size: 0.78rem; }
  .orb-green { width: 150px; height: 150px; top: 5%; right: 0; }
  .orb-amber { width: 130px; height: 130px; }
  .orb-red { width: 120px; height: 120px; bottom: 10%; left: 0; }
}

/* === AI Search Results === */
.hero-search-results {
  max-width: 580px; margin: 0 auto 1.5rem; position: relative; z-index: 2;
}
.chat-msg {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px; padding: 1.25rem 1.5rem;
  text-align: left; position: relative;
  animation: fadeSlideUp 0.3s ease;
}
.chat-msg-close {
  position: absolute; top: 0.5rem; right: 0.75rem;
  background: none; border: none; color: var(--text-muted);
  font-size: 1.4rem; cursor: pointer; line-height: 1; padding: 0.25rem;
}
.chat-msg-close:hover { color: var(--text-primary); }
.chat-msg-text {
  font-family: var(--font-body); font-size: 0.95rem;
  color: var(--text-secondary); line-height: 1.6; margin-bottom: 0.75rem;
}
.chat-msg-links { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chat-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 600;
  color: var(--accent-green); text-decoration: none;
  background: rgba(45, 184, 138, 0.08);
  border: 1px solid rgba(45, 184, 138, 0.15);
  border-radius: 100px; padding: 0.45em 1em;
  transition: background 0.2s, border-color 0.2s;
}
.chat-link:hover {
  background: rgba(45, 184, 138, 0.15);
  border-color: rgba(45, 184, 138, 0.3);
}
.chat-link-icon { display: flex; flex-shrink: 0; }
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Loading dots */
.chat-msg-loading .chat-msg-text {
  display: flex; gap: 0.35rem; align-items: center; margin-bottom: 0;
}
.loading-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--text-muted);
  animation: dotPulse 1.2s ease-in-out infinite;
}
.loading-dot:nth-child(2) { animation-delay: 0.2s; }
.loading-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotPulse {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1); }
}

/* Inline contact form in hero */
.hero-inline-form {
  margin-top: 1rem; animation: fadeSlideUp 0.4s ease;
  width: 90vw; max-width: 780px;
  margin-left: 50%; transform: translateX(-50%);
  position: relative;
}
.hero-inline-form-header p {
  font-family: var(--font-display); font-size: 0.92rem; font-weight: 500;
  color: var(--text-secondary); margin-bottom: 0.75rem; text-align: center;
}
.hero-inline-form .container { padding: 0; }
.hero-inline-form .lead-form-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px; padding: 1.75rem 2rem;
}
.hero-inline-form .lead-form-header {
  margin-bottom: 1rem; text-align: center;
}
.hero-inline-form .lead-form-header h2 {
  font-size: 1.15rem; color: var(--text-primary); margin-bottom: 0.25rem;
}
.hero-inline-form .lead-form-header p {
  font-size: 0.85rem; color: var(--text-muted);
}
.hero-inline-form .lead-form-grid {
  grid-template-columns: repeat(2, 1fr); gap: 0.85rem;
}
.hero-inline-form .lead-form-field {
  gap: 0.3rem;
}
.hero-inline-form .lead-form-label {
  font-size: 0.78rem; color: var(--text-muted); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.05em; text-align: left;
}
.hero-inline-form input,
.hero-inline-form select,
.hero-inline-form textarea {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: var(--text-primary) !important;
  border-radius: 8px !important; padding: 0.6em 0.75em !important;
  font-size: 0.9rem !important;
}
.hero-inline-form textarea {
  min-height: 60px !important; resize: vertical;
}
.hero-inline-form select option {
  background: var(--bg-deep, #111); color: var(--text-primary);
}
.hero-inline-form label {
  color: var(--text-secondary);
}
.hero-inline-form .lead-form-radio-group {
  display: flex; gap: 1rem; align-items: center; padding-top: 0.2rem;
}
.hero-inline-form .lead-form-radio {
  display: flex; align-items: center; gap: 0.35rem; cursor: pointer;
}
.hero-inline-form .lead-form-radio span {
  color: var(--text-secondary); font-size: 0.88rem;
}
.hero-inline-form .lead-form-radio input[type="radio"] {
  width: 16px !important; height: 16px !important; padding: 0 !important;
  accent-color: var(--accent-green);
}
.hero-inline-form button[type="submit"] {
  background: var(--accent-green); color: #fff; border: none;
  font-family: var(--font-display); font-weight: 600;
  padding: 0.75em 2em; border-radius: 100px; cursor: pointer;
  transition: background 0.2s, transform 0.15s; width: 100%;
  font-size: 0.95rem; margin-top: 0.5rem;
}
.hero-inline-form button[type="submit"]:hover {
  background: var(--accent-green-bright, #34d399); transform: scale(1.02);
}
/* Captcha field compact */
.hero-inline-form input[name="captcha"] {
  max-width: 100px !important;
}

/* Search results responsive */
@media (max-width: 768px) {
  .hero-search-results { max-width: 100%; }
  .chat-msg { padding: 1rem 1.25rem; }
  .chat-msg-links { flex-direction: column; }
  .hero-inline-form { width: 100%; max-width: 100%; margin-left: 0; transform: none; }
  .hero-inline-form .lead-form-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .hero-inline-form .lead-form-card { padding: 1.25rem; }
}
@media (max-width: 480px) {
  .chat-msg { border-radius: 12px; padding: 0.85rem 1rem; }
  .chat-link { font-size: 0.78rem; padding: 0.4em 0.85em; }
  .hero-inline-form .lead-form-card { padding: 1rem; border-radius: 12px; }
  .hero-inline-form .lead-form-header h2 { font-size: 1rem; }
}

/* === Chat Mode === */
.chat-thread {
  max-height: 400px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0.5rem 0;
  scroll-behavior: smooth;
}
.chat-bubble {
  max-width: 85%;
  padding: 0.75rem 1rem;
  border-radius: 16px;
  font-size: 0.92rem;
  line-height: 1.5;
  animation: fadeSlideUp 0.25s ease;
}
.chat-user {
  align-self: flex-end;
  background: rgba(45, 184, 138, 0.15);
  border: 1px solid rgba(45, 184, 138, 0.2);
  color: var(--text-primary);
}
.chat-assistant {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
}
.chat-bubble-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}
.chat-input-bar {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  margin-top: 0.75rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.chat-input-bar:focus-within {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(45, 184, 138, 0.15);
}
.chat-input-field {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 0.75em 1.25em;
}
.chat-input-field::placeholder { color: var(--text-muted); }
.chat-input-send {
  background: var(--accent-green);
  color: #fff;
  border: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.65em 1.5em;
  border-radius: 100px;
  margin: 4px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.chat-input-send:hover { background: var(--accent-green-bright); }
.chat-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.4rem;
}
.chat-callback-bar {
  text-align: center;
  margin-top: 0.6rem;
}
.chat-link-chat, .chat-link-callback {
  cursor: pointer;
  border: none;
  font-family: var(--font-display);
}
.chat-loading-bubble .loading-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--text-muted);
  margin: 0 2px;
  animation: pulse 1.2s infinite;
}
.chat-loading-bubble .loading-dot:nth-child(2) { animation-delay: 0.15s; }
.chat-loading-bubble .loading-dot:nth-child(3) { animation-delay: 0.3s; }

/* === Callback Form === */
.hero-callback-form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  margin-top: 0.75rem;
  animation: fadeSlideUp 0.3s ease;
}
.callback-header {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}
.callback-fields {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.callback-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.88rem;
  padding: 0.6em 1em;
  outline: none;
  transition: border-color 0.2s ease;
}
.callback-input:focus { border-color: var(--accent-green); }
.callback-input::placeholder { color: var(--text-muted); }
.callback-submit {
  background: var(--accent-green);
  color: #fff;
  border: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.65em 1.25em;
  border-radius: 100px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.callback-submit:hover { background: var(--accent-green-bright); }
.callback-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.callback-success {
  color: var(--accent-green);
  font-size: 0.9rem;
  font-weight: 600;
}
.callback-error {
  color: #e74c3c;
  font-size: 0.82rem;
  margin-top: 0.4rem;
}
.chat-system {
  align-self: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  max-width: 90%;
}
.chat-system-success {
  border-color: rgba(45, 184, 138, 0.3);
  color: var(--accent-green);
}
.chat-system-error {
  border-color: rgba(231, 76, 60, 0.3);
  color: #e74c3c;
}
.chat-call-office {
  background: rgba(211, 47, 47, 0.08);
  border: 1px solid rgba(211, 47, 47, 0.25);
  padding: 0.6rem 1rem;
}
.chat-call-office-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ff6b6b;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.chat-call-office-link:hover {
  color: #ff8787;
}
.chat-cta-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  margin-top: 0.5rem;
  background: rgba(45, 184, 138, 0.08);
  border: 1px solid rgba(45, 184, 138, 0.25);
  border-radius: 12px;
  animation: fadeSlideUp 0.25s ease;
}
.chat-cta-icon {
  flex-shrink: 0;
  color: var(--accent-green);
}
.chat-cta-body {
  flex: 1;
  min-width: 0;
}
.chat-cta-title {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-primary);
  margin: 0;
}
.chat-cta-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0.15rem 0 0;
}
.chat-cta-btn {
  flex-shrink: 0;
  padding: 0.45rem 1rem;
  background: var(--accent-green);
  color: #fff;
  font-weight: 600;
  font-size: 0.82rem;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.chat-cta-btn:hover {
  background: var(--accent-green-bright);
}

@media (max-width: 768px) {
  .chat-thread { max-height: 300px; }
  .chat-bubble { max-width: 92%; font-size: 0.88rem; }
  .callback-fields { flex-direction: column; }
  .callback-input, .callback-submit { width: 100%; }
  .chat-cta-card { flex-wrap: wrap; }
  .chat-cta-btn { width: 100%; text-align: center; }
}
@media (max-width: 480px) {
  .chat-bubble { padding: 0.6rem 0.8rem; font-size: 0.84rem; }
  .chat-input-field { font-size: 0.85rem; }
}

/* === Section Base (homepage) === */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-surface); }
.section-label { font-family: var(--font-display); font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-muted); margin-bottom: 0.75rem; }
.section-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 3.5vw, 2.4rem); line-height: 1.12; letter-spacing: -0.025em; margin-bottom: 0.75rem; }
.section-title em { font-style: normal; color: var(--accent-green); }
.section-sub { font-size: 1.05rem; color: var(--text-secondary); max-width: 55ch; margin-bottom: 2.5rem; }

/* === Pathways (4-card grid) === */
.pathways-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.pathway-card {
  background: var(--bg-card, rgba(255,255,255,0.04)); border: 1px solid var(--border-subtle); border-radius: var(--radius-card, 12px);
  padding: 1.75rem 1.5rem; transition: border-color 0.25s, transform 0.25s; cursor: pointer; text-decoration: none; color: inherit;
  text-align: center; display: flex; flex-direction: column; align-items: center;
}
.pathway-card:hover { border-color: var(--accent-green); transform: translateY(-2px); }
.pathway-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--accent-green-dim); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; color: var(--accent-green); }
.pathway-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; margin-bottom: 0.6rem; text-transform: uppercase; letter-spacing: 0.06em; }
.pathway-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.55; margin-bottom: 1rem; }
.pathway-arrow { font-family: var(--font-display); font-size: 0.78rem; font-weight: 600; color: #fff; background: var(--accent-red); padding: 0.5rem 1.25rem; border-radius: 4px; display: inline-flex; align-items: center; gap: 0.3em; margin-top: auto; transition: background 0.2s; }
.pathway-card:hover .pathway-arrow { background: var(--accent-red-bright); }

/* === Theory Test Highlight === */
.theory-highlight {
  margin-top: 2rem;
  background: linear-gradient(135deg, rgba(16,185,129,0.08) 0%, rgba(16,185,129,0.02) 100%);
  border: 1px solid var(--accent-green);
  border-radius: var(--radius-card, 12px);
  padding: 1.25rem 1.75rem;
}
.theory-highlight-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.theory-highlight-text { display: flex; align-items: center; gap: 1rem; flex: 1; }
.theory-highlight-text h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--text-primary); margin: 0; white-space: nowrap; }
.theory-highlight-text p { font-size: 0.9rem; color: var(--text-secondary); margin: 0; line-height: 1.5; }
.theory-highlight-badge {
  background: var(--accent-green); color: #000; font-family: var(--font-display); font-weight: 700;
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem; border-radius: 4px; white-space: nowrap;
}
.theory-highlight-btn {
  font-family: var(--font-display); font-weight: 600; font-size: 0.85rem;
  color: #fff; background: var(--accent-red); padding: 0.6rem 1.5rem;
  border-radius: 4px; text-decoration: none; white-space: nowrap;
  transition: background 0.2s;
}
.theory-highlight-btn:hover { background: var(--accent-red-bright); }
@media (max-width: 768px) {
  .theory-highlight-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .theory-highlight-text { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .theory-highlight-btn { align-self: flex-start; }
}

/* === Guide Card Highlight === */
.guide-card--highlight { border-color: var(--accent-green); background: linear-gradient(135deg, rgba(16,185,129,0.06) 0%, rgba(16,185,129,0.01) 100%); }
.guide-card--highlight:hover { border-color: var(--accent-green); }
.guide-card--highlight .guide-link { color: var(--accent-green); }

/* === Why Local === */
.local-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.local-text h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 1rem; }
.local-text h2 em { font-style: normal; color: var(--accent-green); }
.local-text p { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1rem; max-width: 50ch; }
.local-text p strong { color: var(--text-primary); font-weight: 600; }
.local-visual {
  background: var(--bg-elevated); border: 1px solid var(--border-subtle); border-radius: var(--radius-card, 12px);
  min-height: 320px; display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.85rem; font-family: var(--font-display);
}

/* === Homepage Pricing === */
.hp-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.hp-pricing-card {
  background: var(--bg-card, rgba(255,255,255,0.04)); border: 1px solid var(--border-subtle); border-radius: var(--radius-card, 12px);
  padding: 2rem 1.75rem; text-align: center; position: relative; transition: border-color 0.25s;
}
.hp-pricing-card:hover { border-color: var(--accent-red); }
.hp-pricing-card.popular { border-color: var(--accent-red); }
.hp-pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent-red); color: #fff; font-family: var(--font-display); font-size: 0.7rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.3em 0.9em; border-radius: 100px;
}
.hp-pricing-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--text-secondary); margin-bottom: 0.75rem; }
.hp-pricing-amount { font-family: var(--font-display); font-weight: 800; font-size: 2.8rem; letter-spacing: -0.03em; margin-bottom: 0.25rem; }
.hp-pricing-per { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.hp-pricing-btn {
  display: inline-block; width: 100%; padding: 0.75em; font-family: var(--font-display); font-weight: 600;
  font-size: 0.9rem; border-radius: 8px; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s; text-align: center; text-decoration: none;
}
.hp-pricing-card.popular .hp-pricing-btn { background: var(--accent-red); color: #fff; }
.hp-pricing-card.popular .hp-pricing-btn:hover { background: var(--accent-red-bright); transform: translateY(-1px); }
.hp-pricing-card:not(.popular) .hp-pricing-btn { background: var(--bg-elevated); color: var(--text-primary); border: 1px solid var(--border-medium); }
.hp-pricing-card:not(.popular) .hp-pricing-btn:hover { border-color: var(--accent-red); color: var(--accent-red-bright); }

/* === Reviews === */
.reviews-scroll { display: flex; gap: 1.25rem; overflow-x: auto; padding-bottom: 1rem; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.reviews-scroll::-webkit-scrollbar { height: 4px; }
.reviews-scroll::-webkit-scrollbar-track { background: var(--bg-elevated); border-radius: 2px; }
.reviews-scroll::-webkit-scrollbar-thumb { background: var(--border-medium); border-radius: 2px; }
.review-card {
  flex: 0 0 320px; scroll-snap-align: start;
  background: var(--bg-card, rgba(255,255,255,0.04)); border: 1px solid var(--border-subtle); border-radius: var(--radius-card, 12px);
  padding: 1.5rem;
}
.review-stars { color: var(--accent-gold); font-size: 1rem; letter-spacing: 0.05em; margin-bottom: 0.75rem; }
.review-card p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; font-style: italic; }
.review-name { font-family: var(--font-display); font-weight: 600; font-size: 0.88rem; color: var(--text-primary); }
.review-area { font-size: 0.78rem; color: var(--accent-green); }
.review-source { display: inline-block; margin-top: 0.75rem; font-size: 0.78rem; color: var(--accent-green); text-decoration: none; font-weight: 500; }
.review-source:hover { text-decoration: underline; }

/* Featured Review / Learner Story */
.featured-review { display: grid; grid-template-columns: 300px 1fr; gap: 2.5rem; align-items: center; margin-top: 2rem; }
.featured-review-image {
  width: 300px; height: 360px; border-radius: 12px; background: var(--bg-elevated); border: 1px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 0.9rem; overflow: hidden;
}
.featured-review-image img { width: 100%; height: 100%; object-fit: cover; }
.featured-review-text .review-stars { font-size: 1.2rem; margin-bottom: 1rem; }
.featured-review-text blockquote {
  font-size: 1.15rem; line-height: 1.7; color: var(--text-primary); margin: 0 0 1.25rem; padding: 0; border: none;
  font-style: italic; max-width: 55ch;
}
.featured-review-meta { margin-bottom: 0.75rem; }
.featured-review-meta strong { font-family: var(--font-display); font-size: 1rem; color: var(--text-primary); display: block; }
.featured-review-meta span { font-size: 0.85rem; color: var(--text-muted); }
.featured-review .review-source { font-size: 0.88rem; }
@media (max-width: 768px) {
  .featured-review { grid-template-columns: 1fr; }
  .featured-review-image { width: 100%; height: 240px; }
}

/* === Instructors === */
.instructors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.instructor-card {
  background: var(--bg-card, rgba(255,255,255,0.04)); border: 1px solid var(--border-subtle); border-radius: var(--radius-card, 12px);
  padding: 1.75rem 1.5rem; text-align: center; transition: border-color 0.25s;
}
.instructor-card:hover { border-color: var(--accent-green); }
.instructor-card .instructor-photo {
  width: 80px; height: 80px; border-radius: 50%; object-fit: cover; object-position: center top; border: 2px solid var(--border-medium);
  margin: 0 auto 1rem; display: block; flex-shrink: unset;
}
.instructor-card:hover .instructor-photo { border-color: var(--accent-green); }
.instructor-avatar {
  width: 80px; height: 80px; border-radius: 50%; background: var(--bg-elevated); border: 2px solid var(--border-medium);
  margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 1.5rem;
}
.instructor-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1rem; margin-bottom: 0.25rem; }
.instructor-card .area { font-size: 0.82rem; color: var(--accent-green); font-weight: 500; margin-bottom: 0.25rem; }
.instructor-card .exp { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.instructor-card .quote { font-size: 0.85rem; color: var(--text-secondary); font-style: italic; }

/* === How It Works === */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%; background: var(--accent-red); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
}
.step h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.9rem; color: var(--text-secondary); }
.steps-sub { text-align: center; margin-top: 1.5rem; font-size: 1rem; color: var(--text-secondary); }

/* === Guides === */
.guides-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.guide-card {
  background: var(--bg-card, rgba(255,255,255,0.04)); border: 1px solid var(--border-subtle); border-radius: var(--radius-card, 12px);
  padding: 1.5rem; border-top: 3px solid var(--accent-green); transition: transform 0.25s; text-decoration: none;
}
.guide-card:hover { transform: translateY(-2px); }
.guide-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1rem; margin-bottom: 0.5rem; color: var(--text-primary); }
.guide-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.55; margin-bottom: 1rem; }
.guide-link { font-family: var(--font-display); font-size: 0.82rem; font-weight: 600; color: var(--accent-red-bright); display: flex; align-items: center; gap: 0.3em; }

/* === Final CTA === */
.final-cta {
  padding: 5rem 0; text-align: center;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(45, 184, 138, 0.06), transparent 70%);
}
.final-cta h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 3.5vw, 2.4rem); line-height: 1.12; margin-bottom: 1.5rem; }
.final-cta .hero-ctas { justify-content: center; }
.final-cta .hero-search { margin-bottom: 1.5rem; }
.final-phone { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--text-secondary); }
.final-phone a { color: var(--accent-red-bright); font-weight: 700; }

/* Hero intro paragraph */
.hero-intro { font-size: 1.05rem; color: var(--text-secondary); max-width: 540px; line-height: 1.7; margin-bottom: 1.5rem; }

/* Pathway cards as links */
a.pathway-card { text-decoration: none; color: inherit; display: block; cursor: pointer; }
a.pathway-card:hover { text-decoration: none; color: inherit; }

/* District link grid */
.district-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem 3rem; margin-top: 2rem; }
.district-group h3 { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--accent-green); margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.district-group ul { list-style: none; padding: 0; margin: 0; }
.district-group li { margin-bottom: 0.4rem; }
.district-group a { color: var(--text-secondary); font-size: 0.9rem; text-decoration: none; transition: color 0.2s; }
.district-group a:hover { color: var(--accent-green); }

/* === Homepage Responsive === */
@media (max-width: 768px) {
  .pathways-grid { grid-template-columns: 1fr 1fr; }
  .local-grid { grid-template-columns: 1fr; }
  .local-visual { min-height: 220px; }
  .hp-pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .instructors-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .guides-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .review-card { flex: 0 0 280px; }
  .district-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .pathways-grid { grid-template-columns: 1fr; }
  .instructors-grid { grid-template-columns: 1fr; }
  .hero-pills { flex-direction: column; align-items: center; }
  .district-grid { grid-template-columns: 1fr; }
}

/* ========================================
   EDT PAGE
   ======================================== */

.edt-hero { padding: 10rem 0 5rem; background: linear-gradient(135deg, rgba(45, 184, 138, 0.08) 0%, transparent 50%); }
.edt-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; line-height: 1.15; margin-bottom: 1.25rem; max-width: 700px; }
.edt-hero h1 em { font-style: normal; color: var(--accent-green); }
.hero-sub { font-size: 1.1rem; color: var(--text-secondary); max-width: 600px; line-height: 1.7; margin-bottom: 2rem; }
.hero-stat { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--accent-green-dim); border: 1px solid rgba(45, 184, 138, 0.3); padding: 0.6rem 1.2rem; border-radius: 8px; font-size: 0.95rem; font-weight: 500; color: var(--accent-green); }
.section-intro { font-size: 1.05rem; color: var(--text-secondary); max-width: 55ch; line-height: 1.7; margin-bottom: 1.5rem; }

/* Info Grid */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.info-card { background: var(--bg-card, rgba(255,255,255,0.04)); border: 1px solid var(--border-subtle); border-radius: 12px; padding: 1.75rem; }
.info-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.info-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }
.info-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }

/* Accordion */
.accordion { max-width: 800px; }
.accordion-item { border: 1px solid var(--border-subtle); border-radius: 12px; margin-bottom: 0.75rem; overflow: hidden; transition: background 0.2s; }
.accordion-item:hover { background: var(--bg-card, rgba(255,255,255,0.04)); }
.accordion-header { display: flex; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem; cursor: pointer; user-select: none; }
.accordion-num { background: var(--accent-green-dim); color: var(--accent-green); font-weight: 700; font-size: 0.85rem; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.accordion-title { flex: 1; font-weight: 600; font-size: 1rem; }
.accordion-arrow { color: var(--text-muted); font-size: 0.8rem; transition: transform 0.3s; }
.accordion-item.open .accordion-arrow { transform: rotate(180deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.accordion-item.open .accordion-body { max-height: 1000px; }
.accordion-content { padding: 0 1.5rem 1.25rem 4.25rem; color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7; }
.accordion-duration { display: inline-block; margin-top: 0.5rem; font-size: 0.8rem; color: var(--accent-green); background: var(--accent-green-dim); padding: 0.2rem 0.6rem; border-radius: 4px; }

/* EDT Pricing (page-specific, not hp-pricing) */
.edt-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.edt-price-card { background: var(--bg-card, rgba(255,255,255,0.04)); border: 1px solid var(--border-subtle); border-radius: 12px; padding: 2rem; text-align: center; position: relative; transition: border-color 0.3s, transform 0.3s; }
.edt-price-card:hover { border-color: var(--accent-green); transform: translateY(-3px); }
.edt-price-card.featured { border-color: var(--accent-green); background: rgba(45, 184, 138, 0.05); }
.edt-price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent-green); color: #000; font-size: 0.75rem; font-weight: 700; padding: 0.3rem 0.8rem; border-radius: 20px; white-space: nowrap; }
.edt-price-card .price-name { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.25rem; }
.edt-price-card .price-detail { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1.25rem; }
.edt-price-card .price-amount { font-family: var(--font-display); font-weight: 800; font-size: 2.5rem; margin-bottom: 0.25rem; }
.edt-price-card .price-per { color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 1.5rem; }
.edt-price-card .price-save { color: var(--accent-green); font-size: 0.85rem; font-weight: 500; margin-bottom: 1rem; }

/* Progress Tracker */
.progress-section { background: var(--bg-card, rgba(255,255,255,0.04)); border: 1px solid var(--border-subtle); border-radius: 12px; padding: 2.5rem; margin-top: 2.5rem; }
.progress-bar { display: flex; gap: 4px; margin: 1.5rem 0; }
.progress-step { flex: 1; height: 8px; border-radius: 4px; background: rgba(255,255,255,0.08); }
.progress-step.done { background: var(--accent-green); }
.progress-step.current { background: rgba(45, 184, 138, 0.4); }
.progress-labels { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--text-muted); }

/* EDT CTA */
.edt-cta { background: var(--accent-green); padding: 4rem 0; text-align: center; }
.edt-cta h2 { color: #000; font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 0.75rem; }
.edt-cta p { color: rgba(0,0,0,0.7); margin-bottom: 1.5rem; font-size: 1rem; }
.btn-dark { background: #000; color: #fff; padding: 0.85rem 2rem; border-radius: 8px; font-family: var(--font-display); font-weight: 600; font-size: 1rem; border: none; cursor: pointer; transition: background 0.2s; text-decoration: none; display: inline-block; }
.btn-dark:hover { background: #1a1a1a; color: #fff; }
.cta-phone { margin-top: 1rem; color: rgba(0,0,0,0.6); font-size: 0.9rem; }
.cta-phone a { color: #000; font-weight: 600; }

@media (max-width: 768px) {
  .info-grid, .edt-pricing-grid { grid-template-columns: 1fr; }
  .edt-hero { padding: 8rem 0 3rem; }
  .accordion-content { padding-left: 1.5rem; }
  .progress-labels { font-size: 0.7rem; }
}

/* ========================================
   PRETEST PAGE
   ======================================== */

.pretest-hero { padding-top: 180px; padding-bottom: 4rem; background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-surface) 100%); }
.pretest-hero h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 1.25rem; }

/* Card (shared) */
.card { background: var(--bg-card, rgba(255,255,255,0.04)); border: 1px solid var(--border-medium); border-radius: 12px; padding: 1.5rem; }

/* Test Centre Selector */
.selector-wrap { max-width: 640px; }
.selector-wrap select { width: 100%; padding: 0.85rem 1rem; font-size: 1rem; font-family: var(--font-body); background: var(--bg-elevated); color: var(--text-primary); border: 1px solid var(--border-medium); border-radius: 12px; appearance: none; cursor: pointer; }
.centre-card { margin-top: 1.25rem; }
.centre-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; margin-bottom: 0.25rem; }
.centre-card .addr { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }
.centre-stat { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.centre-stat .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-green); flex-shrink: 0; }
.centre-stat span { font-size: 0.9rem; color: var(--text-secondary); }
.centre-faults { margin-bottom: 0.75rem; }
.centre-faults h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 0.5rem; font-family: var(--font-display); }
.centre-faults ol { padding-left: 1.25rem; }
.centre-faults li { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 0.25rem; }
.centre-routes { font-size: 0.9rem; color: var(--text-secondary); }
.centre-routes strong { color: var(--text-primary); font-weight: 500; }

/* Fault Grid */
.fault-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.fault-item { padding: 1.25rem; }
.fault-item .num { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--accent-green); margin-bottom: 0.25rem; }
.fault-item h3 { font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; margin-bottom: 0.35rem; }
.fault-item p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; }

/* Checklist */
.checklist { max-width: 560px; }
.check-item { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.85rem 0; border-bottom: 1px solid var(--border-subtle); }
.check-item:last-child { border-bottom: none; }
.check-box { width: 22px; height: 22px; border: 2px solid var(--accent-green); border-radius: 4px; flex-shrink: 0; margin-top: 2px; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: var(--accent-green); }
.check-item span { font-size: 0.95rem; color: var(--text-secondary); }

/* Pretest Pricing */
.pretest-price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 640px; }
.pretest-price-grid.pretest-4col { grid-template-columns: repeat(4, 1fr); max-width: 1000px; }
.pretest-price-card { text-align: center; padding: 2rem 1.5rem; }
.pretest-price-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1rem; margin-bottom: 0.75rem; }
.pretest-price-card .amount { font-family: var(--font-display); font-weight: 800; font-size: 2.2rem; color: var(--accent-green); margin-bottom: 0.5rem; }
.pretest-price-card .note { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.pretest-price-card.featured { border-color: var(--accent-green); background: rgba(45, 184, 138, 0.04); }
.btn-green { background: var(--accent-green); color: #0a0a0a; display: inline-block; font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; padding: 0.85em 1.8em; border-radius: 12px; cursor: pointer; text-decoration: none; border: none; transition: opacity 0.2s; }
.btn-green:hover { opacity: 0.85; color: #0a0a0a; }

/* Pretest CTA */
.pretest-cta { background: var(--accent-green); padding: 3.5rem 0; text-align: center; }
.pretest-cta h2 { color: #0a0a0a; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 0.75rem; }
.pretest-cta p { color: rgba(0,0,0,0.6); font-size: 1rem; margin-bottom: 1.5rem; }
.pretest-cta .btn { background: #0a0a0a; color: var(--accent-green); font-size: 1rem; padding: 1em 2.2em; }
.pretest-cta .phone-line { display: block; margin-top: 1rem; font-family: var(--font-display); font-weight: 600; font-size: 0.88rem; color: rgba(0,0,0,0.5); }
.pretest-cta .phone-line a { color: #0a0a0a; }

@media (max-width: 768px) {
  .fault-grid { grid-template-columns: 1fr 1fr; }
  .pretest-price-grid { grid-template-columns: 1fr; max-width: 360px; }
  .pretest-price-grid.pretest-4col { grid-template-columns: 1fr 1fr; max-width: 500px; }
}
@media (max-width: 480px) {
  .fault-grid { grid-template-columns: 1fr; }
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-hero { padding: 180px 0 60px; text-align: center; }
.contact-hero h1 { font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; margin-bottom: 16px; }
.contact-hero p { font-size: 1.15rem; color: var(--text-secondary); max-width: 520px; margin: 0 auto; }

/* Contact Cards */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 20px; }
.contact-card { background: var(--bg-card, rgba(255,255,255,0.04)); border: 1px solid var(--border-medium); border-radius: 12px; padding: 32px 24px; text-align: center; transition: border-color 0.3s; }
.contact-card:hover { border-color: var(--accent-green); }
.contact-card .icon { font-size: 2rem; margin-bottom: 16px; }
.contact-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.contact-card .detail { color: var(--text-secondary); font-size: 0.9rem; margin-top: 8px; }

/* Contact Form */
.form-section { max-width: 640px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.85rem; color: var(--text-secondary); font-weight: 500; }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); border-radius: 8px;
  padding: 12px 14px; color: #fff; font-size: 0.95rem; font-family: inherit; outline: none; transition: border-color 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent-green); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-group select option { background: #1a1a1a; color: #fff; }
.btn-submit { display: block; width: 100%; margin-top: 20px; padding: 14px; background: var(--accent-green); color: #0a0a0a; font-size: 1rem; font-weight: 700; border: none; border-radius: 8px; cursor: pointer; transition: background 0.3s; }
.btn-submit:hover { background: #27ae60; }
.form-note { text-align: center; margin-top: 14px; font-size: 0.85rem; color: var(--text-muted); }

/* Coverage Map */
.map-placeholder { background: var(--bg-card, rgba(255,255,255,0.04)); border: 1px solid var(--border-medium); border-radius: 12px; height: 260px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); margin-bottom: 40px; font-size: 0.95rem; }
.area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; }
.area-group h3 { font-size: 0.95rem; color: var(--accent-green); margin-bottom: 12px; font-weight: 600; }
.area-group ul { list-style: none; }
.area-group li { margin-bottom: 6px; }
.area-group a { color: var(--text-secondary); font-size: 0.9rem; }
.area-group a:hover { color: var(--accent-green); }

/* Office Card */
.office-card { background: var(--bg-card, rgba(255,255,255,0.04)); border: 1px solid var(--border-medium); border-radius: 12px; padding: 40px; max-width: 560px; margin: 0 auto; }
.office-card h3 { font-size: 1.2rem; margin-bottom: 20px; }
.office-detail { display: flex; gap: 12px; margin-bottom: 14px; color: var(--text-secondary); font-size: 0.95rem; align-items: flex-start; }
.office-detail .icon { flex-shrink: 0; width: 20px; text-align: center; }
.hours-table { width: 100%; margin-top: 20px; border-collapse: collapse; }
.hours-table td { padding: 8px 0; font-size: 0.9rem; border-bottom: 1px solid var(--border-subtle); }
.hours-table td:first-child { color: var(--text-secondary); }
.hours-table td:last-child { text-align: right; font-weight: 500; }
.status-badge { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; font-size: 0.9rem; font-weight: 600; }
.status-dot { width: 10px; height: 10px; border-radius: 50%; animation: pulse 2s infinite; }
.status-dot.open { background: var(--accent-green); }
.status-dot.closed { background: #e74c3c; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

@media (max-width: 768px) {
  .contact-cards { grid-template-columns: 1fr; }
  .contact-hero h1 { font-size: 2rem; }
  .office-card { padding: 28px 20px; }
}
@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
}

/* === Sticky Mobile CTA Bar === */
.sticky-mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--bg-primary, #0a0a0a);
  border-top: 1px solid var(--border-medium, rgba(255,255,255,0.1));
  padding: 0.6rem 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
}
.sticky-mobile-cta-inner {
  display: flex; gap: 0.5rem; max-width: 480px; margin: 0 auto;
}
.sticky-cta-call, .sticky-cta-book {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.7em 0.5em; border-radius: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.85rem;
  text-decoration: none; transition: background 0.2s, transform 0.15s;
}
.sticky-cta-call {
  background: var(--bg-elevated, #1a1a1a); color: var(--accent-green);
  border: 1px solid var(--border-medium, rgba(255,255,255,0.1));
}
.sticky-cta-call:hover { background: var(--bg-card); }
.sticky-cta-book {
  background: var(--accent-red); color: #fff; border: none;
}
.sticky-cta-book:hover { background: var(--accent-red-bright); transform: translateY(-1px); }
.sticky-cta-call svg, .sticky-cta-book svg { flex-shrink: 0; }
@media (max-width: 768px) {
  .sticky-mobile-cta { display: block; }
  body { padding-bottom: 60px; }
}

/* ========================================
   HOMEPAGE DESIGN UPGRADES
   Grid classes, trust strip, cards, sections
   ======================================== */

/* --- Missing Grid Classes (homepage uses grid-2, grid-3, grid-4) --- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .grid-4 { grid-template-columns: 1fr; }
}

/* --- Trust Strip Redesign --- */
.trust-strip {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 2.5rem 0;
}
.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  position: relative;
}
.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border-medium);
}
.trust-item strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--accent-green);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.trust-item span {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  .trust-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
  .trust-item:not(:last-child)::after { display: none; }
  .trust-item strong { font-size: 1.6rem; }
}
@media (max-width: 480px) {
  .trust-strip-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Card Hover Micro-interactions --- */
.card {
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1),
              border-color 0.3s ease,
              box-shadow 0.3s ease,
              background 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 140, 130, 0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 0 1px rgba(20, 140, 130, 0.1);
  background: rgba(255,255,255,0.06);
}

/* --- Why Learn Cards with Icons --- */
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(20, 140, 130, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent-red-bright);
  flex-shrink: 0;
}
.card-icon svg {
  width: 24px;
  height: 24px;
}
.card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* --- Service Cards Upgraded --- */
.card-service {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.card-service h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.card-service p {
  flex: 1;
}
.card-service .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--accent-red-bright);
  background: transparent;
  border: none;
  padding: 0;
  margin-top: 1.25rem;
  cursor: pointer;
  transition: color 0.2s, gap 0.2s;
}
.card-service .btn-secondary::after {
  content: '\2192';
  transition: transform 0.2s;
}
.card-service:hover .btn-secondary::after {
  transform: translateX(4px);
}
.card-service .btn-secondary:hover {
  color: var(--text-primary);
}

/* --- Pricing Section Upgraded --- */
.pricing-highlight {
  text-align: center;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 680px;
  margin: 2rem auto 0;
}
.price-card {
  background: var(--bg-card, rgba(255,255,255,0.04));
  border: 1px solid var(--border-medium);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 140, 130, 0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.price-card.featured {
  border-color: var(--accent-green);
  background: rgba(45, 184, 138, 0.04);
  position: relative;
}
.price-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-green);
  color: #0a0e12;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35em 1em;
  border-radius: 100px;
  white-space: nowrap;
}
.price-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.price-big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--accent-green);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.price-unit {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}
@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 340px; }
}

/* --- CTA Section Upgraded --- */
.cta-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-deep) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(45, 184, 138, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  position: relative;
}
.cta-section p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta-section .hero-cta-group {
  position: relative;
}

/* --- Section Heading Improvements --- */
.section .lead {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 55ch;
  line-height: 1.7;
}
.section.text-center .lead,
.section .text-center .lead {
  margin-left: auto;
  margin-right: auto;
}

/* --- Area Cards --- */
.card-area h3 {
  margin-bottom: 0.5rem;
}
.card-area h3 a {
  color: var(--accent-red-bright);
  text-decoration: none;
  transition: color 0.2s;
}
.card-area h3 a:hover {
  color: var(--text-primary);
}
.card-area p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* --- Test Centre Cards --- */
.card-tc {
  text-align: center;
  padding: 2rem 1.5rem;
}
.card-tc h3 {
  margin-bottom: 0.75rem;
}
.card-tc h3 a {
  color: var(--accent-red-bright);
  transition: color 0.2s;
}
.card-tc h3 a:hover {
  color: var(--text-primary);
}
.card-tc p {
  font-size: 0.88rem;
}

/* --- Section Alternation Enhancement --- */
.section-alt {
  background: var(--bg-surface);
  position: relative;
}

/* --- Hero CTA Group --- */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

/* --- Button Improvements --- */
.btn {
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(20, 140, 130, 0.3);
}
.btn-outline:hover {
  transform: translateY(-2px);
}
.btn-secondary:hover {
  color: var(--text-primary);
}

/* ═══════════════════════════════════════
   EDT-DRIVING-LESSONS PAGE STYLES
   ═══════════════════════════════════════ */
/* ── EDT Page Styles ── */

/* Scroll progress indicator */
.edt-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-green));
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

/* Hero */
.edt-hero {
  padding: 180px 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.edt-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(20,140,130,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.edt-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .edt-hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}
.edt-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.edt-hero h1 .accent {
  color: var(--accent-red-bright);
}
.edt-hero-lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.75rem;
  max-width: 540px;
}

/* Hero stat badges */
.edt-hero-stats {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.edt-stat-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg-elevated);
  border-radius: 100px;
  border: 1px solid rgba(20,140,130,0.2);
  font-size: 0.85rem;
}
.edt-stat-badge svg {
  width: 18px;
  height: 18px;
  color: var(--accent-red-bright);
  flex-shrink: 0;
}
.edt-stat-badge strong {
  color: var(--text-primary);
}

/* Hero quick-info card */
.edt-quick-card {
  background: var(--bg-surface);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(20,140,130,0.15);
  position: relative;
}
.edt-quick-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(20,140,130,0.3), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.edt-quick-card h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.edt-quick-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
}
.edt-quick-row:last-child {
  border-bottom: none;
}
.edt-quick-row span:first-child {
  color: var(--text-secondary);
}
.edt-quick-row strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Section headers */
.edt-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}
.edt-section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.edt-section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
}
.edt-section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-red-bright);
  margin-bottom: 0.75rem;
}
.edt-section-label svg {
  width: 16px;
  height: 16px;
}

/* Phase progress tracker */
.edt-phase-tracker {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
  position: relative;
}
.edt-phase-tracker::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 15%;
  right: 15%;
  height: 2px;
  background: rgba(255,255,255,0.06);
  transform: translateY(-50%);
}
.edt-phase-btn {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  font-family: var(--font-body);
}
.edt-phase-btn:hover {
  color: var(--text-primary);
}
.edt-phase-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid rgba(255,255,255,0.15);
  transition: all 0.3s ease;
}
.edt-phase-btn.active .edt-phase-dot {
  background: var(--accent-red-bright);
  border-color: var(--accent-red-bright);
  box-shadow: 0 0 12px rgba(26,175,163,0.4);
}
.edt-phase-btn.active {
  color: var(--text-primary);
  font-weight: 600;
}
.edt-phase-label {
  font-size: 0.8rem;
  white-space: nowrap;
}
.edt-phase-count {
  font-size: 0.7rem;
  opacity: 0.6;
}

/* Lesson cards */
.edt-lessons-grid {
  display: grid;
  gap: 1rem;
}
.edt-lesson-card {
  background: var(--bg-surface);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}
.edt-lesson-card.revealed {
  opacity: 1;
  transform: translateY(0);
}
.edt-lesson-card:hover {
  border-color: rgba(20,140,130,0.25);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.edt-lesson-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s ease;
}
.edt-lesson-header:hover {
  background: rgba(255,255,255,0.02);
}
.edt-lesson-number {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.edt-lesson-number.phase-foundation {
  background: rgba(20,140,130,0.15);
  color: var(--accent-red-bright);
}
.edt-lesson-number.phase-intermediate {
  background: rgba(45,184,138,0.15);
  color: var(--accent-green);
}
.edt-lesson-number.phase-advanced {
  background: rgba(230,168,23,0.15);
  color: var(--accent-amber);
}
.edt-lesson-info {
  flex: 1;
  min-width: 0;
}
.edt-lesson-info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  line-height: 1.3;
}
.edt-lesson-phase {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.edt-lesson-phase.foundation { color: var(--accent-red-bright); }
.edt-lesson-phase.intermediate { color: var(--accent-green); }
.edt-lesson-phase.advanced { color: var(--accent-amber); }

.edt-lesson-toggle {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--bg-elevated);
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.edt-lesson-toggle svg {
  width: 18px;
  height: 18px;
  color: var(--text-secondary);
  transition: transform 0.3s ease;
}
.edt-lesson-card.open .edt-lesson-toggle svg {
  transform: rotate(180deg);
}
.edt-lesson-card.open .edt-lesson-toggle {
  background: rgba(20,140,130,0.15);
}
.edt-lesson-card.open .edt-lesson-toggle svg {
  color: var(--accent-red-bright);
}
.edt-lesson-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.edt-lesson-card.open .edt-lesson-body {
  max-height: 400px;
}
.edt-lesson-body-inner {
  padding: 0 1.5rem 1.5rem;
  padding-top: 0;
}
.edt-skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.edt-skill-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  background: var(--bg-elevated);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  border: 1px solid rgba(255,255,255,0.05);
}
.edt-skill-tag svg {
  width: 12px;
  height: 12px;
  color: var(--accent-red-bright);
}

/* Overall progress bar */
.edt-progress-visual {
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--bg-surface);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
}
.edt-progress-visual h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--text-secondary);
}
.edt-progress-bar-track {
  width: 100%;
  height: 8px;
  background: var(--bg-elevated);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.edt-progress-bar-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-green), var(--accent-amber));
  width: 0%;
  transition: width 1.5s ease;
}
.edt-progress-phases {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-secondary);
}
.edt-progress-phase-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.edt-progress-phase-marker span:first-child {
  font-weight: 600;
  color: var(--text-primary);
}

/* Animated stats */
.edt-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 3rem 0;
}
@media (min-width: 768px) {
  .edt-stats-row {
    grid-template-columns: repeat(4, 1fr);
  }
}
.edt-stat-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--bg-surface);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.5s ease;
}
.edt-stat-card.revealed {
  opacity: 1;
  transform: translateY(0);
}
.edt-stat-card:hover {
  border-color: rgba(20,140,130,0.2);
  transform: translateY(-2px);
}
.edt-stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--accent-red-bright);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.edt-stat-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* Pricing toggle */
.edt-pricing-section {
  padding: 4rem 0;
}
.edt-toggle-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.edt-toggle {
  display: flex;
  background: var(--bg-surface);
  border-radius: 100px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,0.08);
}
.edt-toggle-btn {
  padding: 0.65rem 1.5rem;
  border-radius: 100px;
  border: none;
  background: none;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.edt-toggle-btn.active {
  background: var(--accent-red);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(20,140,130,0.3);
}
.edt-pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .edt-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.edt-price-card {
  background: var(--bg-surface);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  transition: all 0.3s ease;
}
.edt-price-card:hover {
  border-color: rgba(20,140,130,0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.edt-price-card.featured {
  border-color: var(--accent-red);
  background: linear-gradient(180deg, rgba(20,140,130,0.06) 0%, var(--bg-surface) 100%);
}
.edt-price-card.featured::before {
  content: 'Best Value';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 1rem;
  background: var(--accent-red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.edt-price-lessons {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.edt-price-amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.edt-price-card.featured .edt-price-amount {
  color: var(--accent-red-bright);
}
.edt-price-per {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}
.edt-price-card .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* FAQ */
.edt-faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}
.edt-faq-item {
  background: var(--bg-surface);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.edt-faq-item:hover {
  border-color: rgba(20,140,130,0.15);
}
.edt-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.edt-faq-q svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-secondary);
  transition: transform 0.3s ease, color 0.3s ease;
}
.edt-faq-item.open .edt-faq-q svg {
  transform: rotate(180deg);
  color: var(--accent-red-bright);
}
.edt-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.edt-faq-item.open .edt-faq-a {
  max-height: 300px;
}
.edt-faq-a-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.92rem;
}
.edt-faq-a-inner a {
  color: var(--accent-red-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* CTA */
.edt-cta {
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.edt-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(20,140,130,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.edt-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  position: relative;
}
.edt-cta p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/* Reveal animations */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced programme callout */
.edt-callout {
  background: var(--bg-elevated);
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--accent-amber);
  margin-top: 2rem;
}
.edt-callout h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--accent-amber);
}
.edt-callout p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}
.edt-callout a {
  color: var(--accent-red-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Links grid */
.edt-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.edt-link-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--bg-surface);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  text-decoration: none;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
.edt-link-card:hover {
  border-color: rgba(20,140,130,0.25);
  background: var(--bg-elevated);
  transform: translateX(4px);
}
.edt-link-card svg {
  width: 20px;
  height: 20px;
  color: var(--accent-red-bright);
  flex-shrink: 0;
}

/* Phase divider inside lesson list */
.edt-phase-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 0 0.5rem;
}
.edt-phase-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.06);
}
.edt-phase-divider-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}
.edt-phase-divider-label.foundation {
  color: var(--accent-red-bright);
  background: rgba(20,140,130,0.1);
}
.edt-phase-divider-label.intermediate {
  color: var(--accent-green);
  background: rgba(45,184,138,0.1);
}
.edt-phase-divider-label.advanced {
  color: var(--accent-amber);
  background: rgba(230,168,23,0.1);
}

/* ═══════════════════════════════════════
   AUTOMATIC-DRIVING-LESSONS PAGE STYLES
   ═══════════════════════════════════════ */
/* ── Page-specific variables ── */
:root {
  --auto-gradient: linear-gradient(135deg, rgba(20,140,130,0.15) 0%, rgba(45,184,138,0.08) 100%);
  --card-bg: var(--bg-elevated, #182028);
  --card-border: rgba(255,255,255,0.06);
  --card-hover-border: rgba(20,140,130,0.4);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reveal on Scroll ── */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Section headers ── */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-top: 0.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── HERO ── */
.auto-hero {
  padding: 180px 0 3rem;
  background: var(--auto-gradient);
  border-bottom: 1px solid var(--card-border);
}
.auto-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 960px) {
  .auto-hero__inner {
    grid-template-columns: 1.2fr 1fr;
  }
}
.auto-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(20,140,130,0.15);
  border: 1px solid rgba(20,140,130,0.3);
  color: var(--accent-red-bright);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.auto-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1rem;
}
.auto-hero__subtitle {
  color: var(--text-secondary);
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 2rem;
}
.auto-hero__stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.auto-hero__stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-red-bright);
}
.auto-hero__stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.auto-hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--card-border);
}
.btn--lg {
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
}

/* ── Pedal Diagram ── */
.auto-hero__visual {
  display: flex;
  justify-content: center;
}
.pedal-diagram {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2rem 2rem;
  width: 100%;
  max-width: 460px;
}
.pedal-diagram__car {
  flex: 1;
  text-align: center;
}
.pedal-diagram__label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pedal-diagram__car--manual .pedal-diagram__label {
  color: var(--text-secondary);
}
.pedal-diagram__car--auto .pedal-diagram__label {
  color: var(--accent-red-bright);
}
.pedal-diagram__pedals {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.pedal__shape {
  width: 36px;
  height: 56px;
  border-radius: 6px 6px 10px 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  transition: var(--transition-base);
}
.pedal--active .pedal__shape {
  background: rgba(20,140,130,0.25);
  border-color: rgba(20,140,130,0.5);
  box-shadow: 0 0 20px rgba(20,140,130,0.2);
}
.pedal--clutch .pedal__shape {
  background: rgba(255,80,80,0.12);
  border-color: rgba(255,80,80,0.25);
}
.pedal span {
  display: block;
  font-size: 0.65rem;
  color: var(--text-secondary);
  margin-top: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.pedal--clutch span {
  color: rgba(255,100,100,0.7);
}
.pedal--active span {
  color: var(--accent-red-bright);
}
.pedal-diagram__count {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 600;
}
.pedal-diagram__car--auto .pedal-diagram__count {
  color: var(--accent-green);
}
.pedal-diagram__vs {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-secondary);
  opacity: 0.5;
  text-transform: uppercase;
}
@media (max-width: 400px) {
  .pedal-diagram {
    padding: 1.5rem 1rem;
    gap: 1rem;
  }
  .pedal__shape {
    width: 28px;
    height: 44px;
  }
}

/* ── Stress Comparison ── */
.stress-comparison {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .stress-comparison {
    grid-template-columns: 1fr 1fr;
  }
}
.stress-comparison__card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem;
  transition: var(--transition-base);
}
.stress-comparison__card:hover {
  border-color: var(--card-hover-border);
}
.stress-comparison__card--highlight {
  border-color: rgba(20,140,130,0.3);
  background: linear-gradient(180deg, rgba(20,140,130,0.08) 0%, var(--card-bg) 100%);
}
.stress-comparison__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.stress-comparison__title--manual { color: var(--text-secondary); }
.stress-comparison__title--auto { color: var(--accent-red-bright); }

.stress-meter {
  margin-bottom: 1.5rem;
}
.stress-meter__track {
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.stress-meter__fill {
  height: 100%;
  border-radius: 10px;
  width: 0%;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.stress-meter__fill--high {
  background: linear-gradient(90deg, #e6a817, #e05555);
}
.stress-meter__fill--low {
  background: linear-gradient(90deg, #148c82, #2db88a);
}
.stress-meter__label {
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.stress-comparison__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.stress-comparison__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  line-height: 1.5;
}
.stress-comparison__item svg {
  flex-shrink: 0;
  margin-top: 3px;
}
.stress-comparison__item--bad svg { color: #e05555; }
.stress-comparison__item--good svg { color: var(--accent-green); }

/* ── Compare Toggle ── */
.compare-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.compare-toggle__switch {
  display: inline-flex;
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--card-border);
  border-radius: 100px;
  padding: 4px;
}
.compare-toggle__btn {
  position: relative;
  z-index: 2;
  padding: 0.6rem 2rem;
  border: none;
  background: none;
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border-radius: 100px;
  transition: color 0.3s;
}
.compare-toggle__btn--active {
  color: #fff;
}
.compare-toggle__slider {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  background: var(--accent-red);
  border-radius: 100px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.compare-toggle__slider.manual {
  transform: translateX(100%);
}

/* ── Compare Grid ── */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  max-width: 960px;
  margin: 0 auto;
}
.compare-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 1.75rem;
  text-align: center;
  transition: var(--transition-base);
}
.compare-card:hover {
  border-color: var(--card-hover-border);
  transform: translateY(-2px);
}
.compare-card__icon {
  color: var(--accent-red-bright);
  margin-bottom: 1rem;
}
.compare-card__icon .compare-card__clutch {
  stroke: #e05555;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.compare-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.compare-card__value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-red-bright);
  transition: var(--transition-base);
  margin-bottom: 0.25rem;
}
.compare-card__detail {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: var(--transition-base);
}

/* ── Code 78 Explainer ── */
.code78-explainer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .code78-explainer {
    grid-template-columns: 1.3fr 1fr;
  }
}
.code78-explainer__tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-amber);
  margin-bottom: 0.75rem;
}
.code78-explainer h2 {
  margin-bottom: 1rem;
}
.code78-explainer p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.code78-explainer__details ul {
  padding-left: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.8;
}
.code78-explainer__details h3 {
  font-size: 1rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.code78-explainer__toggle {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.code78-chevron {
  transition: transform 0.3s;
}
.code78-explainer__toggle[aria-expanded="true"] .code78-chevron {
  transform: rotate(180deg);
}
.code78-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  max-width: 340px;
  margin: 0 auto;
}
.code78-card__header {
  background: var(--accent-red);
  color: #fff;
  padding: 1rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}
.code78-card__body {
  padding: 0;
}
.code78-card__row {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  border-bottom: 1px solid var(--card-border);
  font-size: 0.9rem;
}
.code78-card__row--highlight {
  background: rgba(20,140,130,0.08);
}
.code78-card__field {
  color: var(--text-secondary);
}
.code78-card__val {
  font-weight: 600;
  color: var(--text-primary);
}
.code78-card__row--highlight .code78-card__val {
  color: var(--accent-red-bright);
}
.code78-card__footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ── Pricing Cards ── */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition-base);
  position: relative;
}
.pricing-card:hover {
  border-color: var(--card-hover-border);
  transform: translateY(-3px);
}
.pricing-card--featured {
  border-color: rgba(20,140,130,0.4);
  background: linear-gradient(180deg, rgba(20,140,130,0.1) 0%, var(--card-bg) 40%);
}
.pricing-card__badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--accent-red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.85rem;
  border-radius: 0 0 8px 8px;
}
.pricing-card__header h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.pricing-card__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.pricing-card__price {
  margin: 1.25rem 0 0.25rem;
}
.pricing-card__amount {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--accent-red-bright);
}
.pricing-card__per {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-left: 0.25rem;
}
.pricing-card__total {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  flex: 1;
}
.pricing-card__features li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding-left: 1.25rem;
  position: relative;
}
.pricing-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 6px;
  height: 6px;
  background: var(--accent-green);
  border-radius: 50%;
}
.pricing-card__cta {
  margin-top: auto;
  text-align: center;
  width: 100%;
}
.pricing-note {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 2rem;
}
.pricing-note a {
  color: var(--accent-red-bright);
}

/* ── Reviews Carousel ── */
.reviews-carousel {
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
}
.reviews-carousel__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 1.25rem;
}
.review-card {
  flex: 0 0 100%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem;
  min-width: 0;
}
@media (min-width: 768px) {
  .review-card {
    flex: 0 0 calc(50% - 0.625rem);
  }
}
@media (min-width: 1024px) {
  .review-card {
    flex: 0 0 calc(33.333% - 0.833rem);
  }
}
.review-card__stars {
  color: var(--accent-amber);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.review-card__text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.review-card__name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem;
}
.review-card__source {
  color: var(--text-secondary);
  font-size: 0.8rem;
}
.review-card__source::before {
  content: '·';
  margin-right: 0.5rem;
}
.reviews-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.reviews-carousel__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}
.reviews-carousel__btn:hover {
  border-color: var(--accent-red);
  color: var(--accent-red-bright);
}
.reviews-carousel__dots {
  display: flex;
  gap: 6px;
}
.reviews-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  padding: 0;
}
.reviews-carousel__dot--active {
  background: var(--accent-red);
  width: 24px;
  border-radius: 4px;
}

/* ── Persona Grid ── */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
.persona-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem;
  transition: var(--transition-base);
}
.persona-card:hover {
  border-color: var(--card-hover-border);
  transform: translateY(-2px);
}
.persona-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.persona-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.persona-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}
.persona-card a {
  color: var(--accent-red-bright);
}

/* ── Local Coverage ── */
.local-coverage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 768px) {
  .local-coverage {
    grid-template-columns: 1.2fr 1fr;
  }
}
.local-coverage__content h2 {
  margin-bottom: 1rem;
}
.local-coverage__content p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.local-coverage__content a {
  color: var(--accent-red-bright);
}
.local-coverage__areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.area-tag {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 100px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: var(--transition-base);
}
.area-tag:hover {
  border-color: var(--card-hover-border);
  color: var(--accent-red-bright);
}
.area-tag a {
  color: inherit;
  text-decoration: none;
}

/* ── FAQ Accordion ── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-accordion {
  border-bottom: 1px solid var(--card-border);
}
.faq-accordion:first-child {
  border-top: 1px solid var(--card-border);
}
.faq-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  border: none;
  background: none;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
}
.faq-accordion__trigger:hover {
  color: var(--accent-red-bright);
}
.faq-accordion__chevron {
  flex-shrink: 0;
  color: var(--text-secondary);
  transition: transform 0.3s;
}
.faq-accordion[data-open="true"] .faq-accordion__chevron {
  transform: rotate(180deg);
  color: var(--accent-red-bright);
}
.faq-accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
  padding: 0 0;
}
.faq-accordion[data-open="true"] .faq-accordion__content {
  padding: 0 0 1.25rem;
}
.faq-accordion__content p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}
.faq-accordion__content a {
  color: var(--accent-red-bright);
}

/* ── Final CTA ── */
.final-cta {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem 0;
}
.final-cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}
.final-cta p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.final-cta .hero-cta-group {
  margin-bottom: 1.5rem;
}
.final-cta__reassurance {
  font-size: 0.9rem !important;
  color: var(--text-secondary) !important;
  opacity: 0.8;
}

/* ═══════════════════════════════════════
   DRIVING-TEST-LESSONS PAGE STYLES
   ═══════════════════════════════════════ */
/* ── Hero ── */
.pretest-hero {
  position: relative;
  padding: 180px 0 3rem;
  overflow: hidden;
  background: linear-gradient(170deg, var(--bg-deep) 0%, #0d1a1f 50%, var(--bg-deep) 100%);
}
.pretest-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 140, 130, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.pretest-hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45, 184, 138, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.pretest-hero .container { position: relative; z-index: 1; }
.pretest-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.pretest-hero h1 span {
  display: block;
  color: var(--accent-red-bright);
}
.hero-stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}
.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-red-bright);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
  text-align: center;
}
.hero-reassurance {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hero-reassurance svg {
  width: 18px;
  height: 18px;
  color: var(--accent-green);
  flex-shrink: 0;
}

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.35s; }

/* ── Section headers ── */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-red-bright);
  margin-bottom: 0.5rem;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.section-lead {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 640px;
}

/* ── Test Day Timeline ── */
.timeline {
  position: relative;
  max-width: 720px;
  margin: 2.5rem auto 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-red) 0%, var(--accent-green) 100%);
}
.timeline-item {
  position: relative;
  padding: 0 0 2rem 56px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: 10px;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.timeline-dot svg {
  width: 12px;
  height: 12px;
  color: var(--accent-red-bright);
}
.timeline-time {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-red-bright);
  margin-bottom: 0.25rem;
}
.timeline-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}
.timeline-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ── Test Centre Selector ── */
.tc-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.tc-tab {
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle, rgba(255,255,255,0.08));
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}
.tc-tab:hover {
  border-color: var(--accent-red);
  color: var(--text-primary);
}
.tc-tab.active {
  background: var(--accent-red);
  border-color: var(--accent-red);
  color: #fff;
}
.tc-panel {
  display: none;
  animation: tcFadeIn 0.35s ease;
}
.tc-panel.active { display: block; }
@keyframes tcFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.tc-card {
  background: var(--bg-elevated);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.tc-card-header {
  padding: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: flex-start;
}
.tc-card-info { flex: 1; min-width: 240px; }
.tc-card-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.tc-address {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}
.tc-address svg {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  color: var(--accent-red-bright);
}
.tc-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.tc-badge {
  font-size: 0.75rem;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  background: rgba(20, 140, 130, 0.12);
  color: var(--accent-red-bright);
  font-weight: 500;
}
.tc-card-map {
  flex: 0 0 280px;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-surface);
  position: relative;
}
.tc-card-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: brightness(0.85) contrast(1.1);
}
.tc-routes {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.15);
}
.tc-routes h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-red-bright);
  margin-bottom: 0.75rem;
}
.tc-route-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.5rem;
}
.tc-route-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.tc-route-item svg {
  width: 14px;
  height: 14px;
  color: var(--accent-green);
  flex-shrink: 0;
}
.tc-areas {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.tc-areas strong {
  color: var(--text-primary);
  font-weight: 500;
}
.tc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent-red-bright);
  text-decoration: none;
  transition: gap 0.2s ease;
}
.tc-link:hover { gap: 0.5rem; }
.tc-link svg { width: 16px; height: 16px; }

/* ── Countdown Calculator ── */
.countdown-card {
  background: var(--bg-elevated);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.06);
  max-width: 560px;
  margin: 0 auto;
}
.countdown-input-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 1.5rem;
}
.countdown-input-group label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  flex: 1;
  min-width: 180px;
}
.countdown-input-group input[type="date"] {
  padding: 0.7rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: var(--bg-surface);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  width: 100%;
}
.countdown-input-group input[type="date"]:focus {
  outline: none;
  border-color: var(--accent-red);
  box-shadow: 0 0 0 3px rgba(20, 140, 130, 0.2);
}
.countdown-btn {
  padding: 0.7rem 1.5rem;
  border-radius: 10px;
  background: var(--accent-red);
  color: #fff;
  border: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.countdown-btn:hover { background: var(--accent-red-bright); }
.countdown-result {
  display: none;
  text-align: center;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.countdown-result.show { display: block; }
.countdown-days {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent-red-bright);
  line-height: 1;
}
.countdown-days-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
  margin-bottom: 1rem;
}
.countdown-message {
  font-size: 0.95rem;
  line-height: 1.5;
  padding: 1rem;
  border-radius: 10px;
  background: rgba(20, 140, 130, 0.08);
  border: 1px solid rgba(20, 140, 130, 0.15);
}
.countdown-message.urgent {
  background: rgba(230, 168, 23, 0.08);
  border-color: rgba(230, 168, 23, 0.2);
}
.countdown-past {
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 1rem;
}

/* ── Checklist ── */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--bg-elevated);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
}
.checklist-item:hover { border-color: rgba(255,255,255,0.12); }
.checklist-item.checked {
  border-color: var(--accent-green);
  background: rgba(45, 184, 138, 0.06);
}
.checklist-check {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.15);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  margin-top: 1px;
}
.checklist-item.checked .checklist-check {
  background: var(--accent-green);
  border-color: var(--accent-green);
}
.checklist-check svg {
  width: 14px;
  height: 14px;
  color: #fff;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s;
}
.checklist-item.checked .checklist-check svg {
  opacity: 1;
  transform: scale(1);
}
.checklist-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.checklist-text p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}
.checklist-progress {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.checklist-progress-bar {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}
.checklist-progress-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent-red) 0%, var(--accent-green) 100%);
  width: 0%;
  transition: width 0.4s ease;
}
.checklist-progress-text {
  font-size: 0.8rem;
  color: var(--text-secondary);
  white-space: nowrap;
  min-width: 60px;
  text-align: right;
}

/* ── Readiness Quiz ── */
.quiz-card {
  background: var(--bg-elevated);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.06);
  max-width: 640px;
  margin: 2rem auto 0;
}
.quiz-question {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.quiz-option {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.quiz-option:hover {
  border-color: var(--accent-red);
  background: rgba(20, 140, 130, 0.06);
}
.quiz-option.selected {
  border-color: var(--accent-red);
  background: rgba(20, 140, 130, 0.1);
}
.quiz-option-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  flex-shrink: 0;
  transition: all 0.2s;
}
.quiz-option.selected .quiz-option-dot {
  border-color: var(--accent-red-bright);
  background: var(--accent-red-bright);
  box-shadow: inset 0 0 0 3px var(--bg-surface);
}
.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.quiz-counter {
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.quiz-next {
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  background: var(--accent-red);
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--font-body);
}
.quiz-next:hover { background: var(--accent-red-bright); }
.quiz-next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.quiz-result {
  text-align: center;
  padding: 1.5rem 0;
}
.quiz-score {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.quiz-score.high { color: var(--accent-green); }
.quiz-score.mid { color: var(--accent-amber); }
.quiz-score.low { color: #e85454; }
.quiz-verdict {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
.quiz-advice {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 1.5rem;
}

/* ── Pricing Cards ── */
.pricing-pair {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 640px;
  margin: 2rem auto 0;
}
.price-card {
  background: var(--bg-elevated);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.price-card:hover {
  border-color: rgba(20, 140, 130, 0.3);
  transform: translateY(-2px);
}
.price-card.featured {
  border: 2px solid var(--accent-red);
  position: relative;
}
.price-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-red-bright);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.price-includes {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.price-features {
  text-align: left;
  margin-bottom: 1.5rem;
}
.price-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  padding: 0.35rem 0;
}
.price-feature svg {
  width: 16px;
  height: 16px;
  color: var(--accent-green);
  flex-shrink: 0;
}

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 2rem auto 0; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.faq-trigger {
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-trigger:hover { color: var(--accent-red-bright); }
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer {
  max-height: 400px;
}
.faq-answer-inner {
  padding-bottom: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Animated Counter ── */
.animated-counter {
  font-family: var(--font-display);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

/* ── Mobile Map ── */
@media (max-width: 640px) {
  .tc-card-header { flex-direction: column; }
  .tc-card-map { flex: 0 0 auto; width: 100%; height: 200px; }
  .hero-stats { gap: 1.25rem; }
  .hero-stat-number { font-size: 1.6rem; }
  .countdown-card { padding: 1.5rem; }
  .quiz-card { padding: 1.5rem; }
  .timeline::before { left: 16px; }
  .timeline-item { padding-left: 48px; }
  .timeline-dot { left: 6px; }
}

/* ── Internal Links ── */
.internal-links-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.internal-link {
  font-size: 0.85rem;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s;
}
.internal-link:hover {
  border-color: var(--accent-red);
  color: var(--accent-red-bright);
}

/* ═══════════════════════════════════════
   PRICING PAGE STYLES
   ═══════════════════════════════════════ */
/* ── Hero ── */
.pricing-hero { text-align: center; }
.pricing-hero .hero-content { max-width: 720px; margin: 0 auto; }
.pricing-hero-trust {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 1rem;
}
.trust-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(20, 140, 130, 0.15); border: 1px solid rgba(20, 140, 130, 0.3);
  border-radius: 100px; padding: 6px 14px;
  font-size: 0.82rem; font-weight: 500; color: var(--accent-red-bright);
  font-family: var(--font-body);
}
.trust-pill svg { flex-shrink: 0; }
.hero-price-anchor {
  font-size: 1.1rem; margin-top: 0.25rem;
  color: var(--text-secondary);
}
.hero-price-anchor strong { color: var(--text-primary); font-weight: 600; }

/* ── Transmission Toggle ── */
.tx-toggle-wrap {
  position: relative; display: inline-flex;
  background: var(--bg-surface); border-radius: 12px;
  padding: 4px; margin: 0 auto 2.5rem; gap: 0;
  border: 1px solid rgba(255,255,255,0.06);
}
.section > .container > .tx-toggle-wrap { display: flex; max-width: 340px; margin-left: auto; margin-right: auto; }
.tx-toggle-btn {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 8px;
  padding: 12px 28px; border: none; border-radius: 10px;
  background: transparent; color: var(--text-secondary);
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 600;
  cursor: pointer; transition: color 0.25s;
  flex: 1; justify-content: center;
}
.tx-toggle-btn.active { color: var(--text-primary); }
.tx-toggle-btn:hover { color: var(--text-primary); }
.tx-toggle-slider {
  position: absolute; top: 4px; left: 4px;
  width: calc(50% - 4px); height: calc(100% - 8px);
  background: var(--bg-elevated); border-radius: 10px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.tx-toggle-wrap[data-active="automatic"] .tx-toggle-slider {
  transform: translateX(100%);
}

/* ── Tab Panels ── */
.tx-panel { display: none; }
.tx-panel.active { display: block; animation: fadeUp 0.35s ease; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Pricing Cards Grid ── */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}
@media (max-width: 1100px) { .pricing-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pricing-cards { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; } }

/* ── Individual Card ── */
.pricing-card {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  border-color: rgba(20, 140, 130, 0.3);
}

/* Featured card */
.pricing-card-featured {
  background: linear-gradient(135deg, var(--bg-elevated) 0%, rgba(20,140,130,0.08) 100%);
  border-color: var(--accent-red);
  box-shadow: 0 0 0 1px var(--accent-red), 0 8px 32px rgba(20,140,130,0.15);
}
.pricing-card-featured:hover {
  box-shadow: 0 0 0 1px var(--accent-red-bright), 0 16px 48px rgba(20,140,130,0.25);
}

/* Badges */
.pricing-card-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 4px 16px; border-radius: 100px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; white-space: nowrap;
  font-family: var(--font-display);
}
.badge-popular {
  background: var(--accent-red); color: #fff;
}
.badge-value {
  background: linear-gradient(135deg, var(--accent-green), #1aafa3);
  color: #fff;
}

/* Card internals */
.pricing-card-head { margin-bottom: 1.25rem; }
.pricing-card-head h3 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  color: var(--text-primary); margin: 0 0 0.35rem;
}
.edt-label {
  display: inline-block;
  background: rgba(20, 140, 130, 0.15); color: var(--accent-red-bright);
  font-size: 0.7rem; font-weight: 600; padding: 2px 8px;
  border-radius: 4px; vertical-align: middle; margin-left: 6px;
  text-transform: uppercase; letter-spacing: 0.3px;
}
.pricing-card-desc {
  font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; margin: 0;
}
.pricing-card-price { margin-bottom: 0.75rem; }
.price-big {
  display: block; font-family: var(--font-display);
  font-size: 2rem; font-weight: 800; color: var(--text-primary);
  line-height: 1.1;
}
.price-per {
  font-size: 0.85rem; color: var(--text-secondary); font-weight: 500;
}
.pricing-card-saving {
  background: rgba(45, 184, 138, 0.1);
  border: 1px solid rgba(45, 184, 138, 0.2);
  border-radius: 8px; padding: 6px 12px;
  font-size: 0.8rem; color: var(--accent-green); font-weight: 500;
  margin-bottom: 1rem;
}
.pricing-card-features {
  list-style: none; padding: 0; margin: 0 0 1.5rem;
  flex: 1;
}
.pricing-card-features li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--text-secondary);
  padding: 5px 0;
}
.pricing-card-features li svg { flex-shrink: 0; }
.pricing-card-cta {
  width: 100%; text-align: center;
  margin-top: auto;
}

/* Call CTA */
.pricing-call-cta {
  text-align: center; margin-top: 2rem;
  font-size: 0.95rem; color: var(--text-secondary);
}
.pricing-call-cta a { color: var(--accent-red-bright); font-weight: 600; }

/* ── Pretest Section ── */
.pretest-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 3rem; align-items: center;
}
@media (max-width: 768px) { .pretest-grid { grid-template-columns: 1fr; gap: 2rem; } }
.pretest-info h2 {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  color: var(--text-primary); margin: 0 0 1rem;
}
.pretest-info p { color: var(--text-secondary); line-height: 1.65; margin: 0 0 1rem; }
.pretest-info a { color: var(--accent-red-bright); }
.pretest-includes { list-style: none; padding: 0; margin: 0; }
.pretest-includes li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; color: var(--text-secondary); padding: 4px 0;
}
.pretest-prices { display: flex; flex-direction: column; gap: 16px; }
.pretest-price-card {
  background: var(--bg-surface); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px; padding: 24px; text-align: center;
  transition: border-color 0.2s;
}
.pretest-price-card:hover { border-color: rgba(20, 140, 130, 0.3); }
.pretest-label {
  display: block; font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 600; color: var(--text-secondary);
  margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px;
}
.pretest-amount {
  display: block; font-family: var(--font-display);
  font-size: 2rem; font-weight: 800; color: var(--text-primary);
  margin-bottom: 16px;
}
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ── Calculator ── */
.calc-wrap {
  max-width: 800px; margin: 0 auto;
  text-align: center;
}
.calc-wrap h2 {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  color: var(--text-primary); margin: 0 0 0.5rem;
}
.calc-subtitle { color: var(--text-secondary); margin: 0 0 2rem; }
.calc-body {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  text-align: left;
}
@media (max-width: 640px) { .calc-body { grid-template-columns: 1fr; } }
.calc-controls {
  display: flex; flex-direction: column; gap: 1rem;
}
.calc-label {
  font-size: 0.9rem; color: var(--text-secondary);
  font-weight: 500;
}
.calc-label strong { color: var(--text-primary); font-size: 1.15rem; }
.calc-tx-pills { display: flex; gap: 8px; }
.calc-pill {
  padding: 10px 20px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: var(--bg-surface); color: var(--text-secondary);
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
}
.calc-pill.active {
  background: var(--accent-red); color: #fff;
  border-color: var(--accent-red);
}
.calc-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px; border-radius: 3px;
  background: var(--bg-elevated); outline: none;
  margin: 0.5rem 0;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent-red-bright);
  cursor: grab; border: 3px solid var(--bg-deep);
  box-shadow: 0 2px 8px rgba(20,140,130,0.4);
  transition: transform 0.15s;
}
.calc-slider::-webkit-slider-thumb:active { transform: scale(1.15); cursor: grabbing; }
.calc-slider::-moz-range-thumb {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent-red-bright); cursor: grab;
  border: 3px solid var(--bg-deep);
}
.calc-slider-labels {
  display: flex; justify-content: space-between;
  font-size: 0.75rem; color: var(--text-secondary);
  padding: 0 2px;
}
.calc-result {
  display: flex; align-items: center; justify-content: center;
}
.calc-result-inner {
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; padding: 32px; text-align: center;
  width: 100%;
  transition: border-color 0.3s;
}
.calc-result-inner:hover { border-color: rgba(20,140,130,0.3); }
.calc-total-label {
  font-size: 0.8rem; color: var(--text-secondary); text-transform: uppercase;
  letter-spacing: 1px; font-weight: 600; margin-bottom: 4px;
}
.calc-total {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 800;
  color: var(--text-primary); line-height: 1.1;
  transition: all 0.3s;
}
.calc-per-lesson {
  font-size: 1rem; color: var(--accent-red-bright); font-weight: 600;
  margin: 4px 0 12px;
}
.calc-savings {
  font-size: 0.85rem; color: var(--accent-green);
  margin-bottom: 1.25rem;
}
.calc-savings strong { font-weight: 700; }
.calc-book-btn { width: 100%; }

/* ── What's Included Grid ── */
.included-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) { .included-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .included-grid { grid-template-columns: 1fr; } }
.included-item {
  background: var(--bg-elevated); border-radius: 14px;
  padding: 24px; text-align: center;
  border: 1px solid rgba(255,255,255,0.04);
  transition: transform 0.2s, border-color 0.2s;
}
.included-item:hover { transform: translateY(-2px); border-color: rgba(20,140,130,0.2); }
.included-icon { margin-bottom: 12px; }
.included-item h3 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 600;
  color: var(--text-primary); margin: 0 0 0.5rem;
}
.included-item p {
  font-size: 0.85rem; color: var(--text-secondary); line-height: 1.55; margin: 0;
}
.included-item a { color: var(--accent-red-bright); }

/* ── EDT Explainer ── */
.edt-explainer { max-width: 720px; margin: 0 auto; }
.edt-explainer h2 {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  color: var(--text-primary); margin: 0 0 1rem;
}
.edt-explainer p {
  color: var(--text-secondary); line-height: 1.7; margin: 0 0 1rem;
}
.edt-explainer a { color: var(--accent-red-bright); }
.edt-link-row {
  display: flex; gap: 12px; margin-top: 1.5rem; flex-wrap: wrap;
}

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 18px 0; border: none; background: none;
  color: var(--text-primary); font-family: var(--font-display);
  font-size: 1rem; font-weight: 600; text-align: left;
  cursor: pointer; transition: color 0.2s;
}
.faq-q::after {
  content: '+'; font-size: 1.3rem; font-weight: 400;
  color: var(--accent-red-bright); transition: transform 0.25s;
  flex-shrink: 0; margin-left: 12px;
}
.faq-item.open .faq-q::after { content: '\2212'; transform: rotate(180deg); }
.faq-q:hover { color: var(--accent-red-bright); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 18px; }
.faq-a p {
  font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; margin: 0;
}
.faq-a a { color: var(--accent-red-bright); }

/* ── Final CTA ── */
.pricing-final-cta {
  background: linear-gradient(135deg, rgba(20,140,130,0.1) 0%, transparent 60%);
}
.pricing-final-cta h2 {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700;
  color: var(--text-primary); margin: 0 0 0.5rem;
}
.pricing-final-cta p { color: var(--text-secondary); margin: 0 0 1.5rem; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.cta-reassure {
  margin-top: 1.5rem; font-size: 0.85rem; color: var(--text-secondary);
}

/* ── Sticky Book Bar ── */
.sticky-book-bar {
  position: fixed; bottom: 70px; left: 0; right: 0; z-index: 90;
  transform: translateY(120%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.sticky-book-bar.visible {
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-book-inner {
  max-width: 480px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 12px 20px;
  background: var(--bg-elevated);
  border: 1px solid rgba(20,140,130,0.3);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
}
.sticky-book-text {
  font-size: 0.9rem; color: var(--text-secondary);
}
.sticky-book-text strong { color: var(--text-primary); }
.sticky-book-btn { white-space: nowrap; }

/* ── Scroll Reveal ── */
[data-reveal] {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
[data-reveal].revealed {
  opacity: 1; transform: translateY(0);
}

/* ── Responsive tweaks ── */
@media (max-width: 768px) {
  .pricing-hero .hero-content h1 { font-size: 1.6rem; }
  .price-big { font-size: 1.75rem; }
  .calc-total { font-size: 2.2rem; }
  .sticky-book-bar { bottom: 62px; }
  .pretest-amount { font-size: 1.6rem; }
}

/* ═══════════════════════════════════════
   GIFT-VOUCHERS PAGE STYLES
   ═══════════════════════════════════════ */
/* ── Gift Voucher Page Styles ── */

/* Hero gift ribbon effect */
.gv-hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, var(--bg-deep) 0%, #0d1318 50%, #101a1e 100%);
}
.gv-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(232,184,75,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.gv-hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(230,168,23,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.gv-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.gv-hero h1 .gv-gift-icon {
  display: inline-block;
  margin-right: 0.4rem;
  animation: gv-bounce 2s ease-in-out infinite;
}
@keyframes gv-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.gv-hero .hero-subtitle {
  color: var(--text-secondary);
  font-size: 1.15rem;
  max-width: 540px;
}

/* Occasion selector pills */
.gv-occasion-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 0;
}
.gv-occasion-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  border: 1.5px solid rgba(232,184,75,0.25);
  background: rgba(232,184,75,0.06);
  color: var(--text-secondary);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.25s ease;
}
.gv-occasion-pill:hover {
  border-color: var(--accent-amber);
  color: var(--accent-gold);
  background: rgba(232,184,75,0.1);
}
.gv-occasion-pill.active {
  border-color: var(--accent-gold);
  background: rgba(232,184,75,0.15);
  color: var(--accent-gold);
  font-weight: 600;
}
.gv-occasion-pill .pill-emoji {
  font-size: 1.1rem;
}
.gv-occasion-message {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: rgba(232,184,75,0.06);
  border-left: 3px solid var(--accent-gold);
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  min-height: 3rem;
  transition: opacity 0.3s ease;
}

/* How it works process */
.gv-process {
  padding: 4rem 0;
}
.gv-process h2 {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 3rem;
}
.gv-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.gv-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.gv-step.gv-visible {
  opacity: 1;
  transform: translateY(0);
}
.gv-step-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 40px;
}
.gv-step-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #0a0e12;
  flex-shrink: 0;
}
.gv-step-connector {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-gold), rgba(232,184,75,0.15));
}
.gv-step:last-child .gv-step-connector {
  display: none;
}
.gv-step-content {
  padding-bottom: 1.5rem;
}
.gv-step-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}
.gv-step-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Voucher builder */
.gv-builder-section {
  padding: 4rem 0;
  background: var(--bg-surface);
}
.gv-builder-section h2 {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.gv-builder-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}
.gv-builder-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .gv-builder-layout {
    grid-template-columns: 340px 1fr;
    gap: 2.5rem;
  }
}

/* Builder controls */
.gv-controls {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.gv-control-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.gv-toggle-row {
  display: flex;
  gap: 0.5rem;
}
.gv-toggle-btn {
  flex: 1;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.1);
  background: var(--bg-elevated);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: all 0.25s ease;
}
.gv-toggle-btn:hover {
  border-color: rgba(232,184,75,0.4);
  color: var(--text-primary);
}
.gv-toggle-btn.active {
  border-color: var(--accent-gold);
  background: rgba(232,184,75,0.12);
  color: var(--accent-gold);
  font-weight: 600;
}

/* Package cards in builder */
.gv-package-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.gv-package-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.08);
  background: var(--bg-elevated);
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}
.gv-package-option:hover {
  border-color: rgba(232,184,75,0.35);
  background: rgba(232,184,75,0.05);
}
.gv-package-option.active {
  border-color: var(--accent-gold);
  background: rgba(232,184,75,0.1);
}
.gv-package-option .gv-pkg-name {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-primary);
}
.gv-package-option .gv-pkg-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent-gold);
}
.gv-package-option .gv-most-gifted {
  position: absolute;
  top: -8px;
  right: 12px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
  color: #0a0e12;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.gv-recipient-input {
  width: 100%;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.1);
  background: var(--bg-elevated);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.25s ease;
}
.gv-recipient-input:focus {
  outline: none;
  border-color: var(--accent-gold);
}
.gv-recipient-input::placeholder {
  color: var(--text-secondary);
  opacity: 0.6;
}

/* Voucher preview card */
.gv-voucher-preview {
  perspective: 1200px;
}
.gv-voucher-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1.6 / 1;
  min-height: 280px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(145deg, #14231e 0%, #0f1b1a 40%, #111c22 100%);
  border: 1.5px solid rgba(232,184,75,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(232,184,75,0.06);
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
  cursor: default;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.gv-voucher-card:hover {
  transform: rotateY(-3deg) rotateX(2deg);
}

/* Shimmer overlay */
.gv-voucher-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(232,184,75,0.04) 40%,
    rgba(232,184,75,0.08) 50%,
    rgba(232,184,75,0.04) 60%,
    transparent 70%
  );
  animation: gv-shimmer 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes gv-shimmer {
  0% { transform: translateX(-30%) translateY(-30%) rotate(45deg); }
  100% { transform: translateX(30%) translateY(30%) rotate(45deg); }
}

/* Gold corner ribbon */
.gv-voucher-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  overflow: hidden;
  pointer-events: none;
}
.gv-voucher-ribbon::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  border-style: solid;
  border-width: 0 80px 80px 0;
  border-color: transparent var(--accent-gold) transparent transparent;
  opacity: 0.15;
}

.gv-voucher-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.gv-voucher-brand {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  opacity: 0.8;
}
.gv-voucher-gift-tag {
  font-size: 0.7rem;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.05);
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gv-voucher-middle {
  text-align: center;
}
.gv-voucher-recipient-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}
.gv-voucher-recipient-name {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  min-height: 2rem;
}
.gv-voucher-amount {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gv-voucher-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

.gv-voucher-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 0.7rem;
  color: var(--text-secondary);
}
.gv-voucher-detail span {
  display: block;
  margin-bottom: 0.15rem;
}

/* Voucher CTA below card */
.gv-voucher-cta {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.gv-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
  color: #0a0e12;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}
.gv-btn-gold:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,184,75,0.25);
}
.gv-btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  background: transparent;
  border: 1.5px solid rgba(232,184,75,0.35);
  color: var(--accent-gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
}
.gv-btn-outline-gold:hover {
  border-color: var(--accent-gold);
  background: rgba(232,184,75,0.08);
}

/* Testimonial */
.gv-testimonial-section {
  padding: 4rem 0;
}
.gv-testimonial {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.gv-testimonial-stars {
  color: var(--accent-gold);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 0.15em;
}
.gv-testimonial blockquote {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.7;
  margin: 0 0 1rem;
  padding: 0;
  border: none;
}
.gv-testimonial cite {
  display: block;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Coverage badge */
.gv-coverage {
  padding: 3rem 0;
  background: var(--bg-surface);
}
.gv-coverage-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}
.gv-coverage-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.06);
}
.gv-coverage-badge svg {
  flex-shrink: 0;
  color: var(--accent-gold);
}
.gv-coverage-badge span {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.gv-coverage-badge strong {
  color: var(--text-primary);
}

/* FAQ */
.gv-faq-section {
  padding: 4rem 0;
}
.gv-faq-section h2 {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
.gv-faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.gv-faq-item {
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  background: var(--bg-elevated);
  overflow: hidden;
}
.gv-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  gap: 1rem;
}
.gv-faq-q::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--accent-gold);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.gv-faq-item.open .gv-faq-q::after {
  content: '\2212';
  transform: rotate(180deg);
}
.gv-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.25rem;
}
.gv-faq-item.open .gv-faq-a {
  max-height: 300px;
  padding: 0 1.25rem 1rem;
}
.gv-faq-a p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}
.gv-faq-a a {
  color: var(--accent-red-bright);
}

/* Final CTA */
.gv-final-cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(232,184,75,0.06) 0%, rgba(20,140,130,0.06) 100%);
  text-align: center;
}
.gv-final-cta h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}
.gv-final-cta p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.gv-final-cta .hero-cta-group {
  justify-content: center;
}

/* Scroll reveal base */
.gv-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.gv-reveal.gv-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive polish */
@media (max-width: 640px) {
  .gv-voucher-card {
    min-height: 240px;
    padding: 1.25rem;
  }
  .gv-occasion-bar {
    gap: 0.4rem;
  }
  .gv-occasion-pill {
    padding: 0.4rem 0.75rem;
    font-size: 0.82rem;
  }
  .gv-voucher-cta {
    flex-direction: column;
  }
  .gv-voucher-cta a,
  .gv-voucher-cta button {
    width: 100%;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════
   AREAS PAGE STYLES
   ═══════════════════════════════════════ */
/* ── AREAS PAGE ── */

.areas-hero {
  background: linear-gradient(135deg, var(--bg-deep) 0%, #0d1a1f 50%, var(--bg-deep) 100%);
  padding: 180px 0 3rem;
  position: relative;
  overflow: hidden;
}

.areas-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(20, 140, 130, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.areas-hero .container {
  position: relative;
  z-index: 1;
}

.areas-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 1rem;
  line-height: 1.15;
}

.areas-hero h1 span {
  color: var(--accent-red-bright);
}

.areas-hero-sub {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin: 0 0 2rem;
  max-width: 600px;
  line-height: 1.6;
}

/* ── STAT COUNTERS ── */
.areas-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.areas-stat {
  text-align: center;
}

.areas-stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent-red-bright);
  line-height: 1;
}

.areas-stat__label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
}

/* ── SEARCH BOX ── */
.areas-search {
  position: relative;
  max-width: 480px;
}

.areas-search__input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.areas-search__input::placeholder {
  color: var(--text-secondary);
  opacity: 0.7;
}

.areas-search__input:focus {
  border-color: var(--accent-red);
  box-shadow: 0 0 0 3px rgba(20, 140, 130, 0.15);
}

.areas-search__icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  pointer-events: none;
  width: 20px;
  height: 20px;
}

.areas-search__results {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  max-height: 320px;
  overflow-y: auto;
  z-index: 100;
  display: none;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.areas-search__results.active {
  display: block;
}

.areas-search__result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem;
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.15s;
}

.areas-search__result:last-child {
  border-bottom: none;
}

.areas-search__result:hover {
  background: rgba(20, 140, 130, 0.08);
}

.areas-search__result-name {
  font-weight: 600;
  font-family: var(--font-display);
}

.areas-search__result-district {
  font-size: 0.8rem;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.04);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}

.areas-search__empty {
  padding: 1.5rem 1rem;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ── DISTRICT TABS (Desktop) ── */
.districts-section {
  padding: 3rem 0 4rem;
  background: var(--bg-deep);
}

.districts-tab-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.districts-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}

.districts-tab:hover {
  background: rgba(20, 140, 130, 0.06);
  border-color: rgba(20, 140, 130, 0.3);
  color: var(--text-primary);
}

.districts-tab.active {
  background: rgba(20, 140, 130, 0.12);
  border-color: var(--accent-red);
  color: var(--accent-red-bright);
}

.districts-tab__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.districts-tab__count {
  font-size: 0.75rem;
  opacity: 0.6;
  font-weight: 400;
}

/* ── DISTRICT PANEL ── */
.district-panel {
  display: none;
  animation: panelFadeIn 0.35s ease;
}

.district-panel.active {
  display: block;
}

@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.district-header {
  margin-bottom: 2rem;
}

.district-header h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.5rem;
}

.district-header h2 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.district-header h2 a:hover {
  color: var(--accent-red-bright);
}

.district-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 0.75rem;
}

.district-meta__item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.district-meta__item svg {
  width: 16px;
  height: 16px;
  color: var(--accent-red);
  flex-shrink: 0;
}

.district-meta__item a {
  color: var(--accent-red-bright);
  text-decoration: none;
  font-weight: 500;
}

.district-meta__item a:hover {
  text-decoration: underline;
}

.district-context {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0.75rem 0 0;
  max-width: 720px;
}

/* ── LOCATION CARDS GRID ── */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.loc-card {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.loc-card:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 140, 130, 0.35);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.loc-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.2rem;
  color: var(--text-primary);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
}

.loc-card__arrow {
  color: var(--text-secondary);
  transition: transform 0.25s, color 0.25s;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.loc-card:hover .loc-card__arrow {
  transform: translateX(3px);
  color: var(--accent-red-bright);
}

.loc-card__tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-size: 0.78rem;
  color: var(--text-secondary);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.loc-card:hover .loc-card__tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

/* ── MOBILE ACCORDION ── */
.districts-accordion {
  display: none;
}

.accordion-item {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--bg-surface);
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.2rem;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  gap: 0.75rem;
}

.accordion-trigger__left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.accordion-trigger__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.accordion-trigger__chevron {
  width: 20px;
  height: 20px;
  color: var(--text-secondary);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.accordion-item.open .accordion-trigger__chevron {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-body__inner {
  padding: 0 1.2rem 1.2rem;
}

.accordion-body .district-meta {
  margin-bottom: 1rem;
}

.accordion-body .locations-grid {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.65rem;
}

.accordion-body .loc-card a {
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
}

/* ── CTA SECTION ── */
.areas-cta {
  background: linear-gradient(135deg, #0d1a1f 0%, var(--bg-deep) 100%);
  padding: 3.5rem 0;
  text-align: center;
}

.areas-cta h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.75rem;
}

.areas-cta p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin: 0 0 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.areas-cta .btn {
  font-size: 1.05rem;
}

/* ── COVERAGE STRIP ── */
.coverage-strip {
  background: var(--bg-surface);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 2.5rem 0;
}

.coverage-strip h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.75rem;
}

.coverage-strip p {
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 800px;
}

/* ── SCROLL REVEAL ── */
.sr {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.sr.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .districts-tab-bar {
    display: none !important;
  }
  .district-panel {
    display: none !important;
  }
  .districts-accordion {
    display: block;
  }
  .areas-stats {
    gap: 1.5rem;
  }
}

@media (min-width: 861px) {
  .districts-accordion {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .areas-hero {
    padding: 2.5rem 0 2rem;
  }
  .areas-stat__num {
    font-size: 2rem;
  }
  .areas-search__input {
    font-size: 0.95rem;
    padding: 0.85rem 0.85rem 0.85rem 2.75rem;
  }
}

/* ═══════════════════════════════════════
   BREADCRUMB PAGE STYLES
   ═══════════════════════════════════════ */
    .c-breadcrumb {
      --breadcrumb-bg: #0a0a0a;
      --breadcrumb-text: #9ca3af;
      --breadcrumb-accent: #dc2626;
    }

    .c-breadcrumb {
      padding: 1rem 2rem;
      background-color: var(--breadcrumb-bg);
      border-bottom: 1px solid #1a1a1a;
      font-size: 0.875rem;
    }

    .c-breadcrumb__list {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.5rem;
      margin: 0;
      padding: 0;
      list-style: none;
      max-width: 1400px;
      margin: 0 auto;
    }

    .c-breadcrumb__item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .c-breadcrumb__link {
      color: var(--breadcrumb-text);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .c-breadcrumb__link:hover {
      color: var(--breadcrumb-accent);
    }

    .c-breadcrumb__separator {
      color: #4b5563;
      font-size: 0.75rem;
      margin: 0 0.25rem;
      user-select: none;
    }

    .c-breadcrumb__current {
      color: #d1d5db;
      font-weight: 500;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .c-breadcrumb {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
      }

      .c-breadcrumb__list {
        gap: 0.375rem;
      }

      .c-breadcrumb__separator {
        margin: 0 0.2rem;
      }
    }

    @media (max-width: 640px) {
      .c-breadcrumb {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
      }

      .c-breadcrumb__list {
        gap: 0.25rem;
      }
    }

/* ═══════════════════════════════════════
   NAV PAGE STYLES
   ═══════════════════════════════════════ */
    .c-nav {
      --nav-bg: #0a0a0a;
      --nav-text: #f5f5f5;
      --nav-accent: #dc2626;
      --nav-border: #1a1a1a;
      --nav-hover: #252525;
    }

    .c-nav {
      background-color: var(--nav-bg);
      border-bottom: 1px solid var(--nav-border);
      position: sticky;
      top: 0;
      z-index: 100;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    }

    .c-nav__wrapper {
      max-width: 1400px;
      margin: 0 auto;
      padding: 1rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
    }

    .c-nav__logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
      color: var(--nav-text);
      font-weight: 700;
      font-size: 1.125rem;
      flex-shrink: 0;
    }

    .c-nav__logo img {
      width: 2rem;
      height: auto;
      display: block;
    }

    .c-nav__menu {
      display: flex;
      align-items: center;
      gap: 2rem;
      margin: 0;
      padding: 0;
      list-style: none;
      flex: 1;
    }

    .c-nav__menu-item {
      display: contents;
    }

    .c-nav__menu-link {
      color: var(--nav-text);
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
    }

    .c-nav__menu-link:hover {
      color: var(--nav-accent);
    }

    .c-nav__menu-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--nav-accent);
      transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .c-nav__menu-link:hover::after {
      width: 100%;
    }

    .c-nav__cta {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1.5rem;
      background-color: var(--nav-accent);
      color: white;
      text-decoration: none;
      border-radius: 0.375rem;
      font-weight: 600;
      font-size: 0.95rem;
      white-space: nowrap;
      border: 2px solid transparent;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      flex-shrink: 0;
    }

    .c-nav__cta:hover {
      background-color: #b91c1c;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
    }

    .c-nav__cta:active {
      transform: translateY(-1px) scale(0.98);
    }

    .c-nav__toggle {
      display: none;
      background: none;
      border: none;
      color: var(--nav-text);
      font-size: 1.5rem;
      cursor: pointer;
      padding: 0.5rem;
      line-height: 1;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .c-nav__wrapper {
        padding: 1rem 1.5rem;
        gap: 1rem;
      }

      .c-nav__logo {
        gap: 0.5rem;
      }

      .c-nav__logo img {
        width: 1.75rem;
      }

      .c-nav__menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background-color: var(--nav-hover);
        border-bottom: 1px solid var(--nav-border);
        padding: 1rem 1.5rem;
        max-height: 400px;
        overflow-y: auto;
      }

      .c-nav__menu.is-open {
        display: flex;
      }

      .c-nav__menu-item {
        display: block;
        padding: 0.75rem 0;
      }

      .c-nav__toggle {
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .c-nav__cta {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
      }
    }

    @media (max-width: 640px) {
      .c-nav__wrapper {
        padding: 0.75rem 1rem;
      }

      .c-nav__logo {
        font-size: 1rem;
      }

      .c-nav__logo img {
        width: 1.5rem;
      }

      .c-nav__cta {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
      }
    }

/* ═══════════════════════════════════════
   FOOTER PAGE STYLES
   ═══════════════════════════════════════ */
    .c-footer {
      --footer-bg: #111111;
      --footer-text: #d1d5db;
      --footer-accent: #dc2626;
      --footer-border: #1a1a1a;
    }

    .c-footer {
      background-color: var(--footer-bg);
      border-top: 1px solid var(--footer-border);
      color: var(--footer-text);
      font-size: 0.9rem;
    }

    .c-footer__main {
      max-width: 1400px;
      margin: 0 auto;
      padding: 3rem 2rem;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
    }

    .c-footer__section {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .c-footer__title {
      font-size: 0.95rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #f5f5f5;
      margin: 0;
    }

    .c-footer__link {
      color: var(--footer-text);
      text-decoration: none;
      transition: color 0.3s ease;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .c-footer__link:hover {
      color: var(--footer-accent);
    }

    .c-footer__contact {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .c-footer__locations {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .c-footer__social {
      display: flex;
      gap: 1rem;
      margin-top: 0.5rem;
    }

    .c-footer__social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2.5rem;
      height: 2.5rem;
      background-color: #1a1a1a;
      border: 1px solid var(--footer-border);
      border-radius: 0.375rem;
      color: var(--footer-text);
      text-decoration: none;
      transition: all 0.3s ease;
      font-size: 1.1rem;
    }

    .c-footer__social-link:hover {
      background-color: var(--footer-accent);
      border-color: var(--footer-accent);
      color: white;
    }

    .c-footer__bottom {
      border-top: 1px solid var(--footer-border);
      padding: 2rem;
      margin-top: 1rem;
    }

    .c-footer__bottom-wrapper {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 2rem;
      align-items: center;
    }

    .c-footer__copyright {
      font-size: 0.8rem;
      color: #6b7280;
      margin: 0;
    }

    .c-footer__legal {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .c-footer__legal-link {
      color: var(--footer-text);
      text-decoration: none;
      font-size: 0.8rem;
      transition: color 0.3s ease;
    }

    .c-footer__legal-link:hover {
      color: var(--footer-accent);
    }

    .c-footer__badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1rem;
      background-color: #1a1a1a;
      border: 1px solid #2a2a2a;
      border-radius: 0.375rem;
      font-size: 0.85rem;
      color: #d1d5db;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .c-footer__main {
        padding: 2rem 1.5rem;
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .c-footer__bottom {
        padding: 1.5rem;
      }

      .c-footer__bottom-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
      }

      .c-footer__legal {
        order: 3;
        justify-content: center;
      }
    }

    @media (max-width: 640px) {
      .c-footer__main {
        padding: 1.5rem 1rem;
        gap: 1.25rem;
      }

      .c-footer__title {
        font-size: 0.85rem;
      }

      .c-footer__link {
        font-size: 0.85rem;
      }

      .c-footer__bottom {
        padding: 1rem;
      }

      .c-footer__badge {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
      }
    }

/* ═══════════════════════════════════════
   TRUST-BADGES PAGE STYLES
   ═══════════════════════════════════════ */
    .c-trust-badges {
      --trust-bg: #0a0a0a;
      --trust-text: #f5f5f5;
      --trust-accent: #dc2626;
      --trust-gold: #f59e0b;
    }

    .c-trust-badges {
      display: flex;
      gap: 1rem;
      align-items: center;
    }

    .c-trust-badges--stacked {
      flex-direction: column;
      align-items: flex-start;
    }

    .c-trust-badges--compact {
      gap: 0.5rem;
    }

    .c-trust-badge {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.625rem 1rem;
      background-color: #1a1a1a;
      border: 1px solid #2a2a2a;
      border-radius: 0.375rem;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--trust-text);
      white-space: nowrap;
      transition: all 0.3s ease;
    }

    .c-trust-badge:hover {
      border-color: var(--trust-accent);
      background-color: #252525;
    }

    .c-trust-badges--compact .c-trust-badge {
      padding: 0.5rem 0.75rem;
      font-size: 0.8rem;
    }

    .c-trust-badge__icon {
      font-size: 1rem;
      flex-shrink: 0;
    }

    .c-trust-badge__text {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
    }

    .c-trust-badge__label {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      opacity: 0.7;
    }

    .c-trust-badge__value {
      font-weight: 600;
      font-size: 0.9rem;
    }

    .c-trust-badge--rsa {
      border-left: 3px solid #059669;
    }

    .c-trust-badge--rsa:hover {
      border-left-color: #059669;
    }

    .c-trust-badge--adi {
      border-left: 3px solid #f59e0b;
    }

    .c-trust-badge--adi:hover {
      border-left-color: #f59e0b;
    }

    .c-trust-badge--reviews {
      border-left: 3px solid var(--trust-accent);
    }

    .c-trust-badge--reviews:hover {
      border-left-color: var(--trust-accent);
    }

    .c-trust-badge__rating {
      display: flex;
      gap: 0.2rem;
      align-items: center;
    }

    .c-trust-badge__star {
      color: var(--trust-gold);
      font-size: 0.75rem;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .c-trust-badges {
        gap: 0.75rem;
      }

      .c-trust-badge {
        padding: 0.5rem 0.875rem;
        font-size: 0.8rem;
      }

      .c-trust-badges--compact .c-trust-badge {
        padding: 0.375rem 0.625rem;
        font-size: 0.75rem;
      }

      .c-trust-badge__value {
        font-size: 0.85rem;
      }
    }

    @media (max-width: 640px) {
      .c-trust-badges {
        gap: 0.5rem;
        flex-wrap: wrap;
      }

      .c-trust-badge {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
      }

      .c-trust-badges--stacked {
        flex-direction: row;
        flex-wrap: wrap;
      }
    }


/* ═══════════════════════════════════════
   INDEX PAGE STYLES
   ═══════════════════════════════════════ */
/* ── Hero ── */
.hp-hero {
  padding: 11rem 0 3rem;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}
.hp-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26, 175, 163, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hp-hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
.hp-hero-text h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.hp-hero-text h1 em {
  font-style: normal;
  color: var(--accent-red-bright);
}
.hp-hero-subtitle {
  font-size: 1.12rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 52ch;
  margin-bottom: 2rem;
}

/* ── Hero Counters ── */
.hp-hero-counters {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.hp-counter-item {
  display: flex;
  flex-direction: column;
}
.hp-counter {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--accent-red-bright);
  line-height: 1.2;
}
.hp-counter-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.15rem;
}

/* ── Quick Start Card ── */
.hp-quick-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.75rem;
}
.hp-quick-card h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}
.hp-quick-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.92rem;
}
.hp-quick-row span {
  color: var(--text-secondary);
}
.hp-quick-row strong {
  color: var(--accent-red-bright);
  font-weight: 700;
}
.hp-quick-row:last-of-type {
  border-bottom: none;
}
.hp-quick-cta {
  width: 100%;
  margin-top: 1.25rem;
  text-align: center;
}

/* ── Section Headers ── */
.hp-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

/* ── Services Grid ── */
.hp-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.hp-service-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  transition: border-color 0.3s, transform 0.3s;
  color: var(--text-primary);
  text-decoration: none;
}
.hp-service-card:hover {
  border-color: var(--accent-red-bright);
  transform: translateY(-3px);
  color: var(--text-primary);
}
.hp-service-icon {
  width: 44px;
  height: 44px;
  color: var(--accent-red-bright);
  margin-bottom: 1rem;
}
.hp-service-icon svg {
  width: 100%;
  height: 100%;
}
.hp-service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.hp-service-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}
.hp-service-price {
  display: block;
  margin-top: 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-green);
}
.hp-service-arrow {
  display: block;
  margin-top: 0.75rem;
  font-size: 1.2rem;
  color: var(--accent-red-bright);
  transition: transform 0.3s;
}
.hp-service-card:hover .hp-service-arrow {
  transform: translateX(4px);
}

/* ── Features Grid (Why Us) ── */
.hp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.hp-feature-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
}
.hp-feature-icon {
  width: 36px;
  height: 36px;
  color: var(--accent-red-bright);
  margin-bottom: 0.75rem;
}
.hp-feature-icon svg {
  width: 100%;
  height: 100%;
}
.hp-feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.hp-feature-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.hp-feature-card a {
  color: var(--accent-red-bright);
}

/* ── Local Knowledge ── */
.hp-local-content {
  max-width: 780px;
  margin: 0 auto;
}

/* ── Pricing Toggle ── */
.hp-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 4px;
  width: fit-content;
  margin: 0 auto 2.5rem;
}
.hp-toggle-btn {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s;
  border-radius: 6px;
}
.hp-toggle-btn.active {
  color: var(--text-primary);
}
.hp-toggle-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  background: var(--accent-red);
  border-radius: 6px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.hp-toggle-wrap[data-active="automatic"] .hp-toggle-slider {
  transform: translateX(100%);
}
.hp-tx-panel {
  display: none;
}
.hp-tx-panel.active {
  display: block;
}

/* ── Pricing Cards ── */
.hp-pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.hp-price-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
}
.hp-price-card-featured {
  border-color: var(--accent-red-bright);
  background: linear-gradient(to bottom, rgba(20, 140, 130, 0.08), var(--bg-elevated));
}
.hp-price-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.8rem;
  border-radius: 20px;
}
.hp-price-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.hp-edt-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-green);
  background: var(--accent-green-soft);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 0.25rem;
}
.hp-price-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-red-bright);
  line-height: 1.2;
}
.hp-price-per {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.hp-price-features {
  list-style: none;
  text-align: left;
  margin: 1rem 0;
  padding: 0;
}
.hp-price-features li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border-subtle);
}
.hp-price-features li:last-child {
  border-bottom: none;
}
.hp-price-card .btn {
  width: 100%;
  margin-top: 0.75rem;
}

/* ── Reviews Carousel ── */
.hp-carousel-wrap {
  position: relative;
  overflow: hidden;
}
.hp-carousel {
  overflow: hidden;
}
.hp-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.hp-review-card {
  flex: 0 0 calc(33.333% - 1rem);
  margin-right: 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}
.hp-review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.75rem;
}
.hp-review-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1rem;
}
.hp-review-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
.hp-review-author strong {
  color: var(--text-primary);
}
.hp-review-author a {
  font-size: 0.78rem;
  color: var(--accent-red-bright);
}
.hp-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.hp-carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-medium);
  background: var(--bg-elevated);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
}
.hp-carousel-btn:hover {
  border-color: var(--accent-red-bright);
  color: var(--accent-red-bright);
}
.hp-carousel-dots {
  display: flex;
  gap: 6px;
}
.hp-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-medium);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.hp-carousel-dot.active {
  background: var(--accent-red-bright);
  transform: scale(1.3);
}

/* ── Timeline (Journey) ── */
.hp-timeline {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  padding-left: 3rem;
}
.hp-timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-subtle);
}
.hp-timeline-step {
  position: relative;
  padding-bottom: 2.5rem;
}
.hp-timeline-step:last-child {
  padding-bottom: 0;
}
.hp-timeline-number {
  position: absolute;
  left: -3rem;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-red);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.hp-timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.hp-timeline-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.hp-timeline-content a {
  color: var(--accent-red-bright);
}

/* ── Areas Grid ── */
.hp-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.hp-area-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 1.5rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: border-color 0.3s, transform 0.3s;
}
.hp-area-card:hover {
  border-color: var(--accent-red-bright);
  transform: translateY(-2px);
  color: var(--text-primary);
}
.hp-area-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.hp-area-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Test Centres Grid ── */
.hp-tc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.hp-tc-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-top: 3px solid var(--accent-green);
  border-radius: 10px;
  padding: 1.5rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: border-color 0.3s, transform 0.3s;
}
.hp-tc-card:hover {
  border-color: var(--accent-green);
  transform: translateY(-2px);
  color: var(--text-primary);
}
.hp-tc-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.hp-tc-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── FAQ ── */
.hp-faq-list {
  max-width: 740px;
  margin: 0 auto;
}
.hp-faq-item {
  border-bottom: 1px solid var(--border-subtle);
}
.hp-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  border: none;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}
.hp-faq-question:hover {
  color: var(--accent-red-bright);
}
.hp-faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--text-muted);
}
.hp-faq-item.open .hp-faq-chevron {
  transform: rotate(180deg);
  color: var(--accent-red-bright);
}
.hp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hp-faq-item.open .hp-faq-answer {
  max-height: 300px;
}
.hp-faq-answer p {
  padding-bottom: 1.25rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.hp-faq-answer a {
  color: var(--accent-red-bright);
}

/* ── Final CTA ── */
.hp-final-cta {
  padding: 4rem 0;
}

/* ── Scroll Reveal ── */
.hp-sr {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.hp-sr.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hp-hero-grid { grid-template-columns: 1fr; }
  .hp-quick-card { max-width: 420px; }
  .hp-services-grid { grid-template-columns: 1fr; }
  .hp-features-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-pricing-cards { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .hp-areas-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-tc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hp-hero { padding: 9rem 0 2.5rem; }
  .hp-hero-counters { gap: 1.25rem; }
  .hp-counter { font-size: 1.5rem; }
  .hp-features-grid { grid-template-columns: 1fr; }
  .hp-review-card { flex: 0 0 calc(50% - 0.75rem); margin-right: 1rem; }
  .hp-areas-grid { grid-template-columns: 1fr; }
  .hp-tc-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hp-hero { padding: 8rem 0 2rem; }
  .hp-hero-counters { gap: 1rem; }
  .hp-counter { font-size: 1.3rem; }
  .hp-review-card { flex: 0 0 100%; margin-right: 0; }
}

/* =====================================================
   TEST CENTRE PAGES
   Individual test centre + listing page styles
   ===================================================== */

/* ── TC Hero (shared between individual + listing) ── */
.tc-hero,
.tc-list-hero {
  position: relative;
  padding: 10rem 0 3.5rem;
  text-align: center;
  overflow: hidden;
  background: var(--bg-deep);
}
.tc-hero__bg,
.tc-list-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.tc-hero__glow,
.tc-list-hero__glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
}
.tc-hero__glow--teal,
.tc-list-hero__glow--teal {
  background: var(--accent-red-bright);
  top: -120px;
  right: -80px;
}
.tc-hero__glow--amber,
.tc-list-hero__glow--amber {
  background: var(--accent-amber);
  bottom: -150px;
  left: -100px;
  opacity: 0.08;
}
.tc-hero__inner,
.tc-list-hero__inner {
  position: relative;
  z-index: 1;
}
.tc-hero__tag,
.tc-list-hero__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-red-bright);
  background: rgba(20, 140, 130, 0.12);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.tc-hero h1,
.tc-list-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin: 0 0 0.75rem;
}
.tc-hero__address {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.tc-list-hero__sub {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.tc-hero__closed-badge {
  display: inline-block;
  background: rgba(220, 38, 38, 0.15);
  color: #f87171;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  border: 1px solid rgba(220, 38, 38, 0.25);
  margin-bottom: 1rem;
}

/* Hero stats */
.tc-hero__stats,
.tc-list-hero__stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.tc-hero__stat,
.tc-list-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.tc-hero__stat strong,
.tc-list-hero__stat strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
}
.tc-hero__stat span,
.tc-list-hero__stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Hero actions */
.tc-hero__actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ── TC Buttons ── */
.tc-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
.tc-btn--primary {
  background: var(--accent-red-bright);
  color: #fff;
}
.tc-btn--primary:hover {
  background: var(--accent-red);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(26, 175, 163, 0.3);
}
.tc-btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
}
.tc-btn--outline:hover {
  border-color: var(--accent-red-bright);
  color: var(--accent-red-bright);
  background: rgba(20, 140, 130, 0.06);
}
.tc-btn--full {
  width: 100%;
  justify-content: center;
}

/* ── TC Location Map ── */
.tc-location-map {
  width: 100%;
  height: 340px;
  z-index: 1;
}

/* ── TC Map Pins ── */
.tc-map-pin {
  background: none !important;
  border: none !important;
}
.tc-map-pin__inner {
  background: var(--accent-red-bright);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(26, 175, 163, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── TC Map Popup ── */
.tc-map-popup {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.5;
}
.tc-map-popup strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.tc-map-popup__wait {
  margin-top: 0.35rem;
  font-weight: 600;
  color: var(--accent-amber);
}
.tc-map-popup a {
  display: inline-block;
  margin-top: 0.4rem;
  color: var(--accent-red-bright);
  text-decoration: none;
  font-weight: 600;
}
.tc-map-popup a:hover {
  text-decoration: underline;
}

/* ── TC Details Grid (two column) ── */
.tc-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.tc-details-left h2,
.tc-details-right h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.tc-details-left h2 em,
.tc-details-right h2 em {
  font-style: normal;
  color: var(--accent-red-bright);
}
.tc-details-intro {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ── TC Info Cards ── */
.tc-info-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.tc-info-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--border-medium);
  transition: border-color 0.2s, background 0.2s;
}
.tc-info-card:hover {
  background: var(--bg-subtle);
}
.tc-info-card--red { border-left-color: var(--accent-red-bright); }
.tc-info-card--amber { border-left-color: var(--accent-amber); }
.tc-info-card--green { border-left-color: var(--accent-green); }
.tc-info-card--teal { border-left-color: var(--accent-red-bright); }
.tc-info-card__label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.tc-info-card__value {
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
}
.tc-info-card__sub {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-top: 0.2rem;
}
.tc-info-card__link {
  display: inline-block;
  color: var(--accent-red-bright);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.tc-info-card__link:hover {
  color: var(--accent-green);
  text-decoration: underline;
}

/* ── TC Expect Steps (timeline) ── */
.tc-expect-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  padding-left: 2rem;
}
.tc-expect-steps::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: var(--border-subtle);
}
.tc-expect-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  position: relative;
}
.tc-expect-step__num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
  border: 2px solid var(--border-medium);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}
.tc-expect-step__num--pass {
  background: rgba(45, 184, 138, 0.15);
  border-color: var(--accent-green);
  color: var(--accent-green);
}
.tc-expect-step__body strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}
.tc-expect-step__body p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

/* ── TC Route Map ── */
.tc-route-map {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  margin-bottom: 0.75rem;
}
.tc-route-map__note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 2.5rem;
}

/* ── TC Routes Grid ── */
.tc-routes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1rem;
}
.tc-routes-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

/* Road tags */
.tc-road-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tc-road-tag {
  display: inline-block;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  transition: border-color 0.2s, color 0.2s;
}
.tc-road-tag:hover {
  border-color: var(--accent-red-bright);
  color: var(--accent-red-bright);
}

/* Junction list */
.tc-junction-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.tc-junction-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.4;
}
.tc-junction-item svg {
  flex-shrink: 0;
  color: var(--accent-amber);
}

/* ── TC Tricky Spots Accordion ── */
.tc-tricky-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 800px;
  margin: 2rem auto 0;
}
.tc-tricky-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.tc-tricky-item:hover {
  border-color: var(--border-medium);
}
.tc-tricky-trigger {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
}
.tc-tricky-trigger:hover {
  background: rgba(255, 255, 255, 0.02);
}
.tc-tricky-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 140, 130, 0.12);
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-red-bright);
}
.tc-tricky-name {
  flex: 1;
  font-weight: 600;
}
.tc-tricky-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}
.tc-tricky-trigger[aria-expanded="true"] .tc-tricky-chevron {
  transform: rotate(180deg);
}
.tc-tricky-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.25rem;
}
.tc-tricky-trigger[aria-expanded="true"] + .tc-tricky-answer {
  max-height: 300px;
  padding: 0 1.25rem 1.25rem;
}
.tc-tricky-answer p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
  padding-left: 3.25rem;
}

/* ── TC Tips Grid ── */
.tc-tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.tc-tip-card {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.25rem;
  transition: border-color 0.2s, transform 0.2s;
}
.tc-tip-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-2px);
}
.tc-tip-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 184, 138, 0.12);
  border-radius: 8px;
  color: var(--accent-green);
}
.tc-tip-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* ── TC Reviews Grid ── */
.tc-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.tc-review-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.2s, transform 0.2s;
}
.tc-review-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-2px);
}
.tc-review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.tc-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}
.tc-review-avatar--initial {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 140, 130, 0.15);
  color: var(--accent-red-bright);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}
.tc-review-name {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--text-primary);
}
.tc-review-instructor {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.tc-review-stars {
  color: var(--accent-gold);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.tc-review-text {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.tc-review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-subtle);
}
.tc-review-pass {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-green);
  background: rgba(45, 184, 138, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}
.tc-review-verify {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.tc-review-verify:hover {
  color: var(--accent-red-bright);
}

/* ── TC Pretest Grid ── */
.tc-pretest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.tc-pretest-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.75rem;
  text-align: center;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}
.tc-pretest-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-3px);
}
.tc-pretest-card--featured {
  border-color: var(--accent-red-bright);
  background: linear-gradient(135deg, rgba(20, 140, 130, 0.08) 0%, var(--bg-elevated) 60%);
}
.tc-pretest-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-red-bright);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.85rem;
  border-radius: 100px;
  white-space: nowrap;
}
.tc-pretest-type {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.tc-pretest-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.tc-pretest-detail {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

/* ── TC Nearby Grid ── */
.tc-nearby-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.tc-nearby-card {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.25rem;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.tc-nearby-card:hover {
  border-color: var(--accent-red-bright);
  transform: translateY(-2px);
  background: var(--bg-subtle);
}
.tc-nearby-card strong {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--text-primary);
}
.tc-nearby-district {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.tc-nearby-link {
  font-size: 0.8rem;
  color: var(--accent-red-bright);
  font-weight: 600;
  margin-top: auto;
  padding-top: 0.25rem;
}

/* ── TC FAQ (shared) ── */
.tc-list-faq {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.tc-list-faq__item {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.tc-list-faq__item:hover {
  border-color: var(--border-medium);
}
.tc-list-faq__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  gap: 1rem;
}
.tc-list-faq__trigger:hover {
  background: rgba(255, 255, 255, 0.02);
}
.tc-list-faq__trigger span {
  flex: 1;
}
.tc-list-faq__chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}
.tc-list-faq__trigger[aria-expanded="true"] .tc-list-faq__chevron {
  transform: rotate(180deg);
}
.tc-list-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.25rem;
}
.tc-list-faq__trigger[aria-expanded="true"] + .tc-list-faq__answer {
  max-height: 400px;
  padding: 0 1.25rem 1.25rem;
}
.tc-list-faq__answer p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

/* ── TC CTA Section ── */
.tc-list-cta {
  background: linear-gradient(135deg, var(--accent-red) 0%, #0f7a72 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.tc-list-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.tc-list-cta h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #fff;
  margin-bottom: 0.75rem;
  position: relative;
}
.tc-list-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
}

/* ── LISTING PAGE: Map Section ── */
.tc-list-map-section {
  position: relative;
}
.tc-list-map {
  width: 100%;
  height: 400px;
}

/* ── LISTING PAGE: Centre Cards ── */
.tc-list-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.tc-list-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.75rem;
  text-decoration: none;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.tc-list-card:hover {
  border-color: var(--accent-red-bright);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.tc-list-card[data-closed="true"] {
  opacity: 0.6;
}
.tc-list-card__header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.tc-list-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 140, 130, 0.1);
  border-radius: 10px;
  color: var(--accent-red-bright);
}
.tc-list-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.3;
}
.tc-list-card__address {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}
.tc-list-card__closed {
  display: inline-block;
  background: rgba(220, 38, 38, 0.12);
  color: #f87171;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  align-self: flex-start;
}
.tc-list-card__details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.tc-list-card__detail {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.tc-list-card__detail svg {
  color: var(--text-muted);
  flex-shrink: 0;
}
.tc-list-card__intro {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}
.tc-list-card__cta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-red-bright);
  margin-top: auto;
  padding-top: 0.5rem;
  transition: gap 0.2s;
}
.tc-list-card:hover .tc-list-card__cta {
  gap: 0.6rem;
}

/* ── LISTING PAGE: Compare Cards ── */
.tc-list-compare {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.tc-list-compare__card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
}
.tc-list-compare__card:hover {
  border-color: var(--border-medium);
  transform: translateY(-2px);
}
.tc-list-compare__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.tc-list-compare__card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.6rem;
}
.tc-list-compare__card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.65;
  margin: 0;
}

/* ── LISTING PAGE: Timeline ── */
.tc-list-timeline {
  position: relative;
  max-width: 700px;
  margin: 2rem auto 0;
  padding-left: 2.5rem;
}
.tc-list-timeline__line {
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--border-subtle), var(--accent-green), var(--border-subtle));
}
.tc-list-timeline__step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  position: relative;
  padding-bottom: 2rem;
}
.tc-list-timeline__step:last-child {
  padding-bottom: 0;
}
.tc-list-timeline__number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  border: 2px solid var(--border-medium);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}
.tc-list-timeline__number--pass {
  background: rgba(45, 184, 138, 0.15);
  border-color: var(--accent-green);
  color: var(--accent-green);
}
.tc-list-timeline__content h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0.2rem 0 0.4rem;
}
.tc-list-timeline__content p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.65;
  margin: 0;
}

/* ── TC RESPONSIVE ── */
@media (max-width: 900px) {
  .tc-details-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .tc-reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .tc-pretest-grid { grid-template-columns: repeat(2, 1fr); }
  .tc-nearby-grid { grid-template-columns: repeat(3, 1fr); }
  .tc-list-cards { grid-template-columns: 1fr; }
  .tc-list-compare { grid-template-columns: 1fr; }
  .tc-routes-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .tc-hero,
  .tc-list-hero { padding: 8rem 0 2.5rem; }
  .tc-hero__stats,
  .tc-list-hero__stats { gap: 1.25rem; }
  .tc-hero__actions { flex-direction: column; align-items: center; }
  .tc-hero__actions .tc-btn { width: 100%; max-width: 280px; justify-content: center; }
  .tc-tips-grid { grid-template-columns: 1fr; }
  .tc-reviews-grid { grid-template-columns: 1fr; }
  .tc-pretest-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .tc-nearby-grid { grid-template-columns: repeat(2, 1fr); }
  .tc-location-map { height: 260px; }
  .tc-route-map { height: 300px; }
  .tc-list-map { height: 300px; }
  .tc-expect-steps { padding-left: 0; }
  .tc-expect-steps::before { left: 15px; }
  .tc-list-timeline { padding-left: 1.5rem; }
  .tc-list-timeline__line { left: 15px; }
}


/* ========================================
   LOCATION PAGES — V1 Dashboard Layout
   Dashboard grid, hero, pricing, reviews,
   FAQ, pathways, shared components
   ======================================== */

/* ── Shared location utilities ── */
.loc-section { padding: 4rem 0; }
.loc-section-alt { padding: 4rem 0; background: var(--bg-surface); }
.loc-section h2,
.loc-section-alt h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.75rem, 3.5vw, 2.8rem); line-height: 1.12; letter-spacing: -0.025em; color: var(--text-primary); margin-bottom: 1rem; }
.loc-section h2 em,
.loc-section-alt h2 em { font-style: normal; color: var(--accent-red-bright); }
.loc-section h3,
.loc-section-alt h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--text-primary); margin-bottom: 0.75rem; }
.loc-section-label { font-family: var(--font-display); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent-red-bright); margin-bottom: 0.5rem; }

/* ── Buttons ── */
.loc-btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; padding: 0.75rem 1.5rem; border-radius: 8px; border: 1px solid transparent; cursor: pointer; transition: all 0.25s ease; text-decoration: none; line-height: 1.3; }
.loc-btn--primary { background: var(--accent-red); color: #fff; border-color: var(--accent-red); }
.loc-btn--primary:hover { background: var(--accent-red-bright); border-color: var(--accent-red-bright); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(20, 140, 130, 0.3); }
.loc-btn--outline { background: transparent; color: var(--text-primary); border-color: var(--border-medium); }
.loc-btn--outline:hover { border-color: var(--accent-red-bright); color: var(--accent-red-bright); }
.loc-btn--sm { padding: 0.5rem 0.85rem; font-size: 0.82rem; }

/* ── Pills / Tags ── */
.loc-pill { display: inline-flex; align-items: center; gap: 0.35rem; font-family: var(--font-display); font-size: 0.78rem; font-weight: 500; padding: 0.35rem 0.75rem; border-radius: 20px; border: 1px solid var(--border-subtle); background: var(--bg-elevated); color: var(--text-secondary); transition: border-color 0.2s; }
.loc-pill svg { width: 14px; height: 14px; }
.loc-pill--green { color: var(--accent-green); border-color: rgba(45, 184, 138, 0.2); }
.loc-pill--teal { color: var(--accent-red-bright); border-color: rgba(26, 175, 163, 0.2); }
.loc-pill--gold { color: var(--accent-gold); border-color: rgba(232, 184, 75, 0.2); }
.loc-pill.active { border-color: var(--accent-red-bright); color: var(--accent-red-bright); }

/* ── Card base ── */
.loc-card { background: var(--bg-elevated); border: 1px solid var(--border-subtle); border-radius: 12px; padding: 1.25rem; }

/* ── Avatar circles ── */
.loc-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 0.92rem; color: #fff; flex-shrink: 0; }
.loc-avatar--teal { background: var(--accent-red); }
.loc-avatar--green { background: var(--accent-green); }
.loc-avatar--amber { background: var(--accent-amber); }
.loc-avatar--gold { background: var(--accent-gold); }

/* ── Shimmer badges (learner profiles) ── */
.v2-shimmer-badge { display: inline-block; font-family: var(--font-display); font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.2rem 0.55rem; border-radius: 4px; }
.v2-shimmer-badge--first-time { background: rgba(20, 140, 130, 0.15); color: var(--accent-red-bright); }
.v2-shimmer-badge--returning { background: rgba(45, 184, 138, 0.15); color: var(--accent-green); }
.v2-shimmer-badge--test-prep { background: rgba(230, 168, 23, 0.15); color: var(--accent-amber); }
.v2-shimmer-badge--nervous-starter { background: rgba(232, 184, 75, 0.15); color: var(--accent-gold); }
.v2-shimmer-badge--career-changer { background: rgba(20, 140, 130, 0.15); color: var(--accent-red-bright); }


/* ═══════════════════════════════════════
   V1 HERO — Split-screen with pricing card
   ═══════════════════════════════════════ */
.v1-hero { padding: 7rem 0 3.5rem; background: linear-gradient(170deg, var(--bg-deep) 0%, var(--bg-surface) 100%); position: relative; overflow: hidden; }
.v1-hero::before { content: ''; position: absolute; top: -40%; right: -20%; width: 60%; height: 140%; background: radial-gradient(ellipse, rgba(20, 140, 130, 0.06) 0%, transparent 70%); pointer-events: none; }
.v1-hero-grid { display: grid; grid-template-columns: 1fr 360px; gap: 3rem; align-items: start; }
.v1-hero-content { position: relative; z-index: 1; }
.v1-hero-content h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.08; letter-spacing: -0.03em; color: var(--text-primary); margin-bottom: 1rem; }
.v1-hero-content h1 em { font-style: normal; color: var(--accent-red-bright); }
.v1-hero-sub { font-size: 1.12rem; line-height: 1.65; color: var(--text-secondary); max-width: 52ch; margin-bottom: 0.5rem; }
.v1-hero-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }


/* ═══════════════════════════════════════
   V1 QUICK PRICING CARD (hero sidebar)
   ═══════════════════════════════════════ */
.v1-quick-card { background: var(--bg-elevated); border: 1px solid var(--border-subtle); border-radius: 14px; padding: 1.5rem; position: relative; z-index: 1; }
.v1-quick-card-title { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--text-primary); margin-bottom: 0.75rem; }
.v1-quick-row { display: flex; align-items: center; justify-content: space-between; padding: 0.6rem 0; border-bottom: 1px solid var(--border-subtle); }
.v1-quick-row:last-child { border-bottom: none; }
.v1-quick-label { font-size: 0.88rem; color: var(--text-secondary); }
.v1-quick-price { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--text-primary); }
.v1-quick-price.featured { color: var(--accent-red-bright); font-size: 1.05rem; }
.v1-quick-cta { width: 100%; margin-top: 1rem; text-align: center; }

/* ── Toggle (Manual / Automatic) ── */
.loc-tx-toggle { display: inline-flex; position: relative; background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: 8px; padding: 3px; }
.loc-tx-slider { position: absolute; top: 3px; left: 3px; width: calc(50% - 3px); height: calc(100% - 6px); background: var(--accent-red); border-radius: 6px; transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); z-index: 0; }
.loc-tx-toggle .active ~ .loc-tx-slider,
.loc-tx-slider.right { transform: translateX(100%); }
.loc-tx-btn { position: relative; z-index: 1; font-family: var(--font-display); font-size: 0.82rem; font-weight: 600; padding: 0.45rem 1.1rem; border: none; background: transparent; color: var(--text-secondary); cursor: pointer; transition: color 0.2s; border-radius: 6px; }
.loc-tx-btn.active { color: #fff; }


/* ═══════════════════════════════════════
   V1 STATS STRIP
   ═══════════════════════════════════════ */
.v1-stats { display: flex; justify-content: center; gap: 2rem; padding: 2rem 2rem; background: var(--bg-surface); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); flex-wrap: wrap; }
.v1-stat { text-align: center; min-width: 100px; }
.v1-stat-value { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--accent-red-bright); line-height: 1.2; }
.v1-stat-label { font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-top: 0.2rem; }


/* ═══════════════════════════════════════
   V1 DASHBOARD — Sidebar + Main
   ═══════════════════════════════════════ */
.v1-dashboard { display: grid; grid-template-columns: 1fr 280px; gap: 2.5rem; align-items: start; }
.v1-main { min-width: 0; display: flex; flex-direction: column; gap: 2.5rem; }
.v1-main .prose { margin-bottom: 0.5rem; }

/* ── Sidebar ── */
.v1-sidebar { display: flex; flex-direction: column; gap: 1rem; position: sticky; top: 5rem; }
.v1-sidebar-card { background: var(--bg-elevated); border: 1px solid var(--border-subtle); border-radius: 12px; padding: 1.15rem; }
.v1-sidebar-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 0.88rem; color: var(--text-primary); margin-bottom: 0.35rem; }
.v1-sidebar-card p { font-size: 0.84rem; color: var(--text-secondary); line-height: 1.55; }
.v1-sidebar-card small { font-size: 0.75rem; color: var(--text-muted); }
.v1-sidebar-card--tc { border-color: rgba(20, 140, 130, 0.2); background: linear-gradient(135deg, var(--bg-elevated), rgba(20, 140, 130, 0.04)); }
.v1-sidebar-map { border-radius: 12px; overflow: hidden; border: 1px solid var(--border-subtle); height: 220px; }
.v1-sidebar-cta { width: 100%; text-align: center; }

/* ── Road cards ── */
.v1-roads { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.v1-road { background: var(--bg-elevated); border: 1px solid var(--border-subtle); border-radius: 10px; padding: 1rem; transition: border-color 0.2s; }
.v1-road:hover { border-color: var(--border-medium); }
.v1-road h4 { font-family: var(--font-display); font-weight: 700; font-size: 0.88rem; color: var(--text-primary); margin-bottom: 0.3rem; }
.v1-road p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; }


/* ═══════════════════════════════════════
   LOC EDT GRID
   ═══════════════════════════════════════ */
.loc-edt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1rem; }
.loc-edt-card { background: var(--bg-elevated); border: 1px solid var(--border-subtle); border-radius: 12px; padding: 1.15rem; transition: border-color 0.25s, transform 0.25s; }
.loc-edt-card:hover { border-color: var(--border-medium); transform: translateY(-2px); }
.loc-edt-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 0.88rem; color: var(--text-primary); margin-bottom: 0.35rem; }
.loc-edt-card p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; }
.loc-edt-nums { display: flex; gap: 0.35rem; margin-bottom: 0.65rem; }
.loc-edt-num { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 0.75rem; }

/* ── Pickup pills ── */
.loc-pickups { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.75rem; }
.loc-pickup-pill { font-family: var(--font-display); font-size: 0.72rem; font-weight: 500; padding: 0.3rem 0.6rem; border-radius: 6px; background: var(--bg-surface); border: 1px solid var(--border-subtle); color: var(--text-secondary); }

/* ── Map wrapper ── */
.loc-map-wrap { border-radius: 12px; overflow: hidden; }


/* ═══════════════════════════════════════
   V1 PRICING SECTION
   ═══════════════════════════════════════ */
.v1-pricing-list { display: flex; flex-direction: column; gap: 0; margin-top: 1rem; }
.v1-pricing-row { display: grid; grid-template-columns: 1fr auto auto auto; gap: 1rem; align-items: center; padding: 1rem 1.25rem; border-bottom: 1px solid var(--border-subtle); transition: background 0.2s; }
.v1-pricing-row:hover { background: var(--bg-elevated); }
.v1-pricing-row:last-child { border-bottom: none; }
.v1-pricing-row--featured { background: var(--bg-elevated); border: 1px solid rgba(20, 140, 130, 0.25); border-radius: 10px; margin-bottom: 0.25rem; }
.v1-pricing-row--featured:hover { background: rgba(20, 140, 130, 0.06); }
.v1-pricing-badge { display: inline-block; font-family: var(--font-display); font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.2rem 0.5rem; border-radius: 4px; background: rgba(20, 140, 130, 0.15); color: var(--accent-red-bright); margin-left: 0.5rem; vertical-align: middle; }
.v1-pricing-label { font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; color: var(--text-primary); }
.v1-pricing-count { font-size: 0.82rem; color: var(--text-muted); text-align: center; }
.v1-pricing-amount { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: var(--text-primary); text-align: right; }
.v1-pricing-row--featured .v1-pricing-amount { color: var(--accent-red-bright); }
.v1-pricing-per { font-size: 0.78rem; color: var(--text-muted); text-align: right; min-width: 90px; }


/* ═══════════════════════════════════════
   V1 REVIEWS — Carousel
   ═══════════════════════════════════════ */
.loc-review { background: var(--bg-elevated); border: 1px solid var(--border-subtle); border-radius: 12px; }
.loc-review-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.loc-review-name { font-family: var(--font-display); font-weight: 700; font-size: 0.92rem; color: var(--text-primary); }
.loc-stars { color: var(--accent-gold); font-size: 0.85rem; letter-spacing: 1px; }
.loc-review-text { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 0.75rem; }
.loc-review-verify { font-family: var(--font-display); font-size: 0.75rem; font-weight: 500; color: var(--text-muted); transition: color 0.2s; }
.loc-review-verify:hover { color: var(--accent-red-bright); }


/* ═══════════════════════════════════════
   V1 FAQ — Accordion
   ═══════════════════════════════════════ */
.v1-faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.loc-accordion { display: flex; flex-direction: column; gap: 0.5rem; }
.loc-accordion-item { background: var(--bg-elevated); border: 1px solid var(--border-subtle); border-radius: 10px; overflow: hidden; transition: border-color 0.2s; }
.loc-accordion-item:has(.loc-accordion-trigger[aria-expanded="true"]) { border-color: var(--border-medium); }
.loc-accordion-trigger { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 1rem 1.15rem; background: transparent; border: none; color: var(--text-primary); font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; text-align: left; cursor: pointer; gap: 0.75rem; transition: color 0.2s; }
.loc-accordion-trigger:hover { color: var(--accent-red-bright); }
.loc-accordion-trigger svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.3s ease; color: var(--text-muted); }
.loc-accordion-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.loc-accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease; }
.loc-accordion-body p { padding: 0 1.15rem 1rem; font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; }


/* ═══════════════════════════════════════
   V1 PATHWAYS — 3-card grid + CTA
   ═══════════════════════════════════════ */
.loc-pathways { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.loc-pathway { display: flex; flex-direction: column; align-items: flex-start; gap: 0.5rem; background: var(--bg-elevated); border: 1px solid var(--border-subtle); border-radius: 12px; padding: 1.5rem; text-decoration: none; transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s; }
.loc-pathway:hover { border-color: rgba(20, 140, 130, 0.3); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); color: var(--text-primary); }
.loc-pathway-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.loc-pathway h4 { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--text-primary); }
.loc-pathway p { font-size: 0.86rem; color: var(--text-secondary); line-height: 1.55; }

/* ── CTA Banner ── */
.loc-cta-banner { background: linear-gradient(135deg, var(--bg-elevated) 0%, rgba(20, 140, 130, 0.08) 100%); border: 1px solid rgba(20, 140, 130, 0.2); border-radius: 16px; padding: 3rem 2rem; text-align: center; }
.loc-cta-banner h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--text-primary); margin-bottom: 0.75rem; }
.loc-cta-banner p { font-size: 1rem; color: var(--text-secondary); margin-bottom: 1.5rem; }


/* ═══════════════════════════════════════
   LOCATION PAGES — Responsive
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .v1-hero-grid { grid-template-columns: 1fr 300px; gap: 2rem; }
  .v1-dashboard { grid-template-columns: 1fr 260px; gap: 2rem; }
  .loc-edt-grid { grid-template-columns: repeat(2, 1fr); }
  .v1-pricing-row { grid-template-columns: 1fr auto auto; gap: 0.75rem; }
  .v1-pricing-per { display: none; }
}

@media (max-width: 768px) {
  .v1-hero { padding: 6rem 0 2.5rem; }
  .v1-hero-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .v1-quick-card { max-width: 400px; }
  .v1-dashboard { grid-template-columns: 1fr; }
  .v1-sidebar { position: static; order: -1; }
  .v1-sidebar-map { height: 200px; }
  .v1-stats { gap: 1rem; padding: 1.5rem 1rem; }
  .v1-stat-value { font-size: 1.4rem; }
  .v1-roads { grid-template-columns: 1fr; }
  .loc-edt-grid { grid-template-columns: 1fr; }
  .v1-faq-grid { grid-template-columns: 1fr; }
  .loc-pathways { grid-template-columns: 1fr; }
  .v1-pricing-row { grid-template-columns: 1fr auto; gap: 0.5rem; padding: 0.85rem 1rem; }
  .v1-pricing-count { display: none; }
  .v1-pricing-per { display: none; }
  .loc-section { padding: 3rem 0; }
  .loc-section-alt { padding: 3rem 0; }
  .loc-cta-banner { padding: 2rem 1.25rem; }
  .loc-review { min-width: 85% !important; flex: 0 0 85% !important; }

  /* Carousel dots active state */
  [data-carousel-dot].active { background: var(--accent-red-bright) !important; }
}

@media (max-width: 480px) {
  .v1-hero { padding: 5rem 0 2rem; }
  .v1-hero-content h1 { font-size: 1.75rem; }
  .v1-hero-sub { font-size: 0.95rem; }
  .v1-hero-pills { gap: 0.35rem; }
  .loc-pill { font-size: 0.7rem; padding: 0.25rem 0.55rem; }
  .v1-stats { gap: 0.75rem; }
  .v1-stat { min-width: 70px; }
  .loc-btn { padding: 0.65rem 1.15rem; font-size: 0.85rem; }
}

/* Carousel dot active state (all sizes) */
[data-carousel-dot].active { background: var(--accent-red-bright) !important; }
