/* ===================================================================
   DETBOX LP - Purple accent on dark slate
   Palette: Slate base + Purple accent (#9333ea)
   =================================================================== */

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

:root {
  /* Slate base */
  --s950: #0c0f1a;
  --s900: #111827;
  --s800: #1e293b;
  --s700: #334155;
  --s600: #475569;
  --s500: #64748b;
  --s400: #94a3b8;
  --s300: #cbd5e1;
  --s200: #e2e8f0;
  --s100: #f1f5f9;

  /* Accent - purple */
  --accent: #9333ea;
  --accent-dim: #7c3aed;
  --accent-bg: rgba(147, 51, 234, 0.06);
  --accent-border: rgba(147, 51, 234, 0.18);
  --accent-tint: rgba(147, 51, 234, 0.12);

  --font: 'Outfit', sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --max-w: 1140px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --section-gap: clamp(2.5rem, 4vw, 3.5rem);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--s400);
  background: var(--s950);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent-dim); color: white; }

.grain {
  position: fixed; inset: 0; z-index: 50; pointer-events: none; opacity: 0.025;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 256px;
}

/* --- Utility -------------------------------------------------------- */
.wrap { max-width: var(--max-w); margin: 0 auto; padding-inline: 1.5rem; }
strong { color: var(--s100); font-weight: 600; }
.section { padding: var(--section-gap) 0; }

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--s100);
  margin-bottom: 2.5rem;
}

.section-sub { color: var(--s500); font-size: 1.05rem; margin-bottom: 2.5rem; }

.tag {
  display: inline-block;
  font-family: var(--mono); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); border: 1px solid var(--accent-border);
  padding: 0.25rem 0.85rem; border-radius: 60px; margin-bottom: 1rem;
}

/* --- Buttons -------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; padding: 0.75rem 1.75rem; border-radius: 10px;
  border: none; cursor: pointer; transition: all 0.35s var(--ease);
}
.btn:active { transform: translateY(1px) scale(0.98); }

.btn-fill {
  background: var(--accent-dim); color: white;
  box-shadow: 0 2px 12px rgba(124, 58, 237, 0.25);
}
.btn-fill:hover {
  background: var(--accent); transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(124, 58, 237, 0.3);
}

.btn-outline {
  background: transparent; color: var(--s300); border: 1px solid var(--s700);
}
.btn-outline:hover {
  border-color: var(--accent-border); color: var(--accent); background: var(--accent-bg);
}

.btn-full { width: 100%; }
.btn-lg { padding: 0.9rem 2.25rem; font-size: 0.95rem; }

/* ===================================================================
   NAV
   =================================================================== */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 40;
  padding: 1rem 0; transition: all 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(12, 15, 26, 0.88);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid rgba(255,255,255,0.04); padding: 0.6rem 0;
}

.nav-wrap {
  max-width: var(--max-w); margin: 0 auto; padding-inline: 1.5rem;
  display: flex; align-items: center; gap: 2rem;
}

.logo {
  display: flex; align-items: center; gap: 0.5rem;
  text-decoration: none; font-weight: 700; font-size: 1.15rem; color: var(--s100); flex-shrink: 0;
}
.logo-mark {
  width: 28px; height: 28px; border-radius: 6px; object-fit: contain;
}

.nav-links { display: flex; gap: 1.75rem; margin-left: auto; }
.nav-links a { text-decoration: none; font-size: 0.85rem; font-weight: 500; color: var(--s500); transition: color 0.25s; }
.nav-links a:hover { color: var(--s100); }

.nav-cta {
  font-family: var(--font); font-weight: 600; font-size: 0.8rem;
  text-decoration: none; padding: 0.5rem 1.15rem; border-radius: 8px;
  background: var(--accent-dim); color: white; flex-shrink: 0; transition: all 0.3s var(--ease);
}
.nav-cta:hover { background: var(--accent); }

