/* =========================================
   CLUBBLE DESIGN SYSTEM
   ========================================= */

:root {
  /* Colors */
  --green: #00c80c;
  --green-dark: #00a30a;
  --green-darker: #008008;
  --green-soft: #e8fbe9;
  --green-tint: #f4fdf5;
  --ink: #0a0d12;
  --ink-soft: #1a1f28;
  --text: #2a2f38;
  --muted: #5a6270;
  --line: #e6e9ee;
  --line-soft: #f0f2f5;
  --bg: #ffffff;
  --bg-soft: #f7f8fa;
  --bg-cream: #faf9f5;
  --gold: #f6c026;
  --red: #ef4444;

  /* Typography */
  --font: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --container: 1200px;
  --container-narrow: 960px;

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(10, 13, 18, 0.04), 0 1px 3px rgba(10, 13, 18, 0.06);
  --shadow-md: 0 4px 8px rgba(10, 13, 18, 0.04), 0 8px 24px rgba(10, 13, 18, 0.08);
  --shadow-lg: 0 8px 16px rgba(10, 13, 18, 0.06), 0 24px 48px rgba(10, 13, 18, 0.12);
  --shadow-green: 0 8px 24px rgba(0, 200, 12, 0.25);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.15s;
  --t-base: 0.25s;
  --t-slow: 0.4s;
}

/* =========================================
   RESET
   ========================================= */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* =========================================
   TYPOGRAPHY
   ========================================= */

h1, h2, h3, h4, h5, h6 {
  color: var(--ink);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.h-display {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.h-1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.h-2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -0.025em;
}

.h-3 {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  font-weight: 700;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-darker);
  background: var(--green-soft);
  padding: 8px 16px;
  border-radius: var(--r-full);
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--muted);
  line-height: 1.65;
  max-width: 640px;
}

.muted { color: var(--muted); }
.ink { color: var(--ink); }
.green { color: var(--green-darker); }
.center { text-align: center; }

/* =========================================
   LAYOUT
   ========================================= */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: clamp(64px, 9vw, 120px) 0;
  position: relative;
}

section.tight { padding: clamp(40px, 6vw, 72px) 0; }

.section-head {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.section-head .lead {
  margin: 16px auto 0;
}

/* =========================================
   BUTTONS
   ========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--r-full);
  transition: all var(--t-base) var(--ease);
  white-space: nowrap;
  border: 2px solid transparent;
  letter-spacing: -0.005em;
}

.btn-primary {
  background: var(--green);
  color: white;
  box-shadow: var(--shadow-green);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 200, 12, 0.35);
}

.btn-secondary {
  background: var(--ink);
  color: white;
}

.btn-secondary:hover {
  background: var(--ink-soft);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

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

.btn-lg { padding: 17px 32px; font-size: 1rem; }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--ink);
  color: white;
  border-radius: var(--r-md);
  transition: all var(--t-base) var(--ease);
  border: 2px solid var(--ink);
}

.store-btn:hover {
  background: var(--ink-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.store-btn svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.store-btn-label {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.1;
}

.store-btn-label small {
  font-size: 0.65rem;
  opacity: 0.8;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.store-btn-label strong {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.store-btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.launch-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: white;
  padding: 10px 20px;
  border-radius: var(--r-full);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
}

.launch-banner .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease infinite;
  box-shadow: 0 0 0 4px rgba(0, 200, 12, 0.2);
}

.coming-soon-tag {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--ink);
  padding: 4px 10px;
  border-radius: var(--r-full);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-left: 8px;
}

/* =========================================
   NAVIGATION
   ========================================= */

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base) var(--ease);
}

.nav-wrap.scrolled {
  border-bottom-color: var(--line-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.nav-logo img {
  width: 36px;
  height: 36px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  padding: 8px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--r-full);
  transition: all var(--t-fast) var(--ease);
}

.nav-links a:hover {
  background: var(--bg-soft);
  color: var(--ink);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-full);
  background: var(--bg-soft);
}

.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 960px) {
  .nav-links, .nav-cta .btn:not(.btn-primary) { display: none; }
  .nav-toggle { display: flex; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background: white;
  z-index: 200;
  transform: translateX(100%);
  transition: transform var(--t-slow) var(--ease);
  padding: 24px;
  overflow-y: auto;
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 13, 18, 0.4);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-base) var(--ease);
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.mobile-menu-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-soft);
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
}

.mobile-menu .btn {
  width: 100%;
  margin-top: 16px;
}

/* =========================================
   HERO
   ========================================= */

.hero {
  padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 200, 12, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -300px;
  left: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 200, 12, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  margin: 20px 0 24px;
}

.hero-text h1 .accent {
  color: var(--green-darker);
  position: relative;
  display: inline-block;
}

.hero-text h1 .accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--green-soft);
  z-index: -1;
  border-radius: 4px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  align-items: stretch;
}

.hero-primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(0, 200, 12, 0.32);
  position: relative;
  z-index: 1;
}

.hero-primary-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(0, 200, 12, 0.4);
}

@media (max-width: 560px) {
  .hero-primary-cta { width: 100%; justify-content: center; }
}

.hero-micro {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-micro-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-micro svg {
  width: 16px;
  height: 16px;
  color: var(--green);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 540px;
}

.phone {
  position: relative;
  max-width: 320px;
  filter: drop-shadow(0 30px 60px rgba(10, 13, 18, 0.18));
  z-index: 2;
}

.phone img { border-radius: 32px; }

.phone.phone-back {
  position: absolute;
  max-width: 270px;
  transform: rotate(-8deg) translate(-110px, 30px);
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(10, 13, 18, 0.12));
  opacity: 0.95;
}

