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

:root {
  --orange: #ff6900;
  --orange-glow: #ff8533;
  --orange-dark: #cc5400;
  --black: #000;
  --black-soft: #080808;
  --black-card: #0f0f0f;
  --gray: #888;
  --gray-light: #c8c8c8;
  --white: #fff;
  --green: #00e676;
  --red: #ff3333;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 720px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 2; }
.center { text-align: center; }

/* ===== BACKGROUND FX ===== */
.bg-fx {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(255,105,0,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(255,105,0,0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 10% 80%, rgba(255,105,0,0.05) 0%, transparent 50%);
  animation: meshPulse 8s ease-in-out infinite alternate;
}

@keyframes meshPulse {
  from { opacity: 0.7; transform: scale(1); }
  to { opacity: 1; transform: scale(1.05); }
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,105,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,105,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
}

.bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

#bg-lightning, #bg-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.6) 100%);
}

/* ===== FLOATING NOTIFS ===== */
.float-notifs {
  position: fixed;
  bottom: 80px;
  left: 16px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.float-notif {
  background: rgba(15,15,15,0.95);
  border: 1px solid rgba(255,105,0,0.3);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 20px rgba(255,105,0,0.15);
  backdrop-filter: blur(10px);
  animation: notifSlideIn 0.5s cubic-bezier(0.34,1.56,0.64,1) forwards,
             notifSlideOut 0.4s ease 4s forwards;
  max-width: 260px;
}

.float-notif strong { color: var(--orange); }

@keyframes notifSlideIn {
  from { transform: translateX(-120%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes notifSlideOut {
  to { transform: translateX(-120%); opacity: 0; }
}

/* ===== URGENCY BAR ===== */
.urgency-bar {
  position: relative;
  z-index: 10;
  background: linear-gradient(90deg, #1a0a00, var(--orange-dark), var(--orange), var(--orange-dark), #1a0a00);
  background-size: 200% 100%;
  animation: barShift 4s linear infinite;
  padding: 10px 16px;
  overflow: hidden;
}

@keyframes barShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.urgency-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-wrap: wrap;
}

.pulse-dot {
  width: 7px; height: 7px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1.2s ease infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
  50% { opacity: 0.7; transform: scale(1.2); box-shadow: 0 0 0 6px rgba(255,255,255,0); }
}

.urgency-divider { opacity: 0.4; }

.countdown {
  font-family: 'Space Grotesk', monospace;
  color: #fff;
  background: rgba(0,0,0,0.3);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.1em;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              transform 0.7s cubic-bezier(0.22,1,0.36,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  z-index: 2;
  padding: 48px 0 32px;
  text-align: center;
  overflow: hidden;
}

.hero-flare {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(255,105,0,0.2) 0%, transparent 70%);
  pointer-events: none;
  animation: flarePulse 4s ease infinite alternate;
}

.hero-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.hero-logo img {
  width: min(420px, 92vw);
  height: auto;
  filter: drop-shadow(0 0 40px rgba(255,105,0,0.55));
  animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); filter: drop-shadow(0 0 30px rgba(255,105,0,0.45)); }
  50% { transform: translateY(-6px); filter: drop-shadow(0 0 50px rgba(255,105,0,0.65)); }
}

.offer-logo {
  width: min(320px, 85vw);
  height: auto;
  margin: 0 auto 20px;
  display: block;
  filter: drop-shadow(0 0 35px rgba(255,105,0,0.5));
}

.sticky-logo {
  width: 72px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px rgba(255,105,0,0.5));
}

.footer-logo-img {
  width: min(300px, 80vw);
  height: auto;
  margin: 0 auto 20px;
  display: block;
  opacity: 0.95;
  filter: drop-shadow(0 0 30px rgba(255,105,0,0.4));
}

@keyframes flarePulse {
  from { opacity: 0.5; transform: translateX(-50%) scale(1); }
  to { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,105,0,0.1);
  border: 1px solid rgba(255,105,0,0.35);
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.badge-bolt { animation: boltFlash 2s ease infinite; }

@keyframes boltFlash {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; text-shadow: 0 0 10px var(--orange); }
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 8vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.hero-title .line { display: block; }

.highlight {
  color: var(--orange);
  text-shadow: 0 0 40px rgba(255,105,0,0.5);
}

.highlight-big {
  font-size: clamp(2.8rem, 10vw, 4.2rem);
  color: var(--orange);
  text-shadow: 0 0 60px rgba(255,105,0,0.6), 0 0 120px rgba(255,105,0,0.2);
  animation: titleGlow 3s ease infinite alternate;
}

.highlight-big .thin {
  font-size: 0.55em;
  color: var(--white);
  text-shadow: none;
  font-weight: 400;
}

@keyframes titleGlow {
  from { text-shadow: 0 0 40px rgba(255,105,0,0.4); }
  to { text-shadow: 0 0 80px rgba(255,105,0,0.8), 0 0 120px rgba(255,105,0,0.3); }
}

.glitch {
  position: relative;
  display: inline-block;
}

.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  color: var(--orange);
}

.glitch::before {
  animation: glitch1 3s infinite linear alternate-reverse;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
  opacity: 0.7;
}

.glitch::after {
  animation: glitch2 2s infinite linear alternate-reverse;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
  opacity: 0.7;
}

@keyframes glitch1 {
  0%, 90%, 100% { transform: translate(0); }
  92% { transform: translate(-3px, 1px); }
  94% { transform: translate(3px, -1px); }
}

@keyframes glitch2 {
  0%, 90%, 100% { transform: translate(0); }
  91% { transform: translate(2px, 0); }
  93% { transform: translate(-2px, 1px); }
}

.hero-sub {
  font-size: clamp(0.95rem, 3.5vw, 1.1rem);
  color: var(--gray-light);
  max-width: 540px;
  margin: 0 auto 32px;
  font-weight: 500;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,105,0,0.15);
  border-radius: 16px;
  padding: 20px 8px;
  backdrop-filter: blur(10px);
}

.stat-item { flex: 1; text-align: center; }

.stat-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--orange);
  line-height: 1;
  text-shadow: 0 0 20px rgba(255,105,0,0.4);
}

