/*
Theme Name: GoPro Koh Tao
Theme URI:
Description: Custom WordPress theme for GoPro Koh Tao — independent diving guide
Version: 1.0
Author: The Digital Dutchie
*/

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

:root {
  --teal: #00d4aa;
  --teal-dark: #00b391;
  --coral: #ff5c4d;
  --coral-dark: #e04030;
  --black: #06101f;
  --dark: #0a1828;
  --mid: #0f2035;
  --mid-light: #162840;
  --white: #f0f4f8;
  --off-white: #dce5ef;
  --glass-bg: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.14);
  --text-primary: rgba(240, 244, 248, 1);
  --text-secondary: rgba(240, 244, 248, 0.80);
  --text-muted: rgba(240, 244, 248, 0.50);
  --text-faint: rgba(240, 244, 248, 0.25);
  --line: rgba(240, 244, 248, 0.08);
  --line-strong: rgba(240, 244, 248, 0.14);
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --text-xs: 10px;
  --text-sm: 12px;
  --text-base: 14px;
  --text-md: 15px;
  --text-lg: 16px;
  --text-nav: 13px;
  --text-display-sm: clamp(36px, 4vw, 54px);
  --text-display-md: clamp(42px, 5vw, 64px);
  --text-display-hero: clamp(72px, 9vw, 110px);
  --leading-tight: 0.93;
  --leading-normal: 1.65;
  --leading-loose: 1.8;
  --tracking-wide: 0.3px;
  --tracking-wider: 1.5px;
  --tracking-caps: 3px;
  --weight-light: 300;
  --weight-normal: 400;
  --weight-medium: 500;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 2.5rem;
  --space-6: 3rem;
  --space-8: 4rem;
  --space-10: 5rem;
  --space-12: 6rem;
  --space-14: 7rem;
  --section-pad-top: var(--space-12);
  --section-pad-bottom: var(--space-10);
  --section-pad-x: var(--space-5);
  --section-overlap: -30px;
  --section-header-gap: var(--space-8);
  --radius-section: 32px;
  --radius-card: 20px;
  --radius-card-sm: 18px;
  --radius-input: 12px;
  --radius-pill: 100px;
  --radius-icon: 12px;
  --border-faint: 0.5px solid var(--line);
  --border-strong: 0.5px solid var(--line-strong);
  --stat-num-size: 52px;
  --icon-size: 44px;
  --nav-height: 110px;
  --transition-fast: 0.15s;
  --transition-base: 0.2s;
  --transition-slow: 0.35s;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 100;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

.teal {
  color: var(--teal);
}

.coral {
  color: var(--coral);
}

.label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.75rem;
  display: block;
}

.display {
  font-family: var(--font-display);
  line-height: 0.93;
  letter-spacing: 0.5px;
}

/* ═══ NAV ════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
  transition: background 0.4s, backdrop-filter 0.4s;
}

.nav.scrolled {
  background: rgba(6, 16, 31, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 0.5px solid var(--glass-bg);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--white);
  text-decoration: none;
}

.nav-logo span {
  color: var(--teal);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: flex-end;
}

.nav-links a {
  color: rgba(240, 244, 248, 0.55);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

/* Nav dropdown */
.nav-item {
  position: relative;
}

.nav-item--dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-item--dropdown > a svg {
  transition: transform var(--transition-base) ease;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 200px;
  background: var(--dark);
  border: 0.5px solid var(--line-strong);
  border-radius: var(--radius-card-sm);
  /* 12px invisible top padding bridges the gap so hover isn't lost */
  padding: calc(12px + 0.5rem) 0 0.5rem;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base) ease, transform var(--transition-base) ease;
  z-index: 100;
}

.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-item--dropdown:hover > a svg,
.nav-item--dropdown:focus-within > a svg {
  transform: rotate(180deg);
}

.nav-dropdown li a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: var(--text-nav);
  color: var(--text-secondary);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-dropdown li a:hover {
  color: var(--white);
  background: rgba(240, 244, 248, 0.04);
}

/* Mobile nav group label + sub-items */
.mobile-nav-group-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--teal);
  padding: 1rem 0 0.25rem;
  pointer-events: none;
}

.mobile-nav-subitem a {
  padding-left: 1rem;
  font-size: var(--text-base);
}

.nav-cta {
  background: transparent;
  color: var(--coral);
  border: 1px solid var(--coral);
  border-radius: 100px;
  padding: 9px 22px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--coral);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-coral {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--coral);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 14px 30px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-coral:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--teal);
  border: 0.5px solid rgba(0, 212, 170, 0.35);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-ghost:hover {
  background: rgba(0, 212, 170, 0.08);
  transform: translateY(-1px);
}

.btn-ghost .arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 0.5px solid var(--text-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* ═══ HERO ═══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0 0 var(--radius-section) var(--radius-section);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  background-image: url(https://images.unsplash.com/photo-1708864163871-311332fb9d5e?q=80&w=1074&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(6, 16, 31, 0.45) 0%, rgba(6, 16, 31, 1) 100%);
  z-index: 1;
}

.hero-body {
  position: relative;
  z-index: 10;
  padding: 8rem 2.5rem;
  animation: fadeUp 0.9s ease 0.2s both;
}

.hero-title {
  font-size: clamp(72px, 9vw, 110px);
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 580px;
  min-width: min-content;
}

.hero-title span {
  color: var(--teal);
}

.hero-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 420px;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}


