/* ==========================================================================
   Cospixare Academy — Modern High-Conversion Educational Design System
   Brand Palette extracted from Academy Emblem:
   - Deep Academy Navy: #0a2540, #0d2847, #13385c
   - Radiant Warm Gold: #c8963e, #d4af37, #b88628, #fef9ed
   - Clean Light Canvas: #ffffff, #f8fafc, #f1f5f9
   - Official WhatsApp: #25d366, #128c7e
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Emblem Brand Colors */
  --navy-950: #051322;
  --navy-900: #0a2540;
  --navy-800: #0d2e50;
  --navy-700: #13385c;
  --navy-600: #1a4975;
  --navy-100: #eaf1f8;
  --navy-50:  #f3f7fb;

  --gold-800: #8c631e;
  --gold-700: #a97724;
  --gold-600: #c8963e;
  --gold-500: #d4af37;
  --gold-400: #e2b94f;
  --gold-200: #f7e7c4;
  --gold-100: #fcf4e4;
  --gold-50:  #fefaf2;

  --whatsapp-green: #25d366;
  --whatsapp-dark: #128c7e;
  --whatsapp-hover: #1ebc59;

  /* Surfaces & Backgrounds */
  --bg-body: #f8fafc;
  --bg-card: #ffffff;
  --bg-muted: #f1f5f9;
  --bg-highlight: #fefaf2;

  /* Text Colors */
  --text-main: #0a192f;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  /* Borders & Shadows */
  --border-subtle: #e2e8f0;
  --border-card: #e6edf5;
  --border-gold: rgba(200, 150, 62, 0.28);
  --shadow-sm: 0 1px 3px rgba(10, 37, 64, 0.05);
  --shadow-card: 0 4px 20px -2px rgba(10, 37, 64, 0.06), 0 2px 6px -1px rgba(10, 37, 64, 0.04);
  --shadow-hover: 0 14px 34px -4px rgba(10, 37, 64, 0.12), 0 4px 14px -2px rgba(10, 37, 64, 0.06);
  --shadow-gold: 0 8px 24px -2px rgba(200, 150, 62, 0.22);
  --shadow-btn: 0 4px 14px rgba(37, 211, 102, 0.35);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 9999px;

  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --container-max: 1220px;
}

/* Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: clip; /* Fix: prevents breaking position: sticky in modern browsers */
  padding-bottom: 74px; /* space for mobile sticky bar */
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

/* Containers & Layout */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

@media (max-width: 480px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.section-spacing {
  padding-top: 84px;
  padding-bottom: 84px;
}

@media (max-width: 768px) {
  .section-spacing {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  body {
    padding-bottom: calc(70px + env(safe-area-inset-bottom, 0px));
  }
}

/* ==========================================================================
   TOP URGENCY ANNOUNCEMENT STRIP
   ========================================================================== */
.top-announcement-bar {
  background: #071a2f;
  border-bottom: 1px solid rgba(200, 150, 62, 0.3);
  padding: 8px 0;
  font-size: 0.82rem;
  color: #f1f5f9;
}

.top-announcement-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ticker-content {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-live-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
  animation: pulseLiveDot 2s infinite ease-in-out;
}

@keyframes pulseLiveDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.ticker-highlight {
  font-weight: 800;
  color: #e5b95f;
  letter-spacing: 0.02em;
}

.ticker-text {
  font-weight: 500;
  color: #e2e8f0;
}

.ticker-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(200, 150, 62, 0.35);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  white-space: nowrap !important;
  transition: all 0.2s ease;
  text-decoration: none;
  flex-shrink: 0;
}

.ticker-link:hover {
  background: #c8963e;
  color: #071a2f;
  border-color: #c8963e;
}

.ticker-link svg {
  transition: transform 0.2s ease;
}

.ticker-link:hover svg {
  transform: translateX(2px);
}

@media (max-width: 860px) {
  .ticker-text {
    display: none;
  }
}

@media (max-width: 480px) {
  .top-announcement-bar {
    display: none;
  }
}

/* ==========================================================================
   PRIMARY SITE HEADER (STICKY WITH FROSTED GLASS)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
  box-shadow: 0 4px 20px -2px rgba(10, 37, 64, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-container {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Brand area */
.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-emblem-frame {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #ffffff;
  padding: 3px;
  border: 1.5px solid var(--gold-400);
  box-shadow: 0 2px 10px rgba(200, 150, 62, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.header-brand:hover .brand-emblem-frame {
  transform: scale(1.04);
  box-shadow: 0 4px 14px rgba(200, 150, 62, 0.3);
}

.brand-emblem-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-titles {
  display: flex;
  flex-direction: column;
}

.brand-line-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.025em;
  line-height: 1.15;
  white-space: nowrap !important;
}

.badge-mini-seats {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gold-800);
  background: var(--gold-50);
  border: 1px solid var(--gold-200);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  white-space: nowrap !important;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #22c55e;
  display: inline-block;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.3);
  animation: pulseLiveDot 2s infinite ease-in-out;
}

.brand-badge-tag {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Segmented Pill Navigation Menu */
.header-nav {
  display: none;
  align-items: center;
  gap: 4px;
  background: rgba(10, 37, 64, 0.035);
  padding: 4px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(10, 37, 64, 0.06);
}

@media (min-width: 992px) {
  .header-nav {
    display: flex;
  }
}

.nav-item {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-900);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  white-space: nowrap !important;
}

.nav-item:hover {
  color: var(--navy-950);
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(10, 37, 64, 0.08);
  transform: translateY(-1px);
}

/* Header Actions */
.header-cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-header-ghost {
  background: #ffffff;
  color: var(--navy-900);
  border: 1.5px solid rgba(10, 37, 64, 0.14);
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap !important;
  display: none;
}

@media (min-width: 1140px) {
  .btn-header-ghost {
    display: inline-flex;
  }
}

.btn-header-ghost:hover {
  border-color: var(--gold-500);
  background: var(--gold-50);
  color: var(--navy-950);
}

