/* ============================================
   PRODUZ SITE — Design Tokens + Base
   ============================================ */

:root {
  /* Background scale (dark) */
  --bg-0: #07070d;
  --bg-1: #0b0b14;
  --bg-2: #10101c;
  --bg-3: #161628;
  --bg-card: rgba(20, 20, 36, 0.6);
  --bg-card-solid: #131322;

  /* Text */
  --text-1: #f5f6ff;
  --text-2: #b8bad0;
  --text-3: #7d7f99;
  --text-4: #5a5c75;

  /* Brand — azul do logo + acentos */
  --brand-blue: #2e6fef;
  --brand-blue-2: #4d8bff;
  --brand-violet: #7b5cff;
  --brand-violet-2: #a07bff;
  --accent-orange: #ff7a3d;
  --accent-orange-2: #ffa14a;
  --whatsapp: #25d366;
  --whatsapp-dark: #1faa54;

  /* Borders / hairlines */
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);

  /* Gradients */
  --grad-cta: linear-gradient(135deg, #ff7a3d 0%, #ff4d8a 50%, #7b5cff 100%);
  --grad-cta-hover: linear-gradient(135deg, #ff8b50 0%, #ff5d97 50%, #8b6cff 100%);
  --grad-violet: linear-gradient(135deg, #4d8bff 0%, #7b5cff 60%, #c47bff 100%);
  --grad-card: linear-gradient(135deg, rgba(123, 92, 255, 0.18) 0%, rgba(255, 122, 61, 0.08) 50%, rgba(0, 0, 0, 0) 80%);
  --grad-page: radial-gradient(1200px 600px at 80% -10%, rgba(123, 92, 255, 0.18), transparent 60%),
               radial-gradient(900px 500px at -10% 30%, rgba(46, 111, 239, 0.15), transparent 60%),
               radial-gradient(700px 400px at 50% 110%, rgba(255, 122, 61, 0.10), transparent 60%);

  /* Radii */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-card: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 12px 32px rgba(0, 0, 0, 0.35);
  --shadow-cta: 0 10px 28px rgba(255, 90, 80, 0.35), 0 4px 10px rgba(123, 92, 255, 0.25);
  --shadow-glow-violet: 0 0 60px rgba(123, 92, 255, 0.35);

  /* Type */
  --font-display: "Geist", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "Geist Mono", "JetBrains Mono", monospace;

  /* Layout */
  --container: 1200px;
  --section-py: clamp(36px, 4.5vw, 64px);
}

/* ===== Reset ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-0);
  color: var(--text-1);
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ===== Page background — atmospheric layers ===== */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: var(--bg-0);
  pointer-events: none;
}
.page-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-page);
}
.page-bg::after {
  /* subtle grid */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent 75%);
}

