/* ============================================================
   CLIQUE NA PRÁTICA — style.css v2.0
   2026 Design Standards: Bento Grid · Aurora · Noise Texture
   Variable Fonts · Kinetic Typography · WCAG 2.2 · Mobile-First
   ============================================================ */

/* ── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  /* Brand */
  --orange:        hsl(20, 100%, 57%);
  --orange-light:  hsl(35, 100%, 60%);
  --purple:        hsl(276, 61%, 46%);
  --purple-light:  hsl(271, 91%, 65%);
  --gold:          hsl(51, 100%, 50%);
  --green:         hsl(142, 71%, 45%);
  --red:           hsl(0, 84%, 60%);

  /* Neutrals */
  --ink-900:   hsl(240, 20%, 5%);
  --ink-800:   hsl(240, 17%, 9%);
  --ink-700:   hsl(240, 15%, 12%);
  --ink-600:   hsl(240, 12%, 18%);
  --ink-500:   hsl(240, 8%, 40%);
  --ink-300:   hsl(240, 5%, 65%);
  --ink-100:   hsl(240, 5%, 92%);
  --ink-50:    hsl(240, 8%, 97%);
  --white:     hsl(0, 0%, 100%);

  /* Gradients */
  --grad-main:   linear-gradient(135deg, var(--orange) 0%, var(--purple-light) 55%, var(--purple) 100%);
  --grad-gold:   linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  --grad-aurora: linear-gradient(135deg, hsl(276,61%,46%) 0%, hsl(210,80%,50%) 40%, hsl(20,100%,57%) 100%);

  /* Surface */
  --surface-dark:  rgba(255,255,255,0.03);
  --border-dark:   rgba(255,255,255,0.07);
  --border-subtle: rgba(255,255,255,0.12);
  --shadow-dark:   0 20px 60px rgba(0,0,0,0.5);
  --shadow-glow:   0 0 60px rgba(255,107,53,0.25);

  /* Surface Light */
  --surface-light:  rgba(0,0,0,0.04);
  --border-light:   rgba(0,0,0,0.08);

  /* Layout */
  --max-w:    1200px;
  --pad-x:    clamp(16px, 4vw, 48px);
  --pad-sect: clamp(64px, 8vw, 112px);

  /* Typography */
  --font:      'Outfit', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', 'Outfit', system-ui, sans-serif;

  /* Radius */
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-2xl:  40px;
  --r-full: 9999px;

  /* Easing */
  --ease-out:    cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-expo:   cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  background: var(--ink-900);
  color: var(--ink-100);
  line-height: 1.65;
}

img, video { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── PERFORMANCE ───────────────────────────────────────── */
.section-light, .section-dark { content-visibility: auto; }

/* ── REDUCE MOTION ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ── FOCUS STYLES (WCAG 2.2) ───────────────────────────── */
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
  border-radius: var(--r-sm);
}

/* ── NOISE OVERLAY ─────────────────────────────────────── */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' 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)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ── AURORA BACKGROUND ─────────────────────────────────── */
.aurora-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.aurora-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  will-change: transform;
}

.orb-1 {
  width: 700px; height: 700px;
  top: -200px; left: -150px;
  background: radial-gradient(circle, hsl(276,61%,46%) 0%, transparent 70%);
  animation: orbFloat1 18s ease-in-out infinite alternate;
}

.orb-2 {
  width: 600px; height: 600px;
  top: 30vh; right: -200px;
  background: radial-gradient(circle, hsl(20,100%,57%) 0%, transparent 70%);
  animation: orbFloat2 22s ease-in-out infinite alternate;
}

.orb-3 {
  width: 500px; height: 500px;
  bottom: 10vh; left: 10vw;
  background: radial-gradient(circle, hsl(200,80%,50%) 0%, transparent 70%);
  animation: orbFloat3 16s ease-in-out infinite alternate;
}

.orb-4 {
  width: 400px; height: 400px;
  bottom: -100px; right: 5vw;
  background: radial-gradient(circle, hsl(51,100%,50%) 0%, transparent 70%);
  animation: orbFloat1 20s ease-in-out infinite alternate-reverse;
}

@keyframes orbFloat1 {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(60px, 80px) scale(1.15); }
}
@keyframes orbFloat2 {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(-80px, 60px) scale(1.1); }
}
@keyframes orbFloat3 {
  0%   { transform: translate(0,0) scale(0.9); }
  100% { transform: translate(40px,-60px) scale(1.2); }
}

/* ── SCROLL PROGRESS ───────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--grad-main);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ── CONTAINER ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  position: relative;
  z-index: 2;
}

.section-light { background: var(--ink-50); }
.section-dark  { background: var(--ink-800); }

/* ── SECTION HEADERS ───────────────────────────────────── */
.section-header { margin-bottom: clamp(36px,5vw,64px); }
.section-header.centered { text-align: center; display: flex; flex-direction: column; align-items: center; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,107,53,0.1);
  border: 1px solid rgba(255,107,53,0.25);
  padding: 6px 16px;
  border-radius: var(--r-full);
  margin-bottom: 14px;
}
.tag-warm  { color: var(--orange-light); background: rgba(255,159,28,0.1); border-color: rgba(255,159,28,0.25); }
.tag-green { color: var(--green);        background: rgba(34,197,94,0.1);  border-color: rgba(34,197,94,0.25); }

.section-title {
  font-family: var(--font);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.12;
  text-wrap: balance;
  color: var(--ink-800);
  margin-bottom: 12px;
  font-variation-settings: "wght" 900;
}
.section-title.dark  { color: var(--ink-900); }
.section-title.light { color: var(--ink-50); }

