/* ═══════════════════════════════════════════════════════════════
   COMPONENTS — Team Compton Training Centre
   ═══════════════════════════════════════════════════════════════ */

/* ─── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: none;
  line-height: 1;
}

.btn-primary {
  background: var(--accent);
  color: #0a0a0a;
  box-shadow: 0 2px 16px rgba(182, 255, 0, 0.2);
}

.btn-primary:hover {
  background: var(--accent-hot);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(182, 255, 0, 0.35);
  color: #0a0a0a;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-outline-white:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 12px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 15px;
}

.btn-arrow::after {
  content: '→';
  transition: transform 0.2s ease;
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-left {
  flex: 0 0 54%;
  padding: calc(var(--nav-height) + 80px) clamp(32px, 5vw, 80px) 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-right {
  flex: 1;
  position: relative;
  background: var(--surface);
  clip-path: polygon(7% 0, 100% 0, 100% 100%, 0% 100%);
  overflow: hidden;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.1) 40%, transparent 65%),
    linear-gradient(to top, rgba(10,10,10,0.7) 0%, transparent 45%),
    linear-gradient(135deg, rgba(182,255,0,0.05) 0%, transparent 60%);
}

/* Diagonal accent slash */
.hero::after {
  content: '';
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: calc(54% - 22px);
  width: 3px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(182,255,0,0.4) 15%,
    var(--accent) 35%,
    var(--accent) 65%,
    rgba(182,255,0,0.4) 85%,
    transparent 100%
  );
  transform: rotate(-1.5deg);
  z-index: 10;
  pointer-events: none;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--accent);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 88px);
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title em {
  color: var(--accent);
  font-style: normal;
}

.hero-sub {
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 300;
  color: var(--faint);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-trust-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  text-transform: uppercase;
}