.hero-scroll-hint {
  font-size: 12px;
  color: var(--coral);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-scroll-hint::before {
  content: '';
  width: 1px;
  height: 20px;
  background: var(--coral);
}

.hero-glass {
  display: flex;
  align-items: center;
  gap: 0;
  z-index: 12;
  width: fit-content;
  animation: fadeUp 0.9s ease 0.5s both;
}

.hero-path-finder {
  margin: 1.5rem 0;
  width: fit-content;
  background: var(--glass-bg);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 0.5px solid var(--glass-border);
  border-radius: var(--radius-card);
  padding: 1.35rem 1.75rem;
}

.hero-glass--stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 4rem;
  border-right: 0.5px solid var(--line);
}

.hero-stat:first-child {
  padding-left: 0;
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--white);
  line-height: 1;
  letter-spacing: 1px;
}

.hero-stat-num span {
  color: var(--teal);
}

.hero-stat-label {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.search-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.glass-select {
  flex: 1;
  background: rgba(240, 244, 248, 0.09);
  border: 0.5px solid rgba(240, 244, 248, 0.18);
  border-radius: 12px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: background 0.2s, border-color 0.2s;
}

.glass-select:hover {
  background: var(--line-strong);
  border-color: rgba(240, 244, 248, 0.3);
}

.glass-select option {
  color: #111;
  background: #fff;
}

.search-btn {
  background: var(--coral);
  color: var(--white);
  border: none;
  border-radius: 12px;
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
}

.search-btn:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
}

.search-btn:disabled {
  background: var(--glass-bg);
  color: var(--text-muted);
  cursor: not-allowed;
  pointer-events: none;
}

/* ── Hero path result ───────────────────────── */
.hero-path-result {
  border-top: 0.5px solid var(--line);
  padding-top: var(--space-2);
  margin-top: var(--space-2);
}

.hero-path-result__label {
  font-size: var(--text-xs);
  color: var(--teal);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.hero-path-result__title {
  color: var(--text-primary);
  font-weight: var(--weight-medium);
  font-size: var(--text-base);
  margin-bottom: var(--space-2);
}

.hero-path-result__steps {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-2);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.hero-path-result__steps li {
  display: flex;
  gap: 0.5rem;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-normal);
}

.hero-path-result__num {
  color: var(--teal);
  flex-shrink: 0;
}

.hero-path-result__notice {
  background: rgba(255, 180, 50, 0.08);
  border: 0.5px solid rgba(255, 180, 50, 0.25);
  border-radius: var(--radius-input);
  padding: var(--space-1) var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255, 200, 80, 0.85);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-2);
}

.hero-path-result__cta {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius-input);
}

.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 0.5px solid rgba(240, 244, 248, 0.1);
  padding-top: 1.25rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 1.5rem;
  border-right: 0.5px solid rgba(240, 244, 248, 0.1);
}

.stat:first-child {
  padding-left: 0;
}

.stat:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--white);
  line-height: 1;
  letter-spacing: 1px;
}

.stat-num span {
  color: var(--teal);
}

.stat-label {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ═══ PATHS SECTION ═══════════════════════════ */
.features-section {
  background: var(--black);
  border-radius: var(--radius-section) var(--radius-section) 0 0;
  margin-top: -30px;
  padding: 5.5rem 2.5rem 5rem;
  position: relative;
  z-index: 6;
}

.features-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.features-header .display {
  font-size: clamp(42px, 5vw, 64px);
}

.features-header p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 350px;
  line-height: 1.75;
  text-align: right;
}

.paths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.path-card {
  display: block;
  text-decoration: none;
  background: var(--dark);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 0.5px solid rgba(240, 244, 248, 0.06);
  transition: transform 0.35s ease, border-color 0.25s;
}

.path-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 212, 170, 0.25);
}

.path-card-img {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.path-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 16, 31, 0.9) 0%, transparent 60%);
}