.stat-suffix {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--orange);
}

.stat-label {
  display: block;
  font-size: 0.65rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,105,0,0.2);
  flex-shrink: 0;
}

/* ===== MARQUEE ===== */
.marquee-wrap {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid rgba(255,105,0,0.15);
  border-bottom: 1px solid rgba(255,105,0,0.15);
  background: rgba(255,105,0,0.04);
  padding: 12px 0;
}

.marquee {
  display: flex;
  gap: 48px;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

.marquee span {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: rgba(255,105,0,0.7);
  text-transform: uppercase;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== SECTIONS ===== */
.section {
  position: relative;
  z-index: 2;
  padding: 64px 0;
}

.section-dark {
  background: rgba(8,8,8,0.7);
  border-top: 1px solid rgba(255,105,0,0.06);
  border-bottom: 1px solid rgba(255,105,0,0.06);
}

.section-divider {
  display: flex;
  justify-content: center;
  margin-bottom: -20px;
}

.section-divider span {
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  box-shadow: 0 0 10px var(--orange);
}

.section-tag {
  display: block;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 7vw, 2.8rem);
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 36px;
}

.section-text {
  color: var(--gray-light);
  font-size: 1rem;
  line-height: 1.75;
}

.section-text.center { text-align: center; margin-top: 28px; }
.section-text strong { color: var(--orange); }

/* ===== VSL ===== */
.vsl-section {
  position: relative;
  z-index: 2;
  padding: 40px 0 48px;
}

.vsl-warning {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.sound-wave {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 16px;
}

.sound-wave i {
  display: block;
  width: 3px;
  background: var(--orange);
  border-radius: 2px;
  animation: soundBar 0.8s ease infinite alternate;
}

.sound-wave i:nth-child(1) { height: 6px; animation-delay: 0s; }
.sound-wave i:nth-child(2) { height: 12px; animation-delay: 0.1s; }
.sound-wave i:nth-child(3) { height: 16px; animation-delay: 0.2s; }
.sound-wave i:nth-child(4) { height: 10px; animation-delay: 0.3s; }
.sound-wave i:nth-child(5) { height: 7px; animation-delay: 0.4s; }

@keyframes soundBar {
  from { transform: scaleY(0.4); opacity: 0.5; }
  to { transform: scaleY(1); opacity: 1; }
}

.vsl-frame {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.vsl-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--orange);
  border-style: solid;
  z-index: 5;
  animation: cornerPulse 2s ease infinite alternate;
}

.vsl-corner.tl { top: -8px; left: -8px; border-width: 2px 0 0 2px; }
.vsl-corner.tr { top: -8px; right: -8px; border-width: 2px 2px 0 0; }
.vsl-corner.bl { bottom: -8px; left: -8px; border-width: 0 0 2px 2px; }
.vsl-corner.br { bottom: -8px; right: -8px; border-width: 0 2px 2px 0; }

@keyframes cornerPulse {
  from { box-shadow: 0 0 5px rgba(255,105,0,0.3); }
  to { box-shadow: 0 0 15px rgba(255,105,0,0.8); }
}

.vsl-scanline {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.03) 2px,
    rgba(0,0,0,0.03) 4px
  );
  border-radius: 12px;
}