.section-sub { font-size: 17px; color: var(--ink-500); margin-bottom: 0; }
.section-sub.dark { color: var(--ink-500); }

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

/* ── BUTTONS ───────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  min-height: 56px; /* WCAG touch target */
  font-family: var(--font);
  font-size: clamp(14px, 2vw, 17px);
  font-weight: 800;
  font-variation-settings: "wght" 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  background: var(--grad-main);
  border-radius: var(--r-full);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s var(--ease-out);
  box-shadow: 0 4px 32px rgba(255,107,53,0.35), 0 1px 0 rgba(255,255,255,0.12) inset;
  cursor: pointer;
  will-change: transform;
  animation: btnGlow 3s ease-in-out infinite;
}

@keyframes btnGlow {
  0%, 100% { box-shadow: 0 4px 32px rgba(255,107,53,0.35), 0 1px 0 rgba(255,255,255,0.12) inset; }
  50%       { box-shadow: 0 8px 64px rgba(255,107,53,0.6), 0 0 24px rgba(168,85,247,0.3), 0 1px 0 rgba(255,255,255,0.12) inset; }
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn-primary:hover { transform: translateY(-3px) scale(1.015); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(-1px) scale(1); }

.btn-icon { font-size: 18px; transition: transform 0.25s var(--ease-spring); }
.btn-primary:hover .btn-icon { transform: translateX(5px); }

.btn-xl { padding: 22px 52px; font-size: clamp(16px, 2.2vw, 20px); }

.btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  min-height: 44px;
  background: var(--grad-main);
  color: var(--white);
  border-radius: var(--r-full);
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s;
}
.btn-sm:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(255,107,53,0.45); }

/* ── URGENCY BAR ───────────────────────────────────────── */
#urgency-bar {
  position: sticky;
  top: 0;
  z-index: 500;
  background: linear-gradient(90deg, hsl(260,40%,10%) 0%, hsl(0,30%,10%) 50%, hsl(260,40%,10%) 100%);
  border-bottom: 1px solid rgba(255,107,53,0.2);
  padding: 9px 16px;
}

.urgency-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-100);
}

.urgency-flame { font-size: 16px; }

.urgency-pill {
  background: rgba(255,107,53,0.2);
  border: 1px solid rgba(255,107,53,0.4);
  color: var(--orange);
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: 12px;
  animation: pillPulse 2s ease-in-out infinite;
}

@keyframes pillPulse {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.7; }
}

/* ── COUNTDOWN ─────────────────────────────────────────── */
.countdown { display: flex; align-items: center; gap: 5px; }

.cd-block {
  display: flex;
  align-items: baseline;
  gap: 2px;
  background: rgba(255,107,53,0.15);
  border: 1px solid rgba(255,107,53,0.3);
  border-radius: var(--r-sm);
  padding: 3px 9px;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.cd-block small { font-size: 9px; color: var(--ink-300); text-transform: uppercase; letter-spacing: 0.08em; }
.cd-sep { font-size: 18px; font-weight: 900; color: var(--orange); }

/* ── PURCHASE NOTIFICATION ─────────────────────────────── */
.purchase-notif {
  position: fixed;
  bottom: 88px;
  left: 16px;
  z-index: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(15,15,26,0.95);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--green);
  border-radius: var(--r-md);
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transform: translateX(calc(-100% - 20px));
  transition: transform 0.5s var(--ease-spring);
  max-width: 272px;
  font-size: 13px;
}

.purchase-notif.show { transform: translateX(0); }

.notif-icon { font-size: 26px; }
.notif-body { display: flex; flex-direction: column; gap: 2px; }
.notif-body strong { color: var(--green); font-size: 14px; }
.notif-body span { color: var(--ink-300); }

.notif-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: dotBlink 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes dotBlink { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.4; transform:scale(0.8); } }

/* ── HERO ──────────────────────────────────────────────── */
#hero {
  display: flex;
  align-items: center;
  padding: clamp(72px, 10vw, 112px) 0 clamp(64px, 8vw, 96px);
  position: relative;
  background: var(--ink-800);
  border-top: 1px solid var(--border-dark);
}

/* Hero como segunda dobra — sem full-screen height */
.hero-second {
  min-height: auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 800px;
  margin: 0 auto;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

/* HERO COPY */
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: var(--green);
  padding: 8px 18px;
  border-radius: var(--r-full);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  width: fit-content;
  max-width: 100%;
  white-space: normal;
  text-align: center;
  opacity: 0;
  transform: translateY(-10px);
}

.badge-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: dotBlink 1.5s infinite;
}

.hero-title {
  font-family: var(--font);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 900;
  font-variation-settings: "wght" 900;
  line-height: 1.08;
  text-wrap: balance;
  color: var(--ink-50);
}

.title-line { display: block; }
.title-gradient {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-sub {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 400;
  font-variation-settings: "wght" 400;
  color: var(--ink-300);
  margin-top: 6px;
}

.hero-desc {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--ink-300);
  max-width: 520px;
  line-height: 1.75;
}
.hero-desc strong { color: var(--ink-50); }

.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-300);
}
.stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }
.rating-text strong { color: var(--ink-50); }

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.micro-copy {
  font-size: 12px;
  color: var(--ink-500);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* DEVICE STRIP */
.device-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  padding: 12px 0;
  border-top: 1px solid var(--border-dark);
  width: 100%;
  align-self: stretch;
}
.device-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-500);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.device-logos {
  display: flex;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-300);
  animation: marqueeScroll 18s linear infinite;
  white-space: nowrap;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 16px;
}