/* Floating neon blobs (referência Niche Geeky) */
.neon-blob {
  position: fixed;
  z-index: -1;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.55;
  border-radius: 50%;
}
.neon-blob.one {
  width: 380px; height: 380px;
  left: -120px; top: 12%;
  background: radial-gradient(circle, #7b5cff 0%, transparent 70%);
}
.neon-blob.two {
  width: 420px; height: 420px;
  right: -140px; top: 28%;
  background: radial-gradient(circle, #4d8bff 0%, transparent 70%);
}
.neon-blob.three {
  width: 320px; height: 320px;
  left: 30%; top: 60%;
  background: radial-gradient(circle, #ff4d8a 0%, transparent 70%);
  opacity: 0.35;
}

/* ===== Containers ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding-block: var(--section-py);
  position: relative;
}

/* ===== Type ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text-1);
  text-wrap: balance;
}

h1 { font-size: clamp(40px, 5.5vw, 72px); letter-spacing: -0.035em; font-weight: 600; }
h2 { font-size: clamp(32px, 3.8vw, 52px); letter-spacing: -0.03em; }
h3 { font-size: clamp(20px, 1.6vw, 24px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.02em;
}
.eyebrow .star { color: var(--brand-violet-2); }

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.section-head p.lead {
  color: var(--text-2);
  font-size: clamp(16px, 1.2vw, 18px);
  max-width: 640px;
  text-wrap: pretty;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #b8bad0 60%, #7b5cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.violet-text {
  background: linear-gradient(135deg, #a07bff 0%, #4d8bff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--r-pill);
  font-weight: 500;
  font-size: 15px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-cta {
  background: var(--grad-cta);
  color: #fff;
  box-shadow: var(--shadow-cta);
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 600;
}
.btn-cta:hover { background: var(--grad-cta-hover); }
.btn-cta .arrow { transition: transform .2s ease; }
.btn-cta:hover .arrow { transform: translate(2px, -2px); }

.btn-cta.lg { padding: 20px 36px; font-size: 18px; }

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
  color: var(--text-1);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  font-weight: 600;
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); }

/* ===== Card ===== */
.card {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
/* Reveal wrapper inside grids should stretch to match card heights */
.pain-grid > .reveal,
.benefits-grid > .reveal,
.audience-grid > .reveal,
.pillars > .reveal,
.cases-grid > .reveal {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card::before {
  /* subtle glow corner — like the Benefits reference */
  content: "";
  position: absolute;
  width: 280px; height: 200px;
  top: -60px; right: -60px;
  background: radial-gradient(ellipse at center,
    rgba(255, 122, 138, 0.18) 0%,
    rgba(123, 92, 255, 0.10) 40%,
    transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.card.highlight::before {
  background: radial-gradient(ellipse at center,
    rgba(255, 122, 61, 0.30) 0%,
    rgba(123, 92, 255, 0.18) 40%,
    transparent 70%);
}

/* ===== Promo banner (sticky top) ===== */
.promo-banner {
  position: relative;
  z-index: 100;
  background: linear-gradient(90deg, rgba(255, 122, 61, 0.18), rgba(123, 92, 255, 0.18));
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: 10px 16px;
  font-size: 13.5px;
  color: var(--text-1);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.promo-banner .pulse {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-orange);
  box-shadow: 0 0 0 0 rgba(255, 122, 61, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 122, 61, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(255, 122, 61, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 122, 61, 0); }
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 90;
  padding: 14px 0;
  backdrop-filter: blur(16px);
  background: rgba(7, 7, 13, 0.65);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}
.nav-brand img { width: 32px; height: 32px; border-radius: 8px; }
.nav-links {
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  padding: 6px;
  border-radius: var(--r-pill);
  backdrop-filter: blur(10px);
}
.nav-links a {
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font-size: 14px;
  color: var(--text-2);
  transition: color .15s, background .15s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text-1);
  background: rgba(255, 255, 255, 0.06);
}
.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}
@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
}
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--text-3);
  font-size: 13px;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust .check { color: var(--whatsapp); }
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 4px;
}

/* ===== SECTION DIVIDERS / EYEBROW STYLE ===== */
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--r-pill);
  background: rgba(15, 15, 28, 0.7);
  border: 1px solid var(--line-strong);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  position: relative;
}
.tag-pill::before, .tag-pill::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-violet) 60%, transparent);
}
.tag-pill::before { right: 100%; margin-right: 14px; }
.tag-pill::after { left: 100%; margin-left: 14px; transform: scaleX(-1); }