.phone.phone-front {
  position: absolute;
  max-width: 270px;
  transform: rotate(8deg) translate(110px, 30px);
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(10, 13, 18, 0.12));
  opacity: 0.95;
}

.floating-badge {
  position: absolute;
  background: white;
  border-radius: var(--r-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  font-size: 0.85rem;
  font-weight: 600;
}

.floating-badge .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-darker);
  flex-shrink: 0;
}

.floating-badge .icon svg { width: 22px; height: 22px; }

.floating-badge-1 {
  top: 8%;
  left: -10px;
  animation: float 6s ease-in-out infinite;
}

.floating-badge-2 {
  bottom: 12%;
  right: -10px;
  animation: float 6s ease-in-out infinite reverse;
}

.floating-badge strong {
  display: block;
  font-size: 1rem;
  color: var(--ink);
  font-weight: 800;
}

.floating-badge small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text { display: flex; flex-direction: column; align-items: center; }
  .hero-text .lead { margin: 0 auto; }
  .hero-cta { justify-content: center; }
  .hero-micro { justify-content: center; flex-wrap: wrap; }
  .hero-visual { min-height: 460px; margin-top: 20px; }
  .phone { max-width: 260px; }
  .phone.phone-back { max-width: 220px; transform: rotate(-8deg) translate(-80px, 20px); }
  .phone.phone-front { max-width: 220px; transform: rotate(8deg) translate(80px, 20px); }
}

/* =========================================
   TRUST STRIP
   ========================================= */

.trust-strip {
  background: var(--ink);
  color: white;
  padding: 32px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.trust-num {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1;
  display: flex;
  align-items: baseline;
}

.trust-num .plus {
  color: var(--green);
  margin-left: 2px;
}

.trust-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 12px; }
}

/* =========================================
   ACADEMIES STRIP
   ========================================= */

.academies-strip {
  background: var(--bg-soft);
  padding: 64px 0;
}

.academies-head {
  text-align: center;
  margin-bottom: 40px;
}

.academies-head h3 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 40s linear infinite;
  width: max-content;
  will-change: transform;
}

@media (max-width: 768px) {
  .marquee-track {
    gap: 24px;
    animation-duration: 22s;
  }
  .marquee-item {
    min-width: 200px;
    padding: 12px 16px;
  }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  background: white;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  min-width: 220px;
  box-shadow: var(--shadow-sm);
}

.marquee-logo {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: white;
}

.marquee-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.marquee-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.2;
}

.marquee-info strong {
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 700;
}

.marquee-info .badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  background: var(--green-soft);
  color: var(--green-darker);
  border-radius: var(--r-full);
  letter-spacing: 0.02em;
  align-self: flex-start;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================
   BENEFITS
   ========================================= */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefit-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: all var(--t-base) var(--ease);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow) var(--ease);
}

.benefit-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--green-darker);
}

.benefit-icon svg { width: 26px; height: 26px; }

.benefit-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--ink);
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

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

@media (max-width: 540px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* =========================================
   HOW IT WORKS
   ========================================= */

.howitworks {
  background: var(--bg-soft);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}

.step {
  background: white;
  border-radius: var(--r-lg);
  padding: 36px 32px;
  position: relative;
  border: 1px solid var(--line-soft);
}

.step-num {
  position: absolute;
  top: -20px;
  left: 28px;
  width: 44px;
  height: 44px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  box-shadow: var(--shadow-green);
  border: 4px solid white;
}

.step h3 {
  margin: 16px 0 8px;
  font-size: 1.2rem;
  color: var(--ink);
}

.step p {
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 800px) {
  .steps { grid-template-columns: 1fr; }
}

/* =========================================
   SAFEGUARDING
   ========================================= */

.safeguarding {
  background: var(--ink);
  color: white;
  border-radius: 0;
  overflow: hidden;
  position: relative;
}

.safeguarding::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 200, 12, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.safeguarding h2 { color: white; }
.safeguarding .lead { color: rgba(255, 255, 255, 0.75); }

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

.safe-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: all var(--t-base) var(--ease);
  backdrop-filter: blur(10px);
}

.safe-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 200, 12, 0.4);
  transform: translateY(-4px);
}

.safe-card .icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: rgba(0, 200, 12, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 20px;
}

.safe-card .icon svg { width: 28px; height: 28px; }

.safe-card h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.safe-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

@media (max-width: 800px) {
  .safe-grid { grid-template-columns: 1fr; }
}

/* =========================================
   SPORTS GRID
   ========================================= */

.sports-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.sport-tile {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 16px;
  text-align: center;
  transition: all var(--t-base) var(--ease);
  cursor: default;
}

.sport-tile:hover {
  background: var(--green-tint);
  border-color: var(--green);
  transform: translateY(-3px);
}

.sport-emoji {
  font-size: 2.2rem;
  margin-bottom: 8px;
  display: block;
  line-height: 1;
}

.sport-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}

@media (max-width: 900px) {
  .sports-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 540px) {
  .sports-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================
   FOR ACADEMIES BLOCK
   ========================================= */

.for-academies-block {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: white;
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 64px);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.for-academies-block::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.for-academies-block::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: 100px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.for-academies-block h2 { color: white; }
.for-academies-block .lead { color: rgba(255, 255, 255, 0.92); }

.for-academies-content {
  position: relative;
  z-index: 2;
}

.for-academies-list {
  list-style: none;
  margin: 24px 0;
}

.for-academies-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-weight: 500;
}