/* VIDEO CARD */
.video-card {
  width: 100%;
  max-width: 480px;
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px var(--border-subtle);
  animation: heroFloat 5s ease-in-out infinite;
  will-change: transform;
}

@keyframes heroFloat {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-14px) rotate(1deg); }
}

.video-thumb { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,15,0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: background 0.3s;
}
.video-card:hover .video-overlay { background: rgba(10,10,15,0.3); }

.play-btn {
  position: relative;
  width: 72px; height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  animation: playRingPulse 2.5s ease-out infinite;
}
.play-ring-1 { animation-delay: 0s; }
.play-ring-2 { animation-delay: 1.25s; }

@keyframes playRingPulse {
  0%   { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.play-icon {
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--orange);
  position: relative;
  z-index: 1;
  transition: transform 0.2s var(--ease-spring);
}
.video-card:hover .play-icon { transform: scale(1.1); }

.video-label {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* FLOATING PROOF CARDS */
.proof-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(15,15,26,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-100);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  white-space: nowrap;
}

.pc-top    { top: 4%; left: -8%; animation: floatY1 3.8s ease-in-out infinite; }
.pc-bottom { bottom: 8%; right: -8%; animation: floatY2 4.2s ease-in-out infinite; }

@keyframes floatY1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes floatY2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.pc-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: white;
  font-weight: 700;
  flex-shrink: 0;
}
.pc-icon { font-size: 28px; }
.pc-info { display: flex; flex-direction: column; gap: 2px; }
.pc-info strong { font-size: 13px; }
.pc-info span { color: var(--ink-300); font-size: 11px; }
.pc-stars { color: var(--gold); font-size: 11px; }

/* RESULT PILL */
.result-pill {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.35);
  color: var(--green);
  border-radius: var(--r-full);
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.rp-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: dotBlink 1.5s infinite;
}

/* ── STATS / BENTO ─────────────────────────────────────── */
.stats-section {
  padding: 0;
  background: var(--ink-800);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.stats-bento {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 1px;
  background: var(--border-dark);
}

.stat-tile {
  background: var(--ink-800);
  padding: clamp(24px, 4vw, 40px) clamp(20px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.stat-tile:hover { background: var(--ink-700); }

.stat-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-main);
  opacity: 0;
  transition: opacity 0.3s;
}
.stat-tile:hover::before { opacity: 0.03; }

.stat-tile.tile-highlight {
  background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(123,47,190,0.08));
  border-left: 2px solid var(--orange);
}

.stat-num {
  font-family: var(--font);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  font-variation-settings: "wght" 900;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-num-big {
  font-family: var(--font);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}

.stat-label { font-size: 13px; color: var(--ink-300); font-weight: 500; }
.stat-old   { font-size: 12px; color: var(--ink-500); text-decoration: line-through; margin-top: 2px; }

.stat-sparkline {
  position: absolute;
  bottom: 0; right: 0;
  width: 80px; height: 32px;
  background: linear-gradient(to right, transparent, rgba(255,107,53,0.08));
  clip-path: polygon(0 100%, 20% 60%, 40% 75%, 60% 30%, 80% 50%, 100% 10%, 100% 100%);
}

/* ── PAIN / BENTO ──────────────────────────────────────── */
.section-light { padding: var(--pad-sect) 0; }
.section-dark  { padding: var(--pad-sect) 0; }
#how-it-works  { padding: var(--pad-sect) 0; }

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

.pain-tile {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: clamp(20px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.pain-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-expo);
}
.pain-tile:hover::before { transform: scaleX(1); }
.pain-tile:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }

.pt-wide { grid-column: span 2; }

.pain-emoji { font-size: 36px; }

.pain-tile h3 {
  font-family: var(--font);
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 700;
  color: var(--ink-900);
}

.pain-tile p { font-size: 14px; color: var(--ink-500); line-height: 1.65; }

.pain-resolution {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.pr-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-light), transparent);
  min-width: 40px;
}

.pr-text {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--ink-800);
  font-weight: 500;
  text-align: center;
  flex-shrink: 0;
  max-width: 520px;
  text-wrap: balance;
}

.pr-highlight {
  font-family: var(--font);
  font-weight: 800;
  color: var(--orange);
}

/* ── HOW IT WORKS ──────────────────────────────────────── */
.steps-track {
  display: flex;
  gap: 0;
  align-items: flex-start;
  margin-top: 52px;
  position: relative;
}

.step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.step-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--grad-main);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(255,107,53,0.35);
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  transition: transform 0.3s var(--ease-spring);
}
.step-item:hover .step-circle { transform: scale(1.1); }

.step-num {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 900;
  color: white;
}

.step-connector {
  position: absolute;
  top: 36px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: var(--border-light);
  z-index: 1;
}

.step-connector-fill {
  height: 100%;
  background: var(--grad-main);
  width: 0%;
  transition: width 1s var(--ease-expo);
}

.step-connector-fill.active { width: 100%; }

.step-content { padding: 0 clamp(12px, 2vw, 24px); }

.step-content h3 {
  font-family: var(--font);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  color: var(--ink-50);
  margin-bottom: 10px;
}

.step-content p { font-size: 14px; color: var(--ink-300); line-height: 1.7; }