.hero-trust-desc {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* (hero-right, hero-image, hero-slash defined above in hero block) */

/* ─── Kids Hero (Oasis-style full-viewport video) ──────────── */
.hero-kids {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-kids .hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-kids .hero-video-wrap iframe {
  width: 100vw;
  height: 56.25vw; /* 16:9 */
  min-height: 100vh;
  min-width: 177.78vh; /* 16:9 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
}

.hero-kids .hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.3) 100%),
    linear-gradient(to top, var(--bg) 0%, rgba(10,10,10,0.65) 15%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.hero-kids .hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(72px + 80px) var(--container-pad) 80px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-kids .hero-content-inner {
  max-width: 760px;
}

.hero-kids .hero-eyebrow {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-kids .hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.5vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-kids .hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-kids .hero-subtitle {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.7;
  color: var(--faint);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-kids .hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.hero-kids .hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  justify-content: center;
}

.hero-kids .hero-stat {
  text-align: center;
}

.hero-kids .hero-stat-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hero-kids .hero-stat-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

@media (max-width: 960px) {
  .hero-kids .hero-stats { display: none; }
  .hero-kids .hero-subtitle { margin-bottom: 0; }
  .hero-kids .hero-ctas { margin-bottom: 0; }
  .hero-kids .hero-content { padding-bottom: 60px; }
}

/* ─── About / Story ────────────────────────────────────────── */
.about-section {
  padding: var(--section-pad) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-content p {
  color: var(--faint);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-highlight {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  text-transform: uppercase;
  padding-left: 20px;
  border-left: 3px solid var(--accent);
}

.about-highlight em {
  color: var(--accent);
  font-style: normal;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.about-image-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(10,10,10,0.6), transparent);
  pointer-events: none;
}

/* ─── VSL + Philosophy Wrapper ─────────────────────────────── */
.vsl-philosophy-wrap {
  position: relative;
  overflow: hidden;
}

.vsl-bg-image {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.vsl-bg-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(10,10,10,0) 0%,
    rgba(10,10,10,0) 40%,
    rgba(10,10,10,0.6) 70%,
    rgba(10,10,10,1) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.vsl-section {
  position: relative;
  padding: 64px var(--container-pad) 80px;
  z-index: 2;
}

.vsl-frame {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 8px 40px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255,255,255,0.04);
}

.vsl-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 50%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.vsl-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vsl-play {
  position: relative;
  z-index: 1;
  width: clamp(56px, 8vw, 80px);
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
  transition: transform 0.2s ease;
}

.vsl-placeholder:hover .vsl-play {
  transform: scale(1.1);
}

.vsl-iframe-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.vsl-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.philosophy-section {
  padding: var(--section-pad) 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.philosophy-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.philosophy-intro {
  font-size: clamp(17px, 1.8vw, 20px);
  color: var(--faint);
  line-height: 1.8;
  margin-bottom: 20px;
}

.philosophy-more {
  display: none;
}

.philosophy-more.open {
  display: block;
}

.philosophy-more p {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--faint);
  line-height: 1.8;
  margin-bottom: 18px;
}

.philosophy-letter {
  font-size: clamp(17px, 1.8vw, 20px);
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 20px;
}

.read-more-toggle {
  background: none;
  border: none;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 0;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.read-more-toggle:hover { color: var(--white); }

/* ─── Benefits ─────────────────────────────────────────────── */
.benefits-section {
  padding: var(--section-pad) 0;
  background: var(--surface);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.benefits-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.benefit-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.benefit-card:hover {
  border-color: rgba(182, 255, 0, 0.15);
  transform: translateY(-4px);
}

.benefit-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.benefit-card-body {
  padding: 36px 28px;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 22px;
}

.benefit-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.benefit-text {
  font-size: 16px;
  color: var(--faint);
  line-height: 1.7;
}

/* ─── Programs ─────────────────────────────────────────────── */
.programs-section {
  padding: var(--section-pad) 0;
}

.programs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.program-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--border);
  transition: background 0.25s ease;
}

.program-card:hover {
  border-color: rgba(182, 255, 0, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.program-card:hover::before {
  background: var(--accent);
}

.program-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.program-card-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.program-card-text {
  font-size: 14px;
  color: var(--faint);
  line-height: 1.7;
  margin-bottom: 24px;
}

.program-card-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.program-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--faint);
}

.program-card-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─── Why Start With Us / Comparison ────────────────────────── */
.comparison-section {
  padding: var(--section-pad) 0;
  background: var(--surface);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  position: relative;
  z-index: 2;
}

.comparison-col-header {
  padding: 20px 28px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.comparison-col-header.negative {
  background: rgba(255, 60, 60, 0.06);
  color: rgba(255, 100, 100, 0.7);
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.comparison-col-header.positive {
  background: rgba(182, 255, 0, 0.06);
  color: var(--accent);
  border-bottom: 1px solid var(--border);
}

.comparison-item {
  padding: 16px 28px;
  font-size: 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.comparison-item.negative {
  color: rgba(255, 100, 100, 0.6);
  background: rgba(255, 60, 60, 0.02);
  border-right: 1px solid var(--border);
}

.comparison-item.positive {
  color: var(--faint);
  background: rgba(182, 255, 0, 0.02);
}

.comparison-item:nth-last-child(1),
.comparison-item:nth-last-child(2) {
  border-bottom: none;
}

/* ─── Instructors ──────────────────────────────────────────── */
.instructors-section {
  padding: var(--section-pad) 0;
}

.instructors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.instructor-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.instructor-card:hover {
  border-color: rgba(182, 255, 0, 0.12);
  transform: translateY(-3px);
}

.instructor-card-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--surface);
}

.instructor-card-video {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--surface);
}

.instructor-card-image-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
  font-style: italic;
}

.instructor-card-body {
  padding: 24px 20px;
}

.instructor-card-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.instructor-card-role {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.instructor-card-ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.instructor-card-ig:hover {
  color: var(--accent);
  border-color: rgba(182, 255, 0, 0.3);
  background: rgba(182, 255, 0, 0.06);
}

.instructor-card-creds {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.instructor-card-creds li {
  font-size: 13px;
  color: var(--faint);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.instructor-card-creds li::before {
  content: '—';
  color: var(--accent);
  flex-shrink: 0;
}

/* ─── Featured Instructor (larger, 2-col layout) ────────────── */
.instructor-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  margin-top: 48px;
  margin-bottom: 48px;
}

.instructor-featured-image {
  border-radius: 12px;
  overflow: hidden;
}

.instructor-featured-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

.instructor-featured-content {}

.instructor-featured-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.instructor-featured-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.instructor-featured-bio {
  color: var(--faint);
  line-height: 1.8;
  margin-bottom: 16px;
}

.instructor-featured-creds {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}

.instructor-featured-creds li {
  font-size: 14px;
  color: var(--faint);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.instructor-featured-creds li::before {
  content: '—';
  color: var(--accent);
  flex-shrink: 0;
}

/* ─── Coach Block (stats-forward layout) ─────────────────── */
.coach-eyebrow {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.coach-eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

.coach-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 64px;
}

.coach-block-image {
  position: relative;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(182, 255, 0, 0.15);
  overflow: hidden;
  border-radius: 4px;
}

.coach-block-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(182, 255, 0, 0.02) 2px,
    rgba(182, 255, 0, 0.02) 4px
  );
  pointer-events: none;
}

.coach-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.coach-block-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.coach-block-role {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 600;
}

.coach-block-bio {
  font-size: 14px;
  color: var(--faint);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 560px;
}

.coach-block-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  max-width: 560px;
}

.coach-stat-value {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -1px;
}

.coach-stat-value--sm {
  font-size: 14px;
  line-height: 1.4;
  padding-top: 12px;
  letter-spacing: 1px;
  font-weight: 600;
}

.coach-stat-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 12px;
}

@media (max-width: 900px) {
  .coach-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .coach-block-image {
    max-width: 420px;
  }

  .coach-block-stats {
    gap: 16px;
  }

  .coach-stat-value {
    font-size: 32px;
  }

  .coach-stat-value--sm {
    font-size: 12px;
    padding-top: 8px;
  }
}

/* ─── Guarantee ────────────────────────────────────────────── */
.guarantee-section {
  padding: var(--section-pad) 0;
  background: var(--surface);
}

.guarantee-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-size: 36px;
  margin-bottom: 28px;
}

.guarantee-text {
  font-size: 16px;
  color: var(--faint);
  line-height: 1.8;
  margin-top: 24px;
}

/* ─── FAQ ──────────────────────────────────────────────────── */
.faq-section {
  padding: var(--section-pad) 0;
}

.faq-list {
  max-width: 780px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.2s ease;
}

.faq-item.open .faq-question::after {
  content: '−';
  color: var(--accent);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-body-inner {
  padding: 0 0 24px;
  font-size: 14px;
  color: var(--faint);
  line-height: 1.8;
}

/* ─── FAQ Skeleton ─────────────────────────────────────────── */
.faq-skeleton {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.faq-skeleton-bar {
  height: 14px;
  background: var(--card);
  border-radius: 4px;
  margin-bottom: 10px;
  animation: faq-shimmer 1.4s ease infinite;
}

@keyframes faq-shimmer {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

/* ─── Timetable ────────────────────────────────────────────── */
.timetable-section {
  padding: var(--section-pad) 0;
  background: var(--surface);
}

.timetable-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
}

.timetable-header {
  background: var(--accent);
  color: #0a0a0a;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 12px;
  text-align: center;
}

.timetable-cell {
  background: var(--card);
  padding: 14px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  min-height: 80px;
}

.timetable-cell--empty {
  background: var(--bg);
}

.timetable-class-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
}

.timetable-class-time {
  font-size: 12px;
  color: var(--muted);
}

.timetable-class-coach {
  font-size: 11px;
  color: var(--accent);
  font-weight: 500;
}

.timetable-class-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 2px;
}

.timetable-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  line-height: 1.7;
}