.burger {
  display: none; background: none; border: none; cursor: pointer;
  width: 24px; height: 18px; position: relative; margin-left: auto;
}
.burger span, .burger::before, .burger::after {
  content: ''; position: absolute; left: 0; width: 100%; height: 2px;
  background: var(--s300); border-radius: 1px; transition: all 0.3s var(--ease);
}
.burger span { top: 50%; transform: translateY(-50%); }
.burger::before { top: 0; }
.burger::after { bottom: 0; }
.burger.open span { opacity: 0; }
.burger.open::before { top: 50%; transform: translateY(-50%) rotate(45deg); }
.burger.open::after { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ===================================================================
   HERO
   =================================================================== */
.hero { min-height: 100dvh; display: flex; align-items: center; padding-top: 5rem; }

.hero-wrap {
  max-width: var(--max-w); margin: 0 auto; padding: 4rem 1.5rem;
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(3rem, 6vw, 6rem); align-items: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem); font-weight: 800;
  letter-spacing: -0.035em; line-height: 1.05; color: var(--s100); margin-bottom: 1.5rem;
}

.hero-body {
  font-size: 1.1rem; line-height: 1.7; color: var(--s400);
  max-width: 500px; margin-bottom: 2rem;
}

.hero-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.hero-badges .tag { margin-bottom: 0; }
.tag-revit { background: var(--accent-bg); }

.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.hero-aside { display: flex; flex-direction: column; gap: 1.5rem; }

.hero-logo { width: 220px; align-self: center; opacity: 0.9; }

.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }

.stat-card {
  padding: 1.5rem;
  border-top: 1px solid var(--s800);
  border-left: 1px solid var(--s800);
}
.stat-card:nth-child(1), .stat-card:nth-child(2) { border-top-color: var(--s700); }
.stat-card:nth-child(odd) { border-left: none; }

.stat-num { font-family: var(--mono); font-size: 2.5rem; font-weight: 500; color: var(--s100); line-height: 1; }
.stat-plus { font-family: var(--mono); font-size: 1.5rem; color: var(--accent); }
.stat-label {
  display: block; font-family: var(--mono); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--s500); margin-top: 0.35rem;
}

/* ===================================================================
   MARQUEE
   =================================================================== */
.marquee {
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 0.9rem 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 2rem; white-space: nowrap;
  animation: marquee 35s linear infinite; width: max-content;
}
.marquee-track span { font-size: 0.85rem; font-weight: 500; color: var(--s600); }
.dot { display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); opacity: 0.35; vertical-align: middle; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===================================================================
   CAROUSEL
   =================================================================== */
.carousel {
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.04); background: var(--s900);
}
.carousel-track { display: flex; transition: transform 0.5s var(--ease); }
.carousel-slide {
  min-width: 100%; display: flex; align-items: center; justify-content: center; padding: 2rem;
}
.carousel-slide img { max-width: 100%; max-height: 480px; object-fit: contain; border-radius: 8px; }

.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 1.25rem; padding: 1rem; }

.carousel-btn {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--s700);
  background: var(--s900); color: var(--s300); font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
}
.carousel-btn:hover { border-color: var(--accent-border); color: var(--accent); background: var(--accent-bg); }

.carousel-dots { display: flex; gap: 0.4rem; }
.carousel-dot {
  width: 7px; height: 7px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--s700); transition: all 0.3s;
}
.carousel-dot.active { background: var(--accent); }

/* ===================================================================
   VIDEO EMBED
   =================================================================== */
.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.04);
  background: var(--s900);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ===================================================================
   PANELS
   =================================================================== */
.panel {
  margin-bottom: 2.5rem;
  border: 1px solid var(--s800);
  border-radius: 20px;
  overflow: hidden;
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.04) 0%, transparent 60%);
  border-bottom: 1px solid var(--s800);
  cursor: pointer;
  transition: background 0.3s var(--ease);
}

.panel-header:hover {
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.08) 0%, transparent 60%);
}

.panel-toggle {
  margin-left: auto;
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  transform: rotate(-90deg);
}

