/* ══════════════════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════════════════ */
:root {
  /* Palette */
  --green-dark:  #0d2d4a;
  --green-mid:   #1a4d7a;
  --lime:        #c2f53a;
  --lime-soft:   rgba(194,245,58,.14);
  --lime-border: rgba(194,245,58,.35);
  --coral:       #ff4d3a;
  --coral-soft:  rgba(255,77,58,.12);
  --sky:         #22d3ee;
  --sky-soft:    rgba(34,211,238,.12);
  --amber:       #fbbf24;
  --amber-soft:  rgba(251,191,36,.12);
  --pink:        #ec1c8d;
  --pink-soft:   rgba(236,28,141,.12);
  --ink:         #0c1a2e;
  --muted:       #4a6280;
  --bg:          #ffffff;
  --bg-soft:     #f2f6fb;
  --border:      rgba(10,36,22,.10);
  --border-mid:  rgba(10,36,22,.16);
  --shadow-sm:   0 2px 12px rgba(10,36,22,.07);
  --shadow-md:   0 8px 32px rgba(10,36,22,.10);
  --shadow-lg:   0 24px 64px rgba(10,36,22,.14);

  /* Type */
  --font-head: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Radius */
  --r-sm:  12px;
  --r-md:  20px;
  --r-lg:  28px;
  --r-xl:  36px;
}

/* ══════════════════════════════════════════════════
   RESET
══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
img { display: block; max-width: 100%; }
button  { font: inherit; cursor: pointer; border: none; background: none; }
textarea { font: inherit; resize: vertical; }

/* ══════════════════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
}
h1 { font-size: clamp(3rem, 6.5vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.1rem; }

/* ══════════════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════════════ */
.container {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}
.page-body { padding-bottom: 60px; }

/* ══════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover  { transform: translateY(-3px); }
.btn:active { transform: translateY(0); }

.btn-lime {
  background: var(--lime);
  color: var(--green-dark);
  box-shadow: 0 8px 24px rgba(194,245,58,.35);
}
.btn-lime:hover { box-shadow: 0 16px 40px rgba(194,245,58,.45); }

.btn-ghost {
  background: white;
  border-color: var(--border-mid);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--bg-soft); }

.btn-outline {
  background: transparent;
  border-color: var(--border-mid);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--green-dark); background: var(--bg-soft); }

.btn-full { width: 100%; }

/* ══════════════════════════════════════════════════
   HELPERS
══════════════════════════════════════════════════ */
.section-eyebrow {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--green-mid);
  margin-bottom: 10px;
}
.hidden { display: none !important; }

/* ══════════════════════════════════════════════════
   MOBILE NAV OVERLAY
══════════════════════════════════════════════════ */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 90;
  backdrop-filter: blur(3px);
}
.mobile-overlay.active { display: block; }

/* ══════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════ */
.hero-section {
  background:
    radial-gradient(ellipse at 20% 60%,  rgba(194,245,58,.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 10%,  rgba(34,211,238,.16) 0%, transparent 40%),
    radial-gradient(ellipse at 60% 100%, rgba(236,28,141,.08) 0%, transparent 45%),
    var(--bg-soft);
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
}
/* Decorative padel ball background */
.hero-section::before {
  content: "🎾";
  position: absolute;
  font-size: 28rem;
  opacity: .035;
  right: -60px;
  top: -60px;
  pointer-events: none;
  line-height: 1;
  user-select: none;
}

/* NAV */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.brand-badge {
  width: 74px; height: 74px;
  border-radius: 20px;
  background: #fff;
  color: var(--green-dark);
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(236,28,141,.25);
}
.brand-badge img { width: 100%; height: 100%; object-fit: cover; }

/* Header logo bigger than footer logo */
.topbar .brand-badge {
  width: 104px; height: 104px;
  border-radius: 26px;
}
.brand strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -.02em;
}
.brand small { color: var(--muted); font-size: .8rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.nav-links a:not(.btn) {
  color: var(--muted);
  font-weight: 600;
  font-size: .93rem;
  transition: color 180ms;
}
.nav-links a:not(.btn):hover { color: var(--ink); }
.nav-cta { font-size: .88rem; padding: 11px 22px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  border-radius: 12px;
  transition: background 160ms;
}
.hamburger:hover { background: var(--border); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 280ms ease, opacity 280ms ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO GRID */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding: 56px 0 0;
}

.hero-copy { color: var(--ink); }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--border);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
  margin-bottom: 20px;
}
.dot-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(194,245,58,.3);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(194,245,58,.3); }
  50%       { box-shadow: 0 0 0 7px rgba(194,245,58,.08); }
}

