/* ============================================
   CÃO OBEDIENTE EM 15 DIAS — Landing Page
   Design System: Dark Premium + Emerald/Gold
   Framework: Antigravity (PAS + AIDA)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Backgrounds */
  --bg-void: #050505;
  --bg-primary: #0A0A0A;
  --bg-elevated: #111111;
  --bg-card: #141414;
  --bg-card-hover: #1A1A1A;
  --bg-surface: #0D0D0D;
  --bg-contrast: #F5F0E8;
  --bg-contrast-alt: #EDE8DD;

  /* Text */
  --text-primary: #FFFFFF;
  --text-secondary: #A0A0A0;
  --text-tertiary: #666666;
  --text-muted: #444444;
  --text-on-light: #1A1A1A;
  --text-on-light-secondary: #555555;

  /* Brand Colors */
  --emerald-400: #34D399;
  --emerald-500: #10B981;
  --emerald-600: #059669;
  --emerald-700: #047857;
  --emerald-900: #064E3B;

  /* Accent — Gold */
  --gold-300: #D4B054;
  --gold-500: #C9A84C;
  --gold-700: #A68A3A;

  /* CTA Green */
  --cta-green: #22C55E;
  --cta-green-hover: #16A34A;
  --cta-green-glow: rgba(34, 197, 94, 0.4);

  /* Accent - Glow */
  --glow-500: #10B981;
  --glow-alpha-10: rgba(16, 185, 129, 0.1);
  --glow-alpha-20: rgba(16, 185, 129, 0.2);
  --glow-alpha-30: rgba(16, 185, 129, 0.3);

  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-card: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.15);
  --border-gold: rgba(201, 168, 76, 0.3);

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-elevated: 0 8px 48px rgba(0, 0, 0, 0.6);
  --shadow-cta: 0 8px 32px rgba(34, 197, 94, 0.3);

  /* Spacing */
  --section-gap: clamp(80px, 12vh, 160px);
  --content-max-width: 800px;
  --content-padding: clamp(20px, 5vw, 40px);

  /* Typography */
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

/* ---------- GLOW BORDERS ---------- */
body::before,
body::after {
  content: '';
  position: fixed;
  top: 0;
  bottom: 0;
  width: 200px;
  pointer-events: none;
  z-index: 1000;
}
body::before {
  left: 0;
  background: radial-gradient(ellipse at left center, var(--glow-alpha-30) 0%, transparent 70%);
}
body::after {
  right: 0;
  background: radial-gradient(ellipse at right center, var(--glow-alpha-30) 0%, transparent 70%);
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 700; }

p {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  line-height: 1.75;
  color: var(--text-secondary);
}

.label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.label--gold { color: var(--gold-500); }

.highlight {
  color: var(--text-primary);
  font-weight: 700;
}

.text-gradient {
  background: linear-gradient(135deg, var(--emerald-400) 0%, var(--cta-green) 50%, var(--emerald-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

section {
  padding: var(--section-gap) 0;
  text-align: center;
}

/* ---------- ANIMATIONS ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse-line {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

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

@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 4px 20px var(--cta-green-glow); }
  50% { box-shadow: 0 8px 40px var(--cta-green-glow), 0 0 60px rgba(34, 197, 94, 0.15); }
}

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

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

/* ====================================
   ANNOUNCEMENT BAR (MARQUEE)
   ==================================== */
.marquee {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, var(--emerald-700), var(--emerald-600), var(--emerald-700));
  height: 42px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
}

.marquee__group {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
  flex-shrink: 0;
}

.marquee__item {
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee__separator {
  color: rgba(255, 255, 255, 0.4);
}

/* ====================================
   NAVBAR
   ==================================== */
.navbar {
  position: fixed;
  top: 42px;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--content-padding);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar__logo-icon { font-size: 1.3rem; }

.navbar__logo-text {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 0.08em;
}

.navbar__cta {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: #000;
  background: var(--cta-green);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
  transition: all var(--transition-base);
}

.navbar__cta:hover {
  background: var(--cta-green-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-cta);
}

/* ====================================
   HERO SECTION
   ==================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px var(--content-padding) 60px;
  position: relative;
  background: var(--bg-primary);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--glow-alpha-10) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.hero__label {
  margin-bottom: 32px;
}

.hero__mockup {
  position: relative;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.hero__mockup-img {
  max-width: 320px;
  width: 100%;
  border-radius: var(--radius-lg);
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.hero__mockup-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, var(--glow-alpha-20) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero__headline {
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero__subheadline {
  margin-bottom: 12px;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--text-secondary);
}

.hero__subheadline strong {
  color: var(--text-primary);
}

.hero__credential {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
  margin-bottom: 36px;
}

.hero__micro-text {
  font-size: 0.82rem;
  color: var(--text-tertiary);
  margin-top: 12px;
  font-style: italic;
}

/* Trust Bar */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 20px 24px;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-top: 48px;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
}

.trust-bar__icon { font-size: 1rem; }

/* Scroll Indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--text-tertiary), transparent);
  animation: pulse-line 2s ease-in-out infinite;
}

.hero__scroll-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--emerald-500);
  animation: pulse-dot 2s ease-in-out infinite;
}

/* ====================================
   BUTTONS
   ==================================== */
.btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 18px 40px;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn--cta {
  background: linear-gradient(135deg, var(--cta-green) 0%, var(--emerald-600) 100%);
  color: #FFFFFF;
  font-size: clamp(0.85rem, 1.5vw, 1.05rem);
  padding: 20px 44px;
  border-radius: var(--radius-md);
  animation: pulse-cta 3s ease-in-out infinite;
  width: 100%;
  max-width: 520px;
  text-align: center;
}

.btn--cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px var(--cta-green-glow);
  background: linear-gradient(135deg, var(--cta-green-hover) 0%, var(--emerald-700) 100%);
}

.cta-link {
  color: var(--emerald-500);
  font-size: 1.05rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-base);
  margin-top: 32px;
}

