/* ═══════════════════════════════════════════════════════════════
   COMPONENTS — All section styles for Northern Alliance MMA
   Light theme, family-friendly, teal #148a8e accent
   ═══════════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════
   TEXT CYCLE + UNDERLINE HIGHLIGHT
   ════════════════════════════════════════ */

.text-cycle {
  display: inline-block;
  animation: cycleFadeIn 0.5s ease;
}
@keyframes cycleFadeIn {
  0% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}

.underline-highlight {
  background-color: transparent;
  color: inherit;
  font-weight: inherit;
  background-image: linear-gradient(transparent 55%, rgba(20, 138, 142, 0.5) 55%);
  padding: 0 4px;
  margin: 0 -4px;
}

/* ════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-radius: var(--radius-pill);
  padding: 12px 28px;
  transition: all 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 10px 22px; font-size: 13px; }

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hot);
  border-color: var(--accent-hot);
  box-shadow: 0 4px 20px var(--accent-glow);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--body);
  border-color: var(--border-solid);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-white {
  background: var(--white);
  color: var(--accent);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--accent);
  transform: translateY(-1px);
}

/* ════════════════════════════════════════
   HERO — Full viewport image with text overlay
   Image covers entire viewport, text sits on top
   ════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
  color: var(--text-on-dark);
  padding: 0;
  margin: 0;
}

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

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

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(14,47,48,0.75) 0%, rgba(14,47,48,0.45) 50%, rgba(14,47,48,0.2) 100%),
    linear-gradient(to top, #0e2f30 0%, rgba(14,47,48,0.6) 15%, transparent 50%);
  pointer-events: none;
}

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

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

.hero-subtitle {
  margin-left: auto;
  margin-right: auto;
  color: var(--white);
  font-weight: 600;
}

.hero-ctas {
  justify-content: center;
}

.hero-stats {
  justify-content: center;
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
}

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

.hero-subtitle {
  font-size: 20px;
  line-height: 1.7;
  color: var(--white);
  margin-bottom: 40px;
  max-width: 600px;
}

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

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

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

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

/* ── Social proof avatar stack ── */
.hero-avatar-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-top: 32px;
}

.avatar-row {
  display: flex;
  justify-content: center;
}

.avatar-row img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  object-fit: cover;
  margin-left: -8px;
}

.avatar-row img:first-child {
  margin-left: 0;
}

.avatar-caption {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  max-width: 420px;
  line-height: 1.5;
}

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

/* ════════════════════════════════════════
   VSL + PHILOSOPHY WRAPPER
   ════════════════════════════════════════ */

.vsl-philosophy-wrap {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: var(--text-on-dark);
  margin-top: -2px; /* Eliminate any sub-pixel gap with hero */
}

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

.vsl-bg-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    #0e2f30 0%, #0e2f30 2%,
    rgba(14,47,48,0.3) 15%,
    rgba(14,47,48,0) 40%,
    rgba(14,47,48,0.6) 70%,
    rgba(14,47,48,1) 100%);
  pointer-events: none;
  z-index: 1;
}

.vsl-section {
  position: relative;
  padding: 64px 0 48px;
  z-index: 2;
}

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

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

.vsl-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
  transition: filter 0.3s ease, transform 0.4s ease;
}

.vsl-placeholder:hover .vsl-thumb {
  filter: brightness(0.45);
  transform: scale(1.03);
}

.vsl-play {
  width: 80px;
  height: 80px;
  position: relative;
  z-index: 1;
  transition: transform 0.25s ease, filter 0.25s ease;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
}

.vsl-placeholder:hover .vsl-play {
  transform: scale(1.12);
  filter: drop-shadow(0 6px 24px rgba(20,138,142,0.4));
}

/* Philosophy collapsible */
.philosophy-section {
  position: relative;
  padding: 0 0 var(--section-pad);
  z-index: 2;
}

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

.philosophy-intro {
  font-size: clamp(19px, 2vw, 24px);
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 24px;
}

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

.philosophy-more p {
  font-size: clamp(17px, 1.8vw, 21px);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 20px;
}

.read-more-toggle {
  background: none;
  border: none;
  color: var(--accent-light);
  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); }

/* ════════════════════════════════════════
   VIDEO TESTIMONIALS
   ════════════════════════════════════════ */

