:root {
  --bg-deep: #07090F;
  --bg-card: #0F1320;
  --bg-card-2: #141A2B;
  --gold: #FFC107;
  --gold-bright: #FFD23F;
  --gold-soft: #FFA000;
  --red: #FF3838;
  --red-bright: #FF5252;
  --red-deep: #C62828;
  --green: #00C853;
  --text: #F4F5F7;
  --text-dim: #A8AEBF;
  --text-faint: #6B7280;
  --border: rgba(255, 193, 7, 0.18);
  --shadow-gold: 0 0 60px rgba(255, 193, 7, 0.25);
  --shadow-red: 0 10px 40px rgba(255, 56, 56, 0.4);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- TOP BAR ---------- */
.topbar {
  background: linear-gradient(90deg, var(--red-deep), var(--red), var(--red-deep));
  color: yellow;
  text-align: center;
  padding: 10px 16px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.4px;
  position: relative;
  z-index: 10;
}
.topbar span { display: inline-block; animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 50px 0 60px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top, rgba(255, 193, 7, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(255, 56, 56, 0.08) 0%, transparent 50%),
    var(--bg-deep);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.15fr 1fr; gap: 60px; }
  .hero { padding: 80px 0 100px; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 193, 7, 0.05));
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(38px, 7vw, 68px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
  font-weight: 400;
}

.hero h1 .gold {
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold-soft) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero h1 .underline {
  position: relative;
  display: inline-block;
}
.hero h1 .underline::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 8px;
  background: var(--gold);
  z-index: -1;
  opacity: 0.4;
}

.hero p.lead {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-dim);
  margin-bottom: 30px;
  max-width: 580px;
}

/* ---------- PRICE BOX ---------- */
.price-box {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 22px;
  position: relative;
}

.price-box::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, var(--gold), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.price-from {
  font-size: 14px;
  color: var(--text-faint);
  margin-bottom: 4px;
}
.price-from s { color: var(--text-faint); }

.price-main {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.price-currency {
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  color: var(--gold);
}
.price-value {
  font-family: 'Anton', sans-serif;
  font-size: clamp(56px, 9vw, 84px);
  line-height: 1;
  color: var(--gold-bright);
  letter-spacing: -1px;
}
.price-cents {
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  color: var(--gold);
  align-self: flex-start;
  margin-top: 8px;
}
.price-tag {
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(255, 193, 7, 0.1);
  border-radius: 6px;
}

.price-installment {
  font-size: 15px;
  color: var(--text);
}
.price-installment strong { color: var(--gold-bright); font-weight: 700; }
.price-installment small { color: var(--text-faint); }

/* ---------- BUTTONS ---------- */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 480px;
  padding: 22px 28px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
  background: linear-gradient(135deg, #FF4D4D 0%, #C62828 100%);
  border: none;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow-red), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  position: relative;
  overflow: hidden;
  animation: cta-breathe 2.4s ease-in-out infinite;
}

@keyframes cta-breathe {
  0%, 100% { box-shadow: 0 10px 40px rgba(255, 56, 56, 0.4), inset 0 1px 0 rgba(255,255,255,0.2); }
  50% { box-shadow: 0 10px 60px rgba(255, 56, 56, 0.7), inset 0 1px 0 rgba(255,255,255,0.2); }
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 60px rgba(255, 56, 56, 0.7), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-cta::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: shine 3s infinite;
}
@keyframes shine { to { left: 100%; } }

.btn-cta .arrow {
  display: inline-block;
  transition: transform 0.18s ease;
}
.btn-cta:hover .arrow { transform: translateX(4px); }

.cta-reassure {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cta-reassure span {
  font-size: 13px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cta-reassure span::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
}

/* ---------- HERO VISUAL ---------- */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 380px;
}

