/* Lead Guru Teach — Premium Design System */

:root {
  --bg: #06060b;
  --bg-elevated: #0c0c14;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-hover: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-bright: rgba(255, 255, 255, 0.15);
  --text: #f4f4f5;
  --text-muted: #a1a1aa;
  --text-dim: #71717a;
  --accent: #6366f1;
  --accent-light: #818cf8;
  --accent-glow: rgba(99, 102, 241, 0.4);
  --gold: #f59e0b;
  --gold-glow: rgba(245, 158, 11, 0.3);
  --gradient-1: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
  --gradient-2: linear-gradient(135deg, #06b6d4 0%, #6366f1 100%);
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --nav-h: 72px;
  --container: 1200px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* Glass */
.glass {
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* Typography */
.gradient-text {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(99, 102, 241, 0.3);
  background: rgba(99, 102, 241, 0.08);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 1.25rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section { padding: 2.5rem 0; position: relative; }
.section--tight { padding: 2rem 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: 999px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s, border-color 0.3s;
  white-space: nowrap;
}

.btn--sm { padding: 0.55rem 1.25rem; font-size: 0.875rem; }
.btn--lg { padding: 1rem 2rem; font-size: 1rem; }
.btn--full { width: 100%; }

.btn--primary {
  background: var(--gradient-1);
  color: #fff;
  box-shadow: 0 4px 24px var(--accent-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.btn--ghost {
  border: 1px solid var(--border-bright);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn--outline {
  border: 1px solid var(--border-bright);
  background: transparent;
  color: var(--text);
  padding: 0.85rem 1.5rem;
}

.btn--outline:hover {
  border-color: var(--accent-light);
  background: rgba(99, 102, 241, 0.1);
}

.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.badge--gold {
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Cursor glow */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

body.mouse-active .cursor-glow { opacity: 1; }

/* Three.js canvas */
#heroCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
}

.nav.scrolled {
  background: rgba(6, 6, 11, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 101;
  transition: opacity 0.2s, transform 0.2s var(--ease);
}

.logo:hover {
  opacity: 0.94;
  transform: translateY(-1px);
}

.logo__mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: block;
  filter: drop-shadow(0 4px 14px rgba(99, 102, 241, 0.35));
}

.logo__wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.05rem;
  line-height: 1.05;
}

.logo__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  color: var(--text);
  white-space: nowrap;
}

.logo__name em {
  font-style: normal;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo__legal {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.logo--footer .logo__mark {
  width: 48px;
  height: 48px;
}

.logo--footer .logo__name {
  font-size: 1.15rem;
}

.logo--footer .logo__legal {
  font-size: 0.68rem;
}

@media (min-width: 900px) {
  .logo__mark { width: 44px; height: 44px; }
  .logo__name { font-size: 1.12rem; }
}

@media (max-width: 420px) {
  .logo__mark { width: 38px; height: 38px; }
  .logo__name { font-size: 0.92rem; }
  .logo__legal { font-size: 0.56rem; letter-spacing: 0.12em; }
}

.nav__links {
  display: none;
  gap: 2rem;
}

.nav__links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav__links a:hover { color: var(--text); }

.nav__cta { display: none; }

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 101;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
  border-radius: 2px;
}

.nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  position: fixed;
  inset: 0;
  background: rgba(6, 6, 11, 0.97);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.nav__mobile.open {
  opacity: 1;
  pointer-events: auto;
}

.nav__mobile a { font-size: 1.25rem; font-weight: 500; }

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
}

/* Hero */
.hero {
  position: relative;
  display: block;
  padding: calc(var(--nav-h) + 0.5rem) 0 1rem;
  z-index: 1;
}

.hero__layout {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
  text-align: center;
}

@media (min-width: 900px) {
  .hero__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "badge badge"
      "title visual"
      "subtitle visual"
      "tags tags"
      "cta cta"
      "stats stats";
    gap: 0.65rem 1.5rem;
    text-align: left;
    align-items: start;
  }

  .hero__badge { grid-area: badge; margin: 0 0 0.15rem; }
  .hero__title { grid-area: title; align-self: end; margin-bottom: 0; }
  .hero__visual { grid-area: visual; align-self: center; }
  .hero__subtitle { grid-area: subtitle; margin: 0; text-align: left; }
  .hero__tags { grid-area: tags; justify-content: flex-start; }
  .hero__cta { grid-area: cta; justify-content: flex-start; }
  .hero__stats { grid-area: stats; margin: 0; max-width: none; }
}

.hero__visual {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.35rem, 1.5vw, 0.55rem);
  width: 100%;
  max-width: 340px;
  margin-inline: auto;
}

@media (min-width: 900px) {
  .hero__visual {
    max-width: 360px;
    margin: 0;
  }
}

.hero-earner {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--border-bright);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

@media (min-width: 900px) {
  .hero-earner {
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
  }
}

.hero-earner--alt {
  transform: none;
}

.hero-earner:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.22);
}

.hero-earner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-earner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 6, 11, 0.98) 0%, rgba(6, 6, 11, 0.35) 50%, rgba(6, 6, 11, 0.05) 100%);
}