.btn-header-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-header-whatsapp:hover {
  background: linear-gradient(135deg, #1ebc59 0%, #0d6e63 100%);
  transform: translateY(-1.5px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.btn-header-whatsapp svg {
  flex-shrink: 0;
}

/* Mobile Hamburger Toggle Button */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: rgba(10, 37, 64, 0.04);
  border: 1px solid rgba(10, 37, 64, 0.08);
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.mobile-nav-toggle:hover {
  background: rgba(10, 37, 64, 0.08);
}

.hamburger-line {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--navy-900);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-toggle.is-active .line-1 {
  transform: translateY(7px) rotate(45deg);
}

.mobile-nav-toggle.is-active .line-2 {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-nav-toggle.is-active .line-3 {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: flex;
  }
}

/* Mobile Navigation Drawer */
.mobile-nav-drawer {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(10, 37, 64, 0.1);
  box-shadow: 0 20px 40px -10px rgba(10, 37, 64, 0.15);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-drawer.is-open {
  max-height: 600px;
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-inner {
  padding-top: 18px;
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-cohort-card {
  background: var(--gold-50);
  border: 1px solid var(--gold-200);
  border-radius: var(--radius-md);
  padding: 12px 16px;
}

.mobile-cohort-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--navy-900);
  margin-bottom: 3px;
}

.mobile-cohort-text {
  font-size: 0.78rem;
  color: var(--gold-900);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-900);
  text-decoration: none;
  transition: all 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  background: rgba(10, 37, 64, 0.05);
  color: var(--navy-950);
}

.nav-arrow {
  color: var(--gold-600);
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.mobile-nav-link:hover .nav-arrow {
  transform: translateX(4px);
}

.mobile-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(10, 37, 64, 0.08);
}

.btn-full-width {
  width: 100%;
  justify-content: center;
}

@media (max-width: 768px) {
  .header-container {
    height: 64px;
  }

  .brand-emblem-frame {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .badge-mini-seats {
    font-size: 0.68rem;
    padding: 2px 6px;
  }

  .btn-header-whatsapp {
    padding: 8px 14px;
    font-size: 0.82rem;
  }

  .hero-section {
    padding-top: 40px;
  }
}

@media (max-width: 480px) {
  .brand-badge-tag {
    display: none;
  }
  
  .btn-header-whatsapp span {
    display: none;
  }

  .btn-header-whatsapp {
    padding: 8px 10px;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    justify-content: center;
  }
}

.btn-hero-primary {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap !important;
}

.btn-hero-primary:hover {
  background: linear-gradient(135deg, #1ebc59 0%, #0d6e63 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

.btn-hero-secondary {
  background: #ffffff;
  color: var(--navy-900);
  border: 1.5px solid var(--border-card);
  white-space: nowrap !important;
}

.btn-hero-secondary:hover {
  border-color: var(--gold-600);
  background: var(--gold-50);
  transform: translateY(-2px);
}

.btn-primary-solid {
  background: var(--navy-900);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(10, 37, 64, 0.2);
}

.btn-primary-solid:hover {
  background: var(--navy-800);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(10, 37, 64, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
}

.btn-ghost:hover {
  color: var(--text-main);
  background: var(--bg-muted);
}

/* Badges */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap !important;
}

.badge-gold {
  background: var(--gold-50);
  color: var(--gold-800);
  border: 1px solid var(--gold-200);
}

.badge-navy {
  background: var(--navy-50);
  color: var(--navy-800);
  border: 1px solid var(--navy-100);
}

/* ==========================================================================
   SECTION 1: HERO HEADER (COMPLETELY REDESIGNED UI/UX)
   ========================================================================== */
.hero-section {
  position: relative;
  background: #ffffff;
  border-bottom: 1px solid var(--border-card);
  padding-top: 64px;
  padding-bottom: 92px;
  overflow: hidden;
}

/* Ambient Lighting Glow Effects */
.hero-ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.glow-gold {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(200, 150, 62, 0.14) 0%, rgba(200, 150, 62, 0) 70%);
  top: -80px;
  right: -5%;
}

.glow-navy {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(10, 37, 64, 0.07) 0%, rgba(10, 37, 64, 0) 70%);
  bottom: -60px;
  left: -8%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Urgency Status Pill */
.hero-urgency-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: #ffffff;
  border: 1.5px solid rgba(200, 150, 62, 0.35);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(200, 150, 62, 0.12);
  width: fit-content;
}

@media (max-width: 540px) {
  .hero-urgency-pill {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 8px;
    padding: 8px 12px;
    border-radius: 12px;
    width: 100%;
  }

  .urgency-pill-highlight {
    font-size: 0.78rem;
  }

  .urgency-pill-text {
    font-size: 0.78rem;
  }

  .urgency-pill-badge {
    margin-left: auto;
    font-size: 0.68rem;
    padding: 2px 8px;
  }
}

.pulse-dot-large {
  width: 9px;
  height: 9px;
  background-color: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
  animation: pulseLiveDot 2s infinite ease-in-out;
}

.urgency-pill-highlight {
  font-weight: 800;
  color: var(--navy-900);
  font-size: 0.84rem;
}

.urgency-pill-text {
  font-weight: 700;
  color: var(--gold-800);
  font-size: 0.84rem;
}

.urgency-pill-badge {
  font-size: 0.72rem;
  font-weight: 800;
  background: var(--navy-900);
  color: #ffffff;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.03em;
}

/* Headline & Subtitle */
.hero-title {
  font-size: 2.1rem;
  line-height: 1.18;
  font-weight: 800;
  color: var(--navy-950);
  letter-spacing: -0.035em;
}

@media (min-width: 480px) {
  .hero-title {
    font-size: 2.55rem;
    line-height: 1.16;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.35rem;
    line-height: 1.14;
  }
}

.hero-title .highlight-gold {
  color: var(--gold-700);
  background: linear-gradient(135deg, var(--gold-800) 0%, var(--gold-600) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.68;
  color: var(--text-body);
  max-width: 620px;
  font-weight: 400;
}

/* Key Value Pillar Chips */
.hero-value-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.value-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy-900);
  background: rgba(10, 37, 64, 0.04);
  border: 1px solid rgba(10, 37, 64, 0.08);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
}

.value-chip:hover {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(10, 37, 64, 0.08);
  border-color: var(--gold-400);
}

.chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-600);
}

/* High-Value Transparent Pricing Card */
.hero-pricing-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, #fffcf6 0%, #fef8ee 100%);
  border: 1.5px solid rgba(200, 150, 62, 0.35);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  box-shadow: 0 8px 24px -4px rgba(200, 150, 62, 0.12);
  max-width: 580px;
}

.pricing-card-amounts {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.pricing-main-figure {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--navy-950);
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-strike-figure {
  font-size: 1.15rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 600;
}

.pricing-card-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 600;
}

.pricing-card-badge-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}

.pricing-discount-pill {
  font-size: 0.82rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-700) 0%, var(--gold-600) 100%);
  color: #ffffff;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(200, 150, 62, 0.3);
  white-space: nowrap !important;
}

.pricing-seat-counter {
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--navy-900);
  background: #ffffff;
  border: 1px solid rgba(10, 37, 64, 0.12);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap !important;
}

/* Hero Action CTAs Suite */
.hero-cta-suite {
  display: flex;
  flex-direction: column;
}