/* ===== Pain section cards ===== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) {
  .pain-grid { grid-template-columns: 1fr; }
}
.pain-card .icon-wrap {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  margin-bottom: 16px;
  font-size: 22px;
}
.pain-card h3 { margin-bottom: 12px; }
.pain-card .quote {
  color: var(--text-3);
  font-style: italic;
  font-size: 14px;
  margin-bottom: 14px;
}
.pain-card p { color: var(--text-2); font-size: 15px; line-height: 1.6; }

.pain-conclusion {
  margin-top: 56px;
  padding: 32px;
  text-align: center;
  border-radius: var(--r-lg);
  border: 1px dashed var(--line-strong);
  background: rgba(255, 255, 255, 0.02);
}
.pain-conclusion p {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

/* ===== Comparison ===== */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
}
@media (max-width: 760px) {
  .compare { grid-template-columns: 1fr; }
}
.compare-col { padding: 32px; }
.compare-col.bad {
  background: rgba(255, 80, 80, 0.04);
  border-right: 1px solid var(--line);
}
.compare-col.good {
  background: linear-gradient(135deg, rgba(123, 92, 255, 0.08), rgba(46, 111, 239, 0.04));
}
.compare-col h4 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 8px;
}
.compare-col.bad h4 { color: #ff8b8b; }
.compare-col.good h4 { color: #a07bff; }
.compare-col ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.compare-col li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.5;
}
.compare-col .mark {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px;
  margin-top: 1px;
}
.compare-col.bad .mark { background: rgba(255, 80, 80, 0.15); color: #ff8b8b; }
.compare-col.good .mark { background: rgba(123, 92, 255, 0.18); color: #a07bff; }
.compare-col.good li strong { color: var(--text-1); }

/* ===== Benefits grid ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .benefits-grid { grid-template-columns: 1fr; } }

.benefit-card {
  padding: 28px;
}
.benefit-card .icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  margin-bottom: 20px;
  color: var(--brand-violet-2);
}
.benefit-card h3 { font-size: 18px; margin-bottom: 8px; }
.benefit-card p { color: var(--text-2); font-size: 14.5px; line-height: 1.55; }

/* ===== Audience ===== */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .audience-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .audience-grid { grid-template-columns: 1fr; } }
.audience-card {
  padding: 24px;
  text-align: left;
}
.audience-card .emoji {
  font-size: 28px;
  margin-bottom: 14px;
  display: inline-block;
}
.audience-card h3 { font-size: 17px; margin-bottom: 8px; }
.audience-card p { color: var(--text-2); font-size: 14px; line-height: 1.55; }

/* ===== Authority ===== */
.authority-block {
  padding: 48px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.authority-block .stat {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.03em;
}
.authority-block .stat span { display: inline-block; }
.authority-block .stat .sep { color: var(--brand-violet); margin: 0 8px; }
.authority-block p { max-width: 720px; color: var(--text-2); font-size: 16px; line-height: 1.6; }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 880px) { .pillars { grid-template-columns: 1fr; } }
.pillar { padding: 28px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.pillar .icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  color: var(--brand-violet-2);
}
.pillar h3 { font-size: 18px; }
.pillar p { color: var(--text-2); font-size: 14px; line-height: 1.55; }

/* ===== Cases ===== */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .cases-grid { grid-template-columns: 1fr; } }

.case-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.case-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.case-frame .browser-bar {
  height: 28px;
  background: linear-gradient(180deg, #1a1a2c, #14141f);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 6px;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.case-frame .browser-bar .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}
.case-frame .browser-bar .url {
  flex: 1;
  background: rgba(0,0,0,0.3);
  border-radius: 8px;
  height: 16px;
  margin-left: 8px;
  font-size: 10px;
  color: var(--text-3);
  display: flex; align-items: center;
  padding: 0 8px;
}
.case-frame img {
  position: absolute;
  top: 28px; left: 0;
  width: 100%;
  height: calc(100% - 28px);
  object-fit: cover;
  object-position: top;
  transition: transform 4s ease, object-position 4s ease;
}
.case-card:hover .case-frame img {
  transform: scale(1.03);
}
.case-body { padding: 22px 24px 26px; }
.case-body .tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-violet-2);
  font-weight: 600;
  margin-bottom: 8px;
}
.case-body h3 { font-size: 18px; margin-bottom: 10px; }
.case-body p { color: var(--text-2); font-size: 14px; line-height: 1.55; }

.cases-conclusion {
  margin-top: 56px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 500;
  color: var(--text-1);
  letter-spacing: -0.02em;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

/* ===== Pricing ===== */
.pricing-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  overflow: visible;
}
.pricing-card::before { display: none; }
.pricing-card .inner {
  background: linear-gradient(160deg, rgba(123, 92, 255, 0.18) 0%, rgba(46, 111, 239, 0.10) 50%, rgba(15, 15, 28, 0.6) 100%);
  border: 1px solid rgba(160, 123, 255, 0.30);
  border-radius: var(--r-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px rgba(123, 92, 255, 0.25), 0 1px 0 rgba(255, 255, 255, 0.05) inset;
}
.pricing-card .inner::after {
  content: "";
  position: absolute;
  width: 400px; height: 300px;
  top: -100px; right: -120px;
  background: radial-gradient(ellipse at center, rgba(255, 122, 61, 0.32) 0%, rgba(123, 92, 255, 0.12) 40%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.pricing-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, #ff7a3d, #ff4d8a);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pricing-card .plan-name {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-violet-2);
  margin: 20px 0 10px;
  font-weight: 600;
}
.pricing-card .setup {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 24px;
  line-height: 1.7;
}
.pricing-card .setup s { color: var(--text-3); }
.pricing-card .setup .free {
  background: linear-gradient(135deg, #ffa14a, #ff7a3d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  font-size: 14px;
  margin: 0 4px;
}
.pricing-card .price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 0;
}
.pricing-card .price-block {
  margin-bottom: 28px;
}
.pricing-card .price .amount {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #ffffff, #b8bad0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.pricing-card .price .currency { color: var(--text-2); font-size: 22px; }
.pricing-card .price .period { color: var(--text-2); font-size: 16px; }

.pricing-features {
  display: flex; flex-direction: column; gap: 12px;
  list-style: none;
  margin-bottom: 28px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-2);
}
.pricing-features li .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(123, 92, 255, 0.18);
  color: var(--brand-violet-2);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.pricing-features li strong { color: var(--text-1); font-weight: 500; }

.pricing-card .btn-cta { width: 100%; justify-content: center; }
.pricing-disclaimer {
  text-align: center;
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-3);
}

.scarcity {
  margin-top: 32px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  background: rgba(255, 122, 61, 0.08);
  border: 1px solid rgba(255, 122, 61, 0.3);
  color: #ffb38c;
  font-size: 14px;
  font-weight: 500;
}
.scarcity-wrap { text-align: center; margin-top: 32px; }

/* ===== Timeline ===== */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
@media (max-width: 880px) { .timeline { grid-template-columns: 1fr; gap: 16px; } }
.timeline::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent,
    var(--brand-violet) 20%,
    var(--brand-blue) 50%,
    var(--brand-violet) 80%,
    transparent);
  opacity: 0.4;
}
@media (max-width: 880px) { .timeline::before { display: none; } }