.hero-earner__badge {
  position: absolute;
  top: 0.4rem;
  left: 0.4rem;
  z-index: 2;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.22rem 0.42rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.9), rgba(168, 85, 247, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  line-height: 1.2;
}

.hero-earner__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.45rem 0.4rem;
  z-index: 1;
}

.hero-earner__income,
.hero-earner__role {
  display: block;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 800;
  color: #22c55e;
  line-height: 1.1;
  margin-bottom: 0.12rem;
}

.hero-earner__income span {
  font-size: 0.55rem;
  color: var(--text-muted);
  font-weight: 600;
}

.hero-earner__role {
  color: var(--accent-light);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-earner__info strong {
  display: block;
  font-size: clamp(0.58rem, 2.2vw, 0.72rem);
  line-height: 1.2;
}

.hero-earner__info small {
  font-size: 0.52rem;
  color: var(--text-dim);
  display: block;
  margin-top: 0.08rem;
}

@media (min-width: 900px) {
  .hero-earner__info { padding: 0.5rem 0.45rem; }
  .hero-earner__role { font-size: 0.65rem; }
  .hero-earner__info strong { font-size: 0.7rem; }
  .hero-earner__badge { font-size: 0.52rem; }
}

/* Management / Leadership */
.leadership {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.mgmt-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
  padding: 1rem;
  align-items: center;
}

@media (min-width: 600px) {
  .mgmt-card {
    grid-template-columns: 180px 1fr;
    padding: 1.25rem;
    gap: 1.25rem;
  }
}

.mgmt-card__photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--border-bright);
  max-width: 200px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .mgmt-card__photo { margin: 0; max-width: none; }
}

.mgmt-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.mgmt-card__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  border: 1px solid rgba(6, 182, 212, 0.35);
  margin-bottom: 0.5rem;
}

.mgmt-card__body {
  text-align: center;
}

@media (min-width: 600px) {
  .mgmt-card__body { text-align: left; }
}

.mgmt-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.mgmt-card__body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(99, 102, 241, 0.25), transparent),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(168, 85, 247, 0.12), transparent),
    radial-gradient(ellipse 50% 30% at 10% 80%, rgba(6, 182, 212, 0.1), transparent);
  pointer-events: none;
}

.hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin: 0 auto 0.25rem;
  text-align: center;
}