/* ── BEFORE / AFTER ────────────────────────────────────── */
.ba-wrapper {
  display: flex;
  gap: 20px;
  align-items: stretch;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.ba-before, .ba-after {
  flex: 1;
  min-width: 260px;
  background: var(--ink-700);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ba-label-chip {
  text-align: center;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  padding: 10px;
}
.before-chip { background: rgba(239,68,68,0.15); color: var(--red); }
.after-chip  { background: rgba(34,197,94,0.15);  color: var(--green); }

.ba-visual {
  height: 260px;
  overflow: hidden;
  position: relative;
}
.ba-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.ba-after:hover .ba-visual img { transform: scale(1.05); }

.bad-sim {
  background: linear-gradient(135deg, var(--ink-900), var(--ink-800));
  display: flex;
  align-items: center;
  justify-content: center;
}
.bad-grid {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0px, transparent 1px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0px, transparent 1px);
  background-size: 6px 6px;
}
.bad-content {
  position: relative;
  text-align: center;
  color: var(--ink-500);
  z-index: 1;
}
.bad-icon { font-size: 48px; display: block; margin-bottom: 12px; filter: grayscale(1); }
.bad-content p { font-size: 13px; }

.ba-list { padding: 16px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.ba-list li { font-size: 14px; display: flex; align-items: center; gap: 8px; }

.bad-item  { color: var(--ink-500); }
.bad-item::before  { content: '✗'; color: var(--red); font-weight: 700; }
.good-item { color: var(--ink-300); }
.good-item::before { content: '✓'; color: var(--green); font-weight: 700; }

.ba-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 20px 0;
}

.ba-arrow-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.ba-arrow-circle {
  width: 52px; height: 52px;
  background: var(--grad-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  font-weight: 900;
  box-shadow: 0 4px 20px rgba(255,107,53,0.4);
  animation: arrowPulse 2s ease-in-out infinite;
}
@keyframes arrowPulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.08); }
}

.ba-arrow-wrap span { font-size: 11px; color: var(--ink-500); text-align: center; white-space: nowrap; }

/* GALLERY */
.gallery-section { margin-top: 16px; }
.gallery-title { font-family: var(--font); font-size: 22px; font-weight: 700; color: var(--ink-50); margin-bottom: 20px; text-align: center; }

.gallery-bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.gt-wide { grid-column: span 2; }

.gallery-tile { border-radius: var(--r-lg); overflow: hidden; position: relative; background: var(--ink-700); }
.gt-tall img { width: 100%; height: 300px; object-fit: cover; transition: transform 0.6s; }
.gallery-tile:hover img { transform: scale(1.05); }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  padding: 40px 14px 12px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: white;
}
.gallery-tag { font-weight: 600; }
.gallery-stars { color: var(--gold); }

.gt-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  background: linear-gradient(135deg, rgba(123,47,190,0.15), rgba(255,107,53,0.08));
  border: 1px solid var(--border-dark);
}

.gallery-cta-inner {
  text-align: center;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.gc-icon { font-size: 44px; }
.gallery-cta-inner p { font-size: 14px; color: var(--ink-300); line-height: 1.6; }

/* ── MODULES BENTO ─────────────────────────────────────── */
.modules-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 16px;
}

.module-tile {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: clamp(20px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s, border-color 0.25s;
  cursor: default;
}

.module-tile::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-expo);
}
.module-tile:hover::after { transform: scaleX(1); }
.module-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  border-color: rgba(255,107,53,0.2);
}

.mt-featured { grid-column: span 2; flex-direction: row; gap: 20px; align-items: flex-start; }
.mt-featured .mt-body { display: flex; flex-direction: column; gap: 8px; }
.mt-wide { grid-column: span 2; flex-direction: row; gap: 20px; align-items: flex-start; }
.mt-wide .mt-body { display: flex; flex-direction: column; gap: 8px; flex: 1; }

.mt-number {
  font-family: var(--font);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
}

.mt-icon { font-size: 28px; flex-shrink: 0; }

.module-tile h3 {
  font-family: var(--font);
  font-size: clamp(15px, 1.8vw, 17px);
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1.3;
}
.module-tile p { font-size: 13px; color: var(--ink-500); line-height: 1.65; }

.mt-bonus {
  background: linear-gradient(135deg, #fffbeb, #fff8e1);
  border: 2px solid var(--gold);
  box-shadow: 0 4px 20px rgba(255,215,0,0.15);
}
.mt-bonus-tag {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--grad-gold);
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--r-full);
  letter-spacing: 0.08em;
}
.mt-bonus h3 { color: hsl(30, 80%, 30%); }
.mt-bonus p  { color: hsl(30, 40%, 50%); }

/* ── FOR WHOM BENTO ────────────────────────────────────── */
.whom-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.whom-tile {
  background: var(--surface-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 36px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform 0.25s var(--ease-spring), background 0.25s, border-color 0.25s;
  backdrop-filter: blur(8px);
}
.whom-tile:hover {
  transform: translateY(-6px);
  background: rgba(255,107,53,0.06);
  border-color: rgba(255,107,53,0.3);
  box-shadow: var(--shadow-dark);
}
.wt-featured { border-color: rgba(255,107,53,0.3); }

.wt-icon { font-size: 44px; }
.whom-tile h3 { font-family: var(--font); font-size: clamp(15px, 1.8vw, 18px); font-weight: 700; color: var(--ink-50); }
.whom-tile p  { font-size: 13px; color: var(--ink-300); line-height: 1.7; }

.wt-cta {
  background: linear-gradient(135deg, rgba(255,107,53,0.12), rgba(123,47,190,0.08));
  border-color: rgba(255,107,53,0.3);
  justify-content: center;
}
.wt-cta p { font-size: 16px; font-weight: 600; color: var(--ink-100); }

/* ── BONUSES ───────────────────────────────────────────── */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 52px 0 36px;
}

.bonus-card {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--r-xl);
  padding: 36px 24px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(255,215,0,0.12);
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s;
}
.bonus-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,215,0,0.04), transparent 60%);
}
.bonus-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(255,215,0,0.2); }