.cta-link::after {
  content: '›';
  font-size: 1.4em;
  transition: transform var(--transition-fast);
}

.cta-link:hover {
  color: var(--emerald-400);
}

.cta-link:hover::after {
  transform: translateX(5px);
}

/* ====================================
   PAIN SECTION (LIGHT)
   ==================================== */
.section--light {
  background: var(--bg-contrast);
  color: var(--text-on-light);
}

.section--light h2, .section--light h3 {
  color: var(--text-on-light);
}

.section--light p {
  color: var(--text-on-light-secondary);
}

.section--light .label {
  color: var(--text-on-light-secondary);
}

.section--light .cta-link {
  color: var(--emerald-700);
}

.section--light .cta-link:hover {
  color: var(--emerald-600);
}

.pain__label {
  margin-bottom: 20px;
}

.pain__headline {
  margin-bottom: 32px;
}

.pain__emphasis {
  color: #DC2626;
  font-style: italic;
}

.pain__content {
  text-align: left;
  max-width: 650px;
  margin: 0 auto 40px;
}

.pain__content p {
  margin-bottom: 14px;
}

.pain__content strong {
  color: var(--text-on-light);
}

.pain__image {
  margin: 0 auto 48px;
  max-width: 600px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.pain__img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.pain__sub-headline {
  margin-bottom: 32px;
}

.pain__list {
  text-align: left;
  max-width: 650px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pain__item {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: rgba(220, 38, 38, 0.04);
  border: 1px solid rgba(220, 38, 38, 0.12);
  border-radius: var(--radius-md);
  line-height: 1.6;
}

.pain__item strong {
  color: var(--text-on-light);
}

.pain__item div {
  font-size: 0.95rem;
  color: var(--text-on-light-secondary);
}

.pain__bullet {
  flex-shrink: 0;
  font-size: 1.1rem;
  margin-top: 2px;
}

.pain__closing {
  max-width: 600px;
  margin: 0 auto 24px;
  text-align: center;
}

.pain__closing p { margin-bottom: 8px; }

.pain__closing strong {
  color: var(--text-on-light);
}

.pain__tear {
  font-size: 1.15rem !important;
  font-weight: 700;
  color: var(--emerald-700) !important;
  margin-top: 16px !important;
}

/* ====================================
   METHOD SECTION
   ==================================== */
.method {
  background: var(--bg-primary);
}

.method__headline {
  max-width: 700px;
  margin: 16px auto 24px;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
}

.method__answer {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--emerald-500);
  margin-bottom: 48px;
}

.method__mockup {
  position: relative;
  margin: 0 auto 48px;
  max-width: 350px;
}

.method__mockup-img {
  width: 100%;
  border-radius: var(--radius-lg);
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.method__mockup-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, var(--glow-alpha-20) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.method__title {
  margin-bottom: 16px;
}

.method__subtitle {
  max-width: 600px;
  margin: 0 auto 48px;
}

.method__subtitle strong {
  color: var(--text-primary);
}

.method__mechanism-title {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 16px;
}

.method__mechanism-text {
  max-width: 600px;
  margin: 0 auto 40px;
}

.method__mechanism-text strong {
  color: var(--text-primary);
}

.method__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.method__pillar {
  text-align: left;
  padding: 28px;
}

.method__pillar-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.card__title {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.card__description {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.card__description strong {
  color: var(--text-primary);
}

.method__result {
  max-width: 650px;
  margin: 0 auto 24px;
  padding: 24px 32px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-card);
  border-left: 3px solid var(--emerald-500);
  border-radius: var(--radius-md);
  text-align: left;
}

.method__result strong {
  color: var(--emerald-500);
}

/* ====================================
   LIFESTYLE BANNER
   ==================================== */
.lifestyle-banner {
  position: relative;
  width: 100%;
  height: clamp(320px, 50vh, 500px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lifestyle-banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lifestyle-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.7) 60%,
    rgba(10, 10, 10, 0.95) 100%
  );
}

.lifestyle-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--content-padding);
}