.panel.open .panel-toggle {
  transform: rotate(0deg);
}

.panel:not(.open) .panel-header {
  border-bottom: none;
}

.panel-number {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--accent);
  border: 1px solid var(--accent-border);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.panel-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--s100);
  letter-spacing: -0.01em;
}

.panel-desc {
  font-size: 0.85rem;
  color: var(--s500);
  margin-top: 0.15rem;
}

.panel-tools {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}

.panel.open .panel-tools {
  max-height: 2000px;
}

.tool-callout {
  display: flex;
  align-items: start;
  gap: 1rem;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  border-right: 1px solid rgba(255,255,255,0.03);
  transition: background 0.3s var(--ease);
}

.tool-callout:hover {
  background: var(--accent-bg);
}

.tool-callout:nth-child(2n) { border-right: none; }
.panel-tools .tool-callout:nth-last-child(-n+2) { border-bottom: none; }
.panel-tools .tool-callout:last-child:nth-child(odd) {
  grid-column: span 2;
  border-right: none;
}

.tool-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 6px;
  image-rendering: crisp-edges;
}

.tool-icon-placeholder {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent-bg), rgba(147, 51, 234, 0.15));
  border: 1px solid var(--accent-border);
}

.tool-callout strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--s200);
  margin-bottom: 0.2rem;
}

.tool-callout p {
  font-size: 0.8rem;
  color: var(--s500);
  line-height: 1.5;
  margin: 0;
}

/* ===================================================================
   DEMOS
   =================================================================== */
.demo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.demo-card {
  border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.04);
  background: var(--s900); transition: all 0.4s var(--ease);
}
.demo-card:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(0,0,0,0.35); }

.demo-media { overflow: hidden; background: var(--s950); }
.demo-media img, .demo-media video { width: 100%; display: block; transition: transform 0.5s var(--ease); }
.demo-card:hover img, .demo-card:hover video { transform: scale(1.02); }

.demo-info { padding: 1.25rem 1.5rem; }
.demo-info h3 { font-size: 1rem; font-weight: 700; color: var(--s100); margin-bottom: 0.2rem; }
.demo-info p { font-size: 0.85rem; color: var(--s500); line-height: 1.55; }

.mid-cta { text-align: center; margin-top: 2rem; }

/* ===================================================================
   COMPATIBILITY
   =================================================================== */
.compat-card {
  display: flex; align-items: center; gap: 2.5rem; padding: 2.5rem;
  border: 1px solid var(--s800); border-radius: 20px;
  transition: border-color 0.3s var(--ease);
}
.compat-card:hover { border-color: var(--accent-border); }

.compat-logo {
  width: 80px; height: 80px; object-fit: contain; flex-shrink: 0;
  border-radius: 16px; background: var(--s900); padding: 8px;
}

.compat-card h3 { font-size: 1.35rem; font-weight: 700; color: var(--s100); margin-bottom: 0.5rem; }
.compat-card p { font-size: 0.95rem; color: var(--s400); line-height: 1.7; max-width: 550px; }

/* ===================================================================
   EXTRAS
   =================================================================== */
.extras-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }

.extra-card {
  padding: 1.5rem; border: 1px solid var(--s800); border-radius: 14px;
  transition: all 0.3s var(--ease);
}
.extra-card:hover { border-color: var(--accent-border); background: var(--accent-bg); }
.extra-icon {
  width: 24px; height: 24px; color: var(--accent); flex-shrink: 0; margin-bottom: 0.75rem;
}

.extra-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--s200); margin-bottom: 0.35rem; }
.extra-card p { font-size: 0.825rem; color: var(--s500); line-height: 1.55; }

/* ===================================================================
   PRICING - asymmetric duo
   =================================================================== */
.pricing-duo {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 1.25rem;
  align-items: start; max-width: 760px; margin: 0 auto;
}

