/* ══════════════════════════════════════════════════════════════
   BOOTCAMP-STYLE.CSS
   Future-Proof Bootcamp sales page
   Follows edulife-design-system.md
══════════════════════════════════════════════════════════════ */

/* ── SHARED UTILITIES ──────────────────────────────────────── */
.section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem;
  display: block;
}
.btn-primary {
  background: var(--terracotta); color: white;
  padding: 1rem 2rem; border-radius: 3rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  transition: all 0.3s; display: inline-flex; align-items: center; gap: 0.5rem;
  border: none; cursor: pointer; white-space: nowrap;
}
.btn-primary:hover { background: var(--dark-teal); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(44,24,16,0.2); }
.btn-secondary {
  background: transparent; color: white;
  padding: 1rem 2rem; border-radius: 3rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  border: 2px solid rgba(250,245,237,0.4); transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-secondary:hover { border-color: white; background: rgba(250,245,237,0.1); transform: translateY(-2px); }
.btn-outline-white {
  background: transparent; color: white;
  padding: 1rem 2rem; border-radius: 3rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  border: 2px solid rgba(250,245,237,0.35); transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-outline-white:hover { border-color: white; background: rgba(250,245,237,0.08); transform: translateY(-2px); }


/* ══════════════════════════════════════
   SECTION 1 — HERO
══════════════════════════════════════ */
.bc-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.bc-hero-left {
  background: var(--dark-teal);
  display: flex; flex-direction: column; justify-content: center;
  padding: 10rem 4rem 6rem 5rem;
  position: relative; z-index: 2;
}
.bc-hero-left::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(212,168,83,0.04) 0, rgba(212,168,83,0.04) 1px, transparent 0, transparent 60px),
    repeating-linear-gradient(90deg, rgba(212,168,83,0.02) 0, rgba(212,168,83,0.02) 1px, transparent 0, transparent 60px);
  pointer-events: none;
}

.bc-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(196,98,45,0.18);
  border: 1px solid rgba(254,119,54,0.3);
  border-radius: 2rem; padding: 0.4rem 1rem;
  font-size: 0.75rem; font-weight: 700;
  color: var(--warm-gold); letter-spacing: 0.08em;
  text-transform: uppercase; width: fit-content;
  margin-bottom: 2rem;
  animation: bcFadeUp 0.7s ease both;
  position: relative; z-index: 1;
}

.bc-hero-left h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 3.8vw, 3.6rem);
  font-weight: 900; line-height: 1.06;
  color: white; letter-spacing: -0.03em;
  margin-bottom: 1.6rem;
  position: relative; z-index: 1;
  animation: bcFadeUp 0.7s ease 0.1s both;
}
.bc-hero-left h1 em { font-style: italic; color: var(--gold); }

.bc-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 300; line-height: 1.85;
  color: rgba(250,245,237,0.72);
  max-width: 480px; margin-bottom: 2.5rem;
  position: relative; z-index: 1;
  animation: bcFadeUp 0.7s ease 0.15s both;
}

.bc-hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  position: relative; z-index: 1;
  animation: bcFadeUp 0.7s ease 0.2s both;
}

/* Right panel */
.bc-hero-right {
  background: linear-gradient(145deg, var(--deep-teal) 0%, #0A2225 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 8rem 3rem;
  position: relative;
  animation: bcFadeIn 1s ease 0.2s both;
}
.bc-hero-right::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(212,168,83,0.04) 0, rgba(212,168,83,0.04) 1px, transparent 0, transparent 50px),
    repeating-linear-gradient(-45deg, rgba(212,168,83,0.04) 0, rgba(212,168,83,0.04) 1px, transparent 0, transparent 50px);
  background-size: 50px 50px;
  pointer-events: none;
}

.bc-hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,168,83,0.22);
  border-radius: 24px;
  padding: 2.5rem;
  width: 100%; max-width: 360px;
  position: relative; z-index: 2;
}
.bc-hero-card-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem;
}
.bc-hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700; color: white;
  margin-bottom: 1.2rem;
}
.bc-hero-divider {
  height: 1px; background: rgba(212,168,83,0.2); margin-bottom: 1.2rem;
}
.bc-club-pills {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
}
.bc-club-pill {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(212,168,83,0.15);
  border-radius: 2rem; padding: 0.4rem 0.9rem;
  font-size: 0.78rem; font-weight: 500;
  color: rgba(250,245,237,0.82);
  font-family: 'DM Sans', sans-serif;
}