.vsl-player {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 9/16;
  background: var(--black-card);
}

.vsl-glow-ring {
  position: absolute;
  inset: -3px;
  border-radius: 15px;
  background: conic-gradient(from 0deg, var(--orange), transparent, var(--orange-glow), transparent, var(--orange));
  z-index: 0;
  animation: ringRotate 4s linear infinite;
}

@keyframes ringRotate {
  to { transform: rotate(360deg); }
}

.vsl-glow {
  position: absolute;
  inset: -1px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  z-index: 0;
  filter: blur(2px);
  opacity: 0.8;
}

.vsl-player video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--black);
}

.vsl-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.6);
  cursor: pointer;
  transition: opacity 0.5s ease;
}

.vsl-overlay.hidden { opacity: 0; pointer-events: none; }

.vsl-overlay-pulse {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,105,0,0.1) 0%, transparent 70%);
  animation: overlayPulse 2s ease infinite;
}

@keyframes overlayPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.vsl-play-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  position: relative;
  z-index: 2;
}

.play-ring {
  position: absolute;
  top: 0;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(255,105,0,0.4);
  border-radius: 50%;
  animation: playRing 2s ease infinite;
}

@keyframes playRing {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

.play-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(255,105,0,0.7), 0 0 80px rgba(255,105,0,0.3);
  animation: ctaPulse 2s ease infinite;
}

.play-icon svg { width: 32px; height: 32px; margin-left: 4px; }

.play-text {
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-shadow: 0 0 20px rgba(255,105,0,0.6);
}

.play-sub {
  font-size: 0.7rem;
  color: var(--gray);
  letter-spacing: 0.05em;
}

.vsl-progress-wrap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 4;
}

.vsl-progress-bar { height: 4px; background: rgba(255,255,255,0.1); }

.vsl-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orange-dark), var(--orange), var(--orange-glow));
  box-shadow: 0 0 10px var(--orange);
  transition: width 0.2s linear;
}

/* ===== PAIN CARDS ===== */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.pain-card {
  position: relative;
  background: rgba(255,51,51,0.06);
  border: 1px solid rgba(255,51,51,0.2);
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s;
}

.pain-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,105,0,0.4);
}

.pain-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(255,105,0,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.pain-icon { font-size: 1.6rem; }

.pain-card p {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-light);
  line-height: 1.4;
}

.card-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 40px;
  background: radial-gradient(ellipse, rgba(255,51,51,0.2) 0%, transparent 70%);
  pointer-events: none;
}