.price-card {
  padding: 2rem; border: 1px solid var(--s800); border-radius: 16px;
  transition: all 0.35s var(--ease); position: relative;
}
.price-card:hover { border-color: var(--s700); transform: translateY(-2px); }

.price-badge {
  position: absolute; top: -10px; left: 2rem;
  font-family: var(--mono); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.25rem 0.85rem; border-radius: 60px;
  background: var(--accent-dim); color: white;
}

.price-card h3 { font-size: 1.35rem; font-weight: 700; color: var(--s100); }
.price-sub {
  font-family: var(--mono); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent);
  display: block; margin-top: 0.15rem;
}

.price-value { margin: 1.25rem 0; }
.price-old { display: block; font-size: 0.8rem; color: var(--s600); text-decoration: line-through; margin-bottom: 0.1rem; }
.price-label { display: block; font-size: 0.85rem; color: var(--s500); margin-bottom: 0.25rem; }
.price-amount { font-family: var(--mono); font-size: 2rem; font-weight: 500; color: var(--s100); line-height: 1.1; }
.price-amount-lg { font-size: 2.75rem; }
.price-amount-xl { font-size: 2.75rem; }
.price-amount small { font-family: var(--font); font-size: 0.8rem; color: var(--s500); font-weight: 400; margin-left: 0.15rem; }

.price-installment {
  display: block; font-family: var(--mono); font-size: 0.8rem; font-weight: 500;
  color: var(--s300); margin-top: 0.35rem;
}

.price-equiv {
  display: block; font-family: var(--mono); font-size: 0.72rem; font-weight: 500;
  color: var(--accent); margin-top: 0.2rem;
}

.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1rem; }
.price-card li { font-size: 0.85rem; color: var(--s400); padding-left: 1.2rem; position: relative; }
.price-card li::before {
  content: ''; position: absolute; left: 0; top: 0.55em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--accent); opacity: 0.4;
}

/* Compact mensal */
.price-compact { align-self: center; }

/* Mega anual */
.price-mega {
  padding: 2rem;
  border-color: var(--accent-border);
  background: linear-gradient(180deg, var(--accent-bg) 0%, transparent 50%);
  text-align: center;
}
.price-mega:hover { border-color: var(--accent); }
.price-mega ul { align-items: center; margin-top: 1.25rem; margin-bottom: 0; }

.price-hook {
  font-size: 0.95rem; font-weight: 500; color: var(--s300);
  margin-bottom: 1.5rem; line-height: 1.5;
}

/* Countdown */
.countdown-wrap { margin-top: 1rem; margin-bottom: 0.25rem; }
.countdown-label {
  display: block; font-family: var(--mono); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.5rem;
}
.countdown {
  display: inline-flex; align-items: center; gap: 0.35rem;
}
.countdown-block { display: flex; align-items: baseline; gap: 0.15rem; }
.cd-num {
  font-family: var(--mono); font-size: 1.5rem; font-weight: 500;
  color: var(--s100); min-width: 2ch; text-align: center;
}
.cd-unit {
  font-family: var(--mono); font-size: 0.65rem; font-weight: 500;
  color: var(--s500); text-transform: uppercase;
}
.cd-sep {
  font-family: var(--mono); font-size: 1.25rem; color: var(--s600);
}

/* ===================================================================
   GUARANTEE
   =================================================================== */
.guarantee {
  display: flex; align-items: center; gap: 2.5rem; padding: 2.5rem;
  border: 1px solid var(--accent-border); border-radius: 20px; background: var(--accent-bg);
}

.guarantee-seal {
  flex-shrink: 0; width: 80px; height: 80px; border-radius: 50%;
  border: 2px solid var(--accent); display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 2rem; font-weight: 500; color: var(--accent);
}

.guarantee h2 { font-size: 1.5rem; font-weight: 700; color: var(--s100); margin-bottom: 0.5rem; }
.guarantee p { font-size: 0.95rem; color: var(--s400); line-height: 1.7; max-width: 500px; }

/* ===================================================================
   CREATORS - duo layout
   =================================================================== */