.timetable-note strong {
  color: var(--accent);
}

/* ─── Pricing ──────────────────────────────────────────────── */
.pricing-section {
  padding: var(--section-pad) 0;
}

.pricing-callout {
  max-width: 800px;
  margin: 48px auto 0;
  padding: 28px 0 28px 32px;
  border-left: 3px solid var(--accent);
}

.pricing-callout-sub {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.pricing-callout-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.pricing-callout-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 40px;
}

.pricing-callout-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--white);
  line-height: 1.6;
}

.pricing-callout-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: rgba(182, 255, 0, 0.15);
  transform: translateY(-4px);
}

.pricing-card--popular {
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(182, 255, 0, 0.08);
}

.pricing-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0a0a0a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-card-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pricing-card-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.pricing-card-amount {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.pricing-card-freq {
  font-size: 14px;
  color: var(--muted);
}

.pricing-card-billing {
  font-size: 12px;
  color: rgba(240, 240, 238, 0.55);
  margin-bottom: 20px;
}

.pricing-card-desc {
  font-size: 16px;
  color: var(--faint);
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--faint);
}

.pricing-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
}

/* ─── Program Levels (Kids) ────────────────────────────────── */
.levels-section {
  padding: var(--section-pad) 0;
}

.levels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.level-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.level-card:hover {
  border-color: rgba(182, 255, 0, 0.12);
  transform: translateY(-3px);
}

