/* ─── Design tokens ───────────────────────────────────────────────────── */
:root {
  --bg:            oklch(0.98 0.01 85);
  --fg:            oklch(0.25 0.05 280);
  --card:          oklch(1 0 0);
  --card-fg:       oklch(0.25 0.05 280);
  --primary:       oklch(0.7 0.18 50);
  --primary-fg:    oklch(1 0 0);
  --secondary:     oklch(0.95 0.06 95);
  --secondary-fg:  oklch(0.35 0.1 280);
  --muted:         oklch(0.94 0.02 85);
  --muted-fg:      oklch(0.5 0.03 280);
  --accent:        oklch(0.72 0.14 185);
  --accent-fg:     oklch(1 0 0);
  --border:        oklch(0.88 0.02 85);
  --radius:        1rem;
  --max-w:         80rem;
}

/* ─── Reset & base ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Utilities ───────────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; position: relative; overflow: hidden; }
.section--card { background: var(--card); }
.section--bg   { background: var(--bg); }

.label {
  display: inline-block;
  padding: .25rem 1rem;
  border-radius: 9999px;
  font-size: .875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.label--primary { background: color-mix(in oklch, var(--primary) 10%, transparent); color: var(--primary); }
.label--accent  { background: color-mix(in oklch, var(--accent)  10%, transparent); color: var(--accent);  }

.section-title {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.section-sub {
  color: var(--muted-fg);
  font-size: 1.1rem;
  max-width: 40rem;
  margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: 4rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2.5rem;
  border-radius: 9999px;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: box-shadow .2s, transform .2s;
  text-decoration: none;
}
.btn--primary {
  background: var(--primary);
  color: var(--primary-fg);
  box-shadow: 0 4px 16px color-mix(in oklch, var(--primary) 40%, transparent);
}
.btn--primary:hover { box-shadow: 0 8px 24px color-mix(in oklch, var(--primary) 50%, transparent); transform: translateY(-1px); }
.btn--outline {
  background: transparent;
  color: var(--fg);
  border: 2px solid var(--border);
}
.btn--outline:hover { border-color: var(--primary); color: var(--primary); }
.btn--secondary {
  background: var(--secondary);
  color: var(--secondary-fg);
}
.btn--secondary:hover { transform: translateY(-1px) scale(1.02); }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow .3s, transform .3s;
}
.card:hover { box-shadow: 0 16px 40px color-mix(in oklch, var(--fg) 10%, transparent); transform: translateY(-4px); }

/* ─── Navbar ──────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: color-mix(in oklch, var(--bg) 85%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 4rem;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.navbar-logo img { height: 3rem; width: auto; transition: transform .2s; }
.navbar-logo:hover img { transform: scale(1.05); }

.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a {
  color: var(--muted-fg);
  font-weight: 600;
  transition: color .2s;
}
.nav-links a:hover { color: var(--primary); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  color: var(--fg);
}
.nav-toggle svg { width: 1.5rem; height: 1.5rem; }

.nav-mobile {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}
.nav-mobile.open { display: flex; flex-direction: column; gap: 1rem; }
.nav-mobile a {
  color: var(--muted-fg);
  font-weight: 600;
  padding: .5rem 0;
  transition: color .2s;
}
.nav-mobile a:hover { color: var(--primary); }

/* ─── Hero ────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4rem;
  position: relative;
  overflow: hidden;
}
.hero-blobs { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero-blob-1 {
  top: 5rem; left: 2rem;
  width: 18rem; height: 18rem;
  background: color-mix(in oklch, var(--primary) 20%, transparent);
  animation: pulse 4s ease-in-out infinite;
}
.hero-blob-2 {
  bottom: 5rem; right: 2rem;
  width: 24rem; height: 24rem;
  background: color-mix(in oklch, var(--accent) 20%, transparent);
  animation: pulse 4s ease-in-out infinite 1s;
}
.hero-blob-3 {
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 37rem; height: 37rem;
  background: color-mix(in oklch, var(--secondary) 40%, transparent);
}
@keyframes pulse {
  0%, 100% { opacity: .7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.hero-inner { text-align: center; max-width: 56rem; margin: 0 auto; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--secondary);
  border: 1px solid color-mix(in oklch, var(--primary) 20%, transparent);
  padding: .5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 2rem;
  font-size: .875rem;
  font-weight: 700;
}

.hero-title {
  font-size: clamp(2.25rem, 8vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-title .gradient {
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--muted-fg);
  max-width: 38rem;
  margin: 0 auto 2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero-badge-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--card);
  border: 1px solid var(--border);
  padding: .5rem 1rem;
  border-radius: 9999px;
  box-shadow: 0 2px 8px color-mix(in oklch, var(--fg) 6%, transparent);
  font-size: .9rem;
  font-weight: 600;
}
.hero-badge-item .icon { width: 1rem; height: 1rem; }
.icon-primary { color: var(--primary); }
.icon-accent  { color: var(--accent); }

.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 4rem; }

.hero-cards {
  background: linear-gradient(135deg,
    color-mix(in oklch, var(--primary) 10%, transparent),
    color-mix(in oklch, var(--accent) 10%, transparent),
    var(--secondary));
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 8px 32px color-mix(in oklch, var(--fg) 8%, transparent);
}
.hero-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.hero-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 16px color-mix(in oklch, var(--fg) 6%, transparent);
  transition: box-shadow .3s, transform .3s;
}
.hero-card:hover { box-shadow: 0 8px 24px color-mix(in oklch, var(--fg) 12%, transparent); transform: translateY(-4px); }
.hero-card-icon {
  width: 4rem; height: 4rem;
  border-radius: .75rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.hero-card-icon--primary { background: color-mix(in oklch, var(--primary) 10%, transparent); }
.hero-card-icon--accent  { background: color-mix(in oklch, var(--accent)  10%, transparent); }
.hero-card-icon--secondary { background: var(--secondary); }
.hero-card h3 { font-weight: 800; margin-bottom: .5rem; }
.hero-card p  { color: var(--muted-fg); font-size: .875rem; }

/* ─── About ───────────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 16px color-mix(in oklch, var(--fg) 5%, transparent);
  transition: box-shadow .3s, transform .3s;
}
.feature-card:hover { box-shadow: 0 12px 32px color-mix(in oklch, var(--fg) 10%, transparent); transform: translateY(-4px); }
.feature-icon {
  width: 3.5rem; height: 3.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: .75rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.feature-icon svg { width: 1.75rem; height: 1.75rem; color: white; }
.feature-card h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: .75rem; }
.feature-card p  { color: var(--muted-fg); }

.about-box {
  background: linear-gradient(135deg, var(--secondary), color-mix(in oklch, var(--secondary) 50%, transparent), var(--bg));
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 3rem;
}
.about-box-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.about-box h3 { font-size: 1.75rem; font-weight: 800; margin-bottom: 1.5rem; }
.check-list { display: flex; flex-direction: column; gap: 1rem; }
.check-item { display: flex; align-items: flex-start; gap: .75rem; font-size: 1.1rem; }
.check-circle {
  width: 1.5rem; height: 1.5rem;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: .15rem;
}
.check-circle svg { width: 1rem; height: 1rem; color: white; }

.about-visual { display: flex; justify-content: center; }
.about-bubble {
  position: relative;
  width: 16rem; height: 16rem;
  background: linear-gradient(135deg,
    color-mix(in oklch, var(--primary) 20%, transparent),
    color-mix(in oklch, var(--accent) 20%, transparent));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.about-bubble-inner {
  width: 12rem; height: 12rem;
  background: linear-gradient(135deg,
    color-mix(in oklch, var(--primary) 30%, transparent),
    color-mix(in oklch, var(--accent) 30%, transparent));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}
.about-badge {
  position: absolute;
  padding: .375rem .75rem;
  border-radius: 9999px;
  font-size: .875rem;
  font-weight: 800;
  box-shadow: 0 4px 12px color-mix(in oklch, var(--fg) 20%, transparent);
}
.about-badge--primary { background: var(--primary); color: white; top: -.5rem; right: -.5rem; }
.about-badge--accent  { background: var(--accent);  color: white; bottom: -.5rem; left: -.5rem; }

/* ─── Program ─────────────────────────────────────────────────────────── */
.program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}
.program-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px color-mix(in oklch, var(--fg) 8%, transparent);
  background: var(--card);
  transition: border-color .3s;
}
.program-card--accent:hover  { border-color: color-mix(in oklch, var(--accent) 40%, transparent); }
.program-card--primary:hover { border-color: color-mix(in oklch, var(--primary) 40%, transparent); }