.testimonial-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-video-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-video-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
}

.testimonial-video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  transition: filter 0.3s ease, transform 0.4s ease;
}

.testimonial-video-placeholder:hover .testimonial-video-thumb {
  filter: brightness(0.5);
  transform: scale(1.03);
}

.testimonial-video-play {
  width: 56px;
  height: 56px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  transition: transform 0.25s ease;
}

.testimonial-video-placeholder:hover .testimonial-video-play {
  transform: scale(1.12);
}

.testimonial-video-name {
  padding: 16px 20px;
  background: var(--white);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

/* ════════════════════════════════════════
   MISSION / ABOUT
   ════════════════════════════════════════ */

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mission-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--body);
  margin-bottom: 24px;
}

.mission-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-glow);
}

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

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.3;
}

.benefit-card p, .benefit-card ul {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}

.benefit-card p {
  margin-bottom: 12px;
}

.benefit-card p:last-child {
  margin-bottom: 0;
}

.benefit-card li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.benefit-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ════════════════════════════════════════
   COMPARISON TABLE
   ════════════════════════════════════════ */

.comparison-section {
  padding: var(--section-pad) 0;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 40px;
  table-layout: fixed;
}

.comparison-table th,
.comparison-table td {
  width: 50%;
  vertical-align: middle;
}

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

.comparison-col-header.negative {
  background: #fef2f2;
  color: #b91c1c;
  border-bottom: 2px solid #fecaca;
}

.comparison-col-header.positive {
  background: var(--accent-dim);
  color: var(--accent-hot);
  border-bottom: 2px solid rgba(20, 138, 142, 0.15);
}

.comparison-item {
  padding: 20px 28px;
  font-size: 16px;
  line-height: 1.7;
  border-bottom: 1px solid var(--border);
}

.comparison-item.negative {
  color: #6b7280;
  background: #fffbfb;
}

.comparison-item.positive {
  color: var(--text);
  background: var(--white);
}

.comparison-item .icon {
  margin-right: 8px;
  font-weight: 700;
}

.comparison-item.negative .icon { color: #ef4444; }
.comparison-item.positive .icon { color: var(--accent); }

/* ════════════════════════════════════════
   INSTRUCTORS
   ════════════════════════════════════════ */

.instructors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.instructor-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instructor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.instructor-card-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--surface);
}

.instructor-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.instructor-card:hover .instructor-card-image img {
  transform: scale(1.05);
}

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

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

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

.instructor-card-bio {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

/* ════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════ */

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 60px;
  font-family: Georgia, serif;
  color: var(--accent-dim);
  line-height: 1;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--body);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
}

.testimonial-name {
  font-weight: 600;
  color: var(--text);
  font-size: 14px;
}

.testimonial-role {
  font-size: 12px;
  color: var(--muted);
}

/* ════════════════════════════════════════
   GUARANTEE
   ════════════════════════════════════════ */

.guarantee-section {
  background: var(--bg);
}

.guarantee-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border: 2px solid var(--accent);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.guarantee-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.guarantee-text {
  font-size: 18px;
  line-height: 1.75;
  color: var(--body);
  max-width: 620px;
  margin: 0 auto 24px;
}

/* ════════════════════════════════════════
   TIMETABLE
   ════════════════════════════════════════ */

.timetable-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
  background: var(--surface);
  padding: 4px;
  border-radius: var(--radius-pill);
  width: fit-content;
}

.timetable-tab {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  color: var(--muted);
  transition: all 0.25s ease;
}