.bonus-value-chip {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--grad-gold);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--r-full);
}

.bonus-icon { font-size: 44px; display: block; margin-bottom: 12px; }

.bonus-card h3 {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 8px;
}
.bonus-card p { font-size: 13px; color: var(--ink-500); line-height: 1.65; }

/* VALUE STACK */
.value-stack-bar {
  background: var(--white);
  border: 2px solid var(--border-light);
  border-radius: var(--r-xl);
  overflow: hidden;
  max-width: 540px;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.vsb-inner { padding: clamp(24px, 4vw, 36px); display: flex; flex-direction: column; gap: 10px; }

.vsb-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--ink-500);
  align-items: center;
}
.vsb-val { font-weight: 600; color: var(--ink-800); }

.vsb-divider { height: 1px; background: var(--border-light); margin: 4px 0; }

.vsb-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-700);
}
.vsb-old { text-decoration: line-through; color: var(--ink-500); }

.vsb-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding: 16px 20px;
  background: var(--green);
  border-radius: var(--r-md);
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.25);
  animation: pulse-soft 3s infinite;
}
.vsb-price-row > span { 
  font-size: 18px; 
  font-weight: 800; 
  color: var(--ink-900); 
  text-transform: uppercase;
}

.vsb-price {
  font-family: var(--font);
  font-size: 32px;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}

.vsb-price-row .vsb-price {
  font-size: 44px;
  color: var(--ink-900);
}

/* ── INSTRUCTOR ─────────────────────────────────────────── */
.instructor-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  background: var(--ink-700);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-2xl);
  padding: clamp(32px, 5vw, 56px);
}

.instructor-left { display: flex; flex-direction: column; align-items: center; gap: 16px; }

.instructor-frame {
  width: clamp(200px, 25vw, 280px);
  height: clamp(200px, 25vw, 280px);
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.instructor-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.instructor-frame:hover img { transform: scale(1.06); }

.instructor-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  animation: ringPulse 3s ease-in-out infinite;
}
.r1 { inset: -8px;  border-color: rgba(255,107,53,0.5); animation-delay: 0s; }
.r2 { inset: -16px; border-color: rgba(255,107,53,0.2); animation-delay: 1s; }

@keyframes ringPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.03); }
}

.ig-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, hsl(270,50%,40%), hsl(0,80%,55%), hsl(40,100%,55%));
  color: white;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s;
}
.ig-badge:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(131,58,180,0.4); }

.instructor-stats {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.ins-stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.ins-num {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 900;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ins-stat span:last-child { font-size: 11px; color: var(--ink-300); }

.instructor-right { display: flex; flex-direction: column; gap: 16px; }

.instructor-name {
  font-family: var(--font);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900;
  color: var(--ink-50);
}

.instructor-badge {
  display: inline-flex;
  padding: 5px 14px;
  background: rgba(123,47,190,0.15);
  border: 1px solid rgba(123,47,190,0.3);
  color: var(--purple-light);
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  width: fit-content;
}

.instructor-right p { font-size: 15px; color: var(--ink-300); line-height: 1.75; }
.instructor-right p strong { color: var(--ink-50); }

.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: linear-gradient(135deg, hsl(270,50%,40%), hsl(0,80%,55%), hsl(40,100%,55%));
  color: white;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 14px;
  width: fit-content;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s;
}
.ig-link:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(131,58,180,0.4); }

/* ── TESTIMONIALS ──────────────────────────────────────── */
.testimonials-outer { overflow: hidden; margin: 48px 0 24px; }

.testimonials-track {
  display: flex;
  gap: 20px;
  will-change: transform;
}

.t-card {
  min-width: calc(33.333% - 14px);
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: clamp(20px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s, border-color 0.25s;
}
.t-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,107,53,0.3);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.t-top { display: flex; align-items: flex-start; gap: 12px; }

.t-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: white;
  flex-shrink: 0;
}

.t-name { display: block; font-family: var(--font); font-size: 15px; font-weight: 700; color: var(--ink-900); }
.t-device { font-size: 12px; color: var(--ink-500); margin-top: 3px; }
.t-stars { margin-left: auto; color: var(--gold); font-size: 14px; letter-spacing: 1px; white-space: nowrap; }

.t-quote {
  font-size: 14px;
  color: var(--ink-600);
  line-height: 1.75;
  font-style: italic;
  border-left: 3px solid var(--orange);
  padding-left: 14px;
}

.t-nav { display: flex; align-items: center; justify-content: center; gap: 16px; }

.t-btn {
  width: 44px; height: 44px;
  min-height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border-light);
  color: var(--ink-800);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s var(--ease-spring);
}
.t-btn:hover { background: var(--orange); border-color: var(--orange); color: white; transform: scale(1.1); }

.t-dots { display: flex; gap: 8px; }

.t-dot {
  width: 8px; height: 8px;
  border-radius: var(--r-full);
  background: var(--border-light);
  border: none;
  cursor: pointer;
  transition: background 0.3s, width 0.3s var(--ease-spring);
  min-height: 8px;
}
.t-dot.active { background: var(--orange); width: 24px; }

/* ── GUARANTEE ─────────────────────────────────────────── */
.guarantee-card {
  display: flex;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
  background: var(--ink-700);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-2xl);
  padding: clamp(32px, 5vw, 56px);
  flex-wrap: wrap;
}

.guarantee-left { flex-shrink: 0; width: clamp(140px, 18vw, 200px); }
.guarantee-left img { width: 100%; border-radius: var(--r-lg); filter: drop-shadow(0 4px 16px rgba(255,215,0,0.25)); }

.guarantee-right { display: flex; flex-direction: column; gap: 14px; }