.path-card-img.divemaster {
  background-image: linear-gradient(135deg, #06101f 0%, #0a2d4a 50%, #0d5c7a 100%);
}

.path-card-img.owsi {
  background-image: linear-gradient(135deg, #06101f 0%, #0a3d1a 50%, #0d6b3a 100%);
}

.path-card-img.video {
  background-image: linear-gradient(135deg, #06101f 0%, #2d0a2a 50%, #6b0d5a 100%);
}

.path-card-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  background: var(--teal);
  color: var(--black);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.path-card-body {
  padding: 1.5rem;
}

.path-card-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.path-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.path-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: var(--border-faint);
  padding-top: 1rem;
}

.path-card-meta {
  font-size: 12px;
  color: var(--text-muted);
}

.path-card-arrow {
  width: 34px;
  height: 34px;
  background: rgba(240, 244, 248, 0.05);
  border: 0.5px solid rgba(240, 244, 248, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.path-card:hover .path-card-arrow {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}

/* ═══ TESTIMONIALS ═══════════════════════════ */
.testimonials-section {
  background: var(--mid);
  border-radius: var(--radius-section) var(--radius-section) 0 0;
  margin-top: -30px;
  padding: 5.5rem 2.5rem 5rem;
  position: relative;
  z-index: 7;
}

.testimonials-section .display {
  font-size: clamp(42px, 5vw, 62px);
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial-card {
  background: var(--dark);
  border: 0.5px solid rgba(240, 244, 248, 0.07);
  border-radius: 18px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-stars {
  color: var(--coral);
  font-size: 13px;
  letter-spacing: 3px;
}

.testimonial-text {
  font-size: 14px;
  color: rgba(240, 244, 248, 0.55);
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 0.5px solid rgba(240, 244, 248, 0.07);
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 212, 170, 0.15);
  border: 1px solid rgba(0, 212, 170, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--teal);
  flex-shrink: 0;
}

.author-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}

.author-meta {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

/* ═══ BRIDGE / AGENCY ════════════════════════ */
.bridge-section {
  background: var(--dark);
  border-radius: var(--radius-section) var(--radius-section) 0 0;
  margin-top: -30px;
  padding: 5.5rem 2.5rem 5rem;
  position: relative;
  z-index: 8;
}

.bridge-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.bridge-left .display {
  font-size: clamp(42px, 5vw, 64px);
  margin-bottom: 1.25rem;
}

.bridge-left p {
  font-size: 15px;
  color: rgba(240, 244, 248, 0.42);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.bridge-right {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(240, 244, 248, 0.05);
  border-radius: 20px;
  overflow: hidden;
}

.benefit-row {
  background: var(--mid);
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: background 0.2s;
}

.benefit-row:hover {
  background: var(--mid-light);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 212, 170, 0.08);
  border: 0.5px solid rgba(0, 212, 170, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}

.benefit-text h4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 3px;
}

.benefit-text p {
  font-size: 13px;
  color: rgba(240, 244, 248, 0.35);
  line-height: 1.55;
}

/* ═══ BLOG ═══════════════════════════════════ */
.blog-section {
  background: var(--black);
  border-radius: var(--radius-section) var(--radius-section) 0 0;
  margin-top: -30px;
  padding: 5.5rem 2.5rem 5rem;
  position: relative;
  z-index: 9;
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
}

.blog-header .display {
  font-size: clamp(36px, 4vw, 54px);
}

.blog-link {
  font-size: 13px;
  color: var(--coral);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.blog-link:hover {
  gap: 10px;
}

.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
}

.blog-card {
  background: var(--dark);
  border: 0.5px solid rgba(240, 244, 248, 0.06);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.25s;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 74, 0.25);
}

.blog-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.blog-card.featured .blog-card-img {
  height: 280px;
}

.blog-card-img.img-a {
  background-image: linear-gradient(135deg, #06101f, #0a2d4a, #0d5c7a);
}

.blog-card-img.img-b {
  background-image: linear-gradient(135deg, #06101f, #1a0a2d, #4a0d6b);
}

.blog-card-img.img-c {
  background-image: linear-gradient(135deg, #06101f, #0a2d1a, #0d6b3a);
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-cat {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
  display: block;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.3px;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.blog-card.featured .blog-card-title {
  font-size: 30px;
}

.blog-card-excerpt {
  font-size: 13px;
  color: rgba(240, 244, 248, 0.35);
  line-height: 1.65;
}

/* ═══ FAQ ════════════════════════════════════ */
.faq-section {
  background: var(--mid);
  border-radius: var(--radius-section) var(--radius-section) 0 0;
  margin-top: -30px;
  padding: 5.5rem 2.5rem 5rem;
  position: relative;
  z-index: 10;
}

.faq-section .display {
  font-size: clamp(42px, 5vw, 62px);
  margin-bottom: 3rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(240, 244, 248, 0.05);
  border-radius: 20px;
  overflow: hidden;
}

.faq-item {
  background: var(--dark);
  padding: 1.75rem 2rem;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
}

.faq-item:hover {
  background: var(--mid-light);
}

.faq-item:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: -2px;
}

.faq-q {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.faq-icon {
  color: var(--coral);
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 13px;
  color: rgba(240, 244, 248, 0.42);
  line-height: 1.75;
  transition: max-height 0.35s ease, opacity 0.2s ease, margin-top 0.2s ease;
}

.faq-item.open .faq-a {
  max-height: 300px;
  opacity: 1;
  margin-top: 0.75rem;
}

/* ═══ FOOTER ══════════════════════════════════ */
.footer {
  background: var(--black);
  border-radius: var(--radius-section) var(--radius-section) 0 0;
  margin-top: -30px;
  padding: 4.5rem 2.5rem 2.5rem;
  position: relative;
  z-index: 11;
  border-top: 0.5px solid rgba(240, 244, 248, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 0.5px solid rgba(240, 244, 248, 0.07);
}

.footer-brand .nav-logo {
  font-size: 24px;
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(240, 244, 248, 0.3);
  line-height: 1.8;
  max-width: 260px;
}

.footer-col h5 {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col ul a {
  font-size: 13px;
  color: rgba(240, 244, 248, 0.42);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(240, 244, 248, 0.2);
}

/* ═══ ANIMATIES ════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ HAMBURGER ══════════════════════════════ */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ═══ MOBILE MENU ════════════════════════════ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 80vw);
  height: 100%;
  background: var(--dark);
  border-left: var(--border-faint);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 16, 31, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open {
  overflow: hidden;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}

.mobile-menu-close {
  background: transparent;
  border: none;
  color: rgba(240, 244, 248, 0.55);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.mobile-menu-close:hover {
  color: var(--white);
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.mobile-nav ul li a {
  display: block;
  padding: 1rem 0;
  font-size: 17px;
  font-weight: 500;
  color: rgba(240, 244, 248, 0.65);
  text-decoration: none;
  border-bottom: 0.5px solid rgba(240, 244, 248, 0.06);
  transition: color 0.2s;
}

.mobile-nav ul li:last-child a {
  border-bottom: none;
}

.mobile-nav ul li a:hover {
  color: var(--white);
}

.mobile-nav .btn-coral {
  width: 100%;
  justify-content: center;
  margin-top: 2rem;
  border-radius: 12px;
}

/* ═══ FOCUS STATES ═══════════════════════════ */
a:focus-visible,
button:focus-visible,
.btn-coral:focus-visible,
.nav-cta:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ═══ REDUCED MOTION ══════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* ═══════════════════════════════════════════════════
   PATH PAGES — HERO ADDITIONS
═══════════════════════════════════════════════════ */

.hero-prereq {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 212, 170, 0.1);
  border: 0.5px solid rgba(0, 212, 170, 0.25);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 12px;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-prereq-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════ */

.how-section {
  background: var(--dark);
  border-radius: var(--radius-section) var(--radius-section) 0 0;
  margin-top: -30px;
  padding: 5.5rem 2.5rem 5rem;
  position: relative;
  z-index: 6;
}

.how-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.how-header .display {
  font-size: clamp(42px, 5vw, 64px);
}

.how-header p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 320px;
  line-height: 1.75;
  text-align: right;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.how-step {
  background: var(--mid);
  padding: 2.5rem 2rem;
  position: relative;
}

.how-step-num {
  font-family: var(--font-display);
  font-size: 80px;
  color: rgba(0, 212, 170, 0.08);
  line-height: 1;
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  letter-spacing: 2px;
}

.how-step-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 212, 170, 0.08);
  border: 0.5px solid rgba(0, 212, 170, 0.2);
  border-radius: var(--radius-icon);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--teal);
}

.how-step h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.how-step p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.how-step-tag {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
}


/* ═══════════════════════════════════════════════════
   FEATURES — PATH PAGES (internals only)
   .features-section wrapper is defined above (paths)
═══════════════════════════════════════════════════ */

.features-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.features-left .display {
  font-size: clamp(42px, 5vw, 60px);
  margin-bottom: 1.25rem;
}

.features-left > p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.feature-row {
  background: var(--dark);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: background 0.2s;
  cursor: default;
}

.feature-row:hover {
  background: var(--mid-light);
}

.feature-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 212, 170, 0.1);
  border: 0.5px solid rgba(0, 212, 170, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--teal);
  flex-shrink: 0;
}

.feature-row span {
  font-size: 14px;
  color: var(--text-secondary);
}

.requirements-card {
  background: var(--dark);
  border: 0.5px solid var(--line-strong);
  border-radius: var(--radius-card);
  padding: 2rem;
  margin-top: 1.5rem;
}

.requirements-card h4 {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.req-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 0.5px solid var(--line);
}

.req-item:last-child {
  border-bottom: none;
}

.req-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--teal);
}

.req-item h5 {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 2px;
}

.req-item p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
}


/* ═══════════════════════════════════════════════════
   TIMELINE
═══════════════════════════════════════════════════ */

.timeline-section {
  background: var(--black);
  border-radius: var(--radius-section) var(--radius-section) 0 0;
  margin-top: -30px;
  padding: 5.5rem 2.5rem 5rem;
  position: relative;
  z-index: 8;
}

.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.timeline-header .display {
  font-size: clamp(42px, 5vw, 64px);
}

.timeline-header p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 300px;
  line-height: 1.75;
  text-align: right;
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: var(--line-strong);
}

.timeline-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark);
  border: 0.5px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--teal);
  letter-spacing: 0.5px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-item.active .timeline-dot {
  background: rgba(0, 212, 170, 0.1);
  border-color: rgba(0, 212, 170, 0.4);
}

.timeline-content {
  background: var(--dark);
  border: 0.5px solid var(--line);
  border-radius: var(--radius-card-sm);
  padding: 1.5rem 1.75rem;
  transition: border-color 0.25s;
}

.timeline-content:hover {
  border-color: rgba(0, 212, 170, 0.2);
}

.timeline-week {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.4rem;
}

.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 0.6rem;
}

