/* ============================================================
   MUSIC ACCELERATOR — Main Stylesheet
   Intensive Online Musician, Artist, Producer & DJ School
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400&family=DM+Mono:wght@400;500&display=swap');

/* ── TOKENS ── */
:root {
  --red:      #FF5057;
  --red-d:    #CC2830;
  --black:    #080808;
  --bg:       #0C0C0C;
  --surface:  #131313;
  --surface2: #1A1A1A;
  --border:   #242424;
  --border2:  #333;
  --white:    #F2F2F2;
  --gray1:    #C8C8C8;
  --gray2:    #888;
  --gray3:    #444;
  --success:  #22C55E;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.2s, height 0.2s;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 80, 87, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s, height 0.3s, border-color 0.3s;
}

/* ── GRAIN OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  z-index: 1000;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 120px;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 10px solid var(--border);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.12em;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--red); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray2);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 3px;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--red-d) !important; color: #fff !important; }

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

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 64px 80px 80px;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--red);
}

.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 8vw, 120px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 8px;
}
.hero-h1 .accent { color: var(--red); }

.hero-sub {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: 0.08em;
  color: var(--gray2);
  margin-bottom: 36px;
}

.hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray1);
  max-width: 460px;
  margin-bottom: 48px;
  font-weight: 300;
}

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

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 3px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--red-d); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gray1);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--white); }
.btn-ghost svg { transition: transform 0.2s; }
.btn-ghost:hover svg { transform: translateX(4px); }

/* ── HERO RIGHT ── */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(255, 80, 87, 0.08) 0%, transparent 65%),
    linear-gradient(180deg, var(--black) 0%, var(--surface) 100%);
}

/* ── WAVEFORM ── */
.waveform-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
}
.waveform {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 300px;
}
.waveform-bar {
  width: 3px;
  background: var(--red);
  border-radius: 2px;
  animation: wave 1.4s ease-in-out infinite;
  opacity: 0.7;
}
@keyframes wave {
  0%, 100% { transform: scaleY(0.2); }
  50%       { transform: scaleY(1); }
}

/* ── HERO VISUAL CARD ── */
.hero-visual-card {
  position: relative;
  z-index: 2;
  width: 360px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 80, 87, 0.08);
}

.vc-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gray3);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.vc-track {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--surface2);
  border-radius: 4px;
  margin-bottom: 10px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.vc-track:first-of-type { border-color: var(--red); }

.vc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.vc-track-info { flex: 1; }
.vc-track-name { font-size: 13px; font-weight: 500; color: var(--white); }
.vc-track-meta { font-size: 11px; color: var(--gray2); margin-top: 2px; }

.vc-badge {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 2px;
  letter-spacing: 0.08em;
}
.badge-live { background: rgba(255, 80, 87, 0.15); color: var(--red); }
.badge-done { background: rgba(34, 197, 94, 0.12); color: var(--success); }
.badge-mix  { background: rgba(59, 130, 246, 0.12); color: #60A5FA; }

.vc-progress-wrap { margin-top: 20px; }
.vc-prog-label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--gray2);
  margin-bottom: 6px;
}
.vc-prog-track {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.vc-prog-fill {
  height: 100%;
  background: var(--red);
  border-radius: 2px;
  animation: fillbar 2s ease forwards;
}
@keyframes fillbar { from { width: 0; } }

/* ── SLASH DIVIDER ── */
.slash-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: -1px;
  width: 80px;
  background: linear-gradient(135deg, var(--bg) 50%, transparent 50%);
  z-index: 3;
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  background: var(--red);
  padding: 20px 80px;
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.stat-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  white-space: nowrap;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: #fff;
  letter-spacing: 0.03em;
}
.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.stat-sep { color: rgba(255, 255, 255, 0.25); font-size: 28px; }

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
section { position: relative; }
.section-inner { max-width: 1280px; margin: 0 auto; padding: 0 80px; }
.section-pad   { padding-top: 120px; padding-bottom: 120px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.eyebrow::before { content: '//'; color: var(--gray3); }

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 20px;
}
.section-title span { color: var(--red); }

.section-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray1);
  font-weight: 300;
  max-width: 560px;
}

/* ============================================================
   VALUE PROP SECTION
   ============================================================ */
.vp-section { background: var(--surface); }

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

.vp-pills {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 48px;
}

.vp-pill {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: border-color 0.25s, transform 0.25s;
}
.vp-pill:hover { border-color: var(--red); transform: translateX(6px); }

.vp-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 80, 87, 0.1);
  border: 1px solid rgba(255, 80, 87, 0.25);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.vp-pill-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.vp-pill-body  { font-size: 14px; color: var(--gray2); line-height: 1.6; }

.vp-feature-box {
  position: relative;
  background: var(--black);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 56px 48px;
  overflow: hidden;
}
.vp-feature-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}

.vp-big-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 140px;
  line-height: 1;
  color: var(--red);
  opacity: 0.15;
  position: absolute;
  top: 20px; right: 20px;
  pointer-events: none;
  letter-spacing: -0.02em;
}

.vp-feature-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
}

.vp-feature-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.vp-feature-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray1);
  font-weight: 300;
  margin-bottom: 36px;
}

.vp-checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.vp-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--gray1);
}
.vp-checklist li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%2322C55E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ============================================================
   PROGRAMS SECTION
   ============================================================ */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.program-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
  cursor: default;
}
.program-card:hover { border-color: var(--red); transform: translateY(-4px); }

.program-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.program-card:hover::after { transform: scaleX(1); }