.hero-copy h1 {
  color: var(--ink);
  margin-bottom: 18px;
}
.hero-copy h1 em {
  font-style: normal;
  color: var(--coral);
}
.hero-lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 520px;
  margin-bottom: 12px;
}
.hero-tagline {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1rem;
  color: var(--pink);
  max-width: 480px;
  margin-bottom: 28px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.stat-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-item span { font-size: .8rem; color: var(--muted); }

/* Hero Right: Coach photo */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.coach-photo-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 2px solid rgba(194,245,58,.3);
  box-shadow: 0 0 60px rgba(194,245,58,.12), var(--shadow-lg);
  background: var(--bg-soft);
  aspect-ratio: 4/5;
}
.coach-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.coach-photo-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 30px 22px 22px;
  background: linear-gradient(to top, rgba(10,36,22,.95), transparent);
}
.coach-photo-name {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  letter-spacing: -.02em;
}
.coach-photo-role {
  display: block;
  font-size: .83rem;
  color: var(--lime);
  font-weight: 600;
  margin-top: 3px;
}
.floating-badge {
  position: absolute;
  top: 18px; right: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
}
.badge-n3 {
  background: var(--lime);
  color: var(--green-dark);
  box-shadow: 0 4px 14px rgba(194,245,58,.4);
}

/* Enroll snippet */
.enroll-snippet {
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  border-radius: var(--r-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.enroll-top {
  display: flex;
  gap: 14px;
  align-items: center;
}
.enroll-icon { font-size: 1.8rem; }
.enroll-top strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 1rem;
}
.enroll-top p { color: var(--muted); font-size: .85rem; }

/* ══════════════════════════════════════════════════
   PILLARS STRIP
══════════════════════════════════════════════════ */
.pillars-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 32px 0 0;
}
.pillar {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--lime);
}
.pillar-icon { font-size: 2.2rem; margin-bottom: 12px; }
.pillar h4   { margin-bottom: 8px; font-size: 1.05rem; }
.pillar p    { color: var(--muted); font-size: .9rem; }

/* ══════════════════════════════════════════════════
   SECTION BASE
══════════════════════════════════════════════════ */
.section {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 44px;
  margin-top: 24px;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.section-head.centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-sub {
  color: var(--muted);
  font-size: .97rem;
  margin-top: 8px;
}

/* ══════════════════════════════════════════════════
   PROGRAMS
══════════════════════════════════════════════════ */
.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.program-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.program-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
}
.accent-lime::before   { background: var(--lime); }
.accent-coral::before  { background: var(--coral); }
.accent-sky::before    { background: var(--sky); }
.accent-amber::before  { background: var(--amber); }

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.program-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.prog-age {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  font-size: .75rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.prog-emoji  { font-size: 1.8rem; }
.program-card h3 { font-size: 1.45rem; }
.program-card p  { color: var(--muted); font-size: .9rem; flex: 1; }
.prog-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: auto;
}
.prog-list li {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: .88rem;
  color: var(--muted);
}
.prog-list li span { font-size: 1rem; flex-shrink: 0; }

/* ══════════════════════════════════════════════════
   LEVELS
══════════════════════════════════════════════════ */
.levels-section { background: white; }
.levels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.level-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.level-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.level-featured {
  border-color: var(--coral);
  background: white;
  box-shadow: 0 4px 24px rgba(255,77,58,.10);
}