.guarantee-title {
  font-family: var(--font);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--ink-50);
}

.guarantee-right p { font-size: 15px; color: var(--ink-300); line-height: 1.75; }
.guarantee-right p strong { color: var(--orange); }

.guarantee-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }

.gpill {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  background: hsla(20, 100%, 57%, 0.1);
  border: 1px solid hsla(20, 100%, 57%, 0.25);
  padding: 5px 14px;
  border-radius: var(--r-full);
}

/* ── PRICING ───────────────────────────────────────────── */
.pricing-section { position: relative; }

.pricing-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 52px;
}

.pricing-card {
  background: var(--white);
  border: 2px solid rgba(255,107,53,0.4);
  border-radius: var(--r-2xl);
  max-width: 600px;
  width: 100%;
  position: relative;
  box-shadow:
    0 0 0 4px rgba(255,107,53,0.08),
    0 24px 80px rgba(0,0,0,0.08);
  overflow: hidden;
}

.pricing-top-badge {
  background: var(--grad-main);
  color: white;
  text-align: center;
  padding: 10px;
  font-family: var(--font);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.pricing-content { padding: clamp(24px, 4vw, 40px); }

.pricing-name {
  font-family: var(--font);
  font-size: 28px;
  font-weight: 900;
  color: var(--ink-900);
  margin-bottom: 4px;
}

.pricing-sub { font-size: 14px; color: var(--ink-500); margin-bottom: 24px; }

.pricing-includes {
  background: var(--ink-50);
  border-radius: var(--r-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
}

.pi-item { font-size: 14px; color: var(--ink-700); }
.bonus-pi { color: var(--ink-800); font-weight: 500; }

.pricing-value-block { text-align: center; margin-bottom: 20px; }

.pv-from { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 2px; }
.pv-from span { font-size: 13px; color: var(--ink-500); }
.pv-old { font-size: 18px; color: var(--ink-400); text-decoration: line-through; }

.pv-by { font-size: 13px; color: var(--ink-500); margin-bottom: 4px; }

.pv-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  line-height: 1;
  margin-bottom: 6px;
}
.pv-currency { font-family: var(--font); font-size: 24px; font-weight: 700; color: var(--green); margin-top: 12px; }
.pv-amount   { font-family: var(--font); font-size: 72px; font-weight: 900; color: var(--green); line-height: 1; }
.pv-cents    { font-family: var(--font); font-size: 22px; font-weight: 700; color: var(--green); margin-top: 8px; }

.pv-installment { font-size: 14px; color: var(--ink-500); }
.pv-installment strong { color: var(--ink-800); }

.pricing-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 10px 16px;
  background: rgba(255,107,53,0.06);
  border: 1px solid rgba(255,107,53,0.15);
  border-radius: var(--r-md);
  font-size: 14px;
  color: var(--orange);
  font-weight: 600;
  flex-wrap: wrap;
}

.pt-cd { font-family: var(--font); font-size: 18px; font-weight: 900; color: var(--orange); }

.btn-checkout { width: 100%; font-size: 16px; padding: 20px; margin-bottom: 16px; border-radius: var(--r-lg); }

.pricing-trust {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--ink-500);
  margin-bottom: 16px;
}
.trust-item { display: flex; align-items: center; gap: 4px; }

.payment-logos {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.pl-badge {
  padding: 5px 12px;
  background: var(--ink-50);
  border: 1px solid var(--border-light);
  border-radius: var(--r-sm);
  font-size: 11px;
  font-weight: 800;
  color: var(--ink-600);
  letter-spacing: 0.05em;
}

.pricing-urgency-block {
  max-width: 560px;
  padding: 16px 20px;
  background: rgba(239,68,68,0.06);
  border: 1px solid rgba(239,68,68,0.15);
  border-radius: var(--r-md);
  font-size: 13px;
  color: var(--ink-500);
  text-align: center;
  line-height: 1.6;
}
.pricing-urgency-block strong { color: var(--red); }

/* ── FAQ ───────────────────────────────────────────────── */
.faq-list {
  max-width: 780px;
  margin: 52px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--ink-700);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item:hover { border-color: rgba(255,107,53,0.3); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-100);
  cursor: pointer;
  gap: 16px;
  text-align: left;
  min-height: 56px;
  transition: color 0.2s;
}
.faq-q:hover, .faq-q[aria-expanded="true"] { color: var(--orange); }

.faq-chevron {
  font-size: 22px;
  font-weight: 300;
  color: var(--orange);
  flex-shrink: 0;
  display: inline-block;
  transition: transform 0.35s var(--ease-spring);
  line-height: 1;
}
.faq-q[aria-expanded="true"] .faq-chevron { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-expo);
}
.faq-a.open { max-height: 300px; }

.faq-a p {
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--ink-300);
  line-height: 1.8;
}
.faq-a p strong { color: var(--ink-50); }

/* ── FINAL CTA ─────────────────────────────────────────── */
#final-cta { padding: var(--pad-sect) 0; background: var(--ink-900); }

.final-card {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  padding: clamp(52px, 8vw, 96px) clamp(24px, 5vw, 72px);
  text-align: center;
  border: 1px solid var(--border-subtle);
}

.final-aurora {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 20% 50%, rgba(123,47,190,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 80% 50%, rgba(255,107,53,0.25) 0%, transparent 60%),
    linear-gradient(135deg, rgba(10,10,15,0.97), rgba(15,15,26,0.97));
}

.final-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.final-icon { font-size: 64px; }

.final-title {
  font-family: var(--font);
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 900;
  color: var(--ink-50);
  text-wrap: balance;
  max-width: 640px;
}

