@charset "UTF-8";

/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; }

.container { max-width: 920px; margin: 0 auto; padding: 0 20px; }

/* ===================== URGENCY BAR ===================== */
.urgency-bar {
  background: linear-gradient(90deg, #991b1b, #dc2626, #991b1b);
  background-size: 200% 100%;
  animation: urgency-slide 4s linear infinite;
  color: #fff;
  text-align: center;
  padding: 11px 15px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.urgency-icon { font-size: 16px; }
.countdown {
  background: rgba(0,0,0,0.35);
  padding: 2px 10px;
  border-radius: 6px;
  font-family: monospace;
  font-size: 15px;
  letter-spacing: 2px;
}
@keyframes urgency-slide {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ===================== SOCIAL PROOF BAR ===================== */
.social-proof-bar {
  background: #f8faf8;
  border-bottom: 1px solid #e5e7eb;
  padding: 10px 20px;
  text-align: center;
  font-size: 13px;
  color: #6b7280;
}
.spb-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.spb-inner strong { color: #1a1a1a; }
.spb-sep { color: #d1d5db; }

/* ===================== HERO ===================== */
.hero {
  padding: 70px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
}
.hero-badge {
  display: inline-block;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #16a34a;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.25;
  color: #1a1a1a;
  margin-bottom: 18px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 .highlight {
  color: #16a34a;
  display: block;
  margin-top: 10px;
  font-size: 34px;
}
.hero .subtitle {
  font-size: 18px;
  color: #6b7280;
  max-width: 680px;
  margin: 0 auto 35px;
  line-height: 1.8;
}

/* ===== VSL VTURB ===== */
.vsl-wrapper {
  max-width: 740px;
  margin: 0 auto 35px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border: 1px solid #e5e7eb;
}
.vsl-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f9fafb;
  gap: 12px;
}
.vsl-play-icon {
  width: 70px;
  height: 70px;
  background: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  padding-left: 4px;
  box-shadow: 0 0 30px rgba(22,163,74,0.3);
}
.vsl-label {
  font-size: 16px;
  font-weight: 600;
  color: #374151;
  margin: 0;
  text-align: center;
  padding: 0 20px;
}
.vsl-sublabel {
  font-size: 12px;
  color: #9ca3af;
  margin: 0;
}

/* ===== HERO CTA & TRUST ===== */
.hero .cta-btn { margin-bottom: 16px; }
.hero-trust {
  font-size: 13px;
  color: #9ca3af;
  margin: 0;
}

/* ===================== CTA BUTTON ===================== */
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #15803d, #22c55e);
  color: #fff;
  font-size: 19px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 20px 44px;
  border-radius: 12px;
  cursor: pointer;
  animation: cta-pulse 2.2s infinite;
  text-align: center;
  letter-spacing: 0.3px;
  transition: filter 0.2s, transform 0.15s;
  border: none;
}
.cta-btn:hover { filter: brightness(1.1); }
.cta-btn:active { transform: scale(0.97); filter: brightness(0.95); }
.cta-btn:focus-visible { outline: 2px solid #16a34a; outline-offset: 3px; }
.cta-btn span {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #bbf7d0;
  margin-top: 6px;
  text-transform: none;
  font-style: italic;
}
.cta-big { font-size: 21px; padding: 22px 50px; }
@keyframes cta-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* ===================== STATS BAR ===================== */
.stats-bar {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 30px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat { position: relative; }
.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: #e5e7eb;
}
.stat-num {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: #16a34a;
  line-height: 1.1;
}
.stat-label {
  display: block;
  font-size: 13px;
  color: #6b7280;
  margin-top: 4px;
}

/* ===================== SECTIONS ===================== */
.section { padding: 75px 0; }
.section h2 {
  font-size: 29px;
  font-weight: 900;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.3;
}
.section > .container > p {
  font-size: 17px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 20px;
  color: #6b7280;
}

/* ===================== PAIN ===================== */
.pain { background: #f8faf8; }
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 30px 0;
}
.pain-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.pain-card:hover { border-color: #16a34a; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.pain-icon { font-size: 38px; margin-bottom: 14px; }
.pain-card p { font-size: 15px; color: #4b5563; margin: 0; text-align: center; line-height: 1.6; }
.pain-closer-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-left: 4px solid #16a34a;
  border-radius: 10px;
  padding: 22px 28px;
  margin-top: 10px;
}
.pain-closer-box p { font-size: 17px; color: #374151; text-align: left; margin: 0; line-height: 1.7; }
.pain-closer-box strong { color: #1a1a1a; }

/* ===================== AGITATION ===================== */
.agitation { background: #ffffff; }
.agitation-content { max-width: 750px; margin: 20px auto 0; }
.agitation-content p { font-size: 17px; color: #4b5563; text-align: center; margin-bottom: 20px; line-height: 1.8; }
.agitation-content strong { color: #1a1a1a; }
.cost-comparison {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
.cost-item {
  flex: 1;
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cost-item.bad {
  background: #fef2f2;
  border: 1px solid #fecaca;
}
.cost-item.good {
  background: #f0fdf4;
  border: 2px solid #16a34a;
}
.cost-label { font-size: 14px; font-weight: 700; color: #6b7280; text-transform: uppercase; letter-spacing: 0.5px; }
.cost-item.bad .cost-price { font-size: 28px; font-weight: 900; color: #dc2626; }
.cost-item.good .cost-price { font-size: 28px; font-weight: 900; color: #16a34a; }
.cost-note { font-size: 13px; color: #6b7280; line-height: 1.5; }
.cost-vs {
  font-size: 20px;
  font-weight: 900;
  color: #d1d5db;
  flex-shrink: 0;
}

/* ===================== SOLUTION ===================== */
.solution { background: #f8faf8; }
.solution .container { text-align: center; }
.solution-badge {
  display: inline-block;
  background: #16a34a;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  padding: 6px 18px;
  border-radius: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.solution-sub {
  font-size: 14px;
  color: #16a34a;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 22px !important;
}
.solution-desc {
  font-size: 17px;
  color: #4b5563;
  max-width: 680px;
  margin: 0 auto 28px !important;
}
.solution-desc strong { color: #1a1a1a; }
.benefits-list { max-width: 540px; margin: 0 auto; text-align: left; }
.benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 17px;
  color: #374151;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
}
.benefit:last-child { border-bottom: none; }
.benefit-check {
  color: #16a34a;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}
.solution-note { font-size: 14px; color: #6b7280; font-style: italic; margin-top: 28px; }

/* ===================== HOW IT WORKS ===================== */
.how-it-works { background: #ffffff; }
.hiw-sub { color: #6b7280; font-size: 15px; margin-bottom: 40px !important; }
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 20px;
}
.step {
  flex: 1;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 30px 24px;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.step:hover { border-color: #16a34a; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.step-num {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #15803d, #22c55e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 16px;
}
.step h3 { font-size: 17px; font-weight: 800; color: #1a1a1a; margin-bottom: 10px; }
.step p { font-size: 14px; color: #6b7280; margin: 0; line-height: 1.7; }
.step-arrow {
  font-size: 24px;
  color: #d1d5db;
  flex-shrink: 0;
  margin-top: 52px;
}

/* ===================== PROOF ===================== */
.proof { background: #f8faf8; }
.proof-intro { color: #6b7280; margin-bottom: 30px !important; font-size: 15px; }
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 20px;
}
.result-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.result-card:hover { border-color: #16a34a; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.result-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(22,163,74,0.9);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  z-index: 1;
}
.result-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.result-info { padding: 18px; text-align: center; }
.result-stars { font-size: 14px; margin-bottom: 6px; }
.result-info strong { display: block; color: #1a1a1a; font-size: 16px; margin-bottom: 2px; }
.result-info span { color: #16a34a; font-size: 13px; font-weight: 600; }
.result-quote { font-size: 13px; color: #6b7280; font-style: italic; margin-top: 8px; line-height: 1.5; }
.proof-disclaimer { font-size: 12px; color: #9ca3af; font-style: italic; text-align: center; }

/* ===================== CTA BLOCK ===================== */
.cta-block {
  background: #ffffff;
  padding: 50px 0;
  text-align: center;
}
.cta-block-alt { background: #f8faf8; }
.cta-block-pre { font-size: 16px; color: #4b5563; margin-bottom: 20px; font-weight: 600; }
.cta-block-trust { font-size: 13px; color: #9ca3af; margin-top: 14px; }

/* ===================== MODULES ===================== */
.modules { background: #ffffff; }
.modules-intro {
  color: #16a34a;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 35px !important;
  text-align: center;
}
.modules-grid { display: flex; flex-direction: column; gap: 16px; }
.module-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 26px 28px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.module-card:hover { border-color: #16a34a; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.module-left { flex-shrink: 0; }
.module-number {
  font-size: 40px;
  font-weight: 900;
  color: #16a34a;
  line-height: 1;
  opacity: 0.7;
}
.module-right { flex: 1; }
.module-right h3 { font-size: 18px; font-weight: 800; color: #1a1a1a; margin-bottom: 8px; }
.module-right p { font-size: 15px; color: #6b7280; line-height: 1.7; margin: 0 0 10px; }
.module-lessons { font-size: 13px; color: #16a34a; font-weight: 600; }

/* ===================== BONUSES ===================== */
.bonuses { background: #f8faf8; }
.bonus-header { text-align: center; margin-bottom: 35px; }
.bonus-tag {
  display: inline-block;
  background: #78350f;
  color: #fef08a;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 20px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.bonus-value-total { font-size: 15px; color: #6b7280; margin-top: 10px; }
.bonus-value-total strong { color: #16a34a; }
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bonus-card {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 14px;
  padding: 30px 22px;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.bonus-card:hover { border-color: #f59e0b; transform: translateY(-3px); box-shadow: 0 4px 12px rgba(245,158,11,0.1); }
.bonus-number { font-size: 11px; font-weight: 800; color: #b45309; letter-spacing: 1.5px; margin-bottom: 10px; }
.bonus-icon { font-size: 34px; margin-bottom: 12px; }
.bonus-card h3 { font-size: 16px; font-weight: 800; color: #1a1a1a; margin-bottom: 12px; line-height: 1.4; }
.bonus-card p { font-size: 14px; color: #6b7280; margin-bottom: 16px; line-height: 1.7; }
.bonus-tag-value {
  display: inline-block;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #16a34a;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
}

/* ===================== PRICING ===================== */
.pricing { background: #ffffff; }
.price-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 35px;
  align-items: start;
}
.price-other {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 30px;
}
.price-other h3 { font-size: 17px; font-weight: 800; color: #6b7280; margin-bottom: 20px; text-align: center; }
.price-other li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #6b7280;
  padding: 10px 0;
  border-bottom: 1px solid #e5e7eb;
}
.price-other li strong { color: #dc2626; }
.price-other-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid #d1d5db;
  font-size: 15px;
  color: #6b7280;
}
.price-other-total strong { font-size: 22px; color: #dc2626; }
.price-other-note { font-size: 13px; color: #9ca3af; font-style: italic; text-align: center; margin-top: 12px; }
.price-parc {
  background: #f0fdf4;
  border: 2px solid #16a34a;
  border-radius: 14px;
  padding: 32px 28px;
  position: relative;
  text-align: center;
}
.price-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #16a34a;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 5px 22px;
  border-radius: 20px;
  letter-spacing: 1px;
  white-space: nowrap;
}
.price-parc h3 { font-size: 17px; font-weight: 700; color: #374151; margin: 12px 0 16px; }
.price-parc li {
  text-align: left;
  font-size: 14px;
  color: #374151;
  padding: 7px 0 7px 22px;
  position: relative;
  border-bottom: 1px solid #dcfce7;
}
.price-parc li::before { content: "✓"; color: #16a34a; font-weight: 800; position: absolute; left: 0; }
.price-box { margin: 24px 0 12px; }
.price-original { display: block; font-size: 16px; color: #9ca3af; text-decoration: line-through; margin-bottom: 4px; }
.price-current { display: block; font-size: 58px; font-weight: 900; color: #16a34a; line-height: 1; }
.price-savings {
  display: inline-block;
  background: #16a34a;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  margin-top: 8px;
}
.price-daily {
  font-size: 15px;
  color: #16a34a;
  font-weight: 700;
  margin: 8px 0 4px;
}
.price-note { font-size: 13px; color: #6b7280; margin: 14px 0 20px; }
.price-parc .cta-btn { width: 100%; font-size: 15px; padding: 16px 20px; }

/* ===================== GUARANTEE ===================== */
.guarantee { background: #f8faf8; }
.guarantee-box {
  display: flex;
  align-items: center;
  gap: 36px;
  max-width: 760px;
  margin: 0 auto;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 18px;
  padding: 38px;
}
.guarantee-img { width: 130px; flex-shrink: 0; }
.guarantee-text h2 { font-size: 22px; text-align: left; margin-bottom: 12px; color: #1a1a1a; }
.guarantee-text p { font-size: 15px; text-align: left; color: #4b5563; line-height: 1.7; margin-bottom: 10px; }
.guarantee-bold { color: #16a34a !important; font-weight: 700; }
.guarantee-how {
  font-size: 14px !important;
  color: #6b7280 !important;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 14px;
}
.guarantee-how strong { color: #1a1a1a; }

/* ===================== SCIENCE ===================== */
.science { background: #f8faf8; }
.science-intro { font-size: 17px; color: #6b7280; max-width: 640px; margin: 0 auto 32px; text-align: center; line-height: 1.7; }
.science-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.science-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.science-card:hover { border-color: #16a34a; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.science-icon { font-size: 36px; margin-bottom: 14px; }
.science-card h3 { font-size: 16px; font-weight: 800; color: #1a1a1a; margin-bottom: 12px; }
.science-card p { font-size: 14px; color: #6b7280; line-height: 1.7; margin: 0; }
.science-card strong { color: #16a34a; }
.science-note {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  padding: 16px 22px;
  text-align: center;
  font-size: 15px;
  color: #4b5563;
  max-width: 640px;
  margin: 0 auto;
}
.science-note strong { color: #16a34a; }

/* ===================== FAQ ===================== */
.faq { background: #ffffff; }
.faq-list { max-width: 720px; margin: 30px auto 0; }
.faq-item { border-bottom: 1px solid #e5e7eb; }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
}
.faq-question span:first-child { font-size: 16px; font-weight: 600; color: #1a1a1a; transition: color 0.2s; line-height: 1.5; padding-right: 16px; }
.faq-question:hover span:first-child { color: #16a34a; }
.faq-toggle { font-size: 26px; color: #16a34a; font-weight: 300; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 22px; }
.faq-answer p { font-size: 15px; color: #6b7280; text-align: left; margin: 0; line-height: 1.8; }

/* ===================== CTA FINAL ===================== */
.cta-final {
  background: linear-gradient(180deg, #ffffff, #f0fdf4);
  padding: 85px 0;
  text-align: center;
}
.cta-final h2 { font-size: 31px; color: #1a1a1a; margin-bottom: 16px; line-height: 1.3; }
.cta-final p { color: #6b7280; font-size: 17px; max-width: 600px; margin: 0 auto 35px; line-height: 1.8; }
.final-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #9ca3af;
}

/* ===================== FOOTER ===================== */
.footer { background: #111827; padding: 45px 0; text-align: center; border-top: 1px solid #1f2937; }
.footer-legal { font-size: 11px; color: #6b7280; line-height: 1.8; max-width: 720px; margin: 0 auto 14px !important; }
.footer-copy { font-size: 12px; color: #4b5563; margin-top: 20px; }

/* ===================== STICKY CTA MOBILE ===================== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(135deg, #15803d, #22c55e);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  display: none;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta a {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  padding: 16px 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .hero { padding: 45px 0 40px; }
  .hero h1 { font-size: 25px; }
  .hero h1 .highlight { font-size: 22px; }
  .hero .subtitle { font-size: 16px; }

  .urgency-bar { font-size: 11px; gap: 5px; flex-wrap: wrap; justify-content: center; }
  .spb-sep, .spb-inner span:last-child { display: none; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .stat-num { font-size: 22px; }
  .stat + .stat::before { display: none; }

  .section { padding: 50px 0; }
  .section h2 { font-size: 22px; }

  .pain-grid { grid-template-columns: 1fr; }
  .pain-closer-box p { font-size: 15px; }

  .cost-comparison { flex-direction: column; }
  .cost-vs { transform: rotate(90deg); }

  .steps-grid { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); margin: 0 auto; }

  .results-grid { grid-template-columns: 1fr; gap: 18px; }

  .module-card { flex-direction: column; gap: 10px; }
  .module-number { font-size: 28px; }

  .science-grid { grid-template-columns: 1fr; gap: 16px; }
  .bonus-grid { grid-template-columns: 1fr; gap: 16px; }

  .price-comparison { grid-template-columns: 1fr; }

  .guarantee-box { flex-direction: column; text-align: center; padding: 28px 22px; }
  .guarantee-img { width: 100px; }
  .guarantee-text h2, .guarantee-text p { text-align: center; }

  .cta-btn { font-size: 15px; padding: 18px 24px; width: 100%; }
  .cta-big { font-size: 16px; padding: 18px 24px; }

  .price-current { font-size: 44px; }
  .cta-final { padding: 55px 0; }
  .cta-final h2 { font-size: 24px; }
  .final-trust { gap: 12px; font-size: 12px; }

  .sticky-cta { display: block; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 22px; }
  .hero h1 .highlight { font-size: 19px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-question span:first-child { font-size: 14px; }
}

/* ===================== EXIT INTENT POPUP ===================== */
.exit-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.exit-popup.active { display: flex; }

.exit-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  cursor: pointer;
}

.exit-popup-box {
  position: relative;
  background: #ffffff;
  border: 2px solid #16a34a;
  border-radius: 16px;
  padding: 40px 36px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  z-index: 1;
  animation: popup-in 0.3s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

@keyframes popup-in {
  from { opacity: 0; transform: scale(0.92) translateY(-10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.exit-popup-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.2s;
}
.exit-popup-close:hover { color: #1a1a1a; }

.exit-popup-badge {
  display: inline-block;
  background: #dc2626;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.exit-popup-box h3 {
  font-size: 22px;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 14px;
}

.exit-popup-box p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 18px;
}

.exit-popup-guarantee {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 14px;
  color: #16a34a;
  font-weight: 600;
  margin-bottom: 22px;
}

.exit-popup-skip {
  font-size: 12px;
  color: #9ca3af;
  cursor: pointer;
  margin-top: 14px;
  text-decoration: underline;
  transition: color 0.2s;
}
.exit-popup-skip:hover { color: #6b7280; }

@media (max-width: 480px) {
  .exit-popup-box { padding: 30px 22px; }
  .exit-popup-box h3 { font-size: 18px; }
}