.for-academies-block .for-academies-list li {
  color: rgba(255, 255, 255, 0.95);
}

.for-academies-list svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.for-academies-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.for-academies-cta .btn-primary {
  background: white;
  color: var(--green-darker);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.for-academies-cta .btn-primary:hover {
  background: var(--ink);
  color: white;
}

.for-academies-cta .btn-ghost {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
}

.for-academies-cta .btn-ghost:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

.for-academies-visual {
  position: relative;
  z-index: 2;
}

.metric-card {
  background: white;
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: 24px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-lg);
}

.metric-card:nth-child(2) {
  margin-left: 32px;
  margin-right: -8px;
}

.metric-card-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--green-darker);
  letter-spacing: -0.03em;
  line-height: 1;
}

.metric-card-label {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 4px;
  font-weight: 500;
}

@media (max-width: 800px) {
  .for-academies-block { grid-template-columns: 1fr; }
  .for-academies-visual { order: -1; }
}

/* =========================================
   FOUNDER
   ========================================= */

.founder-block {
  background: var(--bg-cream);
  border-radius: var(--r-xl);
  padding: clamp(40px, 5vw, 56px);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
}

.founder-photo {
  position: relative;
}

.founder-photo-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-soft);
}

.founder-photo-stack::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  z-index: 3;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
}

.founder-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
  z-index: 1;
}

.founder-img.active {
  opacity: 1;
  z-index: 2;
}

.founder-photo::after {
  content: '';
  position: absolute;
  inset: 12px -12px -12px 12px;
  background: var(--green);
  border-radius: var(--r-lg);
  z-index: -1;
}

.founder-content blockquote {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 24px;
  position: relative;
  padding-left: 0;
}

.founder-content blockquote::before {
  content: '"';
  position: absolute;
  top: -30px;
  left: -8px;
  font-size: 5rem;
  font-weight: 900;
  color: var(--green);
  opacity: 0.2;
  line-height: 1;
  font-family: Georgia, serif;
}

.founder-name {
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--ink);
}

.founder-role {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 2px;
}

@media (max-width: 760px) {
  .founder-block { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .founder-photo { width: 100%; max-width: 240px; margin: 0 auto; }
  .founder-content blockquote::before { left: 50%; transform: translateX(-50%); top: -50px; }
}

/* =========================================
   FAQ
   ========================================= */

.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  gap: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.faq-q-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--t-base) var(--ease);
}

.faq-q-icon svg {
  width: 16px;
  height: 16px;
  transition: transform var(--t-base) var(--ease);
}

.faq-item.open .faq-q-icon {
  background: var(--green);
  color: white;
}

.faq-item.open .faq-q-icon svg {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow) var(--ease);
}

.faq-a-inner {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.faq-item.open .faq-a {
  max-height: 600px;
}

@media (max-width: 640px) {
  .faq-q {
    padding: 18px 20px;
    font-size: 0.96rem;
  }
  .faq-a-inner {
    padding: 0 20px 20px;
    font-size: 0.94rem;
  }
}

/* =========================================
   FINAL CTA
   ========================================= */

.final-cta {
  background: var(--ink);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 200, 12, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta h2 {
  color: white;
  max-width: 700px;
  margin: 0 auto 16px;
}

.final-cta .lead {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto 32px;
}

.final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.final-cta .store-btn {
  background: white;
  color: var(--ink);
  border-color: white;
}

.final-cta .store-btn:hover {
  background: var(--green);
  color: white;
  border-color: var(--green);
}

.final-cta .store-btn-label small { opacity: 0.65; }

/* =========================================
   FOOTER
   ========================================= */

footer {
  background: var(--ink-soft);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 32px;
}

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

.footer-brand .nav-logo {
  color: white;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 16px;
}

.footer-col h4 {
  color: white;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--t-fast) var(--ease);
}

.footer-col a:hover { color: var(--green); }

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-row a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-base) var(--ease);
}

.social-row a:hover {
  background: var(--green);
  transform: translateY(-2px);
}

.social-row svg { width: 18px; height: 18px; }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* =========================================
   UTILITIES + ANIMATIONS
   ========================================= */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================
   PAGE: FOR ACADEMIES
   ========================================= */

.page-hero {
  padding: 80px 0 60px;
  text-align: center;
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 200, 12, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(32px, 4vw, 48px);
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: 0.95rem;
  background: white;
  color: var(--ink);
  transition: border-color var(--t-fast) var(--ease);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-soft);
}

.form-field textarea {
  min-height: 110px;
  resize: vertical;
  font-family: inherit;
}

.form-field small {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 4px;
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

/* Pricing for academies */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.price-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: all var(--t-base) var(--ease);
  position: relative;
}

.price-card.featured {
  border-color: var(--green);
  background: linear-gradient(180deg, var(--green-tint) 0%, white 50%);
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}

.price-card.featured .featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: var(--r-full);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-name {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ink);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin: 12px 0;
  line-height: 1;
}

.price-amount .price-unit {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
  margin-left: 4px;
}

.price-features {
  list-style: none;
  margin: 20px 0;
}

.price-features li {
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.93rem;
  color: var(--text);
}

.price-features svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
}

/* About prose */
.prose {
  max-width: 720px;
  margin: 0 auto;
}