/* ══════════════════════════════════════
   STATS BAR
══════════════════════════════════════ */
.bc-stats-bar {
  background: var(--deep-teal);
  padding: 0;
  border-bottom: 1px solid rgba(212,168,83,0.1);
}
.bc-stats-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  padding: 1.8rem 2rem;
  gap: 0;
}
.bc-stat {
  text-align: center; flex: 1; padding: 0 2rem;
}
.bc-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 900;
  color: var(--gold); line-height: 1;
}
.bc-stat-lbl {
  font-size: 0.72rem; font-weight: 600;
  color: rgba(250,245,237,0.55);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-top: 0.3rem;
}
.bc-stat-divider {
  width: 1px; height: 48px;
  background: rgba(212,168,83,0.2);
  flex-shrink: 0;
}


/* ══════════════════════════════════════
   SECTION 2 — WHY THIS PROGRAMME MATTERS
══════════════════════════════════════ */
.bc-why {
  padding: 7rem 5rem;
  background: var(--cream);
}
.bc-why-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.bc-why-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  font-weight: 900; color: var(--dark-teal);
  letter-spacing: -0.02em; line-height: 1.12;
  margin-bottom: 1.4rem;
}
.bc-why-left h2 em { font-style: italic; color: var(--terracotta); }
.bc-why-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem; font-weight: 300; line-height: 1.85;
  color: var(--text-muted); margin-bottom: 1.1rem;
}

/* Pain box */
.bc-pain-box {
  background: var(--dark-teal);
  border-radius: 24px; padding: 2.5rem;
  position: relative; overflow: hidden;
}
.bc-pain-box::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(212,168,83,0.04) 0, rgba(212,168,83,0.04) 1px, transparent 0, transparent 60px);
  pointer-events: none;
}
.bc-pain-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem; font-weight: 700;
  color: var(--gold); text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 1.2rem;
  position: relative; z-index: 1;
}
.bc-pain-list {
  list-style: none;
  position: relative; z-index: 1;
  margin-bottom: 1.5rem;
}
.bc-pain-list li {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem; line-height: 1.55;
  color: rgba(250,245,237,0.8);
  padding: 0.5rem 0;
  display: flex; align-items: flex-start; gap: 0.65rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.bc-pain-list li:last-child { border-bottom: none; }
.bc-pain-list li::before {
  content: '→';
  color: var(--terracotta);
  font-weight: 700; flex-shrink: 0;
  margin-top: 0.05rem;
}
.bc-pain-footer {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 0.95rem;
  color: white; line-height: 1.5;
  padding-top: 1rem;
  border-top: 1px solid rgba(212,168,83,0.2);
  position: relative; z-index: 1;
}


/* ══════════════════════════════════════
   SECTION 3 — AGE GROUP CARDS
══════════════════════════════════════ */
.bc-ages {
  padding: 7rem 5rem;
  background: var(--soft-cream);
}
.bc-ages-inner { max-width: 1100px; margin: 0 auto; }
.bc-ages-header {
  text-align: center; margin-bottom: 3.5rem;
}
.bc-ages-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900; color: var(--dark-teal);
  letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 0.75rem;
}
.bc-ages-header h2 em { font-style: italic; color: var(--terracotta); }
.bc-ages-header p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 300; line-height: 1.7;
  color: var(--text-muted); max-width: 580px; margin: 0 auto;
}
.bc-ages-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.bc-age-card {
  background: white; border-radius: 24px;
  border: 1px solid rgba(0,87,93,0.1);
  padding: 2.5rem;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.bc-age-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(44,24,16,0.1); }