@media (min-width: 900px) {
  .hero__badge { margin: 0 0 0.25rem; }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.hero__subtitle {
  font-size: clamp(0.85rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.55;
}

@media (min-width: 900px) {
  .hero__subtitle { margin: 0; }
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  margin: 0;
}

.hero__tags span {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  transition: border-color 0.3s, color 0.3s, transform 0.3s var(--ease);
}

.hero__tags span:hover {
  border-color: var(--accent-light);
  color: var(--text);
  transform: translateY(-2px);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  max-width: 720px;
  margin: 0 auto;
}

.stat-card {
  padding: 0.75rem 0.5rem;
  text-align: center;
  transition: transform 0.4s var(--ease), border-color 0.3s;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-bright);
}

.stat-card__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card__star { -webkit-text-fill-color: var(--gold); font-size: 0.85em; }
.stat-card__label { font-size: 0.75rem; color: var(--text-dim); margin-top: 0.25rem; display: block; }

.hero__scroll { display: none !important; }

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

@media (max-width: 600px) {
  .stat-card__number { font-size: 1.15rem; }
  .stat-card__label { font-size: 0.65rem; }
  .hero__tags span { font-size: 0.68rem; padding: 0.3rem 0.6rem; }
  .btn--lg { padding: 0.75rem 1.25rem; font-size: 0.9rem; }
  .hero__visual { max-width: min(100%, 300px); gap: 0.3rem; }
  .hero-earner__badge { font-size: 0.46rem; padding: 0.18rem 0.35rem; }
}

/* FOMO Banner */
.fomo-banner {
  position: relative;
  z-index: 2;
  padding: 0.85rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(99, 102, 241, 0.05);
}

.fomo-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.fomo-banner__timer {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 1.25rem;
}

.fomo-banner__label { font-size: 0.85rem; font-weight: 600; white-space: nowrap; }

.countdown--inline {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.countdown--inline strong {
  color: var(--gold);
  font-family: var(--font-display);
}

.fomo-banner__text { font-size: 0.9rem; color: var(--text-muted); }
.fomo-banner__text strong { color: var(--text); }

/* Packages */
.packages { background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.03), transparent); }

/* Package Details — flyer photos + prices */
.package-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pkg-detail {
  position: relative;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  transition: transform 0.5s var(--ease), box-shadow 0.5s, border-color 0.3s;
}

.pkg-detail:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  border-color: color-mix(in srgb, var(--pkg-accent) 35%, var(--border));
}

.pkg-detail__badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--gradient-1);
  color: #fff;
  box-shadow: 0 4px 16px var(--accent-glow);
}

.pkg-detail__head {
  padding: 1.25rem 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.pkg-detail__name {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--pkg-accent, var(--accent-light));
}

.pkg-detail__count {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 500;
}

.pkg-detail__tagline {
  padding: 0 1.25rem 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  border-left: 3px solid var(--pkg-accent, var(--accent));
  margin: 0 1.25rem 0;
  padding-left: 0.85rem;
}

.pkg-detail__flyer {
  margin: 0 1.25rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.pkg-detail__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.pkg-detail__flyer.is-hidden { display: none; }

.pkg-detail__banner {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.pkg-detail__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pkg-detail__banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 6, 11, 0.85), rgba(6, 6, 11, 0.15));
}

.pkg-detail__banner-price {
  position: absolute;
  bottom: 0.85rem;
  right: 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--pkg-accent) 80%, #000);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1;
}

.pkg-detail__courses-wrap {
  margin: 0.85rem 1.25rem 0;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
}

.pkg-detail__courses-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.pkg-detail__courses-title span {
  color: var(--pkg-accent, var(--accent-light));
}

.pkg-detail__courses {
  list-style: none;
  columns: 1;
  gap: 0.5rem;
}

@media (min-width: 600px) {
  .pkg-detail__courses { columns: 2; }
}

@media (min-width: 900px) {
  .pkg-detail__courses { columns: 3; }
}

.pkg-detail__courses li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.4rem 0;
  break-inside: avoid;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pkg-detail__num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  background: color-mix(in srgb, var(--pkg-accent) 20%, rgba(255,255,255,0.06));
  border-radius: 6px;
  color: var(--pkg-accent, var(--accent-light));
}

.pkg-detail__flyer--list {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  padding: 1.5rem;
  color: #111;
}

.pkg-detail__list-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: #111;
}

.pkg-detail__list-title span {
  color: var(--pkg-accent, var(--accent));
}

/* removed duplicate .pkg-detail__courses - consolidated above */