.prose h2 { margin-top: 48px; margin-bottom: 16px; }
.prose h3 { margin-top: 32px; margin-bottom: 8px; font-size: 1.2rem; }
.prose p { margin-bottom: 16px; color: var(--text); line-height: 1.75; }
.prose ul { margin: 16px 0 16px 20px; }
.prose li { margin-bottom: 8px; line-height: 1.7; }

/* =========================================
   BATCH 1: IMPROVEMENTS
   ========================================= */

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all var(--t-base) var(--ease);
  cursor: pointer;
  animation: whatsapp-pulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
  animation: none;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 0 14px rgba(37, 211, 102, 0); }
}

@media (max-width: 760px) {
  .whatsapp-float {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 84px;
  }
  .whatsapp-float svg { width: 28px; height: 28px; }
}

/* Mobile sticky CTA bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--green);
  color: white;
  padding: 14px 20px;
  z-index: 998;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.12);
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: transform var(--t-base) var(--ease);
}

.mobile-cta-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: white;
  width: 100%;
}

.mobile-cta-bar .arrow {
  display: inline-block;
  transition: transform var(--t-base) var(--ease);
}

.mobile-cta-bar:active .arrow,
.mobile-cta-bar:hover .arrow { transform: translateX(4px); }

.mobile-cta-bar .price-pill {
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 10px;
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 800;
}

@media (max-width: 760px) {
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 64px; }
}

/* Academy count banner (above marquee) */
.academy-count-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: white;
  border: 1px solid var(--green-soft);
  border-radius: var(--r-xl);
  padding: 24px 36px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.academy-count-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
}

.count-number-large {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--green-darker);
  letter-spacing: -0.04em;
  line-height: 1;
  flex-shrink: 0;
}

.count-text {
  flex: 1;
  min-width: 0;
}

.count-text strong {
  display: block;
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 4px;
}

.count-text span {
  display: block;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.4;
}

.academy-count-banner .btn { flex-shrink: 0; }

@media (max-width: 700px) {
  .academy-count-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 16px;
  }
  .academy-count-banner::before { width: 100%; height: 6px; top: 0; left: 0; }
}

/* Parent waitlist section */
.parent-waitlist {
  background: linear-gradient(135deg, var(--green-tint) 0%, white 100%);
  padding: clamp(64px, 9vw, 100px) 0;
}

.waitlist-card {
  max-width: 720px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--green-soft);
  border-radius: var(--r-xl);
  padding: clamp(40px, 5vw, 56px);
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.waitlist-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 200, 12, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.waitlist-card h2 {
  margin-top: 16px;
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  position: relative;
}

.waitlist-card p {
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 28px;
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
}

.waitlist-form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}

.waitlist-form input[type="email"] {
  flex: 1;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  font-size: 1rem;
  background: white;
  color: var(--ink);
  transition: border-color var(--t-fast) var(--ease);
  min-width: 0;
}

.waitlist-form input[type="email"]:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-soft);
}

.waitlist-form .btn {
  flex-shrink: 0;
  padding: 16px 26px;
}

.waitlist-card small {
  display: block;
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--muted);
  position: relative;
}

.waitlist-success {
  display: none;
  background: var(--green-soft);
  border: 1px solid var(--green);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  color: var(--green-darker);
  font-weight: 600;
  margin-top: 16px;
  position: relative;
}

.waitlist-success.show { display: block; }

/* Academy form success state */
.academy-success {
  background: white;
  border: 2px solid var(--green);
  border-radius: var(--r-xl);
  padding: clamp(32px, 5vw, 48px);
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 200, 12, 0.12);
}

.academy-success[hidden] { display: none; }

.academy-success-inner { max-width: 520px; margin: 0 auto; }

.academy-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(0, 200, 12, 0.25);
}

.academy-success-icon svg {
  width: 36px;
  height: 36px;
}

.academy-success h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--ink);
}

.academy-success p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0 0 12px;
}

.academy-success p strong { color: var(--ink); }

@media (max-width: 560px) {
  .waitlist-form { flex-direction: column; }
  .waitlist-form .btn { width: 100%; }
}

/* Comparison table */
.comparison-wrapper {
  margin-top: 48px;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: white;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.3fr 1.2fr 1fr 1fr;
  border-bottom: 1px solid var(--line-soft);
}

.comparison-row:last-child { border-bottom: none; }

.comparison-row > div {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 0.95rem;
  line-height: 1.4;
}

.comparison-header {
  background: var(--ink);
  color: white;
  font-weight: 800;
}

.comparison-header > div {
  padding: 24px;
  font-size: 1rem;
  text-align: center;
  color: white;
  position: relative;
}

.comparison-header > div:first-child {
  text-align: left;
  background: var(--ink-soft);
}

.comparison-header .col-clubble {
  background: var(--green);
  color: white;
  position: relative;
}

.comparison-header .col-clubble::before {
  content: 'BEST VALUE';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: var(--r-full);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.comparison-header .col-clubble {
  padding-top: 38px !important;
}

.comparison-header .platform-name {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.comparison-header .platform-tag {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.85;
  margin-top: 2px;
  letter-spacing: 0.02em;
}

.comparison-row .feature-label {
  background: var(--bg-soft);
  font-weight: 700;
  color: var(--ink);
}

.comparison-row .cell-clubble {
  background: var(--green-tint);
  color: var(--ink);
  font-weight: 600;
  position: relative;
}

.comparison-row .cell-clubble::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--green);
}

.comparison-row .cell-positive,
.comparison-row .cell-clubble .icon-yes {
  color: var(--green-darker);
}

.comparison-row .cell-negative {
  color: var(--muted);
}