.level-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px 18px;
}
.lime-header   { background: var(--lime-soft);  border-bottom: 1px solid var(--lime-border); }
.coral-header  { background: var(--coral-soft); border-bottom: 1px solid rgba(255,77,58,.20); }
.sky-header    { background: var(--sky-soft);   border-bottom: 1px solid rgba(34,211,238,.20); }

.level-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.04em;
}
.level-icon { font-size: 2rem; }
.level-body { padding: 20px 24px; }
.level-body h3 { margin-bottom: 8px; font-size: 1.4rem; }
.level-body p  { color: var(--muted); font-size: .92rem; margin-bottom: 16px; }

.level-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.level-tags span {
  padding: 5px 12px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--border);
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════
   SCHEDULE
══════════════════════════════════════════════════ */
.schedule-wrap { display: flex; flex-direction: column; gap: 16px; }

.sched-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 20px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  border: 2px solid var(--border-mid);
  color: var(--muted);
  background: white;
  transition: all 180ms ease;
}
.tab-btn:hover  { border-color: var(--green-mid); color: var(--ink); }
.tab-btn.active {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: white;
  box-shadow: 0 6px 20px rgba(10,36,22,.20);
}

.schedule-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 16px;
  align-items: start;
}

.sched-table {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.sched-row {
  display: grid;
  grid-template-columns: 130px 140px 1fr 110px;
  gap: 12px;
  padding: 14px 22px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  font-size: .9rem;
  transition: background 150ms;
}
.sched-row:last-child { border-bottom: none; }
.sched-row:not(.sched-head):hover { background: var(--bg-soft); }

.sched-head {
  background: var(--green-dark);
  color: white;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.sched-head span { color: rgba(255,255,255,.8); }

.sched-row em { display: block; font-style: normal; font-size: .78rem; color: var(--muted); }
.day-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  font-weight: 700;
  font-size: .8rem;
  color: var(--green-mid);
  white-space: nowrap;
}
.time-val { font-weight: 600; font-size: .88rem; }

/* Level tags in schedule */
.lvl-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  white-space: nowrap;
}
.lime-tag  { background: var(--lime-soft);  color: #2d6a1a; }
.coral-tag { background: var(--coral-soft); color: #a8200d; }
.sky-tag   { background: var(--sky-soft);   color: #0369a1; }
.amber-tag { background: var(--amber-soft); color: #92400e; }

/* Agenda sidebar */
.agenda-sidebar {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.agenda-sidebar h3 { font-size: 1.25rem; }
.agenda-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.agenda-list li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-size: .88rem;
  color: var(--muted);
}
.ag-date {
  flex-shrink: 0;
  min-width: 46px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  color: var(--green-mid);
}
.agenda-note {
  padding: 12px 14px;
  border-radius: var(--r-sm);
  background: var(--lime-soft);
  border: 1px solid var(--lime-border);
  font-size: .82rem;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════════ */
.pricing-section {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.pricing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 80%, rgba(194,245,58,.14), transparent 50%),
    radial-gradient(ellipse at 90% 20%, rgba(34,211,238,.10), transparent 40%);
  pointer-events: none;
}
.pricing-section .section-eyebrow { color: var(--green-mid); }
.pricing-section h2 { color: var(--ink); }
.pricing-section .section-sub { color: var(--muted); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
  position: relative;
}
.price-card {
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  border-radius: var(--r-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  transition: transform 200ms ease, border-color 200ms ease;
}
.price-card:hover { transform: translateY(-4px); border-color: var(--border-mid); }

.price-label {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--muted);
}
.price-card h3 { color: var(--ink); font-size: 1.6rem; }
.price-amount {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin: 8px 0 4px;
}
.price-amount span {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: .6;
  letter-spacing: 0;
}
.price-sub { font-size: .85rem; color: var(--muted); margin-bottom: 8px; }

.price-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: .9rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 4px;
  margin-bottom: 20px;
}
.price-no { opacity: .35; }

/* Featured price card */
.price-featured {
  background: var(--lime);
  border-color: var(--lime) !important;
  box-shadow: 0 20px 60px rgba(194,245,58,.25);
}
.price-featured .price-label { color: rgba(10,36,22,.6); }
.price-featured h3            { color: var(--green-dark); }
.price-featured .price-amount { color: var(--green-dark); }
.price-featured .price-amount span { opacity: .55; }
.price-featured .price-sub    { color: rgba(10,36,22,.55); }
.price-featured .price-list   {
  color: rgba(10,36,22,.75);
  border-color: rgba(10,36,22,.15);
}
.price-featured .price-no     { opacity: .3; }
.price-featured .btn-lime     { background: var(--green-dark); color: white; box-shadow: none; }

.featured-pill {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  padding: 6px 18px;
  border-radius: 999px;
  background: white;
  color: var(--green-dark);
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
}

/* ── Familia Banner ─────────────────────────── */
.familia-banner {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 0;
  border: 1px solid var(--lime-border);
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--lime-soft) 0%, white 60%);
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
}
/* Lime left accent bar */
.familia-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 5px;
  background: var(--lime);
  border-radius: 4px 0 0 4px;
}
.familia-left {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 28px 24px 28px 32px;
  border-right: 1px solid var(--border);
}
.familia-emoji {
  font-size: 3.2rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.familia-eyebrow {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--coral);
  margin-bottom: 6px;
}
.familia-left h3 {
  color: var(--ink);
  font-size: 1.7rem;
  margin-bottom: 8px;
}
.familia-sub { color: var(--muted); font-size: .9rem; max-width: 320px; }