@media (min-width: 540px) {
  .hero-cta-suite {
    flex-direction: row;
    align-items: center;
  }
}

.btn-hero-enroll {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 16px 26px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 24px -4px rgba(37, 211, 102, 0.45), 0 2px 6px rgba(18, 140, 126, 0.3);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  max-width: 460px;
}

.btn-hero-enroll:hover {
  background: linear-gradient(135deg, #1ebc59 0%, #0d6e63 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -4px rgba(37, 211, 102, 0.55);
}

.btn-whatsapp-icon-frame {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-cta-text-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-cta-title {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  white-space: nowrap !important;
}

.btn-cta-subtitle {
  font-size: 0.74rem;
  opacity: 0.92;
  font-weight: 500;
  white-space: nowrap !important;
}

.btn-cta-arrow {
  font-size: 1.2rem;
  font-weight: 800;
  margin-left: auto;
  transition: transform 0.2s ease;
}

.btn-hero-enroll:hover .btn-cta-arrow {
  transform: translateX(4px);
}


/* Trust Bar */
.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 4px;
}

.trust-pill-company {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--text-body);
  font-weight: 500;
}

.trust-shield-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

.trust-student-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--navy-900);
}

.rating-stars {
  color: #eab308;
  letter-spacing: 1px;
  font-size: 0.95rem;
}

/* Right Column: Interactive Layered Visual Showcase */
.hero-visual-card {
  position: relative;
  background: #ffffff;
  border-radius: 28px;
  border: 1.5px solid rgba(200, 150, 62, 0.28);
  box-shadow: 0 24px 60px -12px rgba(10, 37, 64, 0.12), 0 6px 18px rgba(10, 37, 64, 0.04);
  padding: 12px;
}

.hero-photo-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.hero-featured-photo {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.photo-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 37, 64, 0.45) 0%, rgba(10, 37, 64, 0) 55%);
}

/* Floating Glass Badges */
.hero-floating-glass {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 28px -4px rgba(10, 37, 64, 0.16);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
  transition: transform 0.3s ease;
}

.hero-floating-glass:hover {
  transform: translateY(-2px);
}

.glass-top-left {
  top: 24px;
  left: -12px;
}

.glass-top-right {
  top: 24px;
  right: -12px;
}

.glass-live-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.3);
  animation: pulseLiveDot 2s infinite ease-in-out;
}

.glass-gold-tag {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--gold-800);
  background: var(--gold-50);
  border: 1px solid var(--gold-200);
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  white-space: nowrap !important;
}

.glass-text-group {
  display: flex;
  flex-direction: column;
}

.glass-primary-text {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.15;
  white-space: nowrap !important;
}

.glass-sub-text {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 600;
  white-space: nowrap !important;
}

/* Bottom Floating Showcase: Student Project Milestone Card */
.hero-milestone-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 18px;
  border: 1.5px solid rgba(200, 150, 62, 0.35);
  box-shadow: 0 16px 36px -6px rgba(10, 37, 64, 0.18);
  padding: 16px 20px;
  z-index: 3;
}

.milestone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.milestone-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--navy-900);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.milestone-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.3);
}

.milestone-fee-badge {
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--gold-800);
  background: var(--gold-50);
  border: 1px solid var(--gold-200);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.milestone-body {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.milestone-icon-box {
  font-size: 1.4rem;
}

.milestone-title {
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--navy-900);
}

.milestone-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.milestone-footer {
  border-top: 1px solid rgba(10, 37, 64, 0.07);
  padding-top: 8px;
}

.milestone-cert-text {
  font-size: 0.74rem;
  color: var(--gold-700);
  font-weight: 700;
  display: block;
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 36px;
    padding-bottom: 48px;
  }

  .hero-visual-card {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-featured-photo {
    height: 300px;
  }

  .glass-top-left {
    left: 8px;
    top: 10px;
    padding: 6px 12px;
  }

  .glass-primary-text {
    font-size: 0.76rem;
  }

  .glass-sub-text {
    font-size: 0.64rem;
  }

  .glass-top-right {
    display: none;
  }

  .hero-milestone-card {
    position: static;
    margin-top: 12px;
    padding: 14px 16px;
  }

  .hero-pricing-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
    gap: 12px;
  }

  .pricing-card-badge-box {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .btn-hero-enroll {
    max-width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
}

@media (max-width: 480px) {
  .hero-featured-photo {
    height: 240px;
  }

  .hero-visual-card {
    border-radius: 20px;
    padding: 8px;
  }

  .hero-photo-wrapper {
    border-radius: 14px;
  }

  .hero-value-chips {
    gap: 6px;
  }

  .value-chip {
    font-size: 0.76rem;
    padding: 5px 10px;
  }

  .pricing-main-figure {
    font-size: 2.1rem;
  }

  .btn-cta-title {
    font-size: 0.96rem;
  }

  .btn-cta-subtitle {
    font-size: 0.7rem;
  }

  .hero-trust-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ==========================================================================
   SECTION 2: THE PROBLEM (COMPLETELY REDESIGNED UI/UX)
   ========================================================================== */
.problem-section {
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  position: relative;
  overflow: hidden;
}

.section-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--gold-50);
  border: 1px solid var(--gold-200);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--gold-800);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tag-pulse-dot {
  width: 7px;
  height: 7px;
  background-color: var(--gold-600);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(200, 150, 62, 0.3);
}