.pc-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  color: var(--border2);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.25s;
}
.program-card:hover .pc-num { color: rgba(255, 80, 87, 0.12); }

.pc-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 12px;
}

.pc-body { font-size: 14px; line-height: 1.7; color: var(--gray2); font-weight: 300; margin-bottom: 24px; }

.pc-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.pc-tag {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  border: 1px solid var(--border2);
  color: var(--gray2);
}

/* ============================================================
   INSTRUCTORS SECTION
   ============================================================ */
.instructors-section { background: var(--black); }

.instructors-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}

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

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

.instructor-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.25s;
  position: relative;
}
.instructor-card:hover { border-color: var(--border2); }

.ic-avatar {
  height: 200px;
  background: var(--surface2);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ic-avatar-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 80%, rgba(255, 80, 87, 0.12) 0%, transparent 70%);
}

.ic-initials {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  color: var(--border2);
  letter-spacing: 0.05em;
  z-index: 1;
  transition: color 0.25s;
}
.instructor-card:hover .ic-initials { color: rgba(255, 80, 87, 0.25); }

.ic-role-badge {
  position: absolute;
  bottom: 14px; left: 14px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(255, 80, 87, 0.9);
  color: #fff;
  border-radius: 2px;
}

.ic-body { padding: 28px 28px 32px; }

.ic-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 4px;
}

.ic-title { font-size: 12px; color: var(--red); font-weight: 500; letter-spacing: 0.06em; margin-bottom: 14px; }
.ic-bio   { font-size: 13px; line-height: 1.65; color: var(--gray2); font-weight: 300; }

.ic-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
.ic-tag {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 2px;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--gray2);
}

.ic-featured { border-color: rgba(255, 80, 87, 0.3); }
.ic-featured .ic-avatar { height: 240px; }

/* ============================================================
   CURRICULUM SECTION
   ============================================================ */
.curriculum-section { background: var(--surface); }

.curriculum-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.curriculum-sticky { position: sticky; top: 100px; }

.track-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 40px;
}

.track-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--black);
}
.track-item:hover,
.track-item.active {
  border-color: var(--red);
  background: rgba(255, 80, 87, 0.04);
}
.track-item.active .track-num { color: var(--red); }

.track-left { display: flex; align-items: center; gap: 16px; }

.track-num {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--gray3);
  transition: color 0.2s;
  width: 28px;
}

.track-name  { font-size: 14px; font-weight: 500; color: var(--white); }

.track-weeks {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--gray3);
  letter-spacing: 0.08em;
}

.track-arrow { color: var(--gray3); transition: all 0.2s; }
.track-item:hover .track-arrow,
.track-item.active .track-arrow {
  color: var(--red);
  transform: translateX(4px);
}

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
.proof-section {
  background: var(--black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 64px;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.proof-card { background: var(--surface); padding: 40px 36px; position: relative; }

.proof-quote {
  font-size: 36px;
  color: var(--red);
  line-height: 1;
  margin-bottom: 16px;
  font-family: 'Bebas Neue', sans-serif;
}

.proof-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray1);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 24px;
}

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

.proof-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
}

.proof-name { font-size: 13px; font-weight: 600; color: var(--white); }
.proof-role { font-size: 11px; color: var(--gray3); margin-top: 1px; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-section {
  background: var(--red);
  padding: 100px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: 'ACCELERATE';
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 240px;
  color: rgba(0, 0, 0, 0.08);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.05em;
}

.cta-inner { position: relative; z-index: 1; }

.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 8vw, 96px);
  color: #fff;
  line-height: 1;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

.cta-body {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.btn-cta-white {
  display: inline-block;
  background: #fff;
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 52px;
  border-radius: 3px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25); }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { background: var(--bg); }

.faq-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

.faq-list { display: flex; flex-direction: column; gap: 1px; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  background: var(--surface);
  transition: background 0.2s;
  user-select: none;
}
.faq-q:hover { background: var(--surface2); }

.faq-icon {
  width: 20px; height: 20px;
  border: 1px solid var(--border2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 14px;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray2);
  font-weight: 300;
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  background: var(--black);
}
.faq-item.open .faq-a { max-height: 200px; padding: 20px 24px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 60px 80px 40px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand-name span { color: var(--red); }

.footer-tagline {
  font-size: 13px;
  color: var(--gray3);
  line-height: 1.6;
  max-width: 300px;
  margin-bottom: 24px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray3);
  margin-bottom: 16px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--gray2); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy { font-size: 12px; color: var(--gray3); }
.footer-mono { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--gray3); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero                { grid-template-columns: 1fr; }
  .hero-right          { display: none; }
  .vp-grid             { grid-template-columns: 1fr; }
  .curriculum-layout   { grid-template-columns: 1fr; }
  .faq-layout          { grid-template-columns: 1fr; }
  .programs-grid       { grid-template-columns: 1fr 1fr; }
  .instructors-grid    { grid-template-columns: 1fr 1fr; }
  .proof-grid          { grid-template-columns: 1fr; }
  .section-inner       { padding: 0 32px; }
  .stats-band          { padding: 20px 32px; gap: 32px; }
}

@media (max-width: 640px) {
  .programs-grid       { grid-template-columns: 1fr; }
  .instructors-grid    { grid-template-columns: 1fr; }
  .instructors-grid-2  { grid-template-columns: 1fr; }
  nav                  { padding: 0 24px; }
  .nav-links           { display: none; }
  footer               { padding: 48px 24px 32px; }
  .footer-inner        { grid-template-columns: 1fr; gap: 40px; }
  .stats-band          { flex-wrap: wrap; gap: 20px; padding: 24px; }
}