.bc-age-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(90deg, var(--sage), #A8C5A0);
}
.bc-age-card-featured::before {
  background: linear-gradient(90deg, var(--dark-teal), var(--sage));
}
.bc-age-card:last-child::before {
  background: linear-gradient(90deg, var(--terracotta), var(--gold));
}
.bc-age-popular {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: var(--dark-teal); color: white;
  font-size: 0.65rem; font-weight: 700;
  padding: 0.2rem 0.7rem; border-radius: 1rem;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.bc-age-badge {
  display: inline-block;
  background: rgba(0,87,93,0.08); color: var(--dark-teal);
  font-size: 0.7rem; font-weight: 700;
  padding: 0.22rem 0.75rem; border-radius: 1rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 0.9rem;
}
.bc-age-badge-gold { background: rgba(212,168,83,0.12); color: var(--dark-teal); }
.bc-age-badge-terracotta { background: rgba(254,119,54,0.1); color: var(--terracotta); }
.bc-age-icon { font-size: 2.2rem; display: block; margin-bottom: 0.8rem; }
.bc-age-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 700; color: var(--dark-teal);
  margin-bottom: 0.75rem; line-height: 1.2;
}
.bc-age-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 300; line-height: 1.75;
  color: var(--text-muted); margin-bottom: 1.4rem;
}
.bc-age-list {
  list-style: none; flex-grow: 1;
}
.bc-age-list li {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem; color: var(--text);
  padding: 0.35rem 0;
  display: flex; align-items: flex-start; gap: 0.55rem;
  border-bottom: 1px solid rgba(0,87,93,0.06);
}
.bc-age-list li:last-child { border-bottom: none; }
.bc-age-list li::before { content: '✓'; color: var(--sage); font-weight: 700; flex-shrink: 0; }
.bc-age-card-featured .bc-age-list li::before { color: var(--dark-teal); }
.bc-age-card:last-child .bc-age-list li::before { color: var(--terracotta); }


/* ══════════════════════════════════════
   SECTION 4 — WHAT CHILDREN WILL LEARN
══════════════════════════════════════ */
.bc-learn {
  padding: 7rem 5rem;
  background: var(--dark-teal);
  position: relative; overflow: hidden;
}
.bc-learn::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(212,168,83,0.04) 0, rgba(212,168,83,0.04) 1px, transparent 0, transparent 60px);
  pointer-events: none;
}
.bc-learn-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.bc-learn-header {
  text-align: center; margin-bottom: 3.5rem;
}
.bc-learn-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900; color: white;
  letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 0.75rem;
}
.bc-learn-header h2 em { font-style: italic; color: var(--gold); }
.bc-learn-header p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 300; line-height: 1.7;
  color: rgba(250,245,237,0.65); max-width: 560px; margin: 0 auto;
}
.bc-learn-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}
.bc-learn-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,168,83,0.12);
  border-radius: 16px; padding: 1.2rem 1.3rem;
  display: flex; align-items: center; gap: 0.75rem;
  transition: background 0.25s, transform 0.25s;
}
.bc-learn-item:hover {
  background: rgba(255,255,255,0.11);
  transform: translateY(-3px);
}
.bc-learn-icon { font-size: 1.4rem; flex-shrink: 0; }
.bc-learn-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.84rem; font-weight: 600;
  color: rgba(250,245,237,0.88); line-height: 1.3;
}


/* ══════════════════════════════════════
   SECTION 5 — PROGRAMME CLUBS
══════════════════════════════════════ */
.bc-clubs {
  padding: 7rem 5rem;
  background: white;
}
.bc-clubs-inner { max-width: 1200px; margin: 0 auto; }
.bc-clubs-header {
  text-align: center; margin-bottom: 3.5rem;
}
.bc-clubs-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900; color: var(--dark-teal);
  letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 0.75rem;
}
.bc-clubs-header h2 em { font-style: italic; color: var(--terracotta); }
.bc-clubs-header p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 300; line-height: 1.7;
  color: var(--text-muted); max-width: 600px; margin: 0 auto;
}
.bc-clubs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
}
.bc-club-card {
  background: var(--soft-cream);
  border-radius: 22px;
  border: 1px solid rgba(0,87,93,0.1);
  padding: 2rem;
  position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.bc-club-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--terracotta), var(--gold));
  border-radius: 22px 22px 0 0;
}
.bc-club-card:hover { transform: translateY(-5px); box-shadow: 0 16px 50px rgba(44,24,16,0.09); }
.bc-club-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: white;
  border: 1px solid rgba(0,87,93,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.bc-club-card-icon { font-size: 1.6rem; }
.bc-club-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700; color: var(--dark-teal);
  line-height: 1.25; margin-bottom: 0.55rem;
}
.bc-club-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem; font-weight: 300; line-height: 1.7;
  color: var(--text-muted); margin-bottom: 1.2rem;
}
.bc-club-skills {
  list-style: none;
}
.bc-club-skills li {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem; color: var(--text-muted); line-height: 1.5;
  padding: 0.28rem 0;
  display: flex; align-items: flex-start; gap: 0.5rem;
  border-bottom: 1px solid rgba(0,87,93,0.07);
}
.bc-club-skills li:last-child { border-bottom: none; }
.bc-club-skills li::before { content: '✓'; color: var(--terracotta); font-weight: 700; flex-shrink: 0; }