.phone-mockup {
  width: 280px;
  background: #1a1a1a;
  border-radius: 32px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 100px rgba(255, 193, 7, 0.15);
  transform: rotate(-3deg);
  position: relative;
  z-index: 2;
}
.phone-screen {
  background: #ECE5DD;
  border-radius: 24px;
  padding: 14px;
  overflow: hidden;
  aspect-ratio: 9/18;
  display: flex;
  flex-direction: column;
}
.wa-header {
  background: #075E54;
  color: white;
  margin: -14px -14px 12px;
  padding: 14px 14px 10px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wa-header::before {
  content: '←';
  font-size: 18px;
}
.wa-header-info { flex: 1; }
.wa-header-info strong { display: block; font-size: 13px; }
.wa-header-info small { font-size: 10px; opacity: 0.8; }
.wa-msg {
  background: white;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 11px;
  margin-bottom: 8px;
  color: #303030;
  max-width: 85%;
  box-shadow: 0 1px 1px rgba(0,0,0,0.08);
}
.wa-msg.sent {
  background: #DCF8C6;
  margin-left: auto;
  border-bottom-right-radius: 2px;
}
.wa-msg.received { border-bottom-left-radius: 2px; }
.wa-time {
  font-size: 8px;
  color: #999;
  display: block;
  text-align: right;
  margin-top: 2px;
}

.floating-badge {
  position: absolute;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-soft));
  color: #1a1a1a;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 13px;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
  z-index: 3;
}
.floating-badge.top-right {
  top: 10%;
  right: 5%;
  transform: rotate(8deg);
  animation: float 4s ease-in-out infinite;
}
.floating-badge.bottom-left {
  bottom: 8%;
  left: 0%;
  transform: rotate(-6deg);
  animation: float 4s ease-in-out infinite 1s;
}
.floating-badge small {
  display: block;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
}
.floating-badge big {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  display: block;
  letter-spacing: 0.5px;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 8deg)); }
  50% { transform: translateY(-8px) rotate(var(--rot, 8deg)); }
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: var(--bg-card);
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-bar-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: center;
}
@media (min-width: 700px) {
  .trust-bar-content { grid-template-columns: repeat(4, 1fr); }
}
.trust-item .number {
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 4vw, 38px);
  color: var(--gold-bright);
  line-height: 1;
}
.trust-item .label {
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

/* ---------- SECTIONS ---------- */
section.block { padding: 70px 0; position: relative; }
section.block-alt { background: var(--bg-card); }

.section-tag {
  display: inline-block;
  font-size: 12px;
  color: var(--red-bright);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.0;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  font-weight: 400;
}
.section-title .gold {
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold-soft) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--text-dim);
  max-width: 700px;
  margin-bottom: 50px;
}

/* ---------- PAIN POINTS ---------- */
.pain-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .pain-grid { grid-template-columns: 1fr 1fr; }
}
.pain-card {
  background: var(--bg-deep);
  border: 1px solid rgba(255,56,56,0.15);
  border-radius: 14px;
  padding: 28px;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.pain-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,56,56,0.4);
}
.pain-emoji {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}
.pain-quote {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  font-style: italic;
}
.pain-quote::before { content: '"'; color: var(--red-bright); }
.pain-quote::after { content: '"'; color: var(--red-bright); }
.pain-text {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
}

.pain-close {
  text-align: center;
  margin-top: 50px;
  padding: 30px 20px;
  background: linear-gradient(135deg, rgba(255,193,7,0.06), transparent);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
}
.pain-close p {
  font-family: 'Anton', sans-serif;
  font-size: clamp(22px, 3.5vw, 32px);
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--gold-bright);
}

/* ---------- HOW IT WORKS ---------- */
.steps {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  margin-top: 40px;
}
@media (min-width: 800px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}
.step-card {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  text-align: left;
}
.step-num {
  font-family: 'Anton', sans-serif;
  font-size: 80px;
  line-height: 0.8;
  background: linear-gradient(180deg, var(--gold-bright), transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.85;
  margin-bottom: 8px;
}
.step-title {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text);
}
.step-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ---------- WHAT YOU GET ---------- */
.stack-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}
.stack-item {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 16px;
  align-items: start;
}
.stack-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,193,7,0.2), rgba(255,193,7,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.stack-item.main .stack-icon {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-soft));
  color: #1a1a1a;
}
.stack-content h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--text);
  line-height: 1.3;
}
.stack-content p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}
.stack-value {
  font-size: 14px;
  color: var(--gold-bright);
  font-weight: 800;
  white-space: nowrap;
  text-align: right;
}
.stack-value s { color: var(--text-faint); font-weight: 500; display: block; font-size: 11px; }