.final-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--ink-300);
  max-width: 540px;
  line-height: 1.7;
  text-wrap: balance;
}
.final-sub strong { color: var(--ink-50); }

.final-price {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 15px;
  color: var(--ink-300);
}
.final-price strong { font-family: var(--font); font-size: 32px; color: var(--green); }

.final-micro { font-size: 12px; color: var(--ink-500); }

.final-cd {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 14px;
  color: var(--orange);
  font-weight: 600;
}
.fcd-nums { font-family: var(--font); font-size: 20px; font-weight: 900; }

/* ── FOOTER ────────────────────────────────────────────── */
#footer {
  background: var(--ink-900);
  border-top: 1px solid var(--border-dark);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink-100);
}
.footer-logo strong { color: var(--orange); }

.footer-copy { font-size: 12px; color: var(--ink-500); line-height: 1.8; }
.footer-copy a { color: var(--orange); transition: color 0.2s; }
.footer-copy a:hover { color: var(--orange-light); text-decoration: underline; }

.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { font-size: 12px; color: var(--ink-500); transition: color 0.2s; }
.footer-nav a:hover { color: var(--ink-100); }

/* ── STICKY CTA ────────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 300;
  transition: transform 0.45s var(--ease-spring);
}
.sticky-cta.show { transform: translateX(-50%) translateY(0); }

.sticky-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  min-height: 52px;
  background: var(--grad-main);
  color: white;
  border-radius: var(--r-full);
  font-family: var(--font);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 32px rgba(255,107,53,0.5), 0 2px 0 rgba(255,255,255,0.1) inset;
  white-space: nowrap;
  animation: btnGlow 3s ease-in-out infinite;
}

.sticky-price {
  background: rgba(255,255,255,0.2);
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: 13px;
}

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  #hero { display: block; padding: 60px 0; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { padding: 20px; }
  .video-card { max-width: 420px; }
  .proof-card { display: none; }
  .result-pill { position: static; transform: none; }
  .stats-bento { grid-template-columns: 1fr 1fr; }
  .modules-bento { grid-template-columns: 1fr 1fr; }
  .mt-featured, .mt-wide { grid-column: span 2; }
  .whom-bento { grid-template-columns: 1fr 1fr; }
  .instructor-card { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .instructor-right { text-align: left; }
  .ig-link { margin: 0 auto; }
  .t-card { min-width: calc(50% - 10px); }
}

@media (max-width: 768px) {
  .pain-bento { grid-template-columns: 1fr; }
  .pt-wide { grid-column: span 1; }
  .gallery-bento { grid-template-columns: 1fr; }
  .gt-cta { min-height: 200px; }
  .modules-bento { grid-template-columns: 1fr; }
  .mt-featured, .mt-wide, .gt-wide { grid-column: span 1; flex-direction: column; }
  .whom-bento { grid-template-columns: 1fr; }
  .steps-track { flex-direction: column; gap: 32px; align-items: flex-start; padding-left: 16px; border-left: 2px solid var(--border-dark); }
  .step-connector { display: none; }
  .step-item { flex-direction: row; gap: 16px; text-align: left; width: 100%; }
  .step-circle { width: 52px; height: 52px; flex-shrink: 0; margin-bottom: 0; }
  .step-num { font-size: 17px; }
  .ba-wrapper { flex-direction: column; }
  .ba-divider { flex-direction: row; }
  .ba-arrow-circle { width: 44px; height: 44px; font-size: 16px; }
  .guarantee-card { flex-direction: column; align-items: center; text-align: center; }
  .guarantee-pills { justify-content: center; }
  .t-card { min-width: 85vw; }
  .stats-bento { grid-template-columns: 1fr 1fr; }
  .hero-actions { align-items: stretch; }
  .btn-primary { width: 100%; justify-content: center; }
  .hero-title { text-align: center; }
  .hero-copy { align-items: center; text-align: center; }
  .device-strip { justify-content: center; }
  .hero-badge { align-self: center; }
  .hero-rating { justify-content: center; }
  .pain-resolution { flex-direction: column; gap: 12px; }
  .pr-line { width: 100%; height: 1px; }
}

@media (max-width: 480px) {
  .hero-badge { font-size: 11px; padding: 6px 12px; }
  .stats-bento { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }
  .urgency-inner { font-size: 11px; gap: 6px; }
  .hero-title { font-size: clamp(22px, 7vw, 28px); max-width: 100%; word-break: break-word; }
  .title-sub { font-size: 14px; max-width: 100%; white-space: normal; }
  .hero-desc { font-size: 13px; max-width: 100%; word-break: break-word; }
  .sticky-btn { font-size: 12px; padding: 13px 20px; }
  .purchase-notif {
    max-width: 280px;
    font-size: 12px;
    bottom: auto;
    top: 72px;
    left: 50%;
    transform: translateX(-50%) translateY(-150%);
  }
  .purchase-notif.show {
    transform: translateX(-50%) translateY(0);
  }
  .pv-amount { font-size: 56px; }
  /* Aulão Gratuito mobile */
  .ag-inner { grid-template-columns: 1fr; }
  .ag-copy { order: 2; text-align: center; align-items: center; }
  .ag-video-wrap { order: 1; }
  .ag-list { text-align: left; }
  .ag-cta-group { align-items: center; }
}

/* ══════════════════════════════════════════════════════════
   AULÃO GRATUITO — Seção de Vídeo YouTube
══════════════════════════════════════════════════════════ */

.aulaogratuito-section {
  padding: var(--pad-sect) 0;
  position: relative;
  background: var(--ink-900);
  overflow: hidden;
}