.timeline-content p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 1rem;
}

.timeline-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(240, 244, 248, 0.05);
  border: 0.5px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
}


/* ═══════════════════════════════════════════════════
   BENEFITS
═══════════════════════════════════════════════════ */

.benefits-section {
  background: var(--dark);
  border-radius: var(--radius-section) var(--radius-section) 0 0;
  margin-top: -30px;
  padding: 5.5rem 2.5rem 5rem;
  position: relative;
  z-index: 9;
}

.benefits-header {
  margin-bottom: 3.5rem;
}

.benefits-header .display {
  font-size: clamp(42px, 5vw, 64px);
  margin-bottom: 1rem;
}

/* .benefits-header p {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 500px;
  line-height: 1.8;
} */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.benefit-card {
  background: var(--mid);
  border: 0.5px solid var(--line);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  transition: transform 0.3s ease, border-color 0.25s;
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 212, 170, 0.25);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 212, 170, 0.08);
  border: 0.5px solid rgba(0, 212, 170, 0.2);
  border-radius: var(--radius-icon);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--teal);
}

.benefit-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.benefit-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}


/* ─────────────────────────────────────────
    CTA SECTION
───────────────────────────────────────── */
.cta-section {
  background: var(--black);
  z-index: 11;
  padding: 5.5rem 2.5rem 5rem;
}