.tl-step {
  text-align: center;
  padding: 0 16px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  position: relative;
}
.tl-step .num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg-1);
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  background-image: linear-gradient(135deg, rgba(123, 92, 255, 0.18), rgba(46, 111, 239, 0.08));
  position: relative;
  z-index: 1;
  color: var(--brand-violet-2);
}
.tl-step h3 { font-size: 17px; }
.tl-step p { color: var(--text-2); font-size: 14px; line-height: 1.55; max-width: 220px; }

/* ===== FAQ ===== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: border-color .2s ease;
}
.faq-item.open {
  border-color: rgba(160, 123, 255, 0.4);
}
.faq-q {
  width: 100%;
  padding: 22px 24px;
  text-align: left;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-1);
}
.faq-q .toggle {
  width: 32px; height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  transition: transform .25s ease, background .2s;
  color: var(--text-2);
}
.faq-item.open .toggle {
  transform: rotate(45deg);
  background: rgba(123, 92, 255, 0.15);
  color: var(--brand-violet-2);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-a-inner {
  padding: 0 24px 22px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.65;
}

/* ===== Final CTA ===== */
.final-cta {
  text-align: center;
  padding: 100px 0;
  position: relative;
}
.final-cta h2 {
  font-size: clamp(36px, 5vw, 64px);
  max-width: 900px;
  margin: 0 auto 24px;
}
.final-cta .lede {
  color: var(--text-2);
  max-width: 640px;
  margin: 0 auto 36px;
  font-size: 17px;
  line-height: 1.65;
}
.final-cta .btn-cta { font-size: 18px; padding: 22px 40px; }

/* ===== Footer ===== */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(123, 92, 255, 0.04) 60%, transparent);
}
.footer-cta {
  text-align: center;
  margin-bottom: 60px;
}
.footer-cta h3 {
  font-size: clamp(24px, 2.4vw, 32px);
  margin-bottom: 12px;
}
.footer-cta p { color: var(--text-2); margin-bottom: 24px; max-width: 520px; margin-left: auto; margin-right: auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand p { color: var(--text-3); font-size: 14px; line-height: 1.6; max-width: 260px; margin-top: 16px; }
.footer-col h5 { font-size: 14px; font-weight: 600; margin-bottom: 18px; color: var(--text-1); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text-3); font-size: 14px; transition: color .15s; }
.footer-col a:hover { color: var(--text-1); }
.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  color: var(--text-3);
  font-size: 13px;
}

/* ===== Counter animation ===== */
.count-up {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* ===== Reveal on scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== WhatsApp floating button ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 80;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float:hover { transform: scale(1.08); }

/* ===== Density modifier ===== */
body[data-density="compact"] { --section-py: clamp(56px, 7vw, 96px); }
body[data-density="spacious"] { --section-py: clamp(96px, 11vw, 160px); }

/* Footer socials hover (inline styles handle the rest) */
.social-circle:hover {
  background: #fff !important;
  border-color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(46,111,239,0.3);
}

/* ===== Light mode (tweak) ===== */
body[data-theme="light"] {
  --bg-0: #f7f7fb;
  --bg-1: #ffffff;
  --bg-2: #f0f0f7;
  --bg-3: #e7e7f0;
  --bg-card: rgba(255, 255, 255, 0.7);
  --bg-card-solid: #ffffff;
  --text-1: #0f0f1a;
  --text-2: #4a4a64;
  --text-3: #7d7d99;
  --text-4: #a0a0bc;
  --line: rgba(15, 15, 26, 0.08);
  --line-strong: rgba(15, 15, 26, 0.14);
}
body[data-theme="light"] .nav { background: rgba(247, 247, 251, 0.75); }
body[data-theme="light"] .page-bg { background: var(--bg-0); }
body[data-theme="light"] .page-bg::after { display: none; }
body[data-theme="light"] .neon-blob { opacity: 0.25; }