.pkg-detail__pricing {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin: 1rem 1.25rem 0.85rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--pkg-accent) 12%, rgba(255, 255, 255, 0.04));
  border: 1px solid color-mix(in srgb, var(--pkg-accent) 25%, var(--border));
}

.pkg-detail__price-row {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.pkg-detail__label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

.pkg-detail__original {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dim);
  text-decoration: line-through;
  padding: 0.25rem 0.75rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
}

.pkg-detail__deal {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  color: #fff;
  padding: 0.35rem 1rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--pkg-accent), color-mix(in srgb, var(--pkg-accent) 70%, #ec4899));
  box-shadow: 0 4px 20px color-mix(in srgb, var(--pkg-accent) 40%, transparent);
}

.pkg-detail__save {
  margin-left: auto;
  font-size: 0.85rem;
  font-weight: 700;
  color: #22c55e;
  padding: 0.4rem 0.85rem;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.pkg-detail .btn--whatsapp {
  margin: 0 1.25rem 1.25rem;
}

.btn--whatsapp {
  background: #25d366;
  color: #fff;
  padding: 1rem 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35);
  gap: 0.65rem;
}

.btn--whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

.packages__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .packages__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .packages__grid { grid-template-columns: repeat(4, 1fr); }
}

.package-card {
  position: relative;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s, border-color 0.3s;
  overflow: hidden;
}

.package-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 0%), rgba(99, 102, 241, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.package-card:hover::before { opacity: 1; }

.package-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-bright);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.package-card--featured {
  border-color: rgba(99, 102, 241, 0.4);
  background: rgba(99, 102, 241, 0.06);
  box-shadow: 0 0 60px rgba(99, 102, 241, 0.15);
}

@media (min-width: 1100px) {
  .package-card--featured { transform: scale(1.03); }
  .package-card--featured:hover { transform: scale(1.03) translateY(-8px); }
}

.package-card__ribbon {
  position: absolute;
  top: 1rem;
  right: -2rem;
  background: var(--gradient-1);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 2.5rem;
  transform: rotate(45deg);
}

.package-card__tier {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.package-card[data-tier="gold"] .package-card__tier { color: var(--gold); }
.package-card[data-tier="platinum"] .package-card__tier { color: #a78bfa; }
.package-card[data-tier="diamond"] .package-card__tier { color: #67e8f9; }
.package-card[data-tier="startup"] .package-card__tier { color: #f472b6; }

.package-card__price { margin-bottom: 0.5rem; }

.package-card__original {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dim);
  text-decoration: line-through;
}

.package-card__current {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
}

.package-card__save {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.package-card__courses {
  list-style: none;
  flex: 1;
  max-height: 220px;
  overflow-y: auto;
  margin-bottom: 1.25rem;
  padding-right: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.package-card__courses li {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0.35rem 0;
  padding-left: 1rem;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.package-card__courses li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-light);
  font-size: 0.7rem;
}

.package-card__meta {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.package-card__meta span {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
}

.package-card__thumb {
  margin: -1.75rem -1.75rem 1rem;
  height: 140px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  position: relative;
}

.package-card__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 6, 11, 0.9), transparent 60%);
}

.package-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.package-card:hover .package-card__thumb img {
  transform: scale(1.08);
}

.package-card__details-link {
  margin-top: 0.65rem;
  font-size: 0.85rem;
  padding: 0.75rem 1rem;
}

.package-card__more {
  color: var(--accent-light) !important;
  font-weight: 600;
}

.package-card__more::before { content: '→' !important; }

/* Price Compare Bars */
.price-compare {
  margin-bottom: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
}

.price-compare__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

.price-compare__bars {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.price-compare__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  align-items: center;
}

@media (max-width: 600px) {
  .price-compare__row { grid-template-columns: 1fr; gap: 0.5rem; }
}

.price-compare__label {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.price-compare__label strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.price-compare__orig {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-decoration: line-through;
}

.price-compare__track {
  height: 44px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.price-compare__fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--fill-color), color-mix(in srgb, var(--fill-color) 60%, #ec4899));
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 1rem;
  transition: width 1.2s var(--ease);
  box-shadow: 0 0 24px color-mix(in srgb, var(--fill-color) 40%, transparent);
}

.price-compare__fill span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.section-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0.75rem 0 1rem;
  color: var(--text-dim);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* Compare */
.compare__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.compare__tab {
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 0.3s var(--ease);
}

.compare__tab:hover { border-color: var(--border-bright); color: var(--text); }

.compare__tab.active {
  background: var(--gradient-1);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px var(--accent-glow);
}

.compare__table-wrap {
  overflow-x: auto;
  padding: 0;
  border-radius: var(--radius-lg);
}

.compare__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.compare__table th,
.compare__table td {
  padding: 1rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.compare__table th:first-child,
.compare__table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text-muted);
}

.compare__table thead th {
  font-family: var(--font-display);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.02);
}

.compare__table tbody tr {
  transition: background 0.3s;
}

.compare__table tbody tr:hover { background: rgba(255, 255, 255, 0.02); }

.compare__table .highlight {
  background: rgba(99, 102, 241, 0.12);
  color: var(--accent-light);
  font-weight: 700;
  animation: highlight-pulse 0.6s var(--ease);
}

.compare__table tr:first-child td:not(:first-child),
.compare__table tr:nth-child(2) td:not(:first-child) {
  font-family: var(--font-display);
  font-weight: 700;
}

.compare__table tr:nth-child(3) td:not(:first-child) {
  color: #22c55e;
  font-weight: 600;
}

@keyframes highlight-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Why Us */
.why-us__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 600px) { .why-us__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .why-us__grid { grid-template-columns: repeat(4, 1fr); } }