.cta-inner {
  display: block;
  max-width: 640px;
}

.cta-inner .label {
  display: block;
  margin-bottom: var(--space-2);
}

.cta-inner .display {
  margin-bottom: var(--space-3);
}

.cta-inner > p {
  margin-bottom: var(--space-5);
}

.cta-heading {
  font-family: var(--font-display);
  font-size: var(--text-display-md);
  line-height: var(--leading-tight);
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.cta-heading .line-accent {
  color: var(--teal);
}

.cta-sub {
  font-size: var(--text-md);
  color: var(--text-secondary);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-5);
}

.cta-notes {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.cta-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: var(--space-3);
}

.cta-note svg {
  color: var(--teal);
  flex-shrink: 0;
}

/* Stat block */
.cta-stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-6);
  border-radius: var(--radius-card);
  border: var(--border-faint);
  background: rgba(255, 255, 255, 0.025);
}

.cta-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: var(--space-4);
  border-bottom: 0.5px solid var(--line);
}

.cta-stat:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.cta-stat-value {
  font-family: var(--font-display);
  font-size: var(--stat-num-size);
  color: var(--text-primary);
  line-height: 1;
}

.cta-stat-value span {
  color: var(--teal);
}

.cta-stat-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-normal);
}

/* Two-column CTA layout (videographer page) */
.cta-section--two-col .cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
  max-width: 100%;
}

/* ═══════════════════════════════════════════════════
   VIDEOGRAPHER — UTILITY CLASSES
═══════════════════════════════════════════════════ */

/* Base section class used by skills + roadmap sections */
.section {
  border-radius: var(--radius-section) var(--radius-section) 0 0;
  margin-top: var(--section-overlap);
  padding: var(--section-pad-top) var(--section-pad-x) var(--section-pad-bottom);
  position: relative;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--coral);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-heading {
  font-family: var(--font-display);
  font-size: var(--text-display-md);
  line-height: var(--leading-tight);
  color: var(--text-primary);
}

.section-lead {
  font-size: var(--text-md);
  color: var(--text-secondary);
  line-height: var(--leading-loose);
  max-width: 540px;
}

/* Stagger delay utilities (roadmap reveal) */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }


/* ─────────────────────────────────────────
       HOW IT WORKS
    ───────────────────────────────────────── */
.how-section {
  background: var(--dark);
  z-index: 6;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--section-header-gap);
}

.how-card {
  position: relative;
  padding: var(--space-5);
  border-radius: var(--radius-card);
  border: var(--border-faint);
  background: rgba(255, 255, 255, 0.025);
  transition: border-color var(--transition-base) ease, transform var(--transition-base) ease;
  overflow: hidden;
}

.how-card:hover {
  border-color: rgba(0, 212, 170, 0.2);
  transform: translateY(-5px);
}

/* Shimmer sweep on hover */
.how-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.04) 50%, transparent 70%);
  transform: translateX(-120%) skewX(-12deg);
  transition: none;
  pointer-events: none;
}

.how-card:hover::before {
  animation: shimmerSlide 0.55s ease forwards;
}

.how-step-num {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--teal);
  opacity: 0.18;
  line-height: 1;
  margin-bottom: var(--space-3);
  letter-spacing: -1px;
}

.how-icon-wrap {
  width: var(--icon-size);
  height: var(--icon-size);
  background: rgba(0, 212, 170, 0.08);
  border: 0.5px solid rgba(0, 212, 170, 0.2);
  border-radius: var(--radius-icon);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: var(--space-3);
  transition: transform var(--transition-base) ease;
}

.how-card:hover .how-icon-wrap {
  animation: iconPop 0.4s ease forwards;
}

.how-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
  letter-spacing: 0.5px;
}

.how-card p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-normal);
}


/* ═══════════════════════════════════════════════════
   VIDEOGRAPHER — SKILLS SECTION
═══════════════════════════════════════════════════ */

.skills-section {
  background: var(--mid);
  z-index: 7;
}

.skills-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: end;
  margin-bottom: var(--section-header-gap);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.skill-card {
  position: relative;
  padding: var(--space-5) var(--space-4);
  border-radius: var(--radius-card);
  border: var(--border-faint);
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
  cursor: default;
  transition: border-color var(--transition-base) ease, transform var(--transition-base) ease, background var(--transition-base) ease;
}

.skill-card:hover {
  border-color: rgba(0, 212, 170, 0.25);
  transform: translateY(-5px);
  background: rgba(0, 212, 170, 0.04);
}

.skill-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 25%, rgba(255, 255, 255, 0.05) 50%, transparent 75%);
  transform: translateX(-120%) skewX(-12deg);
  pointer-events: none;
}

.skill-card:hover::before {
  animation: shimmerSlide 0.6s ease forwards;
}

.skill-card.featured {
  border-color: rgba(0, 212, 170, 0.3);
  background: rgba(0, 212, 170, 0.04);
}

.skill-card.featured::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.3), transparent 50%, rgba(0, 212, 170, 0.15));
  z-index: -1;
  pointer-events: none;
}

.skill-icon-wrap {
  width: 42px;
  height: 42px;
  background: rgba(0, 212, 170, 0.08);
  border: 0.5px solid rgba(0, 212, 170, 0.2);
  border-radius: var(--radius-icon);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: var(--space-3);
  transition: background var(--transition-base) ease;
}