.timetable-tab.active {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.timetable-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.timetable-grid {
  display: grid;
  gap: 2px;
  background: var(--border-solid);
  border: 1px solid var(--border-solid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-width: 640px;
}

.timetable-header {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 14px 8px;
  background: var(--accent);
  color: var(--white);
}

.timetable-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  background: var(--white);
  text-align: center;
  min-height: 72px;
}

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

.timetable-class-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.timetable-class-time {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

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

.timetable-note {
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  margin-top: 20px;
  font-style: italic;
}

/* ════════════════════════════════════════
   PRICING
   ════════════════════════════════════════ */

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

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

.pricing-callout-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.2;
}

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

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

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card--popular {
  border-color: var(--accent);
  border-width: 2px;
  box-shadow: var(--shadow-md);
}

.pricing-card-badge {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.pricing-card--popular { padding-top: 52px; }

.pricing-card-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.pricing-card-desc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}

.pricing-card-price {
  margin-bottom: 4px;
}

.pricing-card-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

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

.pricing-card-billing {
  font-size: 13px;
  color: var(--faint);
  margin-bottom: 20px;
}

.pricing-card .btn {
  width: 100%;
  margin-top: 4px;
}

.pricing-card-note {
  font-size: 12px;
  color: var(--faint);
  margin-top: 12px;
}

/* ════════════════════════════════════════
   INLINE CTA
   ════════════════════════════════════════ */

.inline-cta {
  text-align: center;
  padding: 48px var(--container-pad);
  position: relative;
  overflow: hidden;
}

/* Inline CTA background variants to match parent sections */
.inline-cta.bg-surface { background: var(--surface); }
.inline-cta.bg-white { background: var(--bg); }

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

/* ════════════════════════════════════════
   CTA BANNER (dark section)
   ════════════════════════════════════════ */

.cta-banner {
  background: var(--dark);
  color: var(--text-on-dark);
  padding: var(--section-pad) 0;
  text-align: center;
}

.cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-banner-sub {
  font-size: 17px;
  color: rgba(240, 247, 247, 0.6);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

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

/* ════════════════════════════════════════
   FAQ ACCORDION
   ════════════════════════════════════════ */

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item.open {
  border-color: var(--accent);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 16px;
  cursor: pointer;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: var(--white);
}

.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-item.open .faq-body {
  grid-template-rows: 1fr;
}

.faq-body-inner {
  overflow: hidden;
}

.faq-answer {
  padding: 0 24px 22px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}

/* ════════════════════════════════════════
   PROGRAM OUTCOMES (Kids)
   ════════════════════════════════════════ */

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

.outcome-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.outcome-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.outcome-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--surface);
}

.outcome-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.outcome-card-body {
  padding: 24px;
}

.outcome-card-level {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}

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

.outcome-card h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.outcome-list {
  list-style: none;
  padding: 0;
}

.outcome-list li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--body);
  padding: 4px 0;
  padding-left: 24px;
  position: relative;
}

.outcome-list li .emoji {
  position: absolute;
  left: 0;
}

.outcome-ranks {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.outcome-ranks h4 {
  font-size: 14px;
  margin-bottom: 8px;
}

.outcome-ranks-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.outcome-rank-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--body);
}

/* ════════════════════════════════════════
   BOOKING FORM SECTION
   ════════════════════════════════════════ */

.booking-section {
  padding: var(--section-pad) 0;
}

.booking-iframe {
  width: 100%;
  min-height: 700px;
  border: none;
  border-radius: var(--radius);
}

/* ════════════════════════════════════════
   GOOGLE REVIEWS WIDGET
   ════════════════════════════════════════ */

.reviews-badge {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  background: var(--white);
  border: 1px solid var(--border-solid);
  border-radius: var(--radius-pill);
  padding: 14px 22px 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  user-select: none;
  animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
  50% { transform: scale(1.03); box-shadow: 0 6px 32px rgba(20,138,142,0.15); }
}

.reviews-badge:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--shadow-xl);
  animation: none;
}

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

.reviews-badge-google {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--surface);
  border-radius: 50%;
  flex-shrink: 0;
}

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

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

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

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

.badge-text-desktop { display: inline; }
.badge-text-mobile { display: none; }

.reviews-badge-tap {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-left: 4px;
  white-space: nowrap;
  box-shadow: 0 2px 12px var(--accent-glow);
  animation: badge-glow 2.5s ease-in-out infinite;
}

@keyframes badge-glow {
  0%, 100% { box-shadow: 0 2px 8px var(--accent-glow); }
  50% { box-shadow: 0 2px 14px rgba(20, 138, 142, 0.45); }
}

.reviews-badge:hover .reviews-badge-tap {
  background: var(--accent-hot);
}