.problem-grid-modern {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 860px) {
  .problem-grid-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

.problem-card-modern {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px -2px rgba(10, 37, 64, 0.04), 0 2px 6px -1px rgba(10, 37, 64, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

@media (max-width: 768px) {
  .problem-grid-modern {
    margin-top: 32px;
    gap: 18px;
  }

  .problem-card-modern {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .problem-card-heading {
    font-size: 1.15rem;
    line-height: 1.32;
    margin-bottom: 10px;
  }

  .problem-card-body {
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 18px;
  }

  .problem-counter {
    font-size: 1.15rem;
    line-height: 1;
  }

  .problem-contrast-box {
    padding: 12px 14px;
    border-radius: 12px;
  }
}

.problem-card-modern:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 150, 62, 0.45);
  box-shadow: 0 16px 36px -4px rgba(10, 37, 64, 0.08), 0 4px 12px rgba(200, 150, 62, 0.06);
}

.problem-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.problem-meta-badge {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 800;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.problem-counter {
  font-size: 1.25rem;
  font-weight: 800;
  color: #94a3b8;
  font-variant-numeric: tabular-nums;
}

.problem-card-heading {
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.32;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.problem-card-body {
  font-size: 0.96rem;
  color: #475569;
  line-height: 1.62;
  margin-bottom: 24px;
}

.problem-contrast-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.contrast-row {
  display: flex;
  flex-direction: column;
  font-size: 0.82rem;
  gap: 2px;
}

@media (min-width: 480px) {
  .contrast-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
}

.row-old .contrast-label {
  color: #dc2626;
  font-weight: 700;
}

.row-old .contrast-val {
  color: #64748b;
  font-weight: 600;
  text-decoration: line-through;
}

.row-new {
  border-top: 1px dashed #cbd5e1;
  padding-top: 6px;
}

.row-new .contrast-label {
  color: #15803d;
  font-weight: 800;
}

.row-new .contrast-val {
  color: var(--navy-950);
  font-weight: 800;
}

/* Problem-to-Solution Bridge Banner */
.problem-solution-bridge {
  margin-top: 48px;
  background: linear-gradient(135deg, #0a2540 0%, #0d2e4e 100%);
  border: 1px solid rgba(200, 150, 62, 0.35);
  border-radius: 20px;
  padding: 26px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
  box-shadow: 0 12px 32px -4px rgba(10, 37, 64, 0.15);
}

@media (min-width: 768px) {
  .problem-solution-bridge {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.bridge-content .bridge-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.bridge-content .bridge-desc {
  font-size: 0.92rem;
  color: #cbd5e1;
  max-width: 580px;
  line-height: 1.5;
}

.bridge-cta-btn {
  background: linear-gradient(135deg, #c8963e 0%, #b37f26 100%);
  color: #071a2f;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap !important;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(200, 150, 62, 0.35);
  flex-shrink: 0;
}

.bridge-cta-btn:hover {
  background: #e5b95f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 150, 62, 0.45);
}

.bridge-arrow {
  transition: transform 0.2s ease;
}

.bridge-cta-btn:hover .bridge-arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   SECTION 3: THE SOLUTION (COMPLETELY REDESIGNED UI/UX)
   ========================================================================== */
.solution-section {
  background: #ffffff;
}

.solution-layout-modern {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .solution-layout-modern {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 52px;
  }
}

.solution-visual-box {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  border: 1.5px solid rgba(200, 150, 62, 0.28);
  box-shadow: 0 20px 48px -12px rgba(10, 37, 64, 0.12);
  padding: 12px;
}

.solution-image-wrapper {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.solution-mentor-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.solution-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 37, 64, 0.45) 0%, rgba(10, 37, 64, 0) 50%);
}

.solution-floating-pill {
  position: absolute;
  top: 24px;
  left: -10px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 24px -4px rgba(10, 37, 64, 0.14);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.floating-pill-content {
  display: flex;
  flex-direction: column;
}

.floating-pill-content strong {
  font-size: 0.82rem;
  color: var(--navy-900);
  font-weight: 800;
  line-height: 1.2;
}

.floating-pill-content span {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
}

.solution-mentor-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(10, 37, 64, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(200, 150, 62, 0.4);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.mentor-badge-company {
  font-size: 0.7rem;
  color: #e5b95f;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mentor-badge-role {
  font-size: 0.84rem;
  color: #ffffff;
  font-weight: 700;
}

.solution-pillars-modern {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pillar-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 18px;
  padding: 22px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(10, 37, 64, 0.03);
}

.pillar-card:hover {
  border-color: rgba(200, 150, 62, 0.5);
  transform: translateX(4px);
  box-shadow: 0 8px 24px -4px rgba(10, 37, 64, 0.08);
}

.pillar-number {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold-800);
  background: #fffcf6;
  border: 1.5px solid rgba(200, 150, 62, 0.35);
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pillar-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pillar-title {
  font-size: 1.16rem;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.pillar-desc {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.55;
}

@media (max-width: 768px) {
  .solution-layout-modern {
    gap: 28px;
  }

  .solution-visual-box {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .solution-mentor-img {
    height: 300px;
  }

  .solution-floating-pill {
    left: 8px;
    top: 10px;
    padding: 6px 12px;
  }

  .floating-pill-content strong {
    font-size: 0.76rem;
  }

  .floating-pill-content span {
    font-size: 0.65rem;
  }

  .solution-mentor-badge {
    bottom: 12px;
    right: 12px;
    padding: 6px 12px;
  }

  .mentor-badge-company {
    font-size: 0.76rem;
  }

  .mentor-badge-role {
    font-size: 0.66rem;
  }

  .solution-pillars-modern {
    gap: 14px;
  }

  .pillar-card {
    padding: 16px 16px;
    gap: 14px;
    border-radius: 14px;
  }

  .pillar-title {
    font-size: 1.05rem;
  }

  .pillar-desc {
    font-size: 0.88rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .solution-mentor-img {
    height: 240px;
  }

  .solution-visual-box {
    border-radius: 20px;
    padding: 8px;
  }

  .solution-image-wrapper {
    border-radius: 14px;
  }

  .pillar-number {
    width: 38px;
    height: 38px;
    font-size: 1.05rem;
  }
}

/* ==========================================================================
   SECTION 4: REAL CLIENT PROOF (INDIAN CASE STUDIES)
   ========================================================================== */
.proof-section {
  background: #ffffff;
}

.proof-grid-modern {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 960px) {
  .proof-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }
}

.case-card-modern {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px -4px rgba(10, 37, 64, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-card-modern:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 150, 62, 0.45);
  box-shadow: 0 20px 44px -6px rgba(10, 37, 64, 0.12);
}

.case-visual-container {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: #071a2f;
}

.case-cover-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}

.case-card-modern:hover .case-cover-photo {
  transform: scale(1.03);
}

.case-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 37, 64, 0.5) 0%, rgba(10, 37, 64, 0) 50%);
}

.case-floating-live-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--navy-900);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 12px rgba(10, 37, 64, 0.15);
}

.case-location-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(10, 37, 64, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(200, 150, 62, 0.4);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  color: #e5b95f;
}

.case-content-box {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.case-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.case-client-title {
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.25;
  margin-bottom: 3px;
  letter-spacing: -0.015em;
}

.case-client-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

.case-client-pill {
  background: var(--gold-50);
  border: 1px solid var(--gold-200);
  color: var(--gold-800);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap !important;
}

.case-metrics-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}

.case-metric-cell {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px 16px;
  text-align: left;
}

.metric-big-num {
  font-size: 1.95rem;
  font-weight: 800;
  color: var(--navy-950);
  line-height: 1;
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}

.metric-caption {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.case-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.tech-chip {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy-900);
  background: rgba(10, 37, 64, 0.05);
  border: 1px solid rgba(10, 37, 64, 0.08);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.case-summary-text {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.58;
  margin-top: auto;
}

@media (max-width: 768px) {
  .case-visual-container {
    height: 210px;
  }

  .case-content-box {
    padding: 20px 18px;
  }

  .case-client-title {
    font-size: 1.15rem;
  }

  .metric-big-num {
    font-size: 1.45rem;
  }
}

@media (max-width: 480px) {
  .case-visual-container {
    height: 180px;
  }

  .case-card-modern {
    border-radius: 18px;
  }

  .case-metrics-row {
    gap: 10px;
  }

  .case-metric-cell {
    padding: 8px 10px;
  }

  .metric-big-num {
    font-size: 1.3rem;
  }

  .metric-caption {
    font-size: 0.72rem;
  }
}

/* Mid-Page WhatsApp CTA Strip (Redesigned) */
.proof-cta-strip-modern {
  margin-top: 48px;
  background: linear-gradient(135deg, #071a2f 0%, #0a2540 100%);
  border: 1px solid rgba(200, 150, 62, 0.35);
  border-radius: 22px;
  padding: 32px 38px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 16px 40px -8px rgba(10, 37, 64, 0.2);
}

@media (min-width: 860px) {
  .proof-cta-strip-modern {
    flex-direction: row;
    text-align: left;
  }
}

.cta-pill-cohort {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 800;
  color: #e5b95f;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(200, 150, 62, 0.3);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}

.cta-headline {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 6px;
}

.cta-sub {
  font-size: 0.92rem;
  color: #cbd5e1;
}

.proof-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn-cta-whatsapp-banner {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.25s ease;
}

.btn-cta-whatsapp-banner:hover {
  background: linear-gradient(135deg, #1ebc59 0%, #0d6e63 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
}

.cta-banner-fee-note {
  font-size: 0.76rem;
  color: #e5b95f;
  font-weight: 700;
}

/* ==========================================================================
   SECTION 5: CURRICULUM ROADMAP & STUDENT GRADUATION SHOWCASE (REDESIGNED)
   ========================================================================== */
.curriculum-section {
  background: var(--bg-body);
}

/* Premium Roadmap Showcase Frame */
.curriculum-roadmap-frame {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  margin-bottom: 44px;
}

.roadmap-top-bar {
  background: var(--navy-950);
  padding: 14px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(200, 150, 62, 0.25);
}

.roadmap-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 150, 62, 0.15);
  border: 1px solid var(--gold-500);
  color: var(--gold-300);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.roadmap-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 8px var(--gold-400);
}

.roadmap-meta {
  font-size: 0.82rem;
  color: #94a3b8;
  font-weight: 600;
}

.roadmap-image-wrapper {
  position: relative;
  width: 100%;
  background: #0a192f;
}

.roadmap-featured-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.roadmap-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 37, 64, 0.05) 0%, rgba(10, 37, 64, 0.3) 100%);
  pointer-events: none;
}

/* 4 Milestone Progress Ribbon */
.roadmap-milestones-ribbon {
  display: grid;
  grid-template-columns: 1fr;
  background: #ffffff;
  border-top: 1px solid var(--border-subtle);
}

@media (min-width: 640px) {
  .roadmap-milestones-ribbon {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .roadmap-milestones-ribbon {
    grid-template-columns: repeat(4, 1fr);
  }
}

.milestone-ribbon-item {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--border-subtle);
}

@media (min-width: 640px) {
  .milestone-ribbon-item:nth-child(odd) {
    border-right: 1px solid var(--border-subtle);
  }
}

@media (min-width: 1024px) {
  .milestone-ribbon-item {
    border-bottom: none;
    border-right: 1px solid var(--border-subtle);
  }
  .milestone-ribbon-item:last-child {
    border-right: none;
  }
}

.ribbon-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy-900);
  background: var(--navy-50);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.milestone-ribbon-item.ribbon-capstone .ribbon-num {
  background: var(--gold-100);
  color: var(--gold-800);
}

.ribbon-info {
  display: flex;
  flex-direction: column;
}

.ribbon-info strong {
  font-size: 0.92rem;
  color: var(--navy-950);
}

.ribbon-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* 4 Executive Milestone Cards (2x2 Luxury Grid) */
.curriculum-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .curriculum-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.curriculum-card-luxury {
  background: #ffffff;
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

@media (max-width: 768px) {
  .curriculum-cards-grid {
    gap: 18px;
  }

  .curriculum-card-luxury {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .curriculum-card-title {
    font-size: 1.15rem;
  }
}

.curriculum-card-luxury:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(10, 37, 64, 0.08);
  border-color: var(--navy-700);
}

.curriculum-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}

.curriculum-week-tag {
  background: var(--navy-900);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}

.curriculum-week-tag.tag-gold {
  background: var(--gold-600);
  color: #ffffff;
}

.curriculum-phase-badge {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-muted);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.badge-gold-glow {
  background: var(--gold-50);
  color: var(--gold-800);
  border: 1px solid rgba(200, 150, 62, 0.3);
}

.curriculum-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-950);
  margin-bottom: 10px;
  line-height: 1.35;
}