.skill-card:hover .skill-icon-wrap {
  background: rgba(0, 212, 170, 0.14);
}

.skill-card h3 {
  font-size: var(--text-md);
  font-weight: var(--weight-medium);
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.skill-card p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-normal);
}

.skill-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0, 212, 170, 0.1);
  border: 0.5px solid rgba(0, 212, 170, 0.25);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  margin-top: var(--space-2);
}


/* ═══════════════════════════════════════════════════
   VIDEOGRAPHER — ROADMAP SECTION
═══════════════════════════════════════════════════ */

.roadmap-section {
  background: var(--black);
  z-index: 8;
}

.roadmap-layout {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 0;
  margin-top: var(--section-header-gap);
  position: relative;
}

.roadmap-spine {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.roadmap-spine-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, var(--teal), rgba(0, 212, 170, 0.2));
  transform: translateX(-50%);
}

.roadmap-milestones {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.roadmap-left {
  padding-right: var(--space-6);
}

.roadmap-right {
  padding-left: var(--space-6);
  padding-top: var(--space-10);
}

.milestone {
  padding: var(--space-4);
  border-radius: var(--radius-card);
  border: var(--border-faint);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color var(--transition-base) ease, transform var(--transition-base) ease;
}

.milestone:hover {
  border-color: rgba(0, 212, 170, 0.22);
  transform: translateY(-4px);
}

.milestone-num {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-caps);
  color: var(--teal);
  margin-bottom: var(--space-2);
  text-transform: uppercase;
}

.milestone h3 {
  font-size: var(--text-md);
  font-weight: var(--weight-medium);
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.milestone p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-normal);
}

/* Milestone connector dots — rendered as pseudo-elements on the cards
   so they align with the top of each textbox regardless of card height */
.roadmap-left .milestone,
.roadmap-right .milestone {
  position: relative;
}

.roadmap-left .milestone::after,
.roadmap-right .milestone::before {
  content: '';
  position: absolute;
  top: var(--space-4);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  border: 2px solid var(--black);
  box-shadow: 0 0 0 1px var(--teal);
  z-index: 2;
}

.roadmap-left .milestone::after {
  right: calc(-1 * var(--space-6) - 6px);
}

.roadmap-right .milestone::before {
  left: calc(-1 * var(--space-6) - 6px);
}


/* ═══════════════════════════════════════════════════
   AGENCIES — COMPARISON SECTION
═══════════════════════════════════════════════════ */

.agency-section {
  background: var(--dark);
  border-radius: var(--radius-section) var(--radius-section) 0 0;
  margin-top: -30px;
  padding: 5.5rem 2.5rem 5rem;
  position: relative;
  z-index: 6;
}

.section-header-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.section-header-split .display {
  font-size: clamp(42px, 5vw, 64px);
}

.section-header-split p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 320px;
  line-height: 1.75;
  text-align: right;
}

.agency-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.agency-card {
  background: var(--mid);
  border: 0.5px solid var(--line);
  border-radius: var(--radius-card);
  padding: 2rem;
  transition: border-color 0.25s, transform 0.3s ease;
  cursor: default;
}

.agency-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 170, 0.2);
}

.agency-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.agency-name {
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: 1px;
  color: var(--white);
}

.agency-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0, 212, 170, 0.08);
  border: 0.5px solid rgba(0, 212, 170, 0.2);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  white-space: nowrap;
}

.agency-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.agency-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.agency-stat-pill {
  background: rgba(240, 244, 248, 0.04);
  border: 0.5px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
}

.pros-cons-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 1.25rem;
  margin-bottom: 0.6rem;
}

.pro-item,
.con-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 0.4rem;
}

.pro-item { color: var(--text-secondary); }
.con-item { color: var(--text-muted); }

.dot-pro {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 5px;
}

.dot-con {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(240, 244, 248, 0.2);
  flex-shrink: 0;
  margin-top: 5px;
}

.agency-table-wrap {
  overflow: hidden;
  border-radius: var(--radius-card);
  border: 0.5px solid var(--line);
}

.agency-table {
  width: 100%;
  border-collapse: collapse;
}

.agency-table th,
.agency-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 0.5px solid var(--line);
  font-size: 13px;
}

.agency-table tbody tr:last-child td {
  border-bottom: none;
}

.agency-table thead th {
  background: var(--black);
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.5px;
  color: var(--white);
  font-weight: normal;
}

.agency-table thead th:first-child {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-faint);
}

.agency-table tbody tr:nth-child(odd) td  { background: var(--mid); }
.agency-table tbody tr:nth-child(even) td { background: var(--dark); }

.agency-table td:first-child {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-faint);
}

.agency-table td:not(:first-child) {
  color: var(--text-secondary);
}


/* ═══════════════════════════════════════════════════
   AGENCIES — CAREER LEVELS
═══════════════════════════════════════════════════ */

.levels-section {
  background: var(--mid);
  border-radius: var(--radius-section) var(--radius-section) 0 0;
  margin-top: -30px;
  padding: 5.5rem 2.5rem 5rem;
  position: relative;
  z-index: 7;
}

.levels-header {
  margin-bottom: 4rem;
}

.levels-header .display {
  font-size: clamp(42px, 5vw, 64px);
  margin-bottom: 1rem;
}

.levels-header p {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.8;
}

.levels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.level-card {
  background: var(--dark);
  padding: 2.25rem 2rem;
}