.lifestyle-banner__content .label {
  margin-bottom: 16px;
}

.lifestyle-banner__content h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--text-primary);
  line-height: 1.2;
}

/* ====================================
   DELIVERABLES
   ==================================== */
.deliverables {
  background: var(--bg-primary);
}

.deliverables__headline {
  margin: 16px auto 12px;
  max-width: 600px;
}

.deliverables__sub {
  max-width: 550px;
  margin: 0 auto 48px;
}

.deliverables__sub strong {
  color: var(--text-primary);
}

.deliverables__list {
  text-align: left;
  max-width: 650px;
  margin: 0 auto 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.deliverables__item {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.deliverables__item:hover {
  border-color: var(--emerald-500);
  background: var(--bg-card-hover);
  transform: translateX(4px);
}

.deliverables__check {
  flex-shrink: 0;
  font-size: 1.1rem;
  margin-top: 2px;
}

.deliverables__item strong {
  color: var(--text-primary);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 4px;
}

.deliverables__item p {
  font-size: 0.88rem;
  color: var(--text-tertiary);
  margin: 0;
}

/* ====================================
   BONUS SECTION
   ==================================== */
.bonus {
  background: var(--bg-elevated);
}

.bonus__headline {
  margin: 16px auto 12px;
  max-width: 600px;
}

.bonus__sub {
  max-width: 500px;
  margin: 0 auto 40px;
}

.bonus__sub strong {
  color: var(--text-primary);
}

.bonus__image {
  max-width: 500px;
  margin: 0 auto 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.bonus__img {
  width: 100%;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.4));
}

.bonus__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 650px;
  margin: 0 auto 48px;
}

.bonus__card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: left;
  transition: all var(--transition-base);
}

.bonus__card:hover {
  border-color: var(--gold-500);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.08);
}

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

.bonus__card-icon {
  font-size: 1.5rem;
}

.bonus__card-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold-500);
  padding: 4px 12px;
  border-radius: 20px;
}

.bonus__card-title {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.bonus__card-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.65;
}