/* ══════════════════════════════════════
   SECTION 6 — EVERY CHILD RECEIVES
══════════════════════════════════════ */
.bc-receives {
  padding: 7rem 5rem;
  background: var(--soft-cream);
}
.bc-receives-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 6rem; align-items: start;
}
.bc-receives-left .section-label { display: block; }
.bc-receives-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 900; color: var(--dark-teal);
  letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 1rem;
}
.bc-receives-left h2 em { font-style: italic; color: var(--terracotta); }
.bc-receives-left p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 300; line-height: 1.8;
  color: var(--text-muted); margin-bottom: 2rem;
}
.bc-receives-list { list-style: none; }
.bc-receives-list li {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(0,87,93,0.08);
}
.bc-receives-list li:last-child { border-bottom: none; }
.bcr-icon {
  font-size: 1.4rem; flex-shrink: 0;
  width: 42px; height: 42px; border-radius: 12px;
  background: white;
  border: 1px solid rgba(0,87,93,0.1);
  display: flex; align-items: center; justify-content: center;
}
.bcr-text { display: flex; flex-direction: column; gap: 0.2rem; }
.bcr-text strong {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; font-weight: 700; color: var(--dark-teal);
}
.bcr-text span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem; color: var(--text-muted); line-height: 1.5;
}


/* ══════════════════════════════════════
   SECTION 7 — PARENT MASTERCLASSES
══════════════════════════════════════ */
.bc-parents {
  padding: 7rem 5rem;
  background: var(--terracotta);
  position: relative; overflow: hidden;
}
.bc-parents::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0, rgba(255,255,255,0.05) 1px, transparent 0, transparent 60px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 0, transparent 60px);
  pointer-events: none;
}
.bc-parents::after {
  content: '👨‍👩‍👧';
  position: absolute; right: 3rem; bottom: -1rem;
  font-size: 14rem; opacity: 0.07;
  pointer-events: none; line-height: 1;
}
.bc-parents-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; gap: 4rem; align-items: flex-start;
  position: relative; z-index: 2;
}
.bc-parents-icon-wrap {
  flex-shrink: 0;
  width: 90px; height: 90px; border-radius: 24px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
}
.bc-parents-big-icon { font-size: 2.8rem; }
.bc-parents-content { flex: 1; }
.bc-parents-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 900; color: white;
  letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 1rem;
}
.bc-parents-content h2 em { font-style: italic; color: var(--warm-gold); }
.bc-parents-content p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,0.85); margin-bottom: 0.9rem;
}
.bc-parents-list {
  list-style: none; margin: 1.2rem 0 1.5rem;
}
.bc-parents-list li {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem; color: rgba(255,255,255,0.88); line-height: 1.55;
  padding: 0.4rem 0;
  display: flex; align-items: flex-start; gap: 0.65rem;
}
.bc-parents-list li::before { content: '✓'; color: var(--warm-gold); font-weight: 700; flex-shrink: 0; }
.bc-parents-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 2rem; padding: 0.6rem 1.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem; font-weight: 600; color: white;
}


/* ══════════════════════════════════════
   SECTION 8 — PRICING
══════════════════════════════════════ */
.bc-pricing {
  padding: 7rem 5rem;
  background: var(--dark-teal);
  position: relative; overflow: hidden;
}
.bc-pricing::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(212,168,83,0.04) 0, rgba(212,168,83,0.04) 1px, transparent 0, transparent 60px);
  pointer-events: none;
}
.bc-pricing-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }
.bc-pricing-header { text-align: center; margin-bottom: 3.5rem; }
.bc-pricing-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900; color: white;
  letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 0.75rem;
}
.bc-pricing-header h2 em { font-style: italic; color: var(--gold); }
.bc-pricing-header p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 300;
  color: rgba(250,245,237,0.65); line-height: 1.7;
}

.bc-pricing-block {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,168,83,0.2);
  border-radius: 28px; padding: 3rem;
  display: flex; align-items: stretch; gap: 0;
  margin-bottom: 1.5rem;
}
.bc-price-option { flex: 1; padding: 0 2rem; text-align: center; }
.bc-price-option:first-child { padding-left: 0; }
.bc-price-option:last-child { padding-right: 0; }