.comparison-icon {
  display: inline-flex;
  align-items: flex-start;
  gap: 6px;
  font-weight: 600;
}

.comparison-icon svg {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  max-width: 18px;
  min-height: 18px;
  max-height: 18px;
  flex: 0 0 18px;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
  margin-top: 2px;
}

.icon-yes { color: var(--green-darker); }
.icon-no { color: #c44; opacity: 0.7; }

.comparison-footer {
  background: var(--bg-soft);
  padding: 24px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

.comparison-footer strong { color: var(--ink); }

/* =========================================
   BATCH 1.5: PRESTIGE + UAE PRIDE + HOW TO JOIN
   ========================================= */

/* Prestige banner (replaces academy counter) */
.prestige-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: white;
  border: 1px solid var(--green-soft);
  border-radius: var(--r-xl);
  padding: 22px 30px;
  margin-bottom: 40px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.prestige-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
}

.prestige-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-tint);
  border-radius: 50%;
  color: var(--green-darker);
}

.prestige-icon svg { width: 28px; height: 28px; }

.prestige-text {
  flex: 1;
  min-width: 0;
}

.prestige-text strong {
  display: block;
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 4px;
}

.prestige-text span {
  display: block;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.4;
}

.prestige-banner .btn { flex-shrink: 0; }

@media (max-width: 700px) {
  .prestige-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 16px;
  }
  .prestige-banner::before { width: 100%; height: 6px; top: 0; left: 0; }
}

/* UAE Pride section */
/* UAE PRIDE — full bleed image with floating glass card */
.uae-pride {
  position: relative;
  background: var(--bg-soft);
  padding: 80px 32px;
  overflow: hidden;
}

.uae-pride-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.uae-pride-image-bg {
  position: relative;
  width: 100%;
  max-width: 420px;
  justify-self: end;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  aspect-ratio: 9 / 16;
}

.uae-pride-image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.uae-pride-image-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.25) 100%);
  pointer-events: none;
}

.uae-pride-overlay-wrap {
  display: flex;
  align-items: center;
  width: 100%;
}

.uae-pride-card {
  background: transparent;
  padding: 0;
  border-radius: 0;
  max-width: 540px;
  width: 100%;
  box-shadow: none;
  border: none;
}

.uae-pride-card h2 {
  margin: 14px 0 14px;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
}

.uae-pride-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 14px;
}

.uae-pride-card p.uae-pride-lead {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.5;
}

.uae-pride-card p.uae-pride-payoff {
  margin-top: 6px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.5;
}

.uae-pride-card p.uae-pride-payoff strong {
  color: var(--green-darker);
  font-weight: 800;
}

.uae-pride-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.uae-pride-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}

.uae-pride-pill svg {
  width: 14px !important;
  height: 14px !important;
  min-width: 14px;
  max-width: 14px;
  min-height: 14px;
  max-height: 14px;
  flex: 0 0 14px;
  color: var(--green-darker);
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 900px) {
  .uae-pride {
    padding: 0;
    background: var(--ink);
  }
  .uae-pride-inner {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: none;
    position: relative;
    min-height: 620px;
  }
  .uae-pride-image-bg {
    position: absolute;
    inset: 0;
    max-width: none;
    justify-self: stretch;
    border-radius: 0;
    box-shadow: none;
    aspect-ratio: auto;
    z-index: 1;
  }
  .uae-pride-image-bg::after {
    background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 100%);
  }
  .uae-pride-overlay-wrap {
    position: relative;
    z-index: 2;
    padding: 48px 18px;
    min-height: 620px;
    justify-content: center;
  }
  .uae-pride-card {
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
    border-radius: 20px;
    padding: clamp(24px, 5vw, 36px);
  }
  .uae-pride-card h2 { font-size: 1.7rem; }
  .uae-pride-card p { font-size: 0.98rem; }
  .uae-pride-pill { background: rgba(255,255,255,0.92); }
}

/* How to Join page specific */
.howtojoin-hero {
  background: linear-gradient(180deg, var(--green-tint) 0%, white 100%);
  padding: clamp(80px, 10vw, 120px) 0 clamp(56px, 7vw, 80px);
  text-align: center;
}

.howtojoin-hero .h-display {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.howtojoin-hero .lead {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.howtojoin-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 32px;
}

.howtojoin-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: white;
  border: 1px solid var(--green-soft);
  border-radius: var(--r-full);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.howtojoin-pill svg {
  width: 16px;
  height: 16px;
  color: var(--green-darker);
}

/* Step cards */
.step-cards {
  display: grid;
  gap: 24px;
  margin-top: 56px;
}

.step-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  align-items: flex-start;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: all var(--t-base) var(--ease);
  position: relative;
}

.step-card:hover {
  border-color: var(--green-soft);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.step-card-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 1.7rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.step-card-content p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.step-card-checklist {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.step-card-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.4;
}

.step-card-checklist svg {
  width: 16px;
  height: 16px;
  color: var(--green-darker);
  flex-shrink: 0;
  margin-top: 3px;
}

.step-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--green-darker);
  font-weight: 700;
}

.step-card-meta svg { width: 14px; height: 14px; }

/* Step card with in-app screenshot */
.step-card.has-phone {
  grid-template-columns: 100px 1fr 196px;
  align-items: center;
  gap: 28px;
}
.step-card.has-phone .step-card-content { align-self: center; }