.curriculum-card-summary {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.55;
  margin-bottom: 18px;
}

.curriculum-points-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
  flex: 1;
}

.curriculum-points-list li {
  font-size: 0.88rem;
  color: var(--navy-900);
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.point-check {
  color: var(--gold-600);
  font-weight: 800;
  flex-shrink: 0;
}

.curriculum-card-checkpoint {
  padding-top: 14px;
  border-top: 1px dashed var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--navy-800);
}

.curriculum-card-checkpoint.checkpoint-gold {
  color: var(--gold-800);
}

.checkpoint-icon {
  font-size: 0.95rem;
}

/* Capstone Card Accent */
.card-capstone-gold {
  border: 2px solid rgba(200, 150, 62, 0.5);
  background: linear-gradient(180deg, #ffffff 0%, rgba(254, 252, 247, 0.8) 100%);
  box-shadow: 0 10px 30px rgba(200, 150, 62, 0.08);
}

.card-capstone-gold:hover {
  border-color: var(--gold-500);
  box-shadow: 0 16px 40px rgba(200, 150, 62, 0.16);
}

/* Graduation Spotlight Showcase */
.graduation-spotlight-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 36px;
}

@media (min-width: 992px) {
  .graduation-spotlight-card {
    grid-template-columns: 1.1fr 1fr;
  }
}

.graduation-spotlight-visual {
  background: #0a192f;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.spotlight-photo-frame {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.spotlight-featured-photo {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.spotlight-overlay-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(10, 37, 64, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(200, 150, 62, 0.4);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.graduation-spotlight-content {
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spotlight-pill {
  display: inline-flex;
  align-items: center;
  background: var(--gold-50);
  border: 1px solid rgba(200, 150, 62, 0.3);
  color: var(--gold-800);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-bottom: 14px;
}

.spotlight-headline {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy-950);
  margin-bottom: 10px;
  line-height: 1.3;
}