.creators-duo {
  display: flex; gap: 3rem; align-items: center;
  padding: 2.5rem; border: 1px solid var(--s800); border-radius: 20px;
  transition: border-color 0.3s;
}
.creators-duo:hover { border-color: var(--s700); }

.creators-photo {
  width: 264px; height: 264px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
}

.creators-bios { display: flex; flex-direction: column; gap: 1.75rem; }

.creator-bio h3 { font-size: 1.1rem; font-weight: 700; color: var(--s100); margin-bottom: 0.15rem; }
.creator-role {
  font-family: var(--mono); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent);
  display: block; margin-bottom: 0.5rem;
}
.creator-bio p { font-size: 0.875rem; color: var(--s500); line-height: 1.6; }

/* ===================================================================
   FAQ
   =================================================================== */
.faq-header { text-align: center; margin-bottom: 2rem; }
.faq-header .section-title { margin-bottom: 0; }
.faq-list { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.5rem; }

.faq-item { border: 1px solid var(--s800); border-radius: 12px; transition: border-color 0.3s; }
.faq-item[open], .faq-item:hover { border-color: var(--s700); }

.faq-item summary {
  padding: 1rem 1.25rem; font-weight: 600; font-size: 0.95rem; color: var(--s200);
  cursor: pointer; list-style: none; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-family: var(--mono); font-size: 1.2rem; color: var(--accent);
  flex-shrink: 0; transition: transform 0.3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 1.25rem 1rem; font-size: 0.9rem; color: var(--s500); line-height: 1.7; }

/* ===================================================================
   FINAL CTA
   =================================================================== */
.final-cta {
  padding: 3.5rem 2.5rem; border: 1px solid var(--accent-border);
  border-radius: 24px; text-align: center;
  background: linear-gradient(180deg, var(--accent-bg) 0%, transparent 50%);
}
.final-cta h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 700;
  color: var(--s100); letter-spacing: -0.02em; margin-bottom: 1.5rem;
}

.final-pricing { margin-bottom: 1.25rem; }
.final-old {
  display: block; font-size: 0.9rem; color: var(--s600);
  text-decoration: line-through; margin-bottom: 0.25rem;
}
.final-label {
  display: block; font-size: 0.85rem; color: var(--s500); margin-bottom: 0.25rem;
}
.final-amount {
  display: block; font-family: var(--mono); font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 500; color: var(--s100); line-height: 1.1;
}
.final-installment {
  display: block; font-family: var(--mono); font-size: 0.85rem;
  color: var(--accent); margin-top: 0.35rem;
}

.final-hook {
  font-size: 1.05rem; color: var(--s300); font-weight: 500;
  margin-bottom: 1.75rem; max-width: 480px; margin-inline: auto;
}

.final-urgency {
  font-family: var(--mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent); margin-top: 1rem; margin-bottom: 1.25rem;
}

.final-checks {
  list-style: none; display: flex; flex-direction: column; gap: 0.4rem;
  align-items: center;
}
.final-checks li {
  font-size: 0.85rem; color: var(--s400); padding-left: 1.2rem; position: relative;
}
.final-checks li::before {
  content: ''; position: absolute; left: 0; top: 0.55em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--accent); opacity: 0.5;
}

/* ===================================================================
   FOOTER
   =================================================================== */
.section-tight { padding-top: 0; }

.footer { padding-top: 3rem; margin-top: 2rem; border-top: 1px solid rgba(255,255,255,0.04); }
.footer-inner { display: flex; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.footer-brand { max-width: 280px; }
.footer-brand p { margin-top: 0.75rem; font-size: 0.8rem; color: var(--s600); line-height: 1.6; }
.footer-cols { display: flex; gap: 3.5rem; }
.footer-cols h4 { font-size: 0.85rem; font-weight: 700; color: var(--s200); margin-bottom: 0.6rem; }
.footer-cols a { display: block; text-decoration: none; font-size: 0.8rem; color: var(--s500); padding: 0.15rem 0; transition: color 0.25s; }
.footer-cols a:hover { color: var(--accent); }
.footer-bottom { padding: 1.5rem 0 2rem; margin-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.04); }
.footer-bottom p { font-size: 0.7rem; color: var(--s600); }