.step-phone {
  position: relative;
  width: 196px;
  align-self: center;
  cursor: zoom-in;
  border: 0;
  background: none;
  padding: 0;
}
.step-phone img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
  filter: drop-shadow(0 16px 34px rgba(10, 13, 18, 0.16));
  transition: transform var(--t-base) var(--ease), filter var(--t-base) var(--ease);
}
.step-phone:hover img,
.step-phone:focus-visible img {
  transform: translateY(-4px) scale(1.015);
  filter: drop-shadow(0 22px 44px rgba(10, 13, 18, 0.22));
}
.step-phone-zoom {
  position: absolute;
  bottom: 14px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(10, 13, 18, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  pointer-events: none;
  transition: background var(--t-fast) var(--ease);
}
.step-phone:hover .step-phone-zoom { background: var(--green); }
.step-phone-zoom svg { width: 16px; height: 16px; color: white; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(10, 13, 18, 0.82);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-base) var(--ease), visibility var(--t-base) var(--ease);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(420px, 92vw);
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 30px;
  filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.5));
  transform: scale(0.94);
  transition: transform var(--t-base) var(--ease);
}
.lightbox.open img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease);
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.28); }
.lightbox-close svg { width: 22px; height: 22px; }

/* Lightbox gallery navigation */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease);
}
.lightbox-nav:hover { background: rgba(255, 255, 255, 0.28); }
.lightbox-prev { left: 22px; }
.lightbox-next { right: 22px; }
.lightbox-nav svg { width: 26px; height: 26px; }
.lightbox-nav[hidden] { display: none; }
.lightbox-counter {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.lightbox-counter[hidden] { display: none; }

/* Sample profile showcase (3 screens) */
.profile-showcase {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 28px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.profile-screen { width: 230px; }

@media (max-width: 600px) {
  .profile-showcase {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 4px 4px 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .profile-screen {
    flex: 0 0 auto;
    width: 196px;
    scroll-snap-align: center;
  }
  .lightbox-nav { width: 44px; height: 44px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

@media (max-width: 760px) {
  .step-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }
  .step-card.has-phone {
    grid-template-columns: 1fr;
    gap: 18px;
    justify-items: start;
  }
  .step-phone {
    width: 188px;
    margin: 4px auto 0;
    align-self: center;
  }
  .step-card-num {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
  .step-card-checklist {
    grid-template-columns: 1fr;
  }
}

/* What you need callout */
.requirements-callout {
  background: white;
  border: 1px solid var(--green-soft);
  border-radius: var(--r-xl);
  padding: clamp(32px, 5vw, 48px);
  box-shadow: var(--shadow-sm);
  margin-top: 48px;
}

.requirements-callout h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.requirements-callout p {
  color: var(--muted);
  margin-bottom: 24px;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.req-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-soft);
  border-radius: var(--r-lg);
  font-weight: 600;
  color: var(--ink);
  font-size: 0.92rem;
}

.req-item svg {
  width: 20px;
  height: 20px;
  color: var(--green-darker);
  flex-shrink: 0;
}

.req-item small {
  display: block;
  font-weight: 500;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
}

@media (max-width: 700px) {
  .requirements-grid {
    grid-template-columns: 1fr;
  }
}

/* Final reassurance strip */
.reassure-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.reassure-card {
  text-align: center;
  padding: 32px 24px;
}

.reassure-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green-darker);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.reassure-card .icon svg { width: 28px; height: 28px; }

.reassure-card h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.reassure-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .reassure-strip { grid-template-columns: 1fr; gap: 12px; }
}

/* =========================================
   iOS SAFARI SVG FIX
   Global safety rules to prevent SVGs from
   blowing up to full width when no explicit
   width/height attributes are set
   ========================================= */

/* Default safe SVG sizing - applies to ALL inline SVGs */
svg:not([width]):not([height]) {
  width: 1em;
  height: 1em;
}

/* Specific icon containers - constrain SVG sizes inside them */
.uae-pride-pill svg,
.howtojoin-pill svg,
.comparison-icon svg,
.step-card-meta svg,
.step-card-checklist svg,
.req-item svg,
.reassure-card .icon svg,
.benefit-icon svg,
.safe-card .icon svg,
.howitworks .step svg {
  flex-shrink: 0 !important;
  max-width: 100%;
  max-height: 100%;
}

/* Specific size enforcements */
.howtojoin-pill svg {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px;
  max-width: 16px;
}

.step-card-meta svg {
  width: 14px !important;
  height: 14px !important;
  min-width: 14px;
  max-width: 14px;
}

.step-card-checklist svg {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px;
  max-width: 16px;
}

.req-item svg {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px;
  max-width: 20px;
}

.reassure-card .icon svg {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px;
  max-width: 28px;
}

.benefit-icon svg,
.safe-card .icon svg {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px;
  max-width: 28px;
}

.howitworks .step svg {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px;
  max-width: 38px;
}

.faq-q-icon svg {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  max-width: 18px;
}

.social-row svg,
.footer-brand svg,
.nav-toggle svg,
.mobile-menu-close svg {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px;
  max-width: 24px;
}

.btn svg,
.store-btn svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  max-width: 18px;
}

.store-btn svg {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px;
}

.for-academies-list svg {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  max-width: 18px;
}

.hero-micro-item svg {
  width: 14px !important;
  height: 14px !important;
  min-width: 14px;
  max-width: 14px;
}

.floating-badge .icon svg {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px;
  max-width: 20px;
}

.prestige-icon svg {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px;
  max-width: 28px;
}

/* =========================================
   IMPROVED MOBILE COMPARISON TABLE
   Cleaner card-based layout on small screens
   ========================================= */

@media (max-width: 900px) {
  .comparison-wrapper {
    background: transparent;
    box-shadow: none;
    margin-top: 32px;
  }

  /* Hide the desktop header on mobile - higher specificity */
  .comparison-row.comparison-header,
  .comparison-wrapper .comparison-header { display: none !important; }

  /* Each row becomes a card */
  .comparison-row {
    display: block !important;
    grid-template-columns: none !important;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 0 !important;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
  }

  .comparison-row > div {
    padding: 16px 20px !important;
    border-bottom: 1px solid var(--line-soft);
    background: transparent;
    margin: 0 !important;
  }

  .comparison-row > div:last-child { border-bottom: none; }

  /* Feature label becomes the card header */
  .comparison-row .feature-label {
    background: var(--ink) !important;
    color: white !important;
    font-size: 0.95rem;
    font-weight: 800;
    padding: 14px 20px !important;
    border-bottom: none;
  }

  /* Reset cell-clubble desktop positioning */
  .comparison-row .cell-clubble {
    background: var(--green-tint) !important;
    padding-left: 20px !important;
    position: relative;
  }

  .comparison-row .cell-clubble::before {
    content: "CLUBBLE" !important;
    position: static !important;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    display: block !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    color: var(--green-darker) !important;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 6px;
    padding: 0 !important;
    box-shadow: none !important;
    border-radius: 0;
  }

  .comparison-row .cell-positive::before,
  .comparison-row .cell-negative::before {
    content: attr(data-label);
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
  }

  .comparison-row .feature-label::before { display: none !important; }

  /* Mobile comparison icon adjustments */
  .comparison-icon {
    align-items: flex-start;
  }
}

/* =========================================
   VIDEO TESTIMONIALS SECTION
   ========================================= */

.video-testimonials {
  background: var(--bg-soft);
  padding: clamp(72px, 9vw, 110px) 0;
  position: relative;
  overflow: hidden;
}

.video-testimonials::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,200,12,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 820px;
  }
}