.program-card-header {
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.program-card-header--accent  { background: linear-gradient(90deg, color-mix(in oklch, var(--accent) 10%, transparent), color-mix(in oklch, var(--accent) 5%, transparent)); }
.program-card-header--primary { background: linear-gradient(90deg, color-mix(in oklch, var(--primary) 10%, transparent), color-mix(in oklch, var(--primary) 5%, transparent)); }

.program-icon {
  width: 4rem; height: 4rem;
  border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 12px color-mix(in oklch, var(--fg) 15%, transparent);
}
.program-icon--accent  { background: var(--accent); }
.program-icon--primary { background: var(--primary); }
.program-card-header h3 { font-size: 1.5rem; font-weight: 800; }

.program-list { padding: 1.5rem 2rem; display: flex; flex-direction: column; gap: 1rem; }
.program-item { display: flex; align-items: center; gap: .75rem; }
.program-num {
  width: 2rem; height: 2rem;
  border-radius: .5rem;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: .875rem;
  flex-shrink: 0;
  transition: background .2s;
}
.program-num--accent  { background: color-mix(in oklch, var(--accent) 10%, transparent); color: var(--accent); }
.program-num--primary { background: color-mix(in oklch, var(--primary) 10%, transparent); color: var(--primary); }
.program-item:hover .program-num--accent  { background: color-mix(in oklch, var(--accent) 20%, transparent); }
.program-item:hover .program-num--primary { background: color-mix(in oklch, var(--primary) 20%, transparent); }

.coaches-box {
  background: linear-gradient(90deg, var(--secondary), color-mix(in oklch, var(--secondary) 50%, transparent));
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.coaches-avatars { display: flex; }
.coach-avatar {
  width: 5rem; height: 5rem;
  border-radius: 50%;
  border: 4px solid var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 12px color-mix(in oklch, var(--fg) 15%, transparent);
}
.coach-avatar:last-child { margin-left: -1.25rem; }
.coach-avatar--primary { background: var(--primary); }
.coach-avatar--accent  { background: var(--accent); }
.coaches-text h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: .5rem; }
.coaches-text p  { color: var(--muted-fg); font-size: 1.05rem; }

/* ─── Schedule ────────────────────────────────────────────────────────── */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.session-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px color-mix(in oklch, var(--fg) 6%, transparent);
  background: var(--card);
  border: 1px solid var(--border);
  text-align: center;
  transition: box-shadow .3s, transform .3s;
}
.session-card:hover { box-shadow: 0 16px 40px color-mix(in oklch, var(--fg) 10%, transparent); transform: translateY(-8px); }
.session-stripe { height: .375rem; }
.session-stripe--primary { background: var(--primary); }
.session-stripe--accent  { background: var(--accent); }
.session-body { padding: 1.5rem; }
.session-label {
  display: inline-block;
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: .2rem .75rem;
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.session-dates {
  font-size: 1.4rem;
  font-weight: 800;
  transition: color .3s;
}
.session-card:hover .session-dates { color: var(--primary); }
.session-year { color: var(--muted-fg); margin-top: .25rem; font-size: .9rem; }

.info-box {
  background: linear-gradient(135deg, var(--bg), color-mix(in oklch, var(--secondary) 30%, transparent));
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 4px 16px color-mix(in oklch, var(--fg) 5%, transparent);
}
.info-box h3 { text-align: center; font-size: 1.25rem; font-weight: 800; margin-bottom: 2rem; }
.info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.info-item { text-align: center; }
.info-icon-wrap {
  width: 3.5rem; height: 3.5rem;
  background: var(--card);
  border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 12px color-mix(in oklch, var(--fg) 8%, transparent);
  transition: box-shadow .2s;
}
.info-item:hover .info-icon-wrap { box-shadow: 0 8px 20px color-mix(in oklch, var(--fg) 12%, transparent); }
.info-icon-wrap svg { width: 1.75rem; height: 1.75rem; }
.info-item p { font-weight: 600; font-size: .9rem; }

.info-location {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  text-align: center;
}
.info-location .sep { color: var(--muted-fg); }
.info-location .place { display: flex; align-items: center; gap: .5rem; font-weight: 700; }
.info-location .place svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.info-location .detail { color: var(--muted-fg); }

/* ─── Pricing ─────────────────────────────────────────────────────────── */
.pricing-card {
  max-width: 56rem;
  margin: 0 auto;
  border: 2px solid color-mix(in oklch, var(--primary) 30%, transparent);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 48px color-mix(in oklch, var(--fg) 12%, transparent);
  position: relative;
}
.pricing-corner {
  position: absolute;
  top: 0; right: 0;
  width: 8rem; height: 8rem;
  background: linear-gradient(to bottom left, color-mix(in oklch, var(--primary) 20%, transparent), transparent);
}
.pricing-header {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  padding: 3rem;
  text-align: center;
  color: white;
  position: relative;
}
.pricing-header .sparkle {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 2rem; height: 2rem;
  opacity: .5;
}
.pricing-label { font-size: 1.1rem; font-weight: 600; opacity: .9; margin-bottom: .5rem; }
.pricing-amount { display: flex; align-items: baseline; justify-content: center; gap: .5rem; }
.pricing-amount .num { font-size: clamp(3rem, 8vw, 4.5rem); font-weight: 900; }
.pricing-amount .cur { font-size: 1.5rem; font-weight: 700; }

.pricing-body { padding: 2.5rem; background: var(--card); }
.pricing-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.pricing-col h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 1.25rem; display: flex; align-items: center; gap: .75rem; }
.pricing-col-icon {
  width: 2rem; height: 2rem;
  border-radius: .5rem;
  display: flex; align-items: center; justify-content: center;
}
.pricing-col-icon--accent  { background: color-mix(in oklch, var(--accent) 10%, transparent); }
.pricing-col-icon--primary { background: color-mix(in oklch, var(--primary) 10%, transparent); }
.pricing-col-icon svg { width: 1.25rem; height: 1.25rem; }
.pricing-list { display: flex; flex-direction: column; gap: .75rem; }
.pricing-item { display: flex; align-items: flex-start; gap: .75rem; }
.pricing-dot {
  width: 1.25rem; height: 1.25rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: .15rem;
}
.pricing-dot--accent  { background: color-mix(in oklch, var(--accent) 20%, transparent); }
.pricing-dot--primary { background: color-mix(in oklch, var(--primary) 20%, transparent); }
.pricing-dot svg { width: .75rem; height: .75rem; }
.pricing-dot--accent svg  { color: var(--accent); }
.pricing-dot--primary svg { color: var(--primary); }
.pricing-item span { color: var(--muted-fg); }