.spotlight-desc {
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 22px;
}

.spotlight-deliverables-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 640px) {
  .spotlight-deliverables-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.deliverable-check {
  background: #dcfce7;
  color: #15803d;
  font-weight: 800;
  font-size: 0.8rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.deliverable-item strong {
  display: block;
  font-size: 0.88rem;
  color: var(--navy-950);
  margin-bottom: 2px;
}

.deliverable-item p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 0;
}

/* Transparent Commitment Card (Replaces honesty box) */
.commitment-card-modern {
  background: linear-gradient(135deg, #0a2540 0%, #061726 100%);
  border-radius: var(--radius-xl);
  padding: 32px 30px;
  border-top: 3px solid var(--gold-500);
  box-shadow: var(--shadow-card);
  color: #ffffff;
}

.commitment-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.commitment-crest {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(200, 150, 62, 0.4);
  border-radius: 12px;
  padding: 4px;
  flex-shrink: 0;
}

.crest-img {
  border-radius: 8px;
  display: block;
}

.commitment-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.commitment-sub {
  font-size: 0.88rem;
  color: #94a3b8;
  margin-bottom: 0;
}

.commitment-pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .commitment-pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.commitment-pillar {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.pillar-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--gold-400);
  margin-bottom: 8px;
}

.commitment-pillar p {
  font-size: 0.86rem;
  color: #cbd5e1;
  line-height: 1.55;
  margin-bottom: 0;
}

/* ==========================================================================
   SECTION 6: PRICE COMPARISON (EXECUTIVE VALUE SUITE UI/UX)
   ========================================================================== */
.comparison-section {
  background: #ffffff;
  position: relative;
}

/* Matrix Wrapper */
.comparison-matrix-wrapper {
  background: #ffffff;
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 36px rgba(10, 37, 64, 0.05);
  overflow: hidden;
  margin-bottom: 36px;
  position: relative;
}

.matrix-mobile-hint {
  display: none;
  background: var(--navy-950);
  color: var(--gold-300);
  font-size: 0.74rem;
  font-weight: 700;
  text-align: center;
  padding: 8px 14px;
  letter-spacing: 0.04em;
}

@media (max-width: 991px) {
  .matrix-mobile-hint {
    display: block;
  }
}

.matrix-table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.matrix-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  text-align: left;
}

/* Table Header */
.matrix-table thead tr {
  border-bottom: 2px solid #e2e8f0;
}

.matrix-th-metric {
  width: 32%;
  padding: 24px 28px;
  background: #f8fafc;
  vertical-align: bottom;
}

.matrix-th-metric .th-title {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--navy-950);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.matrix-th-metric .th-sub {
  display: block;
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 500;
}

.matrix-th-competitor {
  width: 34%;
  padding: 24px 24px;
  background: #f8fafc;
  border-left: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  vertical-align: bottom;
}

.th-badge-competitor {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: #e2e8f0;
  color: #64748b;
  margin-bottom: 8px;
}

.matrix-th-competitor .th-name {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: #475569;
}

.matrix-th-academy {
  width: 34%;
  padding: 24px 28px;
  background: linear-gradient(135deg, #071728 0%, #0a2540 100%);
  color: #ffffff;
  position: relative;
  vertical-align: bottom;
  box-shadow: inset 0 3px 0 var(--gold-500);
}

.th-badge-academy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 150, 62, 0.2);
  border: 1px solid var(--gold-500);
  color: var(--gold-300);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}

.matrix-th-academy .th-name-academy {
  display: block;
  font-size: 1.3rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.matrix-th-academy .th-tag-academy {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-400);
  margin-top: 2px;
}

/* Table Body */
.matrix-table tbody tr {
  border-bottom: 1px solid #edf2f7;
  transition: background-color 0.2s ease;
}

.matrix-table tbody tr:hover {
  background: #fbfcfe;
}

.matrix-table td {
  padding: 20px 24px;
  vertical-align: middle;
}

/* Feature Metric Column */
.cell-metric {
  padding-left: 28px;
}

.cell-metric .metric-title {
  display: block;
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--navy-950);
  margin-bottom: 4px;
}

.cell-metric .metric-sub {
  display: block;
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.4;
}

/* Competitor Cell */
.cell-competitor {
  background: rgba(248, 250, 252, 0.5);
  border-left: 1px solid #edf2f7;
  border-right: 1px solid #edf2f7;
}

.val-bad-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.cross-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fee2e2;
  color: #dc2626;
  font-weight: 900;
  font-size: 0.72rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.val-bad-strike {
  font-size: 1.05rem;
  font-weight: 800;
  color: #94a3b8;
  text-decoration: line-through;
}

.val-bad-text {
  font-size: 0.92rem;
  font-weight: 700;
  color: #64748b;
}

.note-bad {
  font-size: 0.78rem;
  color: #94a3b8;
  line-height: 1.4;
  padding-left: 30px;
}

/* Academy Cell */
.cell-academy {
  background: rgba(200, 150, 62, 0.03);
  padding-right: 28px;
}

.val-good-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}

.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  font-weight: 900;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.val-good-price {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--navy-950);
}

.badge-flat {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  background: var(--gold-100);
  color: var(--gold-800);
}

.val-good-text {
  font-size: 0.94rem;
  font-weight: 800;
  color: var(--navy-950);
}

.note-good {
  font-size: 0.78rem;
  color: #0d9488;
  font-weight: 600;
  line-height: 1.4;
  padding-left: 32px;
}

/* Mobile Feature Cards Transformation (<768px) */
@media (max-width: 767px) {
  .matrix-mobile-hint {
    display: none !important;
  }

  .matrix-table-scroll {
    overflow-x: visible;
  }

  .matrix-table {
    display: block;
    min-width: 0;
    width: 100%;
  }

  .matrix-table thead {
    display: none;
  }

  .matrix-table tbody {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .matrix-table tbody tr {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 18px;
    padding: 20px 16px;
    gap: 14px;
    box-shadow: 0 4px 16px rgba(10, 37, 64, 0.04);
  }

  .matrix-table td {
    padding: 0;
    border: none !important;
    background: none !important;
  }

  /* Metric header at top of card */
  .cell-metric {
    order: 0;
    padding-left: 0;
    padding-bottom: 12px;
    border-bottom: 1px dashed #e2e8f0 !important;
  }

  .cell-metric .metric-title {
    font-size: 1.08rem;
    color: var(--navy-950);
  }

  .cell-metric .metric-sub {
    font-size: 0.8rem;
  }

  /* Cospixare Academy as prominent highlighted card (Order 1) */
  .cell-academy {
    order: 1;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%) !important;
    border: 1.5px solid #86efac !important;
    border-radius: 14px;
    padding: 14px 14px !important;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.08);
  }

  .cell-academy::before {
    content: "Cospixare Academy (Strictly 22 Seats Max)";
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    color: #15803d;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
  }

  .cell-academy .note-good {
    padding-left: 0;
    font-size: 0.82rem;
    color: #166534;
    line-height: 1.45;
  }

  /* Competitor cell as secondary comparison (Order 2) */
  .cell-competitor {
    order: 2;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 14px;
    padding: 12px 14px !important;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .cell-competitor::before {
    content: "Typical Bootcamps & Centers";
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
  }

  .cell-competitor .note-bad {
    padding-left: 0;
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.4;
  }
}