.bonus__card-pricing {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

.bonus__card-original {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.bonus__card-free {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: #FFF;
  background: var(--cta-green);
  padding: 4px 14px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

/* Stack */
.bonus__stack {
  max-width: 550px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.bonus__stack-title {
  margin-bottom: 20px;
  font-size: 1rem;
}

.bonus__stack-table {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bonus__stack-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.bonus__stack-row:last-child {
  border-bottom: none;
}

.bonus__stack-row--total {
  font-weight: 700;
  color: var(--text-primary);
  padding-top: 16px;
  margin-top: 4px;
  border-top: 1px solid var(--border-strong);
}

.bonus__stack-row--pay {
  font-weight: 800;
  color: var(--emerald-500);
  font-size: 1rem;
}

.bonus__stack-crossed {
  text-decoration: line-through;
  color: var(--text-muted);
}

.bonus__stack-surprise {
  font-weight: 800;
  color: var(--emerald-400);
}

/* ====================================
   SOCIAL PROOF / TESTIMONIALS
   ==================================== */
.social-proof__headline {
  margin: 16px auto 48px;
  max-width: 500px;
}

.social-proof__headline strong {
  color: var(--text-on-light);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 650px;
  margin: 0 auto;
}

.testimonial {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all var(--transition-base);
}

.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.testimonial__stars {
  font-size: 1rem;
  margin-bottom: 8px;
}

.testimonial__verified {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--emerald-600);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.testimonial__text {
  font-size: 0.93rem;
  color: var(--text-on-light-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.testimonial__text strong {
  color: var(--text-on-light);
  font-style: normal;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.testimonial__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald-500), var(--emerald-700));
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonial__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-on-light) !important;
}

.testimonial__meta {
  font-size: 0.78rem;
  color: var(--text-on-light-secondary) !important;
}

/* ====================================
   PROMO MARQUEE
   ==================================== */
.promo-marquee {
  background: var(--bg-void);
  overflow: hidden;
  white-space: nowrap;
  padding: 16px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.promo-marquee__track {
  display: inline-flex;
  gap: 2rem;
  animation: marquee-scroll 30s linear infinite;
}

.promo-marquee__group {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
  flex-shrink: 0;
}

.promo-marquee__group span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.promo-marquee__sep {
  color: var(--text-muted) !important;
}

/* ====================================
   GUARANTEE
   ==================================== */
.guarantee {
  background: var(--bg-primary);
  padding: var(--section-gap) 0;
}

.guarantee__content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 750px;
  margin: 0 auto;
  text-align: left;
}

.guarantee__badge {
  flex-shrink: 0;
}

.guarantee__badge-img {
  width: 160px;
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(201, 168, 76, 0.2));
}

.guarantee__headline {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  margin-bottom: 16px;
}

.guarantee__text p {
  margin-bottom: 12px;
}

.guarantee__text strong {
  color: var(--text-primary);
}

.guarantee__why {
  margin-top: 16px;
}

.guarantee__summary {
  margin-top: 20px;
  padding: 20px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-card);
  border-left: 3px solid var(--emerald-500);
  border-radius: var(--radius-md);
}

.guarantee__summary p {
  margin-bottom: 4px;
}

.guarantee__summary strong {
  color: var(--text-primary);
}

.guarantee__summary .text-gradient {
  font-size: 1.05rem;
  font-weight: 700;
}

/* ====================================
   OFFER SECTION
   ==================================== */
.offer {
  background: var(--bg-void);
  position: relative;
  overflow: hidden;
}

.offer::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--glow-alpha-10) 0%, transparent 70%);
  pointer-events: none;
}

.offer__headline {
  margin: 16px auto 32px;
  max-width: 600px;
}

.offer__comparison {
  max-width: 550px;
  margin: 0 auto 48px;
  text-align: left;
}

.offer__comparison p {
  margin-bottom: 12px;
}

.offer__compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.offer__compare-list li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
}

.offer__compare-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

.offer__compare-list li strong {
  color: var(--text-primary);
}

/* Offer Card */
.offer__card {
  position: relative;
  max-width: 550px;
  margin: 0 auto 40px;
  background: var(--bg-card);
  border: 2px solid var(--emerald-500);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  overflow: hidden;
}

.offer__card-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--glow-alpha-20), transparent, var(--glow-alpha-10));
  border-radius: var(--radius-xl);
  z-index: 0;
  pointer-events: none;
}

.offer__stack-list {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

.offer__stack-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.offer__stack-item:last-child {
  border-bottom: none;
}

.offer__stack-item--total {
  font-weight: 700;
  color: var(--text-primary);
  padding-top: 14px;
  margin-top: 4px;
  border-top: 1px solid var(--border-strong);
}

.offer__stack-price-old {
  text-decoration: line-through;
  color: var(--text-muted);
}

.offer__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--emerald-500), transparent);
  margin: 24px 0;
  position: relative;
  z-index: 1;
}

.offer__from {
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}

.offer__from-price {
  text-decoration: line-through;
  color: var(--text-muted);
}

.offer__price-container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.offer__price-currency {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--emerald-400);
  margin-top: 12px;
}

.offer__price-value {
  font-size: clamp(4rem, 12vw, 6rem);
  font-weight: 900;
  color: var(--emerald-400);
  line-height: 1;
  letter-spacing: -0.04em;
}

.offer__price-cents {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--emerald-400);
  margin-top: 12px;
}