.familia-center {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.familia-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.familia-list li {
  font-size: .88rem;
  color: var(--muted);
  display: flex;
  gap: 8px;
  align-items: center;
}

.familia-right {
  padding: 28px 28px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 200px;
}
.familia-price {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
}
.familia-per { font-size: .8rem; color: var(--muted); margin-bottom: 8px; }
.familia-note { font-size: .75rem; color: var(--muted); opacity: .8; margin-top: 4px; }

/* Extras */
.extras-section {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  background: white;
  position: relative;
}
.extras-section .section-eyebrow { color: var(--green-mid); }

.extras-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.extra-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 16px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--bg-soft);
  transition: border-color 180ms, transform 180ms;
}
.extra-card:hover { border-color: rgba(194,245,58,.5); transform: translateY(-3px); }
.extra-icon { font-size: 2rem; flex-shrink: 0; }
.extra-card h4    { color: var(--ink); font-size: .95rem; margin-bottom: 3px; }
.extra-card strong {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--coral);
  display: block;
  margin-bottom: 3px;
}
.extra-card small {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: 0;
  opacity: .7;
}
.extra-card p { font-size: .82rem; color: var(--muted); }

/* ══════════════════════════════════════════════════
   COACH SECTION
══════════════════════════════════════════════════ */
.coach-section { background: white; }

.coach-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  align-items: start;
}

/* Left */
.coach-left { display: flex; flex-direction: column; gap: 16px; }
.coach-big-photo {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  aspect-ratio: 3/4;
}
.coach-big-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.coach-identity {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 22px 22px;
  background: linear-gradient(to top, rgba(10,36,22,.92), transparent);
}
.coach-identity h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 2px;
}
.coach-identity p {
  color: var(--lime);
  font-weight: 700;
  font-size: .9rem;
}

.coach-contact-mini {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.coach-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--r-md);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  font-size: .88rem;
  color: var(--muted);
  font-weight: 500;
  transition: border-color 180ms, color 180ms;
}
.coach-contact-item:hover { border-color: var(--green-mid); color: var(--ink); }
.coach-contact-item span { font-size: 1rem; }

/* Right */
.coach-right .section-eyebrow { margin-bottom: 10px; }
.coach-right h2   { margin-bottom: 14px; }
.coach-lead { color: var(--muted); font-size: .97rem; margin-bottom: 24px; }