.value-total {
  background: linear-gradient(135deg, rgba(255,193,7,0.1), rgba(255,193,7,0.02));
  border: 1px dashed var(--gold);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.value-total-label {
  font-size: 15px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.value-total-amount {
  font-family: 'Anton', sans-serif;
  font-size: 36px;
  color: var(--gold-bright);
}
.value-total-amount s { color: var(--text-faint); }

.value-final {
  text-align: center;
  background: linear-gradient(135deg, var(--red-deep), var(--red));
  border-radius: 14px;
  padding: 30px 24px;
}
.value-final-label {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 8px;
}
.value-final-amount {
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 8vw, 72px);
  color: white;
  line-height: 1;
}
.value-final-installment {
  color: rgba(255,255,255,0.95);
  font-size: 15px;
  margin-top: 6px;
  font-weight: 600;
}

/* ---------- BENEFITS ---------- */
.benefits {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  margin-top: 40px;
}
@media (min-width: 800px) {
  .benefits { grid-template-columns: 1fr 1fr; }
}
.benefit-card {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px;
  transition: transform 0.2s ease;
}
.benefit-card:hover { transform: translateY(-4px); }
.benefit-num {
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.benefit-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.25;
}
.benefit-desc {
  font-size: 15px;
  color: var(--text-dim);
  margin-bottom: 16px;
  line-height: 1.65;
}
.benefit-proof {
  font-size: 13px;
  color: var(--gold-bright);
  background: rgba(255,193,7,0.06);
  padding: 12px 14px;
  border-left: 3px solid var(--gold);
  border-radius: 4px;
}
.benefit-proof strong { color: var(--gold-bright); }

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
  margin-top: 40px;
}
@media (min-width: 800px) {
  .testimonials { grid-template-columns: 1fr 1fr; }
}
.testi-card {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  position: relative;
}
.testi-stars {
  color: var(--gold-bright);
  font-size: 17px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testi-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 18px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  font-weight: 800;
  font-size: 16px;
}
.testi-name { font-weight: 700; font-size: 14px; }
.testi-meta { font-size: 12px; color: var(--text-dim); }

/* ---------- FOR WHO ---------- */
.for-who {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
  margin-top: 40px;
}
@media (min-width: 800px) {
  .for-who { grid-template-columns: 1fr 1fr; gap: 40px; }
}
.for-col {
  background: var(--bg-deep);
  border-radius: 14px;
  padding: 30px;
  border: 1px solid var(--border);
}
.for-col.no { border-color: rgba(255,56,56,0.2); }
.for-col h3 {
  font-family: 'Anton', sans-serif;
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.for-col.yes h3 { color: var(--green); }
.for-col.no h3 { color: var(--red-bright); }
.for-col ul { list-style: none; }
.for-col li {
  padding: 10px 0 10px 32px;
  position: relative;
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}
.for-col.yes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0,200,83,0.15);
  color: var(--green);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.for-col.no li::before {
  content: '✕';
  position: absolute;
  left: 0;
  top: 8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,56,56,0.15);
  color: var(--red-bright);
  font-weight: 800;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- GUARANTEE ---------- */