/* ===== SOLUTION ===== */
.section-solution { padding: 64px 0; }

.solution-box {
  position: relative;
  text-align: center;
  padding: 48px 28px;
  background: linear-gradient(135deg, rgba(255,105,0,0.12) 0%, rgba(255,105,0,0.02) 100%);
  border: 1px solid rgba(255,105,0,0.3);
  border-radius: 20px;
  box-shadow: 0 0 80px rgba(255,105,0,0.1), inset 0 0 60px rgba(255,105,0,0.03);
  overflow: hidden;
}

.solution-bolt {
  font-size: 3rem;
  margin-bottom: 12px;
  animation: boltFlash 1.5s ease infinite;
  filter: drop-shadow(0 0 20px var(--orange));
}

.solution-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 9vw, 3.5rem);
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 8px;
}

.solution-title span {
  color: var(--orange);
  text-shadow: 0 0 40px rgba(255,105,0,0.6);
}

.solution-sub {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.solution-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  margin: 0 auto 24px;
  box-shadow: 0 0 10px var(--orange);
}

/* ===== RESULTS TRACK ===== */
.results-track { position: relative; padding: 20px 0; }

.results-line {
  position: absolute;
  top: 38px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(255,105,0,0.15);
  z-index: 0;
}

.results-line-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orange-dark), var(--orange));
  box-shadow: 0 0 8px var(--orange);
  transition: width 1.5s cubic-bezier(0.22,1,0.36,1);
}

.results-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  gap: 4px;
}

.result-step {
  flex: 1;
  text-align: center;
  padding: 8px 4px;
}

.result-dot {
  width: 12px;
  height: 12px;
  background: var(--black-card);
  border: 2px solid rgba(255,105,0,0.4);
  border-radius: 50%;
  margin: 0 auto 12px;
  transition: all 0.5s ease;
}

.result-step.active .result-dot {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 15px var(--orange);
  transform: scale(1.3);
}

.result-value {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1rem, 4vw, 1.5rem);
  color: var(--orange);
  letter-spacing: 0.03em;
  line-height: 1;
}

.result-label {
  display: block;
  font-size: 0.6rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.result-step.highlight-step .result-value {
  font-size: clamp(1.1rem, 4.5vw, 1.7rem);
  text-shadow: 0 0 20px rgba(255,105,0,0.5);
}

/* ===== MODULES ===== */
.modules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.module-card {
  position: relative;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px 24px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  backdrop-filter: blur(8px);
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.module-card:hover {
  border-color: rgba(255,105,0,0.3);
  box-shadow: 0 8px 40px rgba(255,105,0,0.1);
  transform: translateY(-3px);
}

.module-card:hover::before { opacity: 1; }

.module-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: rgba(255,105,0,0.15);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
}

.module-icon { font-size: 1.8rem; margin-bottom: 10px; }

.module-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
  font-family: 'Space Grotesk', sans-serif;
}

.module-card p {
  font-size: 0.88rem;
  color: var(--gray-light);
  margin-bottom: 16px;
}

.module-bar {
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}

.module-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange-dark), var(--orange));
  border-radius: 2px;
  width: 0% !important;
  transition: width 1.2s cubic-bezier(0.22,1,0.36,1);
}

.module-card.visible .module-bar-fill { width: var(--bar-width, 90%) !important; }

/* ===== BENEFITS ===== */
.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 16px 20px;
  background: rgba(255,105,0,0.04);
  border-radius: 12px;
  border: 1px solid rgba(255,105,0,0.12);
  transition: border-color 0.3s, background 0.3s;
}

.benefits-list li:hover {
  border-color: rgba(255,105,0,0.35);
  background: rgba(255,105,0,0.08);
}