/* ==========================================================================
   EXECUTIVE COHORT ENROLLMENT PASS
   ========================================================================== */
.cohort-enrollment-pass {
  background: linear-gradient(135deg, #071728 0%, #0a2540 50%, #081a2f 100%);
  border: 2px solid rgba(200, 150, 62, 0.4);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 50px -10px rgba(10, 37, 64, 0.35), 0 0 40px rgba(200, 150, 62, 0.12);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  margin-bottom: 36px;
}

.pass-pattern-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 450px;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(200, 150, 62, 0.15), transparent 70%);
  pointer-events: none;
}

.pass-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  position: relative;
  z-index: 1;
  align-items: center;
}

@media (min-width: 992px) {
  .pass-content-grid {
    grid-template-columns: 1.25fr 1fr;
    gap: 48px;
  }
}

.pass-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 150, 62, 0.15);
  border: 1px solid rgba(200, 150, 62, 0.35);
  color: var(--gold-300);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.pass-title {
  font-size: 1.7rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.pass-desc {
  font-size: 0.94rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 540px;
}

.pass-feature-badges {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 576px) {
  .pass-feature-badges {
    grid-template-columns: 1fr 1fr;
  }
}

.pass-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #f1f5f9;
}

.pass-badge-item .badge-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.2);
  border: 1px solid #25d366;
  color: #25d366;
  font-size: 0.75rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Pass Pricing Side */
.pass-pricing-side {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
}

.pass-price-display {
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}

.pass-price-kicker {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-400);
  margin-bottom: 6px;
}

.pass-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.pass-currency {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
}

.pass-amount {
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1;
}

.pass-tag {
  background: var(--gold-500);
  color: var(--navy-950);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-left: 6px;
}

.pass-price-terms {
  font-size: 0.78rem;
  color: #94a3b8;
  margin-top: 8px;
}

.pass-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}

.btn-pass-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 22px;
  background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 800;
  border-radius: var(--radius-md);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}

.btn-pass-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  color: #ffffff;
}

.btn-pass-whatsapp svg {
  flex-shrink: 0;
}

.pass-seat-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--gold-300);
  font-weight: 600;
  text-align: center;
}

.pass-seat-indicator .seat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 8px #25d366;
}

@media (max-width: 768px) {
  .cohort-enrollment-pass {
    padding: 28px 18px;
    border-radius: 20px;
  }

  .pass-title {
    font-size: 1.4rem;
  }

  .pass-pricing-side {
    padding: 22px 16px;
  }

  .pass-amount {
    font-size: 2.4rem;
  }

  .btn-pass-whatsapp {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   3-PILLAR COST EFFICIENCY BREAKDOWN
   ========================================================================== */
.cost-transparency-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .cost-transparency-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cost-pillar {
  background: var(--bg-body);
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.25s ease;
}

.cost-pillar:hover {
  border-color: var(--gold-400);
  box-shadow: var(--shadow-sm);
}

.cost-pillar-num {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold-700);
  background: var(--gold-50);
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cost-pillar-content strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy-950);
  margin-bottom: 6px;
}

.cost-pillar-content p {
  font-size: 0.84rem;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 0;
}

/* ==========================================================================
   SECTION 7: FAQS (REDESIGNED PURE ACCORDION, ZERO DEFAULT EXPANSION)
   ========================================================================== */
.faq-section {
  background: var(--bg-body);
}

.faq-list {
  max-width: 860px;
  margin: 0 auto 36px auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-card {
  background: #ffffff;
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-card:hover {
  border-color: var(--navy-700);
  box-shadow: 0 4px 16px rgba(10, 37, 64, 0.05);
}

.faq-card.active {
  border-color: var(--gold-500);
  box-shadow: 0 8px 24px rgba(200, 150, 62, 0.12);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy-950);
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 14px;
  font-family: var(--font-sans);
}

.faq-q-number {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold-800);
  background: var(--gold-50);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-q-text {
  flex: 1;
  line-height: 1.4;
}

.faq-chevron {
  width: 10px;
  height: 10px;
  border-right: 2.5px solid var(--navy-800);
  border-bottom: 2.5px solid var(--navy-800);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-left: auto;
}

.faq-card.active .faq-chevron {
  transform: rotate(-135deg);
  border-color: var(--gold-600);
}

.faq-answer {
  display: none;
  padding: 0 24px 22px 70px;
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.65;
}

@media (max-width: 576px) {
  .faq-question {
    padding: 16px 16px;
    font-size: 0.95rem;
    gap: 10px;
  }

  .faq-q-number {
    width: 28px;
    height: 28px;
    font-size: 0.74rem;
  }

  .faq-answer {
    padding: 0 16px 18px 16px;
    font-size: 0.9rem;
  }
}

.faq-card.active .faq-answer {
  display: block;
}

/* FAQ Still Have Questions Help Card */
.faq-help-card {
  max-width: 860px;
  margin: 0 auto;
  background: #ffffff;
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .faq-help-card {
    flex-direction: row;
    text-align: left;
  }
}

.faq-help-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-950);
  margin-bottom: 4px;
}

.faq-help-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.btn-faq-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  transition: all 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-faq-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
  color: #ffffff;
}

@media (max-width: 576px) {
  .faq-help-card {
    padding: 20px 16px;
    text-align: center;
  }

  .btn-faq-whatsapp {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   SECTION 8: DIRECT WHATSAPP ADMISSIONS SUITE
   ========================================================================== */
.enroll-section {
  background: #ffffff;
  position: relative;
}

.admissions-suite-frame {
  background: linear-gradient(135deg, #07192b 0%, #0d2744 50%, #081a2e 100%);
  border: 1.5px solid rgba(200, 150, 62, 0.4);
  border-radius: 28px;
  padding: 56px 44px 44px 44px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px -10px rgba(10, 37, 64, 0.28);
}

.suite-ambient-glow {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 150, 62, 0.16) 0%, transparent 70%);
  pointer-events: none;
}

.admissions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .admissions-grid {
    grid-template-columns: 1.15fr 0.95fr;
    gap: 48px;
  }
}

