/* ========================================
   Claw Framework — Unified Stylesheet
   Framework-level styles with neutral defaults.
   Brand-specific values come from brand.css.
   Last updated: 2026-04-04
   ======================================== */

/* --- Cascade Layer Declaration --- */
@layer framework.reset, framework.base, framework.layout, framework.components, brand;

/* --- CSS Variables (neutral defaults) --- */
@layer framework.base {
:root {
  /* === BACKGROUNDS === */
  --bg-deep: #1a1a1e;
  --bg-surface: #222226;
  --bg-elevated: #2a2a2e;
  --bg-subtle: #303034;
  --bg-warm: #252520;
  --bg-accent-subtle: rgba(128, 128, 128, 0.04);

  /* === TEXT === */
  --text-primary: #e8e8e8;
  --text-secondary: #a0a0a0;
  --text-muted: #686868;

  /* === ACCENTS (neutral gray/blue defaults) === */
  --accent-red: #888888;
  --accent-red-bright: #999999;
  --accent-primary: var(--accent-red);
  --accent-primary-hover: var(--accent-red-bright);
  --text-on-accent: #ffffff;
  --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);

  /* === BORDERS === */
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-medium: rgba(255, 255, 255, 0.1);

  /* === TYPOGRAPHY === */
  --font-display: system-ui, sans-serif;
  --font-body: system-ui, sans-serif;

  /* === LAYOUT === */
  --max-width: 1320px;
  --header-height: 80px;

  /* === OVERLAYS (semi-transparent variants of bg-deep) === */
  --bg-overlay-heavy: rgba(128, 128, 128, 0.85);
  --bg-overlay-medium: rgba(128, 128, 128, 0.70);
  --bg-overlay-light: rgba(128, 128, 128, 0.40);
  --bg-overlay-subtle: rgba(128, 128, 128, 0.30);

  /* === SHADOWS (neutral) === */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.16);

  /* === RADII === */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}
} /* end @layer framework.base */

/* --- All component & utility styles in framework.components layer --- */
@layer framework.components {

/* --- 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); padding-top: var(--header-height); }
img { max-width: 100%; display: block; }
a { color: var(--accent-primary-hover); 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-primary-hover); }
.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: var(--header-height);
  background: var(--bg-overlay-heavy);
  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 {
  height: 100px;
  width: auto;
}

.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-primary);
  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-primary-hover);
}

.nav-cta { font-family: var(--font-display); font-weight: 600; font-size: 0.82rem; color: #fff; background: var(--accent-primary); padding: 0.5em 1.1em; border-radius: 2px; }
.nav-cta:hover { background: var(--accent-primary-hover); 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: var(--header-height);
  left: 0;
  right: 0;
  background: var(--bg-overlay-heavy);
  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-primary-hover); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.75em; }
.hero-location::before { content: ''; width: 28px; height: 2px; background: var(--accent-primary); }
.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%, var(--bg-overlay-light) 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-primary-hover); 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-primary-hover); 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-primary-hover); 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-primary); 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-primary); }
.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-primary); }
.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, var(--bg-overlay-subtle), transparent); }
.story-closing { margin-top: 2rem; font-size: 1.05rem; color: var(--text-secondary); max-width: 65ch; border-left: 2px solid var(--accent-primary); 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-primary); }
.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-primary-hover); 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-primary-hover); 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-primary-hover); }
.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-primary-hover); }
.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: var(--bg-overlay-heavy); 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-primary); color: #fff; }
.btn-primary:hover { background: var(--accent-primary-hover); 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:not(.btn) {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  line-height: 2.2;
  transition: color 0.2s ease;
}

.footer-column a:not(.btn):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-brand 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-primary-hover);
}

.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-primary);
      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-primary-hover);
      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-primary-hover);
    }

.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-primary);
    }

.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-primary-hover);
      color: var(--accent-primary-hover);
    }

.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-primary);
    }

.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-primary);
      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-primary-hover);
      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:not(.btn) {
      color: var(--text-secondary);
      font-size: 0.9rem;
      transition: color 0.3s ease;
    }

footer .footer-column a:not(.btn):hover {
      color: var(--accent-primary-hover);
    }

.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-primary);
      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-primary);
    }

.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-primary);
      color: white;
    }

.cta-primary:hover {
      background: var(--accent-primary);
      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-primary);
      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-primary);
      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-primary);
    }

.sidebar-phone {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--accent-primary);
      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-primary-hover);
      font-weight: 600;
      font-size: 0.95rem;
    }

.pathway-link:hover {
      color: var(--accent-primary);
    }

.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-primary-hover);
}

.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-primary-hover);
  color: #fff;
}

.hero-v1 .btn-primary:hover {
  background: var(--accent-primary);
  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-primary-hover);
}

.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-primary-hover);
  color: #fff;
}

.hero-v2 .btn-primary:hover {
  background: var(--accent-primary);
  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, var(--bg-overlay-medium), var(--accent-green-soft));
  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-primary-hover);
}

.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-primary-hover);
  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-primary-hover);
}

.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-primary-hover);
  color: #fff;
}

.hero .btn-primary:hover {
  background: var(--accent-primary);
  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, var(--bg-overlay-medium), var(--accent-green-soft));
  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-primary-hover);
}

.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-primary-hover);
  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-primary-hover);
  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-primary-hover);
  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-primary-hover);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.services-v2-tabbed .service-link:hover {
  color: var(--accent-primary);
}

/* --- 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-primary-hover);
}

/* --- 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-primary-hover);
}

.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-primary-hover);
}

.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: var(--bg-overlay-heavy);
  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-primary-hover);
  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-primary);
  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-primary);
  color: var(--accent-primary);
  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-primary); 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-primary); 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-primary-hover); }

/* === 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-primary); 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-primary-hover); }
@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-primary); }
.hp-pricing-card.popular { border-color: var(--accent-primary); }
.hp-pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent-primary); 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-primary); color: #fff; }
.hp-pricing-card.popular .hp-pricing-btn:hover { background: var(--accent-primary-hover); 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-primary); color: var(--accent-primary-hover); }

/* === 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-primary); 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-primary-hover); 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-primary-hover); 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: var(--bg-elevated); 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: var(--bg-elevated); 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); color: var(--accent-green);
  border: 1px solid var(--border-medium);
}
.sticky-cta-call:hover { background: var(--bg-card); }
.sticky-cta-book {
  background: var(--accent-primary); color: #fff; border: none;
}
.sticky-cta-book:hover { background: var(--accent-primary-hover); 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; }
}

/* --- Button-as-link color overrides ---
   Ensures .btn color is never overridden by ancestor 'a' selectors.
   Placed at end of layer for maximum cascade weight within the layer. */
a.btn-primary,
a.btn-primary:hover,
a.btn-primary:visited { color: #fff; }
a.btn-book,
a.btn-book:hover,
a.btn-book:visited { color: #fff; }
a.btn-outline,
a.btn-outline:hover,
a.btn-outline:visited { color: #fff; }
a.nav-cta,
a.nav-cta:hover,
a.nav-cta:visited { color: #fff; }
a.nav-phone,
a.nav-phone:hover,
a.nav-phone:visited { color: #fff; }

} /* end @layer framework.components */