.check {
  width: 28px;
  height: 28px;
  background: rgba(255,105,0,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check svg {
  width: 16px;
  height: 16px;
  fill: var(--orange);
}

/* ===== TESTIMONIALS ===== */
.section-testimonials { overflow: hidden; }

.testimonials-slider { overflow: hidden; }

.testimonials-track {
  display: flex;
  gap: 16px;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
  cursor: grab;
}

.testimonials-track:active { cursor: grabbing; }

.testimonial-card {
  flex: 0 0 calc(100% - 0px);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(8px);
  transition: border-color 0.3s;
}

.testimonial-card:hover { border-color: rgba(255,105,0,0.25); }

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

.avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
}

.testimonial-header strong { display: block; font-size: 0.9rem; }
.testimonial-header span { font-size: 0.75rem; color: var(--gray); }

.result-badge {
  margin-left: auto;
  background: rgba(255,105,0,0.15);
  border: 1px solid rgba(255,105,0,0.3);
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
}

.stars {
  color: var(--orange);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.testimonial-card p {
  font-size: 0.92rem;
  color: var(--gray-light);
  font-style: italic;
  line-height: 1.65;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.slider-dot.active {
  background: var(--orange);
  box-shadow: 0 0 10px var(--orange);
  transform: scale(1.3);
}

/* ===== OBJECTIONS ===== */
.objections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.objection-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-decoration: line-through;
  text-decoration-color: var(--red);
  transition: transform 0.3s;
}

.objection-item:hover { transform: scale(0.97); }

.obj-cross {
  width: 36px;
  height: 36px;
  background: rgba(255,51,51,0.1);
  border-radius: 50%;
  position: relative;
}

.obj-cross::before, .obj-cross::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 18px; height: 2px;
  background: var(--red);
  transform: translate(-50%, -50%) rotate(45deg);
}

.obj-cross::after { transform: translate(-50%, -50%) rotate(-45deg); }

/* ===== OFFER ===== */
.offer-section {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.offer-flare {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,105,0,0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: flarePulse 3s ease infinite alternate;
}

.offer-box {
  position: relative;
  background: rgba(10,10,10,0.9);
  border: 2px solid var(--orange);
  border-radius: 24px;
  padding: 44px 28px;
  text-align: center;
  box-shadow: 0 0 100px rgba(255,105,0,0.2), inset 0 0 80px rgba(255,105,0,0.03);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.offer-pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255,105,0,0.2);
  border-radius: 50%;
  animation: offerRing 3s ease infinite;
  pointer-events: none;
}

.offer-pulse-ring.delay { animation-delay: 1.5s; }

@keyframes offerRing {
  0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.offer-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: var(--orange);
  letter-spacing: 0.25em;
  margin-bottom: 8px;
  animation: pulseGlow 2s ease infinite;
}

@keyframes pulseGlow {
  0%, 100% { text-shadow: 0 0 20px rgba(255,105,0,0.5); }
  50% { text-shadow: 0 0 50px rgba(255,105,0,0.9); }
}

.offer-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 8vw, 3rem);
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}

.offer-includes {
  text-align: left;
  margin-bottom: 28px;
  padding: 22px;
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
}

.offer-includes h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin-bottom: 14px;
  font-weight: 800;
}

.offer-includes ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.offer-includes li {
  font-size: 0.92rem;
  color: var(--gray-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.inc-check { color: var(--orange); font-weight: 900; }

.price-box { margin-bottom: 28px; }

.price-from { font-size: 0.95rem; color: var(--gray); margin-bottom: 6px; }
.price-from s { color: var(--red); }

.price-current-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.price-current {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: var(--orange);
  line-height: 1;
  text-shadow: 0 0 50px rgba(255,105,0,0.5);
}

.currency { font-size: 2.2rem; vertical-align: super; }
.cents { font-size: 2.8rem; }

.price-tag {
  background: var(--red);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.05em;
  animation: tagBounce 2s ease infinite;
}

@keyframes tagBounce {
  0%, 100% { transform: rotate(-3deg) scale(1); }
  50% { transform: rotate(3deg) scale(1.05); }
}

.price-installment { font-size: 0.9rem; color: var(--gray-light); margin-top: 6px; }
.price-installment strong { color: var(--white); }

/* ===== CTA BUTTON ===== */
.cta-button {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 420px;
  padding: 22px 36px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  text-decoration: none;
  text-align: center;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 0.1em;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(255,105,0,0.5), 0 8px 32px rgba(0,0,0,0.5);
  animation: ctaPulse 2.5s ease infinite;
  transition: transform 0.15s ease;
  z-index: 1;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 30px rgba(255,105,0,0.5), 0 8px 32px rgba(0,0,0,0.4); }
  50% { box-shadow: 0 0 60px rgba(255,105,0,0.8), 0 0 100px rgba(255,105,0,0.3), 0 8px 32px rgba(0,0,0,0.4); }
}

.cta-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shine 2.5s ease infinite;
}