.video-card {
  background: white;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--t-base) var(--ease);
  border: 1px solid var(--line-soft);
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.video-frame {
  position: relative;
  aspect-ratio: 9/16;
  max-height: 600px;
  background: var(--ink);
  overflow: hidden;
  cursor: pointer;
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-frame .video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}

.video-frame.playing .video-poster,
.video-frame.playing .video-play-btn,
.video-frame.playing .video-overlay {
  opacity: 0;
  pointer-events: none;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.45) 100%);
  z-index: 2;
  transition: opacity var(--t-base) var(--ease);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.96);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  transition: all var(--t-base) var(--ease);
  border: none;
  cursor: pointer;
}

.video-play-btn::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 22px solid var(--ink);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 6px;
}

.video-frame:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: white;
}

.video-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
  padding: 6px 12px;
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.video-tag .dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
}

.video-quote {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.85) 50%);
  color: white;
  z-index: 3;
  pointer-events: none;
}

.video-quote p {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.video-quote .video-cite {
  font-size: 0.82rem;
  font-weight: 500;
  opacity: 0.9;
  letter-spacing: 0.01em;
}

.video-card-info {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line-soft);
}

.video-card-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green-darker);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.video-card-meta strong {
  display: block;
  font-size: 0.95rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.video-card-meta span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 2px;
}

@media (max-width: 760px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 480px;
  }
  .video-frame {
    max-height: none;
  }
  .video-play-btn {
    width: 64px;
    height: 64px;
  }
}


/* ============================================
   FOR ACADEMIES — NEW CONVERSION SECTIONS
   ============================================ */

/* Social proof section — Kylie video + academy logos */
.academies-proof {
  padding: 56px 0 32px;
  background: var(--bg-soft);
}

.proof-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

.proof-video {
  width: 100%;
}

.proof-copy h2 {
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.proof-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.proof-logo {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: white;
  border: 1px solid var(--line-soft);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.proof-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 900px) {
  .proof-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 520px;
  }
  .proof-video { max-width: 360px; margin: 0 auto; }
  .proof-logos { justify-content: center; }
}

/* ROI banner — between pricing and profile preview */
.roi-banner {
  max-width: 880px;
  margin: 48px auto 0;
  background: linear-gradient(135deg, var(--green-tint) 0%, white 100%);
  border: 2px solid var(--green-soft);
  border-radius: 20px;
  padding: 28px 32px;
}

.roi-banner-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.roi-icon {
  width: 56px;
  height: 56px;
  background: var(--green);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.roi-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.roi-banner p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--ink);
}

.roi-banner strong {
  color: var(--green-darker);
  font-weight: 800;
}

@media (max-width: 640px) {
  .roi-banner {
    padding: 22px 22px;
    margin-top: 36px;
  }
  .roi-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .roi-banner p { font-size: 0.98rem; }
}

/* Profile preview section — what parents see */
.profile-preview { padding: 80px 0; }

/* New: screen-rotator carousel — single phone screen rotating through steps */
.screen-rotator {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: 56px;
  max-width: 960px;
  margin: 56px auto 0;
  align-items: center;
}

.screen-rotator-phone {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.screen-rotator-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19;
  border-radius: 28px;
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.05);
}

.screen-rotator-img {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  z-index: 1;
  display: block;
}

.screen-rotator-img.active {
  opacity: 1;
  z-index: 2;
}

.screen-rotator-info {
  text-align: left;
}

.screen-rotator-step {
  display: inline-block;
  background: var(--green);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-full);
  box-shadow: 0 4px 12px rgba(0, 200, 12, 0.25);
  margin-bottom: 16px;
}

.screen-rotator-title {
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 14px;
  min-height: 2.4em;
}

.screen-rotator-caption {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0 0 24px;
  min-height: 4.8em;
}

.screen-rotator-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.screen-rotator-dot {
  width: 32px;
  height: 6px;
  border-radius: 3px;
  background: var(--line);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease;
}

.screen-rotator-dot.active {
  background: var(--green);
  width: 48px;
}

.screen-rotator-dot:hover { background: var(--green-soft); }
.screen-rotator-dot.active:hover { background: var(--green); }

@media (max-width: 768px) {
  .screen-rotator {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 360px;
    text-align: center;
  }
  .screen-rotator-info { text-align: center; }
  .screen-rotator-dots { justify-content: center; }
  .screen-rotator-title { min-height: 0; }
  .screen-rotator-caption { min-height: 0; }
  .screen-rotator-phone { max-width: 260px; }
  .profile-preview { padding: 56px 0; }
}

/* Legacy preview-grid styles kept for any other usage */
.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 56px auto 0;
  align-items: start;
}

.preview-shot {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--line-soft);
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  text-align: center;
}

.preview-shot img {
  width: 100%;
  max-width: 240px;
  height: auto;
  margin: 0 auto 20px;
  display: block;
  border-radius: 16px;
}

.preview-caption {
  text-align: left;
}

.preview-caption strong {
  display: block;
  font-size: 1.02rem;
  color: var(--ink);
  margin-bottom: 6px;
}

.preview-caption p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

@media (max-width: 768px) {
  .preview-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 420px;
  }
}

/* Academy FAQ */
.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: var(--green);
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--green-darker);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: '−';
  transform: rotate(0deg);
}

.faq-item p {
  padding: 0 24px 22px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.98rem;
}

@media (max-width: 640px) {
  .faq-item summary {
    padding: 18px 20px;
    font-size: 0.96rem;
  }
  .faq-item p {
    padding: 0 20px 20px;
    font-size: 0.94rem;
  }
}

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translate(-50%, 160%);
  width: min(680px, calc(100% - 32px));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 22px;
  z-index: 1100;
  transition: transform 0.35s var(--ease);
}
.cookie-banner.show { transform: translate(-50%, 0); }
.cookie-banner-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}
.cookie-banner-text a { color: var(--green-darker); font-weight: 600; }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    bottom: 12px;
    padding: 16px 18px;
  }
  .cookie-banner-actions { justify-content: flex-end; }
}

/* =========================================================
   LANGUAGE SWITCHER
   ========================================================= */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: var(--r-full);
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
  white-space: nowrap;
  transition: border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.lang-switch:hover { border-color: var(--green); color: var(--green-darker); }
.lang-switch svg { width: 15px; height: 15px; opacity: 0.7; }
.mobile-menu .lang-switch { width: fit-content; margin-top: 8px; }

/* =========================================================
   RTL / ARABIC SUPPORT
   Applies when <html dir="rtl"> (Arabic pages)
   ========================================================= */
html[dir="rtl"] body {
  font-family: "Tajawal", "Cairo", "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
html[dir="rtl"] { text-align: right; }

/* Mirror nav and CTAs */
html[dir="rtl"] .nav-links { padding-right: 0; }
html[dir="rtl"] .hero-cta,
html[dir="rtl"] .hero-micro,
html[dir="rtl"] .final-cta-buttons,
html[dir="rtl"] .for-academies-cta { flex-wrap: wrap; }

/* Arrows in CTAs point the natural reading way in RTL */
html[dir="rtl"] .hero-primary-cta svg,
html[dir="rtl"] .accent + * svg { transform: scaleX(-1); }

/* Lists: bullets / check icons sit on the right */
html[dir="rtl"] .for-academies-list li,
html[dir="rtl"] .hero-micro-item,
html[dir="rtl"] .uae-pride-pill { flex-direction: row-reverse; }
html[dir="rtl"] .for-academies-list li svg { margin-left: 10px; margin-right: 0; }

/* Eyebrow dot on the correct side */
html[dir="rtl"] .eyebrow .dot { margin-left: 6px; margin-right: 0; }

/* Section heads stay centered (they already are) */
html[dir="rtl"] .section-head { text-align: center; }

/* Floating hero badges flip to the opposite corners */
html[dir="rtl"] .floating-badge { flex-direction: row-reverse; }
html[dir="rtl"] .floating-badge-1 { left: auto; right: -20px; }
html[dir="rtl"] .floating-badge-2 { right: auto; left: -10px; }

/* FAQ rows: question text right, icon left */
html[dir="rtl"] .faq-q { flex-direction: row-reverse; text-align: right; }

/* Footer columns read right */
html[dir="rtl"] .footer-bottom-links { flex-direction: row-reverse; }

/* Trust + steps numbering unaffected, but keep step number spacing logical */
html[dir="rtl"] .step { text-align: center; }

/* Form input direction */
html[dir="rtl"] .waitlist-form input { text-align: right; }

/* Marquee keeps its animation; content direction stays LTR-safe for logos */
html[dir="rtl"] .marquee-item { flex-direction: row-reverse; }

/* Store buttons label block */
html[dir="rtl"] .store-btn { flex-direction: row-reverse; }
html[dir="rtl"] .store-btn-label { text-align: right; }

/* Cookie banner mirrors */
html[dir="rtl"] .cookie-banner { flex-direction: row-reverse; }
html[dir="rtl"] .cookie-banner-actions { flex-direction: row-reverse; }