.level-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--surface);
}

.level-card-body {
  padding: 28px 24px;
}

.level-card-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.level-card-age {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}

.level-card-heading {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 12px;
  margin-top: 20px;
}

.level-card-outcomes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.level-card-outcomes li {
  font-size: 14px;
  color: var(--faint);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.level-card-outcomes li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.level-card-ranks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.level-card-rank {
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.04em;
}

/* ─── Read More toggle ─────────────────────────────────────── */
.read-more-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.read-more-content.open {
  max-height: 600px;
}

.read-more-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  padding: 0;
  transition: color 0.2s ease;
}

.read-more-toggle:hover {
  color: var(--accent-hot);
}

.read-more-toggle::after {
  content: '▾';
  font-size: 10px;
  transition: transform 0.3s ease;
}

.read-more-content.open + .read-more-toggle::after,
.read-more-toggle.open::after {
  transform: rotate(180deg);
}

/* ─── Pro Training tooltip ─────────────────────────────────── */
.pro-training-tooltip-btn {
  display: inline;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-body);
  padding: 0;
  margin-left: 4px;
  transition: color 0.2s ease;
}

.pro-training-tooltip-btn:hover {
  color: var(--accent-hot);
}

.pro-training-tooltip {
  display: none;
  background: var(--card);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 12px;
  color: var(--faint);
  margin-top: 8px;
  line-height: 1.6;
}

.pro-training-tooltip.open {
  display: block;
}

/* ─── Typewriter cursor ────────────────────────────────────── */
[data-typewriter]::after {
  content: '|';
  color: var(--accent);
  font-weight: 300;
  animation: blink 0.7s step-end infinite;
  margin-left: 2px;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* ─── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  padding: var(--section-pad) 0;
  background: var(--surface);
  text-align: center;
}

.cta-banner-inner {
  max-width: 680px;
  margin: 0 auto;
}

.cta-banner .section-title {
  margin-bottom: 20px;
}

.cta-banner-sub {
  font-size: 16px;
  color: var(--faint);
  line-height: 1.7;
  margin-bottom: 36px;
}

.cta-banner-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── Inline CTA ────────────────────────────────────────────── */
.inline-cta {
  text-align: center;
  padding: 40px var(--container-pad);
}

.cta-micro {
  margin-top: 12px;
  font-size: 13px;
  color: #777;
  font-family: var(--font-body);
}