@keyframes shine {
  0% { left: -100%; }
  60%, 100% { left: 150%; }
}

/* ===== GUARANTEE ===== */
.guarantee {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  margin-top: 28px;
  padding: 20px;
  background: rgba(0,230,118,0.06);
  border: 1px solid rgba(0,230,118,0.2);
  border-radius: 14px;
}

.guarantee-seal {
  width: 60px;
  height: 60px;
  background: rgba(0,230,118,0.1);
  border: 2px solid var(--green);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(0,230,118,0.2);
}

.guarantee-seal span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--green);
  line-height: 1;
}

.guarantee-seal small { font-size: 0.55rem; color: var(--green); font-weight: 800; letter-spacing: 0.05em; }

.guarantee strong { display: block; font-size: 0.92rem; color: var(--green); margin-bottom: 4px; }
.guarantee p { font-size: 0.82rem; color: var(--gray-light); }

.secure-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.secure-badges span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--gray);
  font-weight: 600;
}

.secure-badges svg {
  width: 14px;
  height: 14px;
  fill: var(--orange);
  opacity: 0.7;
}

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item[open] { border-color: rgba(255,105,0,0.3); }

.faq-item summary {
  padding: 18px 20px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.faq-item[open] summary { color: var(--orange); }

.faq-item summary::after {
  content: '+';
  color: var(--orange);
  font-size: 1.4rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.3s;
}

.faq-item[open] summary::after { content: '−'; }

.faq-body {
  overflow: hidden;
  animation: faqOpen 0.3s ease;
}

@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.faq-body p {
  padding: 0 20px 18px;
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.65;
}

/* ===== STICKY CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  padding: 12px 16px;
  background: rgba(0,0,0,0.95);
  border-top: 1px solid rgba(255,105,0,0.3);
  backdrop-filter: blur(16px);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}

.sticky-cta.visible { transform: translateY(0); }

.sticky-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}

.sticky-info { flex-shrink: 0; }

.sticky-price {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--orange);
  line-height: 1;
}

.sticky-label { font-size: 0.65rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.05em; }

.sticky-btn {
  flex: 1;
  max-width: none;
  font-size: 0.85rem;
  padding: 16px 20px;
  animation: none;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 2;
  padding: 48px 0 100px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: var(--orange);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.footer-copy { font-size: 0.78rem; color: var(--gray); margin-bottom: 8px; }

.footer-disclaimer {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.25);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ===== FINAL CTA ===== */
.final-cta { padding-bottom: 48px; }
.final-cta .section-text { margin-bottom: 28px; }

/* ===== RESPONSIVE ===== */
@media (min-width: 600px) {
  .modules-grid { grid-template-columns: 1fr 1fr; }
  .pain-grid { grid-template-columns: repeat(4, 1fr); }
  .testimonial-card { flex: 0 0 calc(50% - 8px); }
}

@media (min-width: 900px) {
  .container { max-width: 800px; }
}

@media (max-width: 400px) {
  .urgency-divider, .countdown { display: none; }
  .results-steps { flex-wrap: wrap; gap: 12px; }
  .results-line { display: none; }
}