.pricing-cta {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.pricing-cta .note { font-size: .875rem; color: var(--muted-fg); margin-top: 1rem; }

/* ─── Why Us ──────────────────────────────────────────────────────────── */
.why-section { background: linear-gradient(to bottom, var(--card), var(--bg)); }
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.why-card:hover {
  border-color: color-mix(in oklch, var(--primary) 30%, transparent);
  box-shadow: 0 16px 40px color-mix(in oklch, var(--fg) 10%, transparent);
  transform: translateY(-8px);
}
.why-icon {
  width: 3rem; height: 3rem;
  border-radius: .75rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px color-mix(in oklch, var(--fg) 15%, transparent);
  transition: transform .3s;
}
.why-card:hover .why-icon { transform: scale(1.1); }
.why-icon--primary { background: var(--primary); }
.why-icon--accent  { background: var(--accent); }
.why-icon svg { width: 1.5rem; height: 1.5rem; color: white; }
.why-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: .5rem; }
.why-card p  { color: var(--muted-fg); font-size: .875rem; }

/* ─── Carousel ────────────────────────────────────────────────────────── */
.gallery-section { background: color-mix(in oklch, var(--secondary) 30%, transparent); padding: 4rem 0; }
.carousel-wrap { position: relative; }
.carousel-track-outer { overflow: hidden; border-radius: 1rem; }
.carousel-track { display: flex; transition: transform .5s cubic-bezier(.25,.46,.45,.94); }
.carousel-slide { flex: 0 0 50%; min-width: 0; padding-right: 1rem; }
.carousel-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 24px color-mix(in oklch, var(--fg) 15%, transparent);
}
.carousel-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s, filter .5s;
  filter: grayscale(20%);
}
.carousel-img-wrap:hover img { transform: scale(1.05); filter: grayscale(0); }
.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, color-mix(in oklch, var(--fg) 70%, transparent) 0%, color-mix(in oklch, var(--fg) 20%, transparent) 50%, transparent 100%);
}
.carousel-caption {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: color-mix(in oklch, var(--primary) 90%, transparent);
  backdrop-filter: blur(4px);
  color: white;
  padding: .375rem .875rem;
  border-radius: 9999px;
  font-size: .875rem;
  font-weight: 700;
}