.level-card-tag {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0, 212, 170, 0.07);
  border: 0.5px solid rgba(0, 212, 170, 0.18);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  margin-bottom: 1.25rem;
}

.level-card h3 {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.level-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.level-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.65rem 0;
  border-bottom: 0.5px solid var(--line);
}

.level-stat-row:last-of-type {
  border-bottom: none;
}

.level-stat-key {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.level-stat-val {
  font-size: 13px;
  color: var(--white);
  font-weight: 500;
  text-align: right;
  max-width: 55%;
}

.level-card-cta {
  margin-top: 1.75rem;
}


/* ═══════════════════════════════════════════════════
   AGENCIES — COMPARE TOOL
═══════════════════════════════════════════════════ */

.compare-section {
  background: var(--black);
  border-radius: var(--radius-section) var(--radius-section) 0 0;
  margin-top: -30px;
  padding: 5.5rem 2.5rem 5rem;
  position: relative;
  z-index: 8;
}

.compare-header {
  margin-bottom: 3rem;
}

.compare-header .display {
  font-size: clamp(42px, 5vw, 64px);
  margin-bottom: 1rem;
}

.compare-header .display span {
  color: var(--teal);
}

.compare-header p {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 420px;
  line-height: 1.8;
}

.compare-selectors {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.compare-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--dark);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-card-sm);
  padding: 1.25rem 1.75rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  text-align: left;
  min-width: 190px;
}

.compare-btn:hover {
  border-color: rgba(0, 212, 170, 0.3);
  background: rgba(0, 212, 170, 0.04);
  transform: translateY(-2px);
}

.compare-btn.selected {
  border-color: var(--teal);
  background: rgba(0, 212, 170, 0.08);
}

.compare-btn .cb-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-faint);
  transition: color 0.2s;
}

.compare-btn.selected .cb-label {
  color: rgba(0, 212, 170, 0.55);
}

.compare-btn .cb-name {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--white);
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.compare-btn.selected .cb-name {
  color: var(--teal);
}

.compare-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hint-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.compare-empty {
  text-align: center;
  padding: 5rem 2rem;
  border: 0.5px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--dark);
}

.compare-empty p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.compare-empty small {
  font-size: 12px;
  color: var(--text-faint);
}

.compare-result {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.compare-col {
  background: var(--dark);
  padding: 2rem;
}

.compare-col-header {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 0.5px solid var(--line);
}

.compare-col-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0, 212, 170, 0.07);
  border: 0.5px solid rgba(0, 212, 170, 0.18);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  margin-bottom: 0.75rem;
}

.compare-col-title {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.compare-col-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.compare-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 1rem 0;
  border-bottom: 0.5px solid var(--line);
}

.compare-row:last-child {
  border-bottom: none;
}

.compare-row-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-faint);
}

.compare-row-value {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.compare-row-value strong {
  color: var(--white);
  font-weight: 500;
}

.compare-pros-cons {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 0.5px solid var(--line);
}

.compare-pct-title {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.75rem;
}

.compare-pct-title + .compare-pct-title {
  margin-top: 1.25rem;
}

.cpc-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.cpc-item.pro { color: var(--text-secondary); }
.cpc-item.con { color: var(--text-muted); }

.icon-pro,
.icon-con {
  flex-shrink: 0;
  margin-top: 2px;
}

.icon-pro { color: var(--teal); }
.icon-con { color: rgba(255, 92, 77, 0.45); }


/* ═══════════════════════════════════════════════════
   ANIMATIONS — VIDEOGRAPHER
═══════════════════════════════════════════════════ */

@keyframes shimmerSlide {
  0%   { transform: translateX(-120%) skewX(-12deg); }
  100% { transform: translateX(220%) skewX(-12deg); }
}

@keyframes iconPop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.18); }
  100% { transform: scale(1); }
}

@keyframes drawDown {
  from { transform: scaleY(0) translateX(-50%); }
  to   { transform: scaleY(1) translateX(-50%); }
}


/* ═══════════════════════════════════════════════════
   VIDEOGRAPHER HERO — MISSING CLASSES
   hero-videographer.php uses different class names
   than hero-path.php; these were absent from style.css
═══════════════════════════════════════════════════ */

.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeUp 0.9s ease 0.2s both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 212, 170, 0.1);
  border: 0.5px solid rgba(0, 212, 170, 0.25);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 12px;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 1.5rem;
  width: fit-content
}

.hero-sub {
  font-size: 16px;
  color: rgba(240, 244, 248, 0.55);
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.hero-stats .hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 1.5rem;
}

.hero-stats .hero-stat:first-child {
  padding-left: 0;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--white);
  line-height: 1;
  letter-spacing: 1px;
}

.hero-stat-value span,
.hero-stat-label {
  color: var(--teal);
}

.hero-stat-label {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(240, 244, 248, 0.12);
  flex-shrink: 0;
}

.hero-scroll {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-bottom: 2rem;
}

.hero-scroll-line {
  width: 1px;
  height: 32px;
  background: var(--text-faint);
}

.hero-scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}


/* ═══════════════════════════════════════════════════
   VIDEOGRAPHER FAQ — MISSING LAYOUT CLASSES
   faq-video.php uses .faq-layout / .faq-intro /
   .faq-list — none were defined in style.css
═══════════════════════════════════════════════════ */

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-8);
  align-items: start;
}