.benefit-card {
  padding: 0;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.3s;
}

.benefit-card__img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}

.benefit-card .benefit-card__icon,
.benefit-card h3,
.benefit-card p {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.benefit-card .benefit-card__icon {
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

.benefit-card p {
  margin-bottom: 1.25rem;
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 102, 241, 0.3);
}

.benefit-card__icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 12px;
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.benefit-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* Success / Testimonials */
.success { background: linear-gradient(180deg, transparent, rgba(168, 85, 247, 0.04), transparent); }

.success__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 900px) { .success__grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.4s var(--ease);
}

.testimonial-card:hover { transform: translateY(-6px); }

.testimonial-card__video {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(168, 85, 247, 0.2));
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}

.testimonial-card__video img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: opacity 0.4s, transform 0.6s var(--ease);
}

.testimonial-card__video:hover img {
  opacity: 0.65;
  transform: scale(1.05);
}

.testimonial-card__video .testimonial-card__play,
.testimonial-card__video > span {
  position: relative;
  z-index: 1;
}

.testimonial-card__video:hover {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.35), rgba(168, 85, 247, 0.35));
}

.testimonial-card__play {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card__stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; }

.testimonial-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-1);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testimonial-card__avatar-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(99, 102, 241, 0.4);
  flex-shrink: 0;
}

.testimonial-card__author strong { display: block; font-size: 0.9rem; }
.testimonial-card__author span { font-size: 0.75rem; color: var(--text-dim); }

.income-chart__bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.income-chart__bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: var(--bar-width, 0%);
  background: var(--gradient-1);
  border-radius: 999px;
  transition: width 1.2s var(--ease);
}

.income-chart .before,
.income-chart .after {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-bottom: 0.35rem;
}

.income-chart .after { color: #22c55e; font-weight: 600; }

/* Categories */
.categories__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) { .categories__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .categories__grid { grid-template-columns: repeat(5, 1fr); } }

.category-card {
  padding: 1.5rem 1.25rem;
  text-align: center;
  cursor: default;
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.4s;
  --cat-color: var(--accent);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--cat-img);
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  transition: opacity 0.4s, transform 0.6s var(--ease);
}

.category-card:hover::before {
  opacity: 0.25;
  transform: scale(1.1);
}

.category-card > * {
  position: relative;
  z-index: 1;
}

.category-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: color-mix(in srgb, var(--cat-color) 40%, transparent);
  box-shadow: 0 16px 40px color-mix(in srgb, var(--cat-color) 15%, transparent);
}