/* Coach stats */
.coach-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.cstat {
  padding: 16px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  text-align: center;
}
.cstat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 4px;
}
.cstat span { font-size: .75rem; color: var(--muted); font-weight: 600; }
.cstat-lime  { background: var(--lime-soft);  border-color: var(--lime-border); }
.cstat-lime  strong { color: #4a7a00; }
.cstat-coral { background: var(--coral-soft); border-color: rgba(255,77,58,.2); }
.cstat-coral strong { color: var(--coral); }
.cstat-sky   { background: var(--sky-soft);   border-color: rgba(34,211,238,.2); }
.cstat-sky   strong { color: #0369a1; }
.cstat-amber { background: var(--amber-soft); border-color: rgba(251,191,36,.25); }
.cstat-amber strong { color: #92400e; }

/* Credentials grid */
.creds-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.cred-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--bg-soft);
  transition: border-color 180ms, transform 180ms;
}
.cred-item:hover { border-color: var(--green-mid); transform: translateY(-2px); }
.cred-current { border-color: var(--lime-border); background: var(--lime-soft); }
.cred-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 1px; }
.cred-item strong { font-size: .9rem; display: block; margin-bottom: 2px; }
.cred-item p      { font-size: .8rem; color: var(--muted); }

/* Specialties */
.spec-label {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
  margin-bottom: 10px;
}
.spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.spec-tags span {
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  font-size: .83rem;
  font-weight: 600;
  color: var(--muted);
  transition: border-color 160ms, color 160ms;
}
.spec-tags span:hover { border-color: var(--lime); color: var(--ink); }

/* ══════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════ */
.faq-section { background: var(--bg-soft); }
.faq-list    { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow 200ms;
}
.faq-item.open { box-shadow: var(--shadow-md); border-color: var(--border-mid); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
  transition: background 160ms;
}
.faq-q:hover { background: var(--bg-soft); }

.faq-arrow {
  font-size: 1.2rem;
  color: var(--green-mid);
  transition: transform 280ms ease;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease;
}
.faq-ans p {
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: .95rem;
}
.faq-item.open .faq-ans { max-height: 200px; }

/* ══════════════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════════════ */
.contact-section {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 56px 44px;
  margin-top: 24px;
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 5% 90%, rgba(194,245,58,.14), transparent 45%),
    radial-gradient(ellipse at 95% 10%, rgba(34,211,238,.10), transparent 40%);
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
  position: relative;
}

/* Contact info */
.contact-info h2 {
  color: var(--ink);
  margin-bottom: 14px;
}
.contact-info > p { color: var(--muted); margin-bottom: 28px; }
.contact-info .section-eyebrow { color: var(--pink); }

.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-row {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  border-radius: var(--r-md);
  background: white;
  border: 1px solid var(--border);
}
.contact-ico { font-size: 1.5rem; flex-shrink: 0; }
.contact-row strong { display: block; color: var(--ink); font-size: .9rem; margin-bottom: 2px; }
.contact-row p      { color: var(--muted); font-size: .88rem; }

/* Form */
.contact-form {
  background: white;
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form h3 {
  font-size: 1.6rem;
  margin-bottom: 2px;
}
.form-sub { color: var(--muted); font-size: .85rem; }

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-weight: 700;
  font-size: .88rem;
  color: var(--ink);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1.5px solid var(--border-mid);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font: inherit;
  font-size: .92rem;
  color: var(--ink);
  background: var(--bg-soft);
  transition: border-color 160ms, box-shadow 160ms;
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(22,77,48,.10);
  background: white;
}
.contact-form input.error,
.contact-form select.error { border-color: var(--coral); }

.submit-btn { font-size: 1rem; padding: 16px; margin-top: 4px; }
.form-disclaimer { text-align: center; font-size: .77rem; color: var(--muted); }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 32px 0;
  margin-top: 24px;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-brand .brand strong { color: var(--ink); }
.footer-brand .brand small  { color: var(--muted); }