.bc-price-deadline-badge {
  display: inline-block;
  background: var(--terracotta); color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  padding: 0.3rem 0.9rem; border-radius: 2rem;
  letter-spacing: 0.04em; margin-bottom: 1rem;
}
.bc-price-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(250,245,237,0.55); margin-bottom: 0.5rem;
}
.bc-price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 900;
  color: var(--gold); line-height: 1;
  margin-bottom: 0.4rem;
}
.bc-price-amount-muted { color: rgba(250,245,237,0.55); font-size: 2.2rem; }
.bc-price-per {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem; color: rgba(250,245,237,0.45);
  margin-bottom: 1.5rem;
}
.bc-price-includes {
  list-style: none; text-align: left; margin-bottom: 2rem;
}
.bc-price-includes li {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.83rem; color: rgba(250,245,237,0.78);
  padding: 0.3rem 0;
  display: flex; align-items: center; gap: 0.55rem;
}
.bc-price-includes li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.bc-price-regular .bc-price-includes li::before { color: rgba(250,245,237,0.35); }
.bc-register-btn { width: 100%; justify-content: center; }
.bc-register-btn-outline {
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: 1rem;
  border-radius: 3rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600; font-size: 0.9rem;
  text-decoration: none;
  background: transparent;
  border: 2px solid rgba(250,245,237,0.3);
  color: rgba(250,245,237,0.6);
  transition: all 0.3s;
}
.bc-register-btn-outline:hover { border-color: rgba(250,245,237,0.6); color: white; }

/* Divider between price options */
.bc-price-divider-wrap {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.5rem; flex-shrink: 0; padding: 0 1rem;
}
.bc-price-divider-line {
  width: 1px; flex: 1;
  background: rgba(212,168,83,0.18);
}
.bc-price-divider-or {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  color: rgba(250,245,237,0.3);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.bc-pricing-note {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem; color: rgba(250,245,237,0.45);
  line-height: 1.6;
}


/* ══════════════════════════════════════
   SECTION 9 — BONUSES
══════════════════════════════════════ */
.bc-bonuses {
  padding: 7rem 5rem;
  background: #FDF9F0;
  position: relative;
}
.bc-bonuses::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(212,168,83,0.04) 0, rgba(212,168,83,0.04) 1px,
    transparent 0, transparent 40px
  );
  pointer-events: none;
}
.bc-bonuses-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.bc-bonuses-header { text-align: center; margin-bottom: 3.5rem; }
.bc-bonuses-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900; color: var(--dark-teal);
  letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 0.75rem;
}
.bc-bonuses-header h2 em { font-style: italic; color: var(--terracotta); }
.bc-bonuses-header p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 300; line-height: 1.7;
  color: var(--text-muted); max-width: 560px; margin: 0 auto;
}
.bc-bonuses-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.bc-bonus-card {
  background: white;
  border-radius: 24px;
  border: 1px solid rgba(212,168,83,0.25);
  padding: 2.5rem;
  position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.bc-bonus-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--warm-gold));
  border-radius: 24px 24px 0 0;
}
.bc-bonus-card:hover { transform: translateY(-5px); box-shadow: 0 16px 50px rgba(44,24,16,0.1); }
.bc-bonus-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 900;
  color: rgba(212,168,83,0.15); line-height: 1;
  position: absolute; top: 1.2rem; right: 1.8rem;
  letter-spacing: -0.04em;
}
.bc-bonus-icon { font-size: 2.2rem; display: block; margin-bottom: 1rem; }
.bc-bonus-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--dark-teal);
  margin-bottom: 0.75rem; line-height: 1.25;
}
.bc-bonus-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 300; line-height: 1.75;
  color: var(--text-muted); margin-bottom: 1.2rem;
}
.bc-bonus-value {
  display: inline-block;
  background: rgba(212,168,83,0.1);
  border: 1px solid rgba(212,168,83,0.25);
  border-radius: 1rem; padding: 0.3rem 0.9rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  color: var(--dark-teal);
}