/* ─── Photo Gallery ─────────────────────────────────────────── */
.gallery-section {
  padding: var(--section-pad) 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 48px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-placeholder {
  width: 100%;
  height: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
  font-style: italic;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
}

/* ─── Fillout Modal ─────────────────────────────────────────── */
.fillout-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.fillout-modal.open {
  opacity: 1;
  pointer-events: all;
}

.fillout-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.fillout-modal-content {
  position: relative;
  width: 90%;
  max-width: 780px;
  max-height: 90vh;
  overflow-y: auto;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  padding: 20px;
}

.fillout-modal.open .fillout-modal-content {
  transform: translateY(0);
}

.fillout-modal-close {
  position: sticky;
  top: 0;
  float: right;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.fillout-modal-close:hover {
  color: #ff4444;
  background: rgba(255, 68, 68, 0.1);
}

/* ─── Marquee Strip ───────────────────────────────────────── */
.marquee-strip {
  overflow: hidden;
  white-space: nowrap;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.marquee-track {
  display: inline-flex;
  animation: marquee-scroll 35s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 0 32px;
}

.marquee-track span em {
  color: var(--accent);
  font-style: normal;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Color Zones (section backgrounds) ──────────────────── */
.comparison-section {
  background: var(--surface);
}

/* ─── Diagonal Lines Texture (benefits, timetable, comparison) ── */
.benefits-section,
.timetable-section,
.comparison-section {
  position: relative;
}

.benefits-section::before,
.timetable-section::before,
.comparison-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255,255,255,1) 10px,
    rgba(255,255,255,1) 11px
  );
}

.benefits-section > .container,
.timetable-section > .container,
.comparison-section > .container {
  position: relative;
  z-index: 1;
}

/* ─── Merge Guarantee + Pricing into continuous block ─────── */
.guarantee-section {
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(48px, 6vw, 80px);
  background: none;
}

.guarantee-section + .pricing-section {
  padding-top: 0;
}

/* ─── Enhanced Hover States ──────────────────────────────── */
.gallery-item:hover img {
  transform: scale(1.05);
  transition: transform 0.4s ease;
}

.gallery-item img {
  transition: transform 0.4s ease;
}

.instructor-card:hover {
  border-color: rgba(182, 255, 0, 0.15);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.pricing-card:hover {
  border-color: rgba(182, 255, 0, 0.12);
  transform: translateY(-2px);
}

.pricing-card {
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.benefit-card:hover {
  border-color: rgba(182, 255, 0, 0.12);
  transform: translateY(-3px);
}

.benefit-card {
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Mobile modal */
@media (max-width: 600px) {
  .fillout-modal-content {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    height: 100%;
    border-radius: 0;
    border: none;
  }
}

/* ─── Google Reviews Widget ─────────────────────────────────── */
/* Badge */
.reviews-badge {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 18px 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow:
    0 4px 24px rgba(0,0,0,0.45),
    0 1px 6px rgba(0,0,0,0.3),
    0 0 0 1px rgba(255,255,255,0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  user-select: none;
}

.reviews-badge:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.55),
    0 2px 8px rgba(0,0,0,0.35),
    0 0 0 1px rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
}

.reviews-badge:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.reviews-badge:active {
  transform: translateY(0);
}

.reviews-badge-google {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}

.reviews-badge-google svg {
  width: 16px;
  height: 16px;
}

.reviews-badge-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.reviews-badge-stars {
  color: #FBBC04;
  font-size: 13px;
  letter-spacing: -0.5px;
  line-height: 1;
}

.reviews-badge-text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1;
}

.reviews-badge-tap {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--accent);
  color: #0a0a0a;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  margin-left: 4px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(182,255,0,0.25);
  transition: background 0.2s ease, box-shadow 0.2s ease;
  animation: badge-glow 2.5s ease-in-out infinite;
}

@keyframes badge-glow {
  0%, 100% { box-shadow: 0 2px 8px rgba(182,255,0,0.25); }
  50% { box-shadow: 0 2px 14px rgba(182,255,0,0.5); }
}

.reviews-badge:hover .reviews-badge-tap {
  background: var(--accent-hot);
  box-shadow: 0 4px 16px rgba(182,255,0,0.4);
}

/* Backdrop */
.reviews-backdrop {
  position: fixed;
  inset: 0;
  z-index: 599;
  background: rgba(0,0,0,0);
  pointer-events: none;
  transition: background 0.35s ease;
}

.reviews-backdrop.open {
  background: rgba(0,0,0,0.55);
  pointer-events: all;
}

/* Drawer */
.reviews-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 600;
  width: 420px;
  max-width: 100vw;
  background: var(--surface);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.5);
}