.guarantee {
  background:
    radial-gradient(ellipse at top, rgba(0,200,83,0.1), transparent 60%),
    var(--bg-card);
  text-align: center;
}
.guarantee-seal {
  width: 140px;
  height: 140px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #00897B);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  position: relative;
  box-shadow: 0 0 60px rgba(0,200,83,0.4);
  border: 4px solid rgba(0,200,83,0.3);
}
.guarantee-seal big {
  font-family: 'Anton', sans-serif;
  font-size: 48px;
  line-height: 1;
}
.guarantee-seal span { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.guarantee-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  text-transform: uppercase;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.guarantee-text {
  font-size: 16px;
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  background:
    radial-gradient(ellipse at center, rgba(255,193,7,0.12), transparent 70%),
    var(--bg-deep);
  text-align: center;
  padding: 90px 0;
  position: relative;
}
.final-price-box {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card-2));
  border: 2px solid var(--gold);
  border-radius: 20px;
  padding: 40px 30px;
  max-width: 560px;
  margin: 30px auto;
  position: relative;
  box-shadow: 0 0 80px rgba(255,193,7,0.2);
}
.final-price-from {
  font-size: 14px;
  color: var(--text-faint);
  margin-bottom: 6px;
}
.final-price-from s { font-size: 18px; }
.final-price-row {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.final-price-currency {
  font-family: 'Anton', sans-serif;
  font-size: 36px;
  color: var(--gold);
}
.final-price-value {
  font-family: 'Anton', sans-serif;
  font-size: clamp(72px, 12vw, 110px);
  line-height: 1;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.final-price-cents {
  font-family: 'Anton', sans-serif;
  font-size: 36px;
  color: var(--gold);
  align-self: flex-start;
  margin-top: 12px;
}
.final-installment {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 26px;
}
.final-installment strong { color: var(--gold-bright); }

.urgency-note {
  background: rgba(255,56,56,0.08);
  border: 1px solid rgba(255,56,56,0.2);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 28px;
  font-size: 14px;
  color: var(--text);
}
.urgency-note strong { color: var(--red-bright); }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 40px auto 0; }
.faq-item {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item[open] { border-color: var(--gold); }
.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  color: var(--gold);
  transition: transform 0.2s ease;
  line-height: 1;
}
.faq-item[open] summary::after { content: '−'; }
.faq-body {
  padding: 0 24px 22px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--bg-card);
  padding: 50px 0 30px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-logo {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  color: var(--gold-bright);
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.footer-text {
  font-size: 13px;
  color: var(--text-faint);
  margin-bottom: 8px;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.footer-disclaimer {
  font-size: 11px;
  color: var(--text-faint);
  margin-top: 24px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.footer-disclaimer strong { color: var(--text-dim); }
.footer-legal {
  margin-top: 20px;
  font-size: 11px;
  color: var(--text-faint);
}

/* ---------- STICKY MOBILE CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  display: none;
  align-items: center;
  gap: 12px;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.3);
}
.sticky-cta-price {
  flex-shrink: 0;
}
.sticky-cta-price small {
  font-size: 10px;
  color: var(--text-faint);
  display: block;
  line-height: 1;
}
.sticky-cta-price strong {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  color: var(--gold-bright);
  display: block;
  line-height: 1.1;
}
.sticky-cta .btn-cta {
  padding: 14px 16px;
  font-size: 14px;
  animation: none;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 80px; }
}

/* ---------- CATEGORIES STRIP ---------- */
.cats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}
@media (min-width: 700px) {
  .cats-strip { grid-template-columns: repeat(6, 1fr); }
}
.cat-pill {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 8px;
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}
.cat-pill:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  transform: translateY(-2px);
}
.cat-pill .icon {
  display: block;
  font-size: 24px;
  margin-bottom: 6px;
}

/* ---------- ANIMATIONS ON SCROLL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- PRICE COUNTDOWN ---------- */
.price-countdown {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
  padding-top: 10px;
}
.price-countdown strong {
  color: var(--red-bright);
  font-size: 17px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

/* ---------- CTA SOCIAL PROOF ---------- */
.cta-people-watching {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 10px;
  text-align: center;
}
.cta-people-watching span {
  color: var(--text);
  font-weight: 700;
}

/* ---------- SPOTS COUNTER ---------- */
.spots-counter {
  margin: 20px auto 30px;
  max-width: 560px;
  text-align: center;
}
.spots-bar-wrap {
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 10px;
}
.spots-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--red-bright));
  border-radius: 99px;
  transition: width 1s ease;
}
.spots-text {
  font-size: 14px;
  color: var(--text);
}
.spots-text strong { color: var(--red-bright); }

/* ---------- TESTIMONIALS VERIFIED ---------- */
.testi-verified {
  font-size: 11px;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

/* ---------- MID-PAGE CTA ---------- */
.mid-cta-wrap {
  text-align: center;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.mid-cta-sub {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 12px;
}

/* ---------- SAFE PAYMENT BAR ---------- */
.safe-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 18px;
  background: rgba(0,0,0,0.3);
  border-radius: 12px;
  margin-top: 24px;
}
.safe-bar small {
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.safe-method {
  font-size: 12px;
  color: var(--text);
  font-weight: 700;
  padding: 6px 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
}