.offer__installments {
  position: relative;
  z-index: 1;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.offer__installments strong {
  color: var(--text-primary);
}

.offer__pizza {
  position: relative;
  z-index: 1;
  font-size: 0.88rem;
  color: var(--text-tertiary);
  margin-bottom: 28px;
  font-style: italic;
}

.offer__pizza strong {
  color: var(--text-secondary);
}

.offer__cta {
  position: relative;
  z-index: 1;
  max-width: 100%;
}

.offer__trust-icons {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  font-size: 0.78rem;
  color: var(--text-tertiary);
}

.offer__payment-logos {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.offer__payment-item {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.offer__urgency {
  max-width: 550px;
  margin: 0 auto 32px;
  padding: 20px 24px;
  background: rgba(220, 38, 38, 0.05);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: var(--radius-md);
  text-align: left;
}

.offer__urgency p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.offer__urgency strong {
  color: #FCA5A5;
}

.offer__cta-secondary {
  margin: 0 auto;
}

/* ====================================
   FAQ
   ==================================== */
.faq {
  background: var(--bg-primary);
}

.faq__headline {
  margin: 16px auto 48px;
  max-width: 500px;
}

.faq__accordion {
  max-width: 650px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq__item:hover {
  border-color: var(--border-strong);
}

.faq__item.active {
  border-color: var(--emerald-500);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  gap: 16px;
}

.faq__icon {
  font-size: 1.5rem;
  color: var(--emerald-500);
  transition: transform var(--transition-base);
  flex-shrink: 0;
  font-weight: 300;
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq__answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  text-align: left;
}

.faq__answer strong {
  color: var(--text-primary);
}

.faq__item.active .faq__answer {
  max-height: 400px;
}

.faq__cta {
  margin: 0 auto;
}

/* ====================================
   EXIT INTENT
   ==================================== */
.exit-intent {
  background: var(--bg-void);
  padding: var(--section-gap) 0;
  border-top: 1px solid var(--border-subtle);
}

.exit-intent__headline {
  margin: 20px auto 32px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.exit-intent__text {
  max-width: 550px;
  margin: 0 auto 40px;
}

.exit-intent__text p {
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--text-tertiary);
}

.exit-intent__text p strong {
  color: var(--text-primary);
}

.exit-intent__contrast {
  max-width: 550px;
  margin: 0 auto 40px;
}

.exit-intent__contrast p {
  margin-bottom: 10px;
  font-size: 1rem;
}

.exit-intent__contrast .text-gradient {
  font-size: 1.1rem;
}

.exit-intent__or {
  color: var(--text-muted) !important;
  font-style: italic;
  margin-top: 16px !important;
}

.exit-intent__cta {
  margin: 0 auto;
}

/* ====================================
   FOOTER
   ==================================== */
.footer {
  background: var(--bg-void);
  padding: 48px 0 32px;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.footer__brand {
  font-size: 0.9rem;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}

.footer__brand strong {
  color: var(--text-secondary);
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}

.footer__links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--emerald-500);
}

.footer__payments {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer__payments span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer__disclaimer {
  font-size: 0.72rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ====================================
   RESPONSIVE
   ==================================== */
@media (max-width: 768px) {
  :root {
    --section-gap: 64px;
  }

  body::before,
  body::after {
    width: 60px;
  }

  .hero {
    min-height: auto;
    padding: 120px 16px 48px;
  }

  .hero__mockup-img {
    max-width: 240px;
  }

  .trust-bar {
    gap: 16px;
  }

  .trust-bar__item {
    font-size: 0.72rem;
  }

  .method__pillars {
    grid-template-columns: 1fr;
  }

  .method__pillar {
    padding: 24px;
  }

  .guarantee__content {
    flex-direction: column;
    text-align: center;
  }

  .guarantee__badge-img {
    width: 120px;
  }

  .guarantee__text {
    text-align: left;
  }

  .offer__card {
    padding: 28px 20px;
  }

  .offer__stack-item {
    font-size: 0.8rem;
  }

  .lifestyle-banner {
    height: 280px;
  }

  .lifestyle-banner__content h2 {
    font-size: 1.3rem;
  }

  .navbar__logo-text {
    font-size: 0.75rem;
  }

  .navbar__cta {
    font-size: 0.7rem;
    padding: 8px 16px;
  }

  .btn--cta {
    padding: 18px 24px;
    font-size: 0.85rem;
  }

  .bonus__card-pricing {
    flex-direction: column;
    gap: 8px;
  }

  .offer__trust-icons {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .footer__links {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero__headline {
    font-size: 1.6rem;
  }

  .offer__price-value {
    font-size: 4rem;
  }

  .pain__item {
    padding: 16px;
  }

  .faq__question {
    font-size: 0.88rem;
    padding: 16px 18px;
  }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .marquee__track,
  .promo-marquee__track {
    animation: none;
  }

  .hero__mockup-img,
  .method__mockup-img {
    animation: none;
  }

  .btn--cta {
    animation: none;
  }
}