/* Left Column: Suite Info */
.suite-info-col {
  display: flex;
  flex-direction: column;
}

.suite-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 150, 62, 0.15);
  border: 1px solid rgba(200, 150, 62, 0.4);
  color: var(--gold-300);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
  width: fit-content;
}

.suite-title {
  font-size: 2.1rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.22;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .suite-title {
    font-size: 2.5rem;
  }
}

.suite-desc {
  font-size: 1.02rem;
  color: #cbd5e1;
  line-height: 1.65;
  margin-bottom: 26px;
}

.suite-price-highlight {
  color: var(--gold-400);
  font-weight: 900;
}

/* 4 Feature Micro Cards */
.suite-tiles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 30px;
}

@media (min-width: 576px) {
  .suite-tiles-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.suite-tile {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.25s ease;
}

.suite-tile:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(200, 150, 62, 0.4);
  transform: translateY(-2px);
}

.tile-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tile-num {
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--gold-400);
  background: rgba(200, 150, 62, 0.18);
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  line-height: 1.2;
}

.tile-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

.tile-text {
  font-size: 0.8rem;
  color: #94a3b8;
  line-height: 1.45;
  margin: 0;
}

/* Right Column: Direct WhatsApp Admissions Pass Card */
.admissions-whatsapp-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 36px 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  border-top: 4px solid var(--gold-500);
  display: flex;
  flex-direction: column;
}

@media (min-width: 576px) {
  .admissions-whatsapp-card {
    padding: 38px 34px;
  }
}

.whatsapp-card-header {
  margin-bottom: 20px;
}

.whatsapp-kicker-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-100);
  color: var(--gold-800);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.whatsapp-kicker-pill .bolt-icon {
  font-size: 0.85rem;
}

.whatsapp-card-title {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--navy-950);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.whatsapp-card-desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

/* Price Box */
.whatsapp-pricing-box {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 20px;
}

.whatsapp-pricing-label {
  display: block;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  margin-bottom: 4px;
}

.whatsapp-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}

.whatsapp-price-currency {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy-950);
}

.whatsapp-price-val {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--navy-950);
  line-height: 1;
  letter-spacing: -0.02em;
}

.whatsapp-price-tag {
  background: var(--gold-100);
  color: var(--gold-800);
  font-size: 0.76rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-left: 6px;
}

.whatsapp-pricing-terms {
  display: block;
  font-size: 0.78rem;
  color: #0d9488;
  font-weight: 700;
}

/* Direct WhatsApp Action Steps */
.whatsapp-steps-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.whatsapp-step-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy-950);
  line-height: 1.45;
}

.whatsapp-step-item .step-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  font-size: 0.75rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Big Emerald WhatsApp CTA Button */
.btn-suite-whatsapp-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 22px;
  background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 800;
  border-radius: var(--radius-md);
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}

.btn-suite-whatsapp-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.45);
  color: #ffffff;
}

.btn-suite-whatsapp-main svg {
  flex-shrink: 0;
}

.whatsapp-card-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 12px;
  text-align: center;
}

.whatsapp-card-trust {
  font-size: 0.74rem;
  color: #94a3b8;
  text-align: center;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed #e2e8f0;
}

/* Bottom Reassurance Strip */
.suite-trust-strip {
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #cbd5e1;
}

.trust-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.2);
  border: 1px solid #25d366;
  color: #25d366;
  font-size: 0.7rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}


@media (max-width: 768px) {
  .admissions-suite-frame {
    padding: 36px 20px 28px 20px;
    border-radius: 20px;
  }

  .suite-title {
    font-size: 1.85rem;
  }

  .suite-desc {
    font-size: 0.94rem;
  }

  .admissions-whatsapp-card {
    padding: 28px 20px;
    border-radius: 18px;
  }

  .suite-trust-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .admissions-suite-frame {
    padding: 28px 14px 22px 14px;
    border-radius: 18px;
  }

  .suite-title {
    font-size: 1.6rem;
  }

  .admissions-whatsapp-card {
    padding: 22px 16px;
  }

  .whatsapp-card-title {
    font-size: 1.35rem;
  }

  .whatsapp-price-val {
    font-size: 2.3rem;
  }

  .whatsapp-step-item {
    font-size: 0.82rem;
  }

  .btn-suite-whatsapp-main {
    padding: 14px 18px;
    font-size: 0.96rem;
  }
}

/* ==========================================================================
   FOOTER (COMPLETELY REDESIGNED UI/UX)
   ========================================================================== */
.site-footer {
  background: #061726;
  color: #f1f5f9;
  padding-top: 70px;
  padding-bottom: 36px;
  border-top: 1px solid rgba(200, 150, 62, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1.1fr;
  }
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-emblem-img {
  border-radius: 10px;
  background: #ffffff;
  padding: 3px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.footer-brand-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2px;
}

.footer-brand-sub {
  font-size: 0.8rem;
  color: var(--gold-400);
  font-weight: 700;
  display: block;
}

.footer-brand-text {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn-footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
  transition: all 0.25s ease;
  width: fit-content;
}

.btn-footer-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
  color: #ffffff;
}

.footer-col-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--gold-400);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #cbd5e1;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold-400);
}

.footer-cohort-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-cohort-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #cbd5e1;
}

.cohort-list-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-400);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .site-footer {
    padding-top: 48px;
    padding-bottom: 24px;
  }

  .footer-grid {
    gap: 32px;
    margin-bottom: 36px;
  }
}

.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.84rem;
  color: #94a3b8;
  text-align: center;
}

.footer-copy {
  margin-bottom: 0;
}

.footer-credit {
  color: #64748b;
  font-size: 0.82rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    text-align: left;
  }
}

/* ==========================================================================
   MOBILE STICKY BAR
   ========================================================================== */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1.5px solid var(--border-card);
  box-shadow: 0 -4px 20px rgba(10, 37, 64, 0.1);
  padding: 10px 18px calc(10px + env(safe-area-inset-bottom, 0px)) 18px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.mobile-sticky-bar.visible {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .mobile-sticky-bar {
    display: none !important;
  }
}

.sticky-info {
  display: flex;
  flex-direction: column;
}

.sticky-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-950);
  line-height: 1;
}

.sticky-seats {
  font-size: 0.74rem;
  color: #dc2626;
  font-weight: 800;
}