.carousel-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: var(--secondary);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px color-mix(in oklch, var(--fg) 20%, transparent);
  transition: background .2s;
}
.carousel-btn:hover { background: var(--card); }
.carousel-btn svg { width: 1.25rem; height: 1.25rem; }
.carousel-btn--prev { left: .5rem; }
.carousel-btn--next { right: .5rem; }

.carousel-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.5rem; }
.carousel-dot {
  height: .625rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: width .3s, background .3s;
  background: color-mix(in oklch, var(--primary) 30%, transparent);
  width: .625rem;
}
.carousel-dot.active { background: var(--primary); width: 2rem; }

/* ─── CTA ─────────────────────────────────────────────────────────────── */
.cta-section { position: relative; overflow: hidden; }
.cta-bg-blobs { position: absolute; inset: 0; z-index: -1; }
.cta-bg-blobs::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    color-mix(in oklch, var(--primary) 10%, transparent),
    var(--bg),
    color-mix(in oklch, var(--accent) 10%, transparent));
}
.cta-blob-1 {
  position: absolute;
  top: 25%; left: 25%;
  width: 24rem; height: 24rem;
  background: color-mix(in oklch, var(--primary) 20%, transparent);
  border-radius: 50%;
  filter: blur(80px);
  animation: pulse 4s ease-in-out infinite;
}
.cta-blob-2 {
  position: absolute;
  bottom: 25%; right: 25%;
  width: 24rem; height: 24rem;
  background: color-mix(in oklch, var(--accent) 20%, transparent);
  border-radius: 50%;
  filter: blur(80px);
  animation: pulse 4s ease-in-out infinite 1s;
}