/* ══════════════════════════════════════
   SECTION 10 — URGENCY CLOSING BLOCK
══════════════════════════════════════ */
.bc-urgency {
  padding: 8rem 5rem;
  background: var(--dark-teal);
  text-align: center;
  position: relative; overflow: hidden;
}
.bc-urgency::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(212,168,83,0.04) 0, rgba(212,168,83,0.04) 1px, transparent 0, transparent 60px);
  pointer-events: none;
}
.bc-urgency-inner {
  max-width: 680px; margin: 0 auto;
  position: relative; z-index: 2;
}
.bc-urgency-badge {
  display: inline-block;
  background: rgba(254,119,54,0.2);
  border: 1px solid rgba(254,119,54,0.4);
  border-radius: 2rem; padding: 0.4rem 1.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  color: var(--warm-gold); letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 1.5rem;
}
.bc-urgency h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 900; color: white;
  letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 1.5rem;
}
.bc-urgency h2 em { font-style: italic; color: var(--gold); }
.bc-urgency-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 300; line-height: 1.8;
  color: rgba(250,245,237,0.72); margin-bottom: 0.9rem;
}
.bc-urgency-pricing {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin: 2rem 0;
  font-family: 'DM Sans', sans-serif;
}
.bc-urgency-eb {
  font-size: 0.95rem; font-weight: 600; color: rgba(250,245,237,0.7);
}
.bc-urgency-eb strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 900; color: var(--gold);
}
.bc-urgency-sep { color: rgba(250,245,237,0.25); font-size: 1.2rem; }
.bc-urgency-reg {
  font-size: 0.95rem; color: rgba(250,245,237,0.4);
}
.bc-urgency-reg s { text-decoration-color: rgba(250,245,237,0.3); }
.bc-urgency-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem;
}
.bc-urgency-cta { font-size: 1.05rem; padding: 1.2rem 2.5rem; }
.bc-wa-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; font-weight: 600;
  color: rgba(250,245,237,0.65);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.4rem;
  border-bottom: 2px solid rgba(250,245,237,0.2);
  padding-bottom: 0.1rem;
  transition: color 0.2s, border-color 0.2s;
}
.bc-wa-link:hover { color: var(--gold); border-color: var(--gold); }
.bc-urgency-guarantee {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem; color: rgba(250,245,237,0.35);
  line-height: 1.6;
}


/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes bcFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bcFadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

/* Scroll-triggered fade (shared IntersectionObserver from footer.php) */
.fade-in-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ══════════════════════════════════════
   RESPONSIVE — max-width: 900px
══════════════════════════════════════ */
@media (max-width: 900px) {
  /* Hero */
  .bc-hero { grid-template-columns: 1fr; }
  .bc-hero-right { display: none; }
  .bc-hero-left { padding: 8rem 1.5rem 4rem; }

  /* Stats bar */
  .bc-stats-inner { flex-wrap: wrap; gap: 1rem; padding: 1.5rem; justify-content: center; }
  .bc-stat { flex: 0 0 40%; padding: 0.5rem; }
  .bc-stat-divider { display: none; }

  /* Why */
  .bc-why { padding: 4rem 1.5rem; }
  .bc-why-inner { grid-template-columns: 1fr; gap: 3rem; }

  /* Ages */
  .bc-ages { padding: 4rem 1.5rem; }
  .bc-ages-grid { grid-template-columns: 1fr; }

  /* Learn */
  .bc-learn { padding: 4rem 1.5rem; }
  .bc-learn-grid { grid-template-columns: repeat(2, 1fr); }

  /* Clubs */
  .bc-clubs { padding: 4rem 1.5rem; }
  .bc-clubs-grid { grid-template-columns: 1fr; }

  /* Receives */
  .bc-receives { padding: 4rem 1.5rem; }
  .bc-receives-inner { grid-template-columns: 1fr; gap: 3rem; }

  /* Parents */
  .bc-parents { padding: 4rem 1.5rem; }
  .bc-parents-inner { flex-direction: column; gap: 2rem; }
  .bc-parents-icon-wrap { display: none; }

  /* Pricing */
  .bc-pricing { padding: 4rem 1.5rem; }
  .bc-pricing-block {
    flex-direction: column;
    gap: 2rem; padding: 2rem;
  }
  .bc-price-option { padding: 0; }
  .bc-price-divider-wrap {
    flex-direction: row; padding: 0;
  }
  .bc-price-divider-line { width: 100%; height: 1px; flex: 1; }

  /* Bonuses */
  .bc-bonuses { padding: 4rem 1.5rem; }
  .bc-bonuses-grid { grid-template-columns: 1fr; }

  /* Urgency */
  .bc-urgency { padding: 5rem 1.5rem; }
  .bc-urgency-actions { flex-direction: column; gap: 1rem; }
  .bc-urgency-cta { width: 100%; justify-content: center; text-align: center; }
}