/* Aulão como PRIMEIRA dobra — ocupa a tela toda */
.aulaogratuito-hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  /* Espaço extra no topo para a urgency bar fixa */
  padding-top: clamp(80px, 12vw, 140px);
  padding-bottom: clamp(48px, 6vw, 80px);
}

/* Faixa de destaque sutil no fundo */
.aulaogratuito-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 50%, rgba(255,107,53,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 50%, rgba(123,47,190,0.1) 0%, transparent 60%);
  pointer-events: none;
}

/* Layout horizontal 50/50 */
.ag-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

/* ── COPY COLUMN ───────────────────────────────────────── */
.ag-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ag-tag-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ag-live-dot {
  display: inline-block;
  width: 9px; height: 9px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.25);
  animation: livePulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(239,68,68,0.25); }
  50%       { box-shadow: 0 0 0 8px rgba(239,68,68,0.05); }
}

.ag-tag {
  /* Inherits .section-tag, just override color for "live" feel */
  color: var(--red);
  background: rgba(239,68,68,0.1);
  border-color: rgba(239,68,68,0.3);
}

.ag-title {
  font-family: var(--font);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  font-variation-settings: "wght" 900;
  line-height: 1.1;
  color: var(--ink-50);
  text-wrap: balance;
}

.ag-desc {
  font-size: clamp(14px, 1.6vw, 16px);
  color: var(--ink-300);
  line-height: 1.75;
  max-width: 480px;
}
.ag-desc strong { color: var(--ink-50); }
.ag-desc em     { color: var(--orange); font-style: normal; font-weight: 600; }

/* Bullet list */
.ag-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg);
}

.ag-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-100);
  line-height: 1.5;
}

.ag-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  min-width: 22px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 50%;
  font-size: 12px;
  color: var(--green);
  font-weight: 800;
  margin-top: 1px;
}

/* CTA below copy */
.ag-cta-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.ag-micro {
  font-size: 12px;
  color: var(--ink-500);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.ag-micro strong { color: var(--ink-300); }

/* ── VIDEO COLUMN ──────────────────────────────────────── */
.ag-video-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ag-video-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.55),
    0 0 0 1px var(--border-subtle);
}

/* YouTube iframe container — fixed 16:9 ratio */
.ag-video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--ink-800);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.ag-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Placeholder shown when VIDEO_ID not replaced */
.ag-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ink-800), var(--ink-900));
  z-index: 2;
  cursor: pointer;
}

/* Hide placeholder when iframe is real (JS will handle this) */
.ag-placeholder.hidden { display: none; }

.ag-ph-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 24px;
}

.ag-ph-logo { font-size: 52px; }

.ag-ph-title {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 800;
  color: var(--ink-50);
}

.ag-ph-sub {
  font-size: 13px;
  color: var(--ink-500);
}

/* Animated play button on placeholder */
.ag-ph-play {
  position: relative;
  width: 72px; height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: white;
  cursor: pointer;
  margin-top: 8px;
}

.ag-ph-play span {
  position: relative;
  z-index: 2;
  background: var(--grad-main);
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(255,107,53,0.45);
  transition: transform 0.25s var(--ease-spring);
}
.ag-ph-play:hover span { transform: scale(1.1); }

.ag-ph-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255,107,53,0.45);
  animation: phRingPulse 2.5s ease-out infinite;
}
.ag-ph-ring.r1 { inset: 0;   animation-delay: 0s; }
.ag-ph-ring.r2 { inset: -10px; animation-delay: 1.25s; }

@keyframes phRingPulse {
  0%   { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(2);   opacity: 0; }
}

/* Video decorative glow */
.ag-video-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(255,107,53,0.18) 0%, transparent 65%);
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
}

/* Social proof strip below video */
.ag-video-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-full);
}

.ag-proof-avatars {
  display: flex;
  margin-right: 4px;
}

.agpa {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: white;
  border: 2px solid var(--ink-900);
  margin-left: -8px;
}
.agpa:first-child { margin-left: 0; }

.ag-proof-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ag-proof-stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; }

.ag-proof-text span {
  font-size: 12px;
  color: var(--ink-300);
  font-weight: 500;
}

/* ── RESPONSIVE ── Aulão Gratuito ──────────────────────── */
@media (max-width: 900px) {
  .ag-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ag-copy {
    order: 2;
    text-align: center;
    align-items: center;
  }
  .ag-video-wrap { order: 1; }
  .ag-list       { text-align: left; }
  .ag-cta-group  { align-items: center; }
  .ag-desc       { max-width: 100%; }
}

@media (max-width: 480px) {
  .ag-title { font-size: 26px; }
  .ag-video-proof { flex-direction: column; text-align: center; border-radius: var(--r-lg); }
}

@keyframes pulse-soft { 0% { transform: scale(1); } 50% { transform: scale(1.02); } 100% { transform: scale(1); } }
/* Video Testimonials Grid */
.video-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.video-t-card {
  aspect-ratio: 9/16;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid var(--border-dark);
  background: var(--ink-800);
}
.video-t-card iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.testimonials-footer-text {
  text-align: center;
  margin-top: 32px;
  font-size: 16px;
  color: var(--ink-500);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .video-testimonials-grid { grid-template-columns: repeat(2, 1fr); max-width: 720px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 768px) {
  .video-testimonials-grid { grid-template-columns: 1fr; max-width: 340px; }
}
/* Celeb Testimonials Grid */
.celeb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 40px;
  width: 100%;
}
@media (max-width: 768px) {
  .celeb-grid { grid-template-columns: 1fr; }
}
.video-t-card.horizontal {
  aspect-ratio: 16/9;
}