.cta-inner {
  max-width: 56rem;
  margin: 0 auto;
}
.cta-box {
  background: linear-gradient(135deg, var(--primary), var(--primary), var(--accent));
  border-radius: 1.5rem;
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: 0 24px 64px color-mix(in oklch, var(--primary) 30%, transparent);
  position: relative;
  overflow: hidden;
}
.cta-stars { position: absolute; inset: 0; pointer-events: none; }
.cta-star { position: absolute; }
.cta-star svg { fill: color-mix(in oklch, white 10%, transparent); }

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: color-mix(in oklch, white 20%, transparent);
  padding: .5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  font-size: .875rem;
  font-weight: 700;
  color: white;
}
.cta-box h2 {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 900;
  color: white;
  margin-bottom: 1.5rem;
}
.cta-box > .relative > p {
  color: color-mix(in oklch, white 90%, transparent);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}
.cta-note { color: color-mix(in oklch, white 70%, transparent); font-size: .875rem; margin-top: 1.5rem; }

/* ─── Footer ──────────────────────────────────────────────────────────── */
.footer { background: var(--fg); color: var(--bg); padding: 3rem 0; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-logo { width: 5rem; height: auto; border-radius: .5rem; margin-bottom: 1rem; }
.footer-tagline { color: color-mix(in oklch, var(--bg) 70%, transparent); font-size: .875rem; line-height: 1.7; }
.footer h3 { font-weight: 800; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { color: color-mix(in oklch, var(--bg) 70%, transparent); font-size: .875rem; transition: color .2s; }
.footer-links a:hover { color: var(--primary); }
.footer-contact { display: flex; flex-direction: column; gap: .75rem; }
.footer-contact-name { font-weight: 600; font-size: .875rem; }
.footer-contact a {
  display: flex; align-items: center; gap: .5rem;
  color: color-mix(in oklch, var(--bg) 70%, transparent);
  font-size: .875rem;
  transition: color .2s;
}
.footer-contact a:hover { color: var(--primary); }
.footer-contact a svg { width: 1rem; height: 1rem; color: var(--primary); flex-shrink: 0; }
.footer-address { display: flex; align-items: flex-start; gap: .5rem; padding-top: .5rem; }
.footer-address svg { width: 1rem; height: 1rem; color: var(--primary); flex-shrink: 0; margin-top: .15rem; }
.footer-address span { color: color-mix(in oklch, var(--bg) 70%, transparent); font-size: .875rem; }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in oklch, var(--bg) 20%, transparent);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { color: color-mix(in oklch, var(--bg) 50%, transparent); font-size: .875rem; }
.footer-bottom a { color: color-mix(in oklch, var(--bg) 50%, transparent); font-size: .875rem; transition: color .2s; }
.footer-bottom a:hover { color: var(--primary); }

/* ─── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-cards-grid    { grid-template-columns: 1fr; }
  .about-box-grid     { grid-template-columns: 1fr; }
  .about-visual       { display: none; }
  .program-grid       { grid-template-columns: 1fr; }
  .schedule-grid      { grid-template-columns: 1fr; }
  .info-grid          { grid-template-columns: repeat(2, 1fr); }
  .pricing-cols       { grid-template-columns: 1fr; }
  .why-grid           { grid-template-columns: repeat(2, 1fr); }
  .footer-grid        { grid-template-columns: 1fr; }
  .coaches-box        { flex-direction: column; text-align: center; }
  .carousel-slide     { flex: 0 0 85%; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .why-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
}