.faq-intro .section-heading {
  margin-bottom: var(--space-3);
}

.faq-intro > p {
  font-size: var(--text-md);
  color: var(--text-secondary);
  line-height: var(--leading-loose);
  margin-top: var(--space-3);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(240, 244, 248, 0.05);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.faq-list .faq-item {
  background: var(--dark);
  padding: 1.75rem 2rem;
  cursor: pointer;
  user-select: none;
  transition: background var(--transition-base);
}

.faq-list .faq-item:hover {
  background: var(--mid-light);
}

.faq-list .faq-item:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: -2px;
}

/* ═══ RESPONSIVE — TABLET (≤1024px) ══════════ */
@media (max-width: 1024px) {
  .hero-path-finder {
  width: 100%;
}

  .paths-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-card.featured {
    grid-column: 1 / -1;
  }

  .bridge-inner {
    gap: 2.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  /* ── Agency comparison table ── */
  .agency-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .agency-table {
    min-width: 520px;
  }

  /* ── Career levels ── */
  .levels-grid {
    grid-template-columns: 1fr;
  }

  .level-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2.5rem;
    align-items: start;
  }

  .level-card > *:not(.level-stat-row) {
    grid-column: 1;
  }

  .level-card-cta {
    align-self: end;
  }

  .level-stat-row {
    grid-column: 2;
  }

    /* ── Compare Tool ── */
  .compare-selectors {
    flex-direction: column;
  }
}



/* ═══ RESPONSIVE — MOBILE (≤768px) ══════════ */
@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .nav {
    padding: 1.25rem 1.5rem;
  }

  .hero-body {
    padding: 0 1.5rem;
  }

  .hero-glass {
    margin: 2rem 0 4rem 0;
    min-width: 100%;
  }

  .hero-stat {
    padding: 0 1.5rem;
  }

  .search-row {
    flex-direction: column;
  }

  .search-btn {
    width: 100%;
  }

  .glass-select {
    width: 100%;
  }

  .stat-num {
    font-size: 40px;
  }

  .paths-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .bridge-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .features-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .features-header p {
    text-align: left;
    max-width: 100%;
  }

  .timeline-header {
    flex-wrap: wrap;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .features-section,
  .testimonials-section,
  .bridge-section,
  .blog-section,
  .faq-section {
    padding: 4rem 1.5rem 3.5rem;
  }

  .footer {
    padding: 3.5rem 1.5rem 2rem;
  }

  /* ── Path pages ── */
  .how-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .how-header p {
    text-align: left;
    max-width: 100%;
  }

  .how-steps {
    grid-template-columns: repeat(1, 1fr);
    background: none;
  }

  /* Reset border-radius that comes from grid overflow:hidden */
  .how-step {
    border-radius: var(--radius-card);
  }

  .features-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .how-section,
  .timeline-section,
  .benefits-section,
  .cta-section {
    padding: 4rem 1.5rem 3.5rem;
  }

  /* ── Agencies page ── */
  .section-header-split {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .section-header-split p {
    text-align: left;
    max-width: 100%;
  }

  .agency-cards {
    grid-template-columns: 1fr;
  }

  /* Sticky category column while scrolling horizontally */
  .agency-table th:first-child,
  .agency-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 1;
  }

  .agency-table thead th:first-child {
    background: var(--black);
  }

  .agency-table tbody tr:nth-child(odd) td:first-child  { background: var(--mid); }
  .agency-table tbody tr:nth-child(even) td:first-child { background: var(--dark); }

  .levels-section {
    padding: 4rem 1.5rem 3.5rem;
  }

  .level-card {
    display: block;
  }

  .compare-result {
    grid-template-columns: 1fr;
  }

  /* ── Videographer ── */
  .hero-stat-value, .hero-stat-num {
  font-size: 20px;
  }
  
.skills-header {
  grid-template-columns: 1fr;
  gap: var(--space-2);
}

  .skills-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: var(--space-2);
  }

  .roadmap-milestones {
    gap: var(--space-3)
  }

  .how-grid {
    grid-template-columns: 1fr;
  }

  /* Roadmap: collapse to a single ordered column */
  .roadmap-layout {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
  }

  /* Remove the left/right containers so milestones become direct flex children */
  .roadmap-left,
  .roadmap-right {
    display: contents;
  }

  .roadmap-spine {
    display: none;
  }

  /* Restore correct 1–5 order (stagger-N classes are set per milestone index) */
  .roadmap-layout .stagger-1 { order: 1; }
  .roadmap-layout .stagger-2 { order: 2; }
  .roadmap-layout .stagger-3 { order: 3; }
  .roadmap-layout .stagger-4 { order: 4; }
  .roadmap-layout .stagger-5 { order: 5; }

  /* Hide pseudo-element dots on mobile (spine is hidden) */
  .roadmap-left .milestone::after,
  .roadmap-right .milestone::before {
    display: none;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  /* ── CTA ── */
  .cta-inner {
    max-width: 100%;
  }

  .cta-section--two-col .cta-inner {
    grid-template-columns: 1fr;
  }
}

/* ═══ RESPONSIVE — SMALL MOBILE (≤480px) ═════ */
@media (max-width: 480px) {
  .stats-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat {
    border-right: none;
    border-bottom: 0.5px solid rgba(240, 244, 248, 0.1);
    padding: 0 0 1rem;
  }

  .stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .path-card-img {
    height: 180px;
  }
}