.category-card__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.category-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.category-card p { font-size: 0.75rem; color: var(--text-dim); }

/* CTA Section */
.cta-section { padding: 2.5rem 0; }

.cta-block {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse at center, rgba(99, 102, 241, 0.15), transparent 70%),
    var(--surface);
}

.cta-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-block p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-inline: auto;
}

/* FAQ */
.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq__item {
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq__item[open] { border-color: rgba(99, 102, 241, 0.3); }

.faq__item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--accent-light);
  transition: transform 0.3s var(--ease);
}

.faq__item[open] summary::after { transform: rotate(45deg); }

.faq__item summary:hover { color: var(--accent-light); }

.faq__item p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  animation: faq-open 0.4s var(--ease);
}

@keyframes faq-open {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 1.5rem;
  background: var(--bg-elevated);
  position: relative;
  z-index: 2;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer__brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 1rem 0 1.5rem;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.footer__social a:hover {
  border-color: var(--accent-light);
  color: var(--text);
  background: rgba(99, 102, 241, 0.1);
}

.footer__links h4,
.footer__contact h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__links a {
  font-size: 0.9rem;
  color: var(--text-dim);
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--text); }

.footer__contact p {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.footer__contact a {
  color: var(--accent-light);
  transition: color 0.2s;
}

.footer__contact a:hover { color: var(--text); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
  padding: 0.75rem;
}

.sticky-cta.visible { transform: translateY(0); }

.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  background: rgba(12, 12, 20, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
}

.sticky-cta__text {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

@media (max-width: 600px) {
  .sticky-cta__text { display: none; }
  .sticky-cta__inner { justify-content: center; }
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 5.5rem;
  right: 1.25rem;
  z-index: 89;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  animation: whatsapp-pulse 3s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.6); }
}

@media (max-width: 600px) {
  .whatsapp-float { bottom: 1.25rem; }
  .sticky-cta.visible ~ .whatsapp-float { bottom: 5rem; }
}

/* Social Proof Toast */
.social-proof-toast {
  position: fixed;
  bottom: 6rem;
  left: 1.25rem;
  z-index: 88;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  background: rgba(12, 12, 20, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transform: translateX(-120%);
  transition: transform 0.6s var(--ease);
  max-width: 280px;
}

.social-proof-toast.show { transform: translateX(0); }

.social-proof-toast__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-1);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.social-proof-toast__name { font-size: 0.8rem; font-weight: 600; }
.social-proof-toast__action { font-size: 0.75rem; color: var(--text-dim); }

@media (max-width: 600px) {
  .social-proof-toast { left: 0.75rem; right: 0.75rem; max-width: none; bottom: 5.5rem; }
}

/* Exit Popup */
.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.exit-popup.open {
  opacity: 1;
  pointer-events: auto;
}

.exit-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
}

.exit-popup__content {
  position: relative;
  max-width: 440px;
  width: 100%;
  padding: 2.5rem 2rem;
  text-align: center;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.5s var(--ease);
}

.exit-popup.open .exit-popup__content {
  transform: scale(1) translateY(0);
}

.exit-popup__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  color: var(--text-dim);
  line-height: 1;
  transition: color 0.2s;
}

.exit-popup__close:hover { color: var(--text); }

.exit-popup__content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.exit-popup__content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.exit-popup__content code {
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold);
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
  font-weight: 700;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.countdown__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 64px;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.countdown__item span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
}

.countdown__item small {
  font-size: 0.65rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(16px);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

/* Legal Pages */
.legal-page {
  padding: calc(var(--nav-h) + 3rem) 0 4rem;
  min-height: 80vh;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.legal-page .legal-updated {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  color: var(--accent-light);
}

.legal-page p,
.legal-page li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.legal-page ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-light);
  font-weight: 600;
  margin-bottom: 2rem;
  transition: gap 0.3s;
}

.legal-back:hover { gap: 0.75rem; }

/* Reduced motion */
@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; }
  #heroCanvas { display: none; }
}