.reviews-drawer.open {
  transform: translateX(0);
}

.reviews-drawer-header {
  padding: 24px 24px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-shrink: 0;
}

.reviews-drawer-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.reviews-overall {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.reviews-overall-stars {
  color: #FBBC04;
  font-size: 16px;
  letter-spacing: -0.5px;
}

.reviews-overall-score {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.reviews-overall-count {
  font-size: 13px;
  color: var(--muted);
}

.reviews-verify-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 8px;
  transition: color 0.2s ease;
}

.reviews-verify-link:hover {
  color: var(--accent-hot);
}

.reviews-verify-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.reviews-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--muted);
  background: none;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.reviews-close:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
}

.reviews-close:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Review cards */
.reviews-list {
  overflow-y: auto;
  flex: 1;
  padding: 16px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.2s ease;
}

.review-card:hover {
  border-color: rgba(255,255,255,0.12);
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}

.review-avatar--photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-meta { flex: 1; min-width: 0; }

.review-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-date {
  font-size: 11px;
  color: var(--muted);
}

.review-stars {
  color: #FBBC04;
  font-size: 13px;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.review-text {
  font-size: 13px;
  color: var(--faint);
  line-height: 1.7;
}

.review-source {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.review-source svg { flex-shrink: 0; }

/* Skeleton shimmer */
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position:  400px 0; }
}

.review-skeleton {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  margin-bottom: 12px;
}

.review-skeleton-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-skeleton-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(90deg, #1a1a1a 25%, #222 50%, #1a1a1a 75%);
  background-size: 800px 100%;
  animation: shimmer 1.4s infinite linear;
}

.review-skeleton-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.review-skeleton-line {
  height: 11px;
  border-radius: 4px;
  background: linear-gradient(90deg, #1a1a1a 25%, #222 50%, #1a1a1a 75%);
  background-size: 800px 100%;
  animation: shimmer 1.4s infinite linear;
}

.review-skeleton-line--name  { width: 55%; }
.review-skeleton-line--date  { width: 30%; }
.review-skeleton-line--stars { width: 70px; margin-bottom: 10px; }
.review-skeleton-line--short { width: 45%; margin-top: 6px; }

/* Error and empty */
.reviews-error {
  padding: 32px 20px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.reviews-error a {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease;
}
.reviews-error a:hover { opacity: 0.75; }
.reviews-error a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}
.reviews-empty {
  padding: 32px 20px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero::after { display: none; }
  .hero { flex-direction: column; min-height: auto; }

  .hero-left {
    flex: none;
    padding: 0 var(--container-pad) 48px;
  }

  .hero-right {
    clip-path: none;
    min-height: 55vh;
    order: -1;
  }

  .hero-ctas {
    display: none;
  }

  .hero-image-overlay {
    background:
      linear-gradient(to top, var(--bg) 0%, rgba(10,10,10,0.6) 25%, transparent 55%),
      linear-gradient(135deg, rgba(182,255,0,0.03) 0%, transparent 60%) !important;
  }

  .reviews-badge {
    bottom: 84px;
  }

  .instructor-featured {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .reviews-drawer {
    width: 100vw;
  }

  .reviews-badge {
    bottom: 84px;
    right: 16px;
  }
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 12px;
  }

  .benefits-grid::-webkit-scrollbar { display: none; }
  .benefits-grid { scrollbar-width: none; }

  .benefit-card {
    flex: 0 0 85%;
    max-width: 320px;
    scroll-snap-align: start;
  }

  .instructors-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 12px;
  }

  .instructors-grid::-webkit-scrollbar { display: none; }
  .instructors-grid { scrollbar-width: none; }

  .instructor-card {
    flex: 0 0 75%;
    max-width: 280px;
    scroll-snap-align: start;
  }

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

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

  .comparison-col-header.negative,
  .comparison-item.negative {
    border-right: none;
  }

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

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

  .pricing-callout-list {
    grid-template-columns: 1fr;
  }

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

  .timetable-section .container {
    overflow-x: auto;
  }

  .timetable-grid {
    min-width: 600px;
  }
}