/* Reviews 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.4);
  pointer-events: all;
}

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

.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(--text);
  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(--text); }
.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: 600;
  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-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: all 0.2s ease;
}

.reviews-close:hover { color: var(--text); border-color: var(--border-solid); background: var(--surface); }

.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-solid) transparent;
}

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

.review-card:hover { border-color: var(--border-solid); }

.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: 600; color: var(--text); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.review-date { font-size: 11px; color: var(--faint); }
.review-stars { color: #FBBC04; font-size: 13px; letter-spacing: -0.5px; margin-bottom: 10px; }
.review-text { font-size: 13px; color: var(--body); line-height: 1.7; }

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

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

.review-skeleton { padding: 20px; border-radius: var(--radius-lg); background: var(--surface); 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, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 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, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 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; }

.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; }
.reviews-empty { padding: 32px 20px; text-align: center; color: var(--muted); font-size: 14px; }

/* ════════════════════════════════════════
   FILLOUT MODAL (form modal)
   ════════════════════════════════════════ */

.fillout-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fillout-modal.open {
  opacity: 1;
  visibility: visible;
}

.fillout-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 47, 48, 0.75);
}

.fillout-modal-content {
  position: relative;
  width: 100%;
  max-width: 780px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.fillout-modal-close {
  position: sticky;
  top: 12px;
  float: right;
  margin: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.3);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 1;
  transition: background 0.2s ease;
}

.fillout-modal-close:hover { background: var(--destructive); }

/* ════════════════════════════════════════
   MOBILE CTA BAR (with phone button)
   ════════════════════════════════════════ */

.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 102;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 12px var(--container-pad);
  gap: 10px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}

.mobile-cta-primary {
  flex: 1;
  max-width: 280px;
  background: var(--accent);
  color: var(--white);
  padding: 13px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 12px var(--accent-glow);
  transition: background 0.2s ease;
  text-decoration: none;
}

.mobile-cta-primary:hover { background: var(--accent-hot); }

.mobile-cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-solid);
  color: var(--accent);
  flex-shrink: 0;
  transition: all 0.2s ease;
  text-decoration: none;
}

.mobile-cta-phone:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
}

.mobile-cta-phone svg { width: 20px; height: 20px; }

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */

@media (max-width: 960px) {
  /* Hero: mobile-first image layout */
  .hero { flex-direction: column; min-height: auto; }
  .hero::after { display: none; }
  .hero-right { order: -1; min-height: 55vh; clip-path: none; }
  .hero-left { flex: none; padding: 0 var(--container-pad) 48px; text-align: center; }
  .hero-ctas, .hero-stats, .hero-avatar-stack { display: none; } /* Redundant with sticky CTA bar */
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-photo-overlay {
    background: linear-gradient(to top, var(--dark) 0%, rgba(14,47,48,0.75) 35%, rgba(14,47,48,0.5) 70%, rgba(14,47,48,0.35) 100%) !important;
  }

  .mission-grid { grid-template-columns: 1fr; gap: 32px; }

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

  .comparison-table { display: flex; flex-direction: column; }
  .comparison-table thead,
  .comparison-table tbody { display: contents; }
  .comparison-table tr { display: contents; }
  .comparison-table th,
  .comparison-table td { display: block; width: 100%; }
  .comparison-col-header { font-size: 14px; padding: 16px 20px; }
  /* Group: negative header (order 1), all negatives (order 2), positive header (order 3), all positives (order 4) */
  .comparison-col-header.negative { order: 1; }
  .comparison-item.negative { order: 2; }
  .comparison-col-header.positive { order: 3; }
  .comparison-item.positive { order: 4; }

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

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

  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-callout-list { grid-template-columns: 1fr; }

  .outcomes-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .testimonial-video-grid { grid-template-columns: 1fr; max-width: 480px; margin: 24px auto 0; }

  .reviews-drawer { width: 100vw; }

  /* Reviews badge: centered above CTA bar */
  .reviews-badge {
    bottom: 84px;
    right: auto;
    left: 0; right: 0;
    margin-inline: auto;
    width: fit-content;
  }
  .badge-text-desktop { display: none; }
  .badge-text-mobile { display: inline; }

  /* Mobile CTA bar visible */
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 72px; }

  /* VSL responsive */
  .vsl-frame { border-radius: var(--radius-lg); }
}

@media (max-width: 600px) {
  .hero-right { min-height: 45vh; }

  .instructors-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }

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

  .comparison-item { padding: 14px 18px; font-size: 14px; }

  .guarantee-card { padding: 32px 24px; }

  .fillout-modal-content { max-width: 100%; max-height: 100vh; border-radius: 0; }
}