.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  flex: 1;
  justify-content: center;
}
.footer-nav a {
  font-size: .85rem;
  color: var(--muted);
  font-weight: 600;
  transition: color 160ms;
}
.footer-nav a:hover { color: var(--ink); }

.footer-copy {
  font-size: .78rem;
  color: var(--muted);
  margin-left: auto;
}

.footer-powered {
  display: flex;
  justify-content: center;
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid var(--border);
}
.footer-powered a {
  font-size: .76rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 160ms;
}
.footer-powered a:hover { color: var(--pink); }

/* ══════════════════════════════════════════════════
   TOAST
══════════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  padding: 16px 24px;
  border-radius: var(--r-md);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .93rem;
  color: var(--green-dark);
  background: var(--lime);
  box-shadow: 0 16px 48px rgba(194,245,58,.4);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 300ms cubic-bezier(.34,1.56,.64,1), opacity 300ms ease;
  pointer-events: none;
  max-width: 360px;
}
.toast.show        { transform: translateY(0); opacity: 1; }
.toast.toast-error { background: var(--coral); color: white; box-shadow: 0 16px 48px rgba(255,77,58,.35); }

/* ══════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — TABLET ≤ 1024px
══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid     { grid-template-columns: 1fr; gap: 28px; padding-top: 36px; }
  .hero-right    { grid-row: 1; }
  .coach-photo-card { aspect-ratio: 16/9; }
  .coach-img     { object-position: center 25%; }
  .hero-stats    { grid-template-columns: repeat(3, 1fr); }

  .pillars-strip       { grid-template-columns: repeat(2, 1fr); }
  .program-grid        { grid-template-columns: repeat(2, 1fr); }
  .extras-grid         { grid-template-columns: repeat(2, 1fr); }
  .familia-banner      { grid-template-columns: 1fr; }
  .familia-left,
  .familia-center,
  .familia-right       { border-right: none; border-bottom: 1px solid var(--border); }
  .familia-right       { border-bottom: none; }
  .coach-grid          { grid-template-columns: 1fr; }
  .coach-big-photo     { aspect-ratio: 16/10; }
  .coach-stats         { grid-template-columns: repeat(4, 1fr); }
  .contact-grid        { grid-template-columns: 1fr; }
  .schedule-layout     { grid-template-columns: 1fr; }
  .pricing-grid        { grid-template-columns: 1fr; }
  .levels-grid         { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — MOBILE ≤ 720px
══════════════════════════════════════════════════ */
@media (max-width: 720px) {
  .container { width: calc(100% - 24px); }

  .section          { padding: 28px 20px; border-radius: var(--r-lg); }
  .contact-section  { padding: 36px 20px; border-radius: var(--r-lg); }

  /* Nav mobile */
  .hamburger  { display: flex; }
  .nav-links  {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(80%, 300px);
    background: white;
    border-left: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 48px 32px;
    gap: 28px;
    z-index: 100;
    transform: translateX(110%);
    transition: transform 300ms cubic-bezier(.25,.8,.25,1);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a:not(.btn) { font-size: 1.1rem; color: var(--muted); }
  .nav-cta { width: 100%; justify-content: center; }

  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }

  .hero-stats     { grid-template-columns: repeat(3, 1fr); }
  .hero-btns      { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }

  .coach-photo-card { aspect-ratio: 4/3; }

  .pillars-strip  { grid-template-columns: 1fr; }
  .program-grid   { grid-template-columns: 1fr; }
  .levels-grid    { grid-template-columns: 1fr; }
  .extras-grid    { grid-template-columns: 1fr; }
  .familia-left   { padding: 24px 20px 20px 24px; }
  .familia-center { padding: 20px 20px 20px 24px; }
  .familia-right  { padding: 20px 20px 24px 24px; align-items: flex-start; }

  .sched-row      { grid-template-columns: 1fr 1fr; row-gap: 6px; }
  .sched-head     { display: none; }

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

  .form-row       { grid-template-columns: 1fr; }
  .footer-inner   { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-copy    { margin-left: 0; }
  .footer-nav     { justify-content: flex-start; }

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