/* ========================================
   FUNNGRO — GLOBAL DESIGN SYSTEM
   Award-Winning Premium CSS
======================================== */

@import url('https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600,700,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ======= CSS CUSTOM PROPERTIES ======= */
:root {
  --bg-primary: #020008;
  --bg-secondary: #0a0015;
  --bg-tertiary: #0d001a;
  --accent-green: #00ff88;
  --accent-purple: #7c3aed;
  --accent-blue: #00c2ff;
  --accent-glow: rgba(0, 255, 136, 0.15);
  --purple-glow: rgba(124, 58, 237, 0.15);
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #4a5568;
  --gradient-1: linear-gradient(135deg, #00ff88, #7c3aed);
  --gradient-2: linear-gradient(135deg, #7c3aed, #00c2ff);
  --gradient-3: linear-gradient(135deg, #00ff88 0%, #00c2ff 50%, #7c3aed 100%);
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.08);
  --card-border-hover: rgba(0, 255, 136, 0.25);
  --nav-height: 72px;
  --section-padding: clamp(80px, 10vw, 140px);
  --max-width: 1280px;
}

/* ======= RESET & BASE ======= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { border: none; cursor: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ======= CUSTOM CURSOR ======= */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.25s cubic-bezier(0.34,1.56,0.64,1), height 0.25s cubic-bezier(0.34,1.56,0.64,1), background 0.25s ease, opacity 0.2s ease;
  will-change: transform;
  mix-blend-mode: difference;
}

.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(0, 255, 136, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}

.cursor-dot.cursor-hover { width: 44px; height: 44px; background: rgba(0, 255, 136, 0.18); backdrop-filter: blur(4px); }
.cursor-ring.cursor-hover { width: 64px; height: 64px; border-color: rgba(0, 255, 136, 0.9); border-width: 2px; }

/* ======= SCROLLBAR ======= */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent-purple); border-radius: 2px; }

/* ======= UTILITY CLASSES ======= */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.gradient-text {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-2 {
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 0;
  background: rgba(0, 255, 136, 0.06);
}

.section-label::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* ======= NAVIGATION ======= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.nav.scrolled {
  background: rgba(2, 0, 8, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-text {
  font-family: 'Clash Display', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-green);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }

.nav-links a.active { color: var(--text-primary); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 0;
  background: transparent;
  border: 1px solid transparent;
  background-image: linear-gradient(var(--bg-primary), var(--bg-primary)), var(--gradient-1);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  color: var(--text-primary);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-cta:hover::before { opacity: 1; }
.nav-cta span { position: relative; z-index: 1; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: flex;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(2, 0, 8, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
  padding: 24px;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu a {
  padding: 14px 16px;
  border-radius: 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.mobile-menu a:hover {
  background: var(--card-bg);
  color: var(--text-primary);
}

.mobile-menu .mobile-cta {
  margin-top: 8px;
  padding: 14px;
  text-align: center;
  background: var(--gradient-1);
  color: #000;
  font-weight: 700;
  border-radius: 0;
}

/* ======= HERO SECTION ======= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

/* Gradient Mesh Background */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  will-change: transform;
  animation: float-orb var(--duration, 14s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  opacity: 0.65;
}

.orb-1 {
  width: clamp(500px, 65vw, 900px);
  height: clamp(500px, 65vw, 900px);
  background: radial-gradient(circle at 40% 40%, rgba(0, 255, 136, 0.55), rgba(0, 255, 136, 0.1) 50%, transparent 75%);
  top: -25%; left: -18%;
  --duration: 18s;
}

.orb-2 {
  width: clamp(420px, 55vw, 780px);
  height: clamp(420px, 55vw, 780px);
  background: radial-gradient(circle at 60% 40%, rgba(124, 58, 237, 0.7), rgba(124, 58, 237, 0.15) 50%, transparent 75%);
  top: 20%; right: -14%;
  --duration: 22s;
  --delay: -5s;
}

.orb-3 {
  width: clamp(350px, 45vw, 650px);
  height: clamp(350px, 45vw, 650px);
  background: radial-gradient(circle at 50% 50%, rgba(0, 194, 255, 0.45), rgba(0, 194, 255, 0.08) 55%, transparent 75%);
  bottom: -5%; left: 25%;
  --duration: 16s;
  --delay: -9s;
}

@keyframes float-orb {
  0%   { transform: translate(0,    0)    scale(1);    }
  20%  { transform: translate(40px, -50px) scale(1.06); }
  45%  { transform: translate(-30px,-20px) scale(0.96); }
  65%  { transform: translate(20px,  40px) scale(1.04); }
  80%  { transform: translate(-40px, 10px) scale(0.98); }
  100% { transform: translate(0,    0)    scale(1);    }
}

/* Noise texture overlay */
.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

/* Dot grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: radial-gradient(circle, rgba(255,255,255,0.18) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(0,0,0,0.6) 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(0,0,0,0.6) 0%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1040px;
  padding: 40px 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 0;
  border: 1px solid rgba(0, 255, 136, 0.3);
  background: rgba(0, 255, 136, 0.06);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

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

.hero-headline {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(56px, 9.5vw, 128px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  overflow: hidden;
  text-shadow: 0 0 80px rgba(0, 255, 136, 0.08);
}

.hero-headline .word {
  display: inline-block;
  margin-right: 0.2em;
  will-change: transform, opacity;
}

.hero-headline .highlight {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtext {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.7;
  will-change: opacity;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 0;
  background: var(--gradient-1);
  color: #000;
  transition: all 0.3s ease;
  transform: translateY(0);
  box-shadow: 0 0 0 0 var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-primary .arrow {
  transition: transform 0.2s ease;
}
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 0;
  border: 1px solid var(--card-border);
  color: var(--text-secondary);
  background: var(--card-bg);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.15);
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}

/* Floating Stats Badges */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.stat-badge {
  padding: 10px 20px;
  border-radius: 0;
  border: 1px solid var(--card-border);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  animation: badge-float var(--delay, 3s) ease-in-out infinite;
  animation-delay: var(--offset, 0s);
  white-space: nowrap;
}

.stat-badge span { color: var(--accent-green); }

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

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
}

.scroll-indicator span {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.scroll-arrow {
  width: 20px;
  height: 30px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 0;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-arrow::before {
  content: '';
  width: 4px;
  height: 6px;
  background: var(--text-secondary);
  border-radius: 2px;
  animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.3; }
}

/* ======= MARQUEE TRUST BAR ======= */
.marquee-section {
  padding: 28px 0;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  background: rgba(255,255,255,0.015);
  overflow: hidden;
  position: relative;
}

.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 200px;
  z-index: 2;
  pointer-events: none;
}

.marquee-section::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary), transparent);
}

.marquee-section::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary), transparent);
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee-scroll 25s linear infinite;
  will-change: transform;
  width: max-content;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.marquee-item:hover { color: var(--accent-green); }

.marquee-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent-purple);
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ======= ABOUT BENTO GRID ======= */
.about-section {
  padding: var(--section-padding) 0;
}

.about-header { margin-bottom: 64px; }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  padding: 36px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.05);
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--accent-glow);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.glass-card:hover {
  border-color: rgba(0, 255, 136, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.15), 0 20px 60px rgba(0, 255, 136, 0.1);
}

.glass-card:hover::before { opacity: 1; }

.bento-main {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-stat {
  grid-column: span 5;
}

.bento-full {
  grid-column: span 4;
}

.bento-icon {
  width: 52px; height: 52px;
  border-radius: 0;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 20px;
  color: var(--accent-green);
}

.bento-main-title {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.bento-main-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 500px;
}

.bento-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.bento-tag {
  padding: 5px 12px;
  border-radius: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--card-border);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

.bento-stat-number {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.bento-stat-label {
  font-size: 14px;
  color: var(--text-secondary);
}

.bento-feature-icon {
  font-size: 26px;
  margin-bottom: 16px;
  color: var(--accent-green);
}

.bento-feature-title {
  font-family: 'Clash Display', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.bento-feature-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ======= HOW IT WORKS ======= */
.how-section {
  padding: var(--section-padding) 0;
  position: relative;
}

.how-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-purple), var(--accent-green), transparent);
  opacity: 0.2;
  transform: translateY(-50%);
}

.how-header { text-align: center; margin-bottom: 80px; }

.steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps-line {
  position: absolute;
  top: 44px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(to right, var(--accent-green), var(--accent-purple));
  opacity: 0.15;
}

.steps-line-animated {
  position: absolute;
  top: 44px;
  left: calc(12.5% + 28px);
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent-green), var(--accent-purple));
  transition: width 1.5s ease;
  border-radius: 2px;
}

.steps-line-animated.animated {
  right: calc(12.5% + 28px);
  width: calc(75% - 56px);
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.step-card:hover {
  border-color: rgba(0, 255, 136, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.18), 0 24px 60px rgba(0, 255, 136, 0.1);
}

.step-number {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.step-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent-purple);
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  margin-bottom: 20px;
}

.step-title {
  font-family: 'Clash Display', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ======= FEATURES STICKY SCROLL ======= */
.features-section {
  padding: var(--section-padding) 0;
}

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

.features-sticky {
  position: sticky;
  top: calc(var(--nav-height) + 60px);
}

.features-sticky-label { margin-bottom: 20px; }

.features-sticky-title {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.features-sticky-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
}

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

.feature-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.3s ease;
  border-left: 2px solid transparent;
  cursor: default;
}

.feature-nav-item.active {
  color: var(--accent-green);
  background: rgba(0, 255, 136, 0.06);
  border-left-color: var(--accent-green);
}

.feature-nav-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.features-scroll { display: flex; flex-direction: column; gap: 20px; }

.feature-card {
  padding: 40px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  border-color: rgba(0, 255, 136, 0.3);
  transform: translateX(4px);
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.18), -4px 0 40px rgba(0, 255, 136, 0.1);
}

.feature-card:hover::after { transform: scaleX(1); }

.feature-card-icon {
  width: 64px; height: 64px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.fc-green { color: var(--accent-green); }
.fc-purple { color: var(--accent-purple); }
.fc-blue { color: #00c2ff; }
.fc-gold { color: #f5a623; }

.fc-green { background: rgba(0, 255, 136, 0.1); border: 1px solid rgba(0, 255, 136, 0.2); }
.fc-purple { background: rgba(124, 58, 237, 0.1); border: 1px solid rgba(124, 58, 237, 0.2); }
.fc-blue { background: rgba(0, 194, 255, 0.1); border: 1px solid rgba(0, 194, 255, 0.2); }
.fc-gold { background: rgba(255, 200, 0, 0.1); border: 1px solid rgba(255, 200, 0, 0.2); }

.feature-card-title {
  font-family: 'Clash Display', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-pill {
  padding: 4px 12px;
  border-radius: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--card-border);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

/* ======= STATS COUNTER SECTION ======= */
.stats-section {
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.03), rgba(124, 58, 237, 0.04));
}

.stats-border-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent 5%, var(--accent-green) 35%, var(--accent-purple) 65%, transparent 95%);
}

.stats-border-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent 5%, var(--accent-purple) 35%, var(--accent-green) 65%, transparent 95%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  position: relative;
  z-index: 1;
}

.stats-divider {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--card-border);
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 0;
  width: 1px;
  height: 60%;
  background: var(--card-border);
}

.stat-value {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.04em;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.stat-label {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ======= TESTIMONIALS CAROUSEL ======= */
.testimonials-section {
  padding: var(--section-padding) 0;
}

.testimonials-header { margin-bottom: 64px; }

.carousel-wrapper {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 20px;
  animation: carousel-scroll 30s linear infinite;
  will-change: transform;
  width: max-content;
}

.carousel-track:hover { animation-play-state: paused; }

@keyframes carousel-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.testimonial-card {
  width: 360px;
  flex-shrink: 0;
  padding: 32px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.05);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(0, 255, 136, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.18), 0 20px 50px rgba(0, 255, 136, 0.1);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Clash Display', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}

.testimonial-info { flex: 1; }

.testimonial-name {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 2px;
}

.testimonial-meta {
  font-size: 12px;
  color: var(--text-secondary);
}

.testimonial-earning {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-green);
  text-align: right;
}

.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.star { color: var(--accent-green); font-size: 13px; }

.testimonial-quote {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
}

/* ======= CTA SECTION ======= */
.cta-section {
  padding: var(--section-padding) 0;
}

.cta-inner {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  padding: clamp(60px, 8vw, 100px) clamp(40px, 6vw, 100px);
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.06), rgba(124, 58, 237, 0.08));
  border: 1px solid rgba(255,255,255,0.06);
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -60%; left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.08), transparent 60%);
  pointer-events: none;
}

.cta-inner::after {
  content: '';
  position: absolute;
  bottom: -60%; right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1), transparent 60%);
  pointer-events: none;
}

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

.cta-title {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ======= FOOTER ======= */
.footer {
  background: var(--bg-secondary);
  position: relative;
}

.footer-gradient-line {
  height: 1px;
  background: linear-gradient(to right, transparent 5%, var(--accent-purple) 35%, var(--accent-green) 65%, transparent 95%);
}

.footer-inner {
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 28px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px; height: 38px;
  border-radius: 0;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.social-link:hover {
  background: rgba(0, 255, 136, 0.1);
  border-color: rgba(0, 255, 136, 0.3);
  color: var(--accent-green);
  transform: translateY(-2px);
}

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

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

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

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

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-legal a:hover { color: var(--text-secondary); }

/* ======= SCROLL ANIMATIONS ======= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: transform, opacity;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ======= SECTION HEADINGS ======= */
.section-title {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 540px;
}

/* ======= TEEN PAGE — HERO SPLIT ======= */
.teen-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  padding: calc(var(--nav-height) + 80px) 0 80px;
  position: relative;
  overflow: hidden;
}

.teen-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.teen-hero-content {
  position: relative;
  z-index: 1;
}

.teen-hero-title {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(50px, 6.5vw, 96px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.96;
  margin-bottom: 24px;
  text-shadow: 0 0 80px rgba(0, 255, 136, 0.08);
}

.typewriter-container {
  display: block;
  min-height: 1.2em;
}

.typewriter {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.typewriter-cursor {
  display: inline-block;
  width: 3px;
  background: var(--accent-green);
  margin-left: 2px;
  animation: cursor-blink 0.8s step-end infinite;
  vertical-align: text-bottom;
  height: 0.85em;
}

@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.teen-hero-text {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
}

.teen-hero-ctas { margin-bottom: 48px; }

.teen-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

.trust-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(0, 255, 136, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--accent-green);
  flex-shrink: 0;
}

/* CSS Phone Mockup */
.phone-mockup-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.3), rgba(0, 255, 136, 0.15), transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: float-orb 6s ease-in-out infinite;
}

.phone-frame {
  width: clamp(240px, 28vw, 320px);
  height: clamp(480px, 56vw, 640px);
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 0;
  border: 2px solid rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), inset 0 0 40px rgba(255,255,255,0.02);
}

.phone-notch {
  width: 100px;
  height: 24px;
  background: var(--bg-primary);
  border-radius: 0;
  margin: 0 auto 20px;
}

.phone-screen { padding: 0 16px; }

.phone-stat-row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.phone-stat-card {
  flex: 1;
  padding: 12px;
  border-radius: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.psc-label { font-size: 9px; color: var(--text-secondary); margin-bottom: 4px; }
.psc-value { font-family: 'Clash Display', sans-serif; font-size: 18px; font-weight: 700; color: var(--accent-green); }

.phone-task-item {
  padding: 12px;
  border-radius: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pti-icon {
  width: 32px; height: 32px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--accent-green);
  flex-shrink: 0;
}

.pti-text { flex: 1; }
.pti-title { font-size: 11px; font-weight: 600; margin-bottom: 2px; }
.pti-sub { font-size: 10px; color: var(--text-secondary); }
.pti-pay { font-size: 12px; font-weight: 700; color: var(--accent-green); }

.phone-notification {
  position: absolute;
  bottom: 24px;
  left: 16px; right: 16px;
  padding: 14px;
  border-radius: 0;
  background: rgba(0, 255, 136, 0.12);
  border: 1px solid rgba(0, 255, 136, 0.25);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: notification-pop 0.5s ease 2s both;
}

@keyframes notification-pop {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.notif-icon { font-size: 18px; color: var(--accent-green); }
.notif-text { flex: 1; }
.notif-title { font-size: 11px; font-weight: 700; color: var(--accent-green); margin-bottom: 1px; }
.notif-sub { font-size: 10px; color: var(--text-secondary); }

/* ======= SKILLS GRID (TEEN PAGE) ======= */
.skills-section { padding: var(--section-padding) 0; }

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 56px;
}

/* 3D Flip Cards */
.skill-flip-card {
  height: 180px;
  perspective: 1000px;
  cursor: default;
}

.skill-flip-inner {
  width: 100%; height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.skill-flip-card:hover .skill-flip-inner {
  transform: rotateY(180deg);
}

.skill-front, .skill-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.skill-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, rgba(0,255,136,0.08), rgba(124,58,237,0.08));
  border-color: rgba(0,255,136,0.2);
  align-items: center;
  text-align: center;
}

.skill-front-icon { font-size: 26px; margin-bottom: 12px; color: var(--accent-green); }
.skill-front-name { font-family: 'Clash Display', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.skill-front-avg { font-size: 11px; color: var(--text-secondary); }

.skill-back-label { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.skill-back-earning { font-family: 'Clash Display', sans-serif; font-size: 22px; font-weight: 800; color: var(--accent-green); margin-bottom: 8px; }
.skill-back-range { font-size: 11px; color: var(--text-secondary); }
.skill-back-cta { margin-top: 12px; font-size: 11px; font-weight: 700; color: var(--accent-green); }

/* ======= SUCCESS STORIES (TEEN PAGE) ======= */
.success-section {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.success-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,255,136,0.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.story-card {
  padding: 36px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.story-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  right: 20px;
  font-family: 'Clash Display', sans-serif;
  font-size: 120px;
  font-weight: 900;
  color: var(--accent-green);
  opacity: 0.05;
  line-height: 1;
}

.story-card:hover {
  border-color: rgba(0, 255, 136, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.18), 0 20px 60px rgba(0, 255, 136, 0.1);
}

.story-quote {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}

.story-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.story-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #000;
  flex-shrink: 0;
}

.story-author-info { flex: 1; }
.story-author-name { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.story-author-meta { font-size: 12px; color: var(--text-secondary); }
.story-earning-badge {
  padding: 4px 10px;
  border-radius: 0;
  background: rgba(0,255,136,0.1);
  border: 1px solid rgba(0,255,136,0.2);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-green);
}

/* ======= FAQ ACCORDION ======= */
.faq-section { padding: var(--section-padding) 0; }

.faq-list {
  max-width: 720px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.05);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(0, 255, 136, 0.2);
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.12);
}

.faq-item.open {
  border-color: rgba(0, 255, 136, 0.3);
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.15);
}

.faq-question {
  width: 100%;
  background: transparent;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: color 0.2s ease;
}

.faq-question:hover { color: var(--accent-green); }
.faq-item.open .faq-question { color: var(--accent-green); }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 0;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  font-style: normal;
}

.faq-item.open .faq-icon {
  background: rgba(0,255,136,0.1);
  border-color: rgba(0,255,136,0.3);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ======= WHATSAPP FLOATING BUTTON ======= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 14px;
  border-radius: 0;
  background: #25d366;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
  cursor: pointer;
  border: none;
  overflow: hidden;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:hover::before { opacity: 1; }

.whatsapp-float:active {
  transform: translateY(-1px) scale(0.98);
}

.whatsapp-float-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.whatsapp-float-text {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.whatsapp-pulse {
  position: absolute;
  top: 0; right: 0;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #fff;
  animation: whatsapp-ping 2s ease-in-out infinite;
}

@keyframes whatsapp-ping {
  0% { transform: scale(1); opacity: 0.8; }
  70% { transform: scale(2.2); opacity: 0; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ======= RESPONSIVE ======= */
@media (max-width: 1024px) {
  .bento-main { grid-column: span 12; min-height: auto; }
  .bento-stat { grid-column: span 6; }
  .bento-full { grid-column: span 4; }

  .features-inner { grid-template-columns: 1fr; gap: 60px; }
  .features-sticky { position: static; }
  .features-nav { display: none; }

  .teen-hero { grid-template-columns: 1fr; }
  .phone-mockup-wrap { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  .success-stories-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ====== TABLET / MOBILE: 768px ====== */
@media (max-width: 768px) {
  /* -- Global overflow lock -- */
  html, body { overflow-x: hidden; max-width: 100%; }
  section, .section-inner, .container { overflow: clip; }

  /* -- Nav -- */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* -- Hero font -- */
  .hero-headline {
    font-size: clamp(36px, 11vw, 48px);
    letter-spacing: -0.03em;
    line-height: 1.05;
  }
  .hero-subtext { font-size: 15px; padding: 0 8px; }
  .hero-content { padding: 24px 16px; }

  /* -- Hero orbs: shrink so they don't overflow -- */
  .orb-1 { width: 340px; height: 340px; top: -10%; left: -20%; }
  .orb-2 { width: 300px; height: 300px; top: 30%; right: -15%; }
  .orb-3 { width: 260px; height: 260px; bottom: 0; left: 10%; }

  /* -- Hero stats -- */
  .hero-stats { gap: 10px; }
  .stat-badge { font-size: 12px; padding: 8px 14px; }

  /* -- Hero CTAs -- */
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-ctas a, .hero-ctas button { width: 100%; justify-content: center; }

  /* -- Bento grid: true single column -- */
  .bento-grid { grid-template-columns: 1fr; gap: 12px; }
  .bento-main, .bento-stat, .bento-full { grid-column: span 1; }

  /* -- How It Works steps -- */
  .steps-container { grid-template-columns: 1fr; gap: 16px; }
  .steps-line, .steps-line-animated { display: none; }

  /* -- Features -- */
  .features-inner { grid-template-columns: 1fr; gap: 40px; }
  .features-sticky { position: static; }
  .features-nav { display: none; }

  /* -- Stats bar -- */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item + .stat-item::before { display: none; }
  .stat-item { border-bottom: 1px solid var(--card-border); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--card-border); }

  /* -- Testimonials -- */
  .testimonial-card { width: min(300px, 85vw); }

  /* -- Success stories -- */
  .success-stories-grid { grid-template-columns: 1fr; }

  /* -- Skills flip grid -- */
  .skills-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* -- Teen hero -- */
  .teen-hero { grid-template-columns: 1fr; }
  .phone-mockup-wrap { display: none; }
  .teen-hero-title { font-size: clamp(36px, 10vw, 48px); line-height: 1.05; }

  /* -- Section padding -- */
  .section { padding: 64px 0; }
  .section-inner { padding: 0 16px; }

  /* -- Footer -- */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  /* -- Disable custom cursor on touch -- */
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
}

/* ====== SMALL MOBILE: 480px ====== */
@media (max-width: 480px) {
  /* -- Hero -- */
  .hero-headline { font-size: clamp(32px, 12vw, 44px); }

  /* -- Steps: true single column -- */
  .steps-container { grid-template-columns: 1fr; }

  /* -- CTAs -- */
  .hero-ctas a, .hero-ctas button { font-size: 14px; padding: 13px 20px; }

  /* -- Skills: single column on tiny screens -- */
  .skills-grid { grid-template-columns: 1fr; }

  /* -- Stats: single column -- */
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; }

  /* -- Cards padding -- */
  .glass-card, .step-card, .story-card { padding: 24px 20px; }
  .feature-card { padding: 28px 20px; }

  /* -- Orbs even smaller -- */
  .orb-1 { width: 220px; height: 220px; }
  .orb-2 { width: 200px; height: 200px; }
  .orb-3 { width: 180px; height: 180px; }
}