/* ===================================================================
   ANIMATIONS
   =================================================================== */
.sr {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.sr.vis { opacity: 1; transform: translateY(0); }

.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: calc(var(--d) * 150ms + 200ms);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1024px) {
  .extras-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .burger { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: fixed; inset: 0; top: 56px;
    background: rgba(12, 15, 26, 0.97); backdrop-filter: blur(16px);
    padding: 2.5rem 1.5rem; gap: 1.5rem; z-index: 39;
  }
  .nav-links.open a { font-size: 1.2rem; color: var(--s200); font-weight: 700; }

  /* Hero */
  .hero { min-height: auto; padding-top: 5rem; padding-bottom: 2rem; }
  .hero-wrap { grid-template-columns: 1fr; gap: 2rem; padding-top: 1rem; padding-bottom: 1rem; }
  .hero-text { text-align: center; }
  .hero h1 { font-size: clamp(1.85rem, 7.5vw, 2.75rem); }
  .hero-body { font-size: 1rem; margin-inline: auto; }
  .hero-badges { justify-content: center; gap: 0.4rem; }
  .hero-badges .tag { font-size: 0.6rem; padding: 0.2rem 0.65rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Stats */
  .hero-aside { align-items: center; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .stat-card { text-align: center; }
  .stat-num { font-size: 2rem; }

  /* Carousel */
  .carousel-slide { padding: 1rem; }
  .carousel-slide img { max-height: 300px; }

  /* Panels */
  .panel-header { padding: 1.25rem 1.25rem; }
  .panel-tools { grid-template-columns: 1fr; }
  .tool-callout { padding: 1rem 1.25rem; border-right: none !important; }
  .panel-tools .tool-callout:last-child:nth-child(odd) { grid-column: auto; }

  /* Demos */
  .demo-grid { grid-template-columns: 1fr; }

  /* Compat */
  .compat-card { flex-direction: column; text-align: center; gap: 1.5rem; padding: 2rem 1.5rem; }
  .compat-card p { max-width: 100%; }

  /* Extras */
  .extras-grid { grid-template-columns: 1fr; }

  /* Pricing */
  .pricing-duo { grid-template-columns: 1fr; max-width: 480px; }
  .price-compact { order: 2; }
  .price-mega { order: 1; }
  .price-card { padding: 1.75rem; }
  .price-amount { font-size: 1.75rem; }
  .price-amount-lg { font-size: 2.25rem; }
  .price-amount-xl { font-size: 2.25rem; }

  /* Guarantee */
  .guarantee {
    flex-direction: column; text-align: center; gap: 1.5rem;
    padding: 2rem 1.5rem;
  }
  .guarantee p { max-width: 100%; }

  /* Creators */
  .creators-duo { flex-direction: column; text-align: center; gap: 2rem; padding: 2rem 1.5rem; }
  .creators-photo { width: 200px; height: 200px; }

  /* FAQ */
  .faq-item summary { font-size: 0.9rem; padding: 0.9rem 1rem; }
  .faq-item p { padding: 0 1rem 0.9rem; font-size: 0.85rem; }

  /* CTA final */
  .final-cta { padding: 2.5rem 1.5rem; }
  .final-cta h2 { font-size: 1.4rem; }
  .final-cta .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer-inner { flex-direction: column; }
  .footer-cols { gap: 2rem; }

  /* Section title */
  .section-title { font-size: clamp(1.5rem, 5vw, 2rem); margin-bottom: 1.75rem; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; }
  .stat-card { padding: 1rem; border-left: none !important; }

  .carousel-slide img { max-height: 220px; }

  .section-title { font-size: 1.35rem; }
}
