/* ============================================
   PACK DE STORIES - PREMIUM SALES PAGE
   Dark Money Green Theme
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  /* Colors - Pure Premium Green Theme */
  --bg-primary: #050805;
  --bg-secondary: #070c08;
  --bg-card: rgba(10, 22, 14, 0.7);
  --bg-glass: rgba(10, 25, 15, 0.5);
  --border-glass: rgba(0, 180, 70, 0.12);

  --text-primary: #e8e8e8;
  --text-secondary: rgba(255, 255, 255, 0.65);
  --text-muted: rgba(255, 255, 255, 0.4);

  --money-green: #00d45a;
  --money-green-light: #33ff85;
  --money-green-dark: #00a845;
  --money-emerald: #00b85e;
  --money-accent: #00f076;

  --gradient-main: linear-gradient(135deg, #00d45a, #00a845, #00f076);
  --gradient-money: linear-gradient(135deg, #00d45a, #00b85e);
  --gradient-cash: linear-gradient(135deg, #00a845, #33ff85);
  --gradient-cta: linear-gradient(135deg, #00d45a, #33ff85);

  --glow-green: 0 0 25px rgba(0, 212, 90, 0.15);
  --glow-accent: 0 0 25px rgba(51, 255, 133, 0.15);
  --glow-money: 0 0 30px rgba(0, 212, 90, 0.1), 0 0 60px rgba(0, 212, 90, 0.05);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', -apple-system, sans-serif;

  /* Spacing */
  --section-padding: 80px 0;
  --container-width: 1100px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.6s ease;
}

/* --- Reset & Base --- */
*, *::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-primary);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-tap-highlight-color: transparent;
}

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

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

ul {
  list-style: none;
}

/* --- Container --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Section Base --- */
section {
  padding: var(--section-padding);
  position: relative;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-title .gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

/* --- Animated Background Elements --- */
.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.bg-glow-1 {
  width: 500px;
  height: 500px;
  background: var(--money-green);
  top: -200px;
  left: -100px;
  opacity: 0.08;
}

.bg-glow-2 {
  width: 400px;
  height: 400px;
  background: var(--money-lime);
  top: 50%;
  right: -150px;
  opacity: 0.06;
}

.bg-glow-3 {
  width: 350px;
  height: 350px;
  background: var(--money-emerald);
  bottom: -100px;
  left: 30%;
  opacity: 0.06;
}

/* --- Gradient Divider --- */
.gradient-divider {
  width: 80px;
  height: 3px;
  background: var(--gradient-main);
  border-radius: 3px;
  margin: 0 auto 40px;
}

/* --- Money Rain Canvas --- */
#money-rain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.2;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero .bg-glow-1 {
  width: 700px;
  height: 700px;
  top: -300px;
  left: -200px;
  opacity: 0.1;
}

.hero .bg-glow-2 {
  width: 600px;
  height: 600px;
  bottom: -200px;
  right: -200px;
  opacity: 0.07;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.hero-text {
  animation: fadeInUp 0.8s ease forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 212, 90, 0.06);
  border: 1px solid rgba(0, 212, 90, 0.15);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--money-green);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--money-green);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
  box-shadow: 0 0 6px rgba(0, 212, 90, 0.4);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero h1 .gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Story Showcase 3D */
.story-showcase {
  position: relative;
  margin-bottom: 36px;
  padding: 20px 0 10px;
  perspective: 1200px;
}

.showcase-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 90, 0.18), rgba(0, 180, 70, 0.06), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(50px);
  z-index: 0;
  animation: showcaseGlowPulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes showcaseGlowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.showcase-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 2;
  height: 240px;
}

.showcase-card {
  width: 120px;
  height: 213px;
  border-radius: 18px;
  overflow: hidden;
  position: absolute;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: default;
  opacity: 0;
  transform: translateY(30px) scale(0.8);
  animation: scCardEntrance 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes scCardEntrance {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Positions — fan layout */
.showcase-card.sc-center {
  z-index: 5;
  width: 130px;
  height: 231px;
  left: 50%;
  margin-left: -65px;
  border: 1.5px solid rgba(0, 212, 90, 0.3);
  box-shadow: 0 15px 50px rgba(0, 212, 90, 0.12), 0 0 0 1px rgba(0, 212, 90, 0.05);
  animation-delay: 0s;
  animation-name: scCenterEntrance;
  overflow: visible;
}

@keyframes scCenterEntrance {
  0% { opacity: 0; transform: translateY(40px) scale(0.7); }
  100% { opacity: 1; transform: translateY(-4px) scale(1); }
}

.showcase-card.sc-center::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(0,212,90,0.4), transparent, rgba(0,212,90,0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.showcase-card.sc-left {
  z-index: 4;
  left: 50%;
  margin-left: -170px;
  transform: rotateY(8deg) scale(0.9);
  opacity: 0.75;
  animation-delay: 0.15s;
  border: 1px solid rgba(0, 212, 90, 0.08);
}
.showcase-card.sc-left {
  animation-name: scLeftEntrance;
}
@keyframes scLeftEntrance {
  0% { opacity: 0; transform: rotateY(8deg) scale(0.7) translateX(-20px); }
  100% { opacity: 0.75; transform: rotateY(8deg) scale(0.9); }
}

.showcase-card.sc-right {
  z-index: 4;
  left: 50%;
  margin-left: 40px;
  transform: rotateY(-8deg) scale(0.9);
  opacity: 0.75;
  animation-delay: 0.15s;
  border: 1px solid rgba(0, 212, 90, 0.08);
}
.showcase-card.sc-right {
  animation-name: scRightEntrance;
}
@keyframes scRightEntrance {
  0% { opacity: 0; transform: rotateY(-8deg) scale(0.7) translateX(20px); }
  100% { opacity: 0.75; transform: rotateY(-8deg) scale(0.9); }
}

.showcase-card.sc-far-left {
  z-index: 3;
  left: 50%;
  margin-left: -265px;
  transform: rotateY(14deg) scale(0.78);
  opacity: 0.4;
  animation-delay: 0.3s;
  border: 1px solid rgba(0, 212, 90, 0.04);
}
.showcase-card.sc-far-left {
  animation-name: scFarLeftEntrance;
}
@keyframes scFarLeftEntrance {
  0% { opacity: 0; transform: rotateY(14deg) scale(0.6) translateX(-30px); }
  100% { opacity: 0.4; transform: rotateY(14deg) scale(0.78); }
}

.showcase-card.sc-far-right {
  z-index: 3;
  left: 50%;
  margin-left: 145px;
  transform: rotateY(-14deg) scale(0.78);
  opacity: 0.4;
  animation-delay: 0.3s;
  border: 1px solid rgba(0, 212, 90, 0.04);
}
.showcase-card.sc-far-right {
  animation-name: scFarRightEntrance;
}
@keyframes scFarRightEntrance {
  0% { opacity: 0; transform: rotateY(-14deg) scale(0.6) translateX(30px); }
  100% { opacity: 0.4; transform: rotateY(-14deg) scale(0.78); }
}

/* Hover on center */
.showcase-card.sc-center:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 60px rgba(0, 212, 90, 0.18), 0 0 0 1px rgba(0, 212, 90, 0.1);
}

/* Story image content */
.sc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

/* Label on center card */
.sc-label {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-main);
  color: #000;
  font-size: 0.55rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 212, 90, 0.3);
  z-index: 10;
}

/* Counter below */
.showcase-counter {
  text-align: center;
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--money-green);
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.6s forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile adjustments */
@media (max-width: 576px) {
  .story-showcase {
    margin-bottom: 28px;
    margin-left: -12px;
    margin-right: -12px;
    overflow: hidden;
  }

  .showcase-track {
    height: 200px;
  }

  .showcase-card {
    width: 100px;
    height: 178px;
    border-radius: 14px;
  }

  .showcase-card.sc-center {
    width: 110px;
    height: 196px;
    margin-left: -55px;
  }

  .showcase-card.sc-left {
    margin-left: -145px;
  }

  .showcase-card.sc-right {
    margin-left: 35px;
  }

  .showcase-card.sc-far-left {
    margin-left: -220px;
    opacity: 0.25;
  }
  .showcase-card.sc-far-left {
    animation-name: scFarLeftEntranceMob;
  }
  @keyframes scFarLeftEntranceMob {
    0% { opacity: 0; transform: rotateY(14deg) scale(0.6) translateX(-30px); }
    100% { opacity: 0.25; transform: rotateY(14deg) scale(0.78); }
  }

  .showcase-card.sc-far-right {
    margin-left: 110px;
    opacity: 0.25;
  }
  .showcase-card.sc-far-right {
    animation-name: scFarRightEntranceMob;
  }
  @keyframes scFarRightEntranceMob {
    0% { opacity: 0; transform: rotateY(-14deg) scale(0.6) translateX(30px); }
    100% { opacity: 0.25; transform: rotateY(-14deg) scale(0.78); }
  }

  .sc-emoji {
    font-size: 1.4rem;
  }

  .sc-text {
    font-size: 0.6rem;
  }

  .sc-btn {
    font-size: 0.48rem;
    padding: 4px 10px;
  }

  .sc-label {
    font-size: 0.48rem;
    padding: 2px 10px;
  }

  .showcase-glow {
    width: 200px;
    height: 200px;
  }
}

/* CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 40px;
  background: var(--gradient-cta);
  color: #000;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
}

.cta-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  animation: shine 3s infinite cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes shine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: left 0.5s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0, 212, 90, 0.2), 0 0 40px rgba(0, 212, 90, 0.08);
}

.cta-button:active {
  transform: translateY(-1px);
}

.cta-button-large {
  padding: 22px 60px;
  font-size: 1.1rem;
  border-radius: 16px;
  width: 100%;
  max-width: 480px;
}

/* Hero Countdown */
.hero-countdown {
  margin-top: 28px;
  padding: 20px 28px;
  background: rgba(255, 60, 60, 0.04);
  border: 1px solid rgba(255, 60, 60, 0.1);
  border-radius: 16px;
  text-align: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.countdown-label {
  font-size: 0.75rem;
  color: #ff5252;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0, 212, 90, 0.04);
  border: 1px solid rgba(0, 212, 90, 0.08);
  border-radius: 10px;
  padding: 8px 14px;
  min-width: 58px;
  text-align: center;
  line-height: 1;
}

.countdown-unit {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.countdown-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* Hero Social Proof */
.hero-social-proof {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.social-proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-proof-icon {
  width: 36px;
  height: 36px;
  background: rgba(0, 212, 90, 0.04);
  border: 1px solid rgba(0, 212, 90, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.social-proof-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--money-green);
}

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

/* Hero Phone */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
  animation: fadeInUp 1s ease 0.3s forwards;
  opacity: 0;
}

.phone-mockup-group {
  position: relative;
  width: 260px;
  height: 480px;
}

.phone-mockup {
  width: 220px;
  height: 440px;
  background: #060e08;
  border-radius: 32px;
  border: 2px solid rgba(0, 212, 90, 0.06);
  overflow: hidden;
  position: absolute;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: transform var(--transition-medium);
}

.phone-mockup:hover {
  transform: translateY(-8px) scale(1.02);
}

.phone-mockup-main {
  z-index: 3;
  top: 20px;
  left: 20px;
}

.phone-mockup-back {
  z-index: 2;
  top: 0px;
  left: 55px;
  opacity: 0.6;
  transform: scale(0.92) rotate(4deg);
}

.phone-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 90, 0.15), rgba(0, 180, 70, 0.06), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
  z-index: 1;
  animation: glowPulse 4s ease infinite;
}

/* Phone Story Content */
.story-screen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, #061a0a 0%, #0a2e12 100%);
}

.story-screen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-main);
}

.story-emoji {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.story-text {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
  padding: 0 8px;
}

.story-cta {
  margin-top: 20px;
  padding: 10px 24px;
  background: var(--gradient-cta);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem-section {
  background: var(--bg-secondary);
  overflow: hidden;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.problem-chain {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}

.problem-chain-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(255, 60, 60, 0.06);
  border-left: 3px solid rgba(255, 60, 60, 0.35);
  border-radius: 0 12px 12px 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.problem-chain-arrow {
  text-align: center;
  padding: 4px 0;
  color: rgba(255, 60, 60, 0.4);
  font-size: 0.8rem;
}

.problem-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

.problem-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.problem-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all var(--transition-medium);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.problem-list-item:hover {
  border-color: rgba(255, 60, 60, 0.2);
  background: rgba(255, 60, 60, 0.04);
}

.problem-list-item .icon {
  color: #ff5252;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ============================================
   SOLUTION SECTION
   ============================================ */
.solution-section {
  overflow: hidden;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 800px;
  margin: 0 auto 20px;
}

.solution-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-left: 3px solid rgba(0, 212, 90, 0.25);
  border-radius: 14px;
  transition: all var(--transition-medium);
  cursor: default;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.solution-item:hover {
  border-color: rgba(0, 212, 90, 0.25);
  background: rgba(0, 212, 90, 0.06);
  transform: translateY(-2px);
  box-shadow: var(--glow-green);
}

.solution-item .check {
  width: 28px;
  height: 28px;
  background: rgba(0, 212, 90, 0.12);
  border: 1px solid rgba(0, 212, 90, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--money-green);
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.solution-item span {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.solution-copy {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1rem;
  color: var(--money-green);
  font-weight: 600;
}

/* ============================================
   MOCKUPS SECTION
   ============================================ */
.mockups-section {
  background: var(--bg-secondary);
  overflow: hidden;
}

.mockups-carousel {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}

.mockups-track {
  display: flex;
  gap: 24px;
  animation: scrollCarousel 30s linear infinite;
}

.mockup-phone {
  width: 200px;
  height: 400px;
  background: #081a0c;
  border-radius: 28px;
  border: 2px solid rgba(0, 212, 90, 0.12);
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  transition: all var(--transition-medium);
}

.mockup-phone:hover {
  transform: scale(1.05);
  border-color: rgba(0, 212, 90, 0.3);
  box-shadow: 0 10px 40px rgba(0, 212, 90, 0.15);
}

.mockup-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 26px;
}

/* Carousel fade edges */
.mockups-carousel::before,
.mockups-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 5;
  pointer-events: none;
}

.mockups-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-secondary), transparent);
}

.mockups-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-secondary), transparent);
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section {
  overflow: hidden;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.benefit-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 18px;
  padding: 32px 20px;
  text-align: center;
  transition: all var(--transition-medium);
  cursor: default;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity var(--transition-medium);
}

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

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 212, 90, 0.25);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 212, 90, 0.1);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 212, 90, 0.1);
  border: 1px solid rgba(0, 212, 90, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.4rem;
}

.benefit-card h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works-section {
  background: var(--bg-secondary);
  overflow: hidden;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.step-card {
  padding: 32px 24px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 18px;
  text-align: center;
  transition: all var(--transition-medium);
  cursor: default;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-main);
  opacity: 0.5;
  transition: opacity var(--transition-medium);
}

.step-card:hover {
  border-color: rgba(0, 212, 90, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 212, 90, 0.15);
}

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

.step-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  user-select: none;
}

.step-icon {
  width: 64px;
  height: 64px;
  background: rgba(0, 212, 90, 0.08);
  border: 1px solid rgba(0, 212, 90, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.8rem;
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--money-green);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   SOCIAL PROOF SECTION
   ============================================ */
.social-section {
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-top: 2px solid rgba(0, 212, 90, 0.2);
  border-radius: 18px;
  padding: 28px 24px;
  transition: all var(--transition-medium);
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.testimonial-card:hover {
  border-color: rgba(0, 212, 90, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

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

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-money);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
}

.testimonial-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-badge {
  font-size: 0.7rem;
  color: var(--money-green);
  font-weight: 500;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
}

.testimonial-text::before {
  content: '"';
  color: var(--money-green);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 0;
  vertical-align: -0.3em;
  margin-right: 4px;
}

/* ============================================
   OFFER SECTION
   ============================================ */
.offer-section {
  overflow: hidden;
  background: var(--bg-secondary);
}

.offer-card {
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(10, 25, 14, 0.7);
  border: 1px solid rgba(0, 212, 90, 0.2);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(0, 212, 90, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-money);
}

.offer-badge {
  position: absolute;
  top: 0;
  right: 60px;
  background: var(--gradient-money);
  color: #000;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 8px 24px;
  border-radius: 0 0 16px 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(0, 212, 90, 0.3);
  z-index: 2;
}

.offer-card-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 90, 0.1), transparent 70%);
  top: -300px;
  right: -200px;
  pointer-events: none;
  z-index: 0;
}

.offer-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  position: relative;
  z-index: 1;
}

.offer-details {
  padding: 60px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.offer-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}

.offer-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.offer-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}

.offer-list-item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.offer-item-text {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.offer-item-value {
  font-weight: 700;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.offer-total-val-row {
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.strikethrough-total {
  color: #ff5252;
  text-decoration: line-through;
  font-weight: 800;
  font-size: 1.2rem;
}

.offer-check-wrap {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 212, 90, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.offer-item-text .icon {
  color: var(--money-green);
  font-size: 0.85rem;
}

.offer-checkout {
  padding: 60px;
  background: linear-gradient(135deg, rgba(0, 212, 90, 0.05) 0%, rgba(0, 0, 0, 0.4) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  border-radius: 0 32px 32px 0;
  overflow: hidden;
}

/* On mobile, adjust border radius of checkout area */
@media (max-width: 992px) {
  .offer-checkout {
    border-radius: 0 0 32px 32px;
  }
}

@media (max-width: 576px) {
  .offer-checkout {
    border-radius: 0 0 20px 20px;
  }
}

.offer-price-block {
  margin-bottom: 24px;
}

.offer-launch-text {
  font-size: 0.8rem;
  color: var(--money-green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0, 212, 90, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(0, 212, 90, 0.2);
}

.offer-old-price {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.offer-price {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(to right, #00d45a, #00ff6a, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  text-shadow: 0 0 30px rgba(0, 212, 90, 0.2);
}

.offer-price-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
}

.offer-countdown {
  margin: 16px 0 28px 0;
  padding: 24px;
  background: rgba(10, 10, 10, 0.4);
  border: 1px solid rgba(255, 60, 60, 0.15);
  border-top: 2px solid #ff5252;
  border-radius: 16px;
  box-shadow: inset 0 0 20px rgba(255, 60, 60, 0.05);
  position: relative;
  overflow: hidden;
}

.offer-countdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: #ff5252;
  box-shadow: 0 0 10px 2px rgba(255, 82, 82, 0.3);
}

.offer-countdown-label {
  font-size: 0.75rem;
  color: #ff5252;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.offer-countdown-label .alert-icon {
  animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); }
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.countdown-item {
  background: linear-gradient(180deg, rgba(30, 30, 30, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 2px solid rgba(0, 0, 0, 0.8);
  border-radius: 12px;
  padding: 12px 14px;
  min-width: 75px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0,0,0,0.4), inset 0 2px 0 rgba(255,255,255,0.05);
  position: relative;
}

.countdown-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(255, 60, 60, 0.3);
  margin-bottom: 4px;
}

.countdown-unit {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.offer-cta {
  width: 100%;
  padding: 20px 0;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.secure-payment {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@media (max-width: 992px) {
  .offer-content {
    grid-template-columns: 1fr;
  }
  
  .offer-details {
    padding: 40px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .offer-checkout {
    padding: 40px;
  }
  
  .offer-badge {
    right: 30px;
  }
}

@media (max-width: 576px) {
  .offer-card {
    border-radius: 20px;
  }

  .offer-details {
    padding: 40px 20px 25px;
  }
  
  .offer-checkout {
    padding: 30px 20px;
    align-items: center;
    text-align: center;
  }
  
  .offer-badge {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    padding: 6px 20px;
    border-radius: 0 0 12px 12px;
    white-space: nowrap;
  }

  .offer-title {
    font-size: 1.45rem;
    margin-bottom: 24px;
  }

  .offer-list-item {
    font-size: 0.95rem;
    gap: 12px;
  }

  .offer-price-block {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .offer-price {
    font-size: 2.8rem;
  }

  .offer-countdown {
    padding: 14px;
    width: 100%;
  }
}

/* ============================================
   URGENCY SECTION
   ============================================ */
.urgency-section {
  padding: 60px 0;
  overflow: hidden;
}

.urgency-card {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(255, 60, 60, 0.04);
  border: 1px solid rgba(255, 60, 60, 0.15);
  border-top: 2px solid #ff5252;
  border-radius: 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  animation: urgencyPulse 3s ease-in-out infinite;
}

@keyframes urgencyPulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3); }
  50% { box-shadow: 0 8px 30px rgba(255, 60, 60, 0.15); }
}

.urgency-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.urgency-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #ff5252;
  margin-bottom: 14px;
}

.urgency-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   GUARANTEE SECTION
   ============================================ */
.guarantee-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.guarantee-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  background: var(--bg-glass);
  border: 1px solid rgba(0, 212, 90, 0.15);
  border-top: 2px solid rgba(0, 212, 90, 0.3);
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.guarantee-badge {
  width: 80px;
  height: 80px;
  background: rgba(0, 212, 90, 0.1);
  border: 2px solid rgba(0, 212, 90, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}

.guarantee-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--money-green);
}

.guarantee-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 450px;
  margin: 0 auto;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  overflow: hidden;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  overflow: hidden;
  transition: all var(--transition-medium);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.faq-item.active {
  border-color: rgba(0, 212, 90, 0.25);
  border-left: 3px solid var(--money-green);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  min-height: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--money-green);
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--money-green);
  transition: transform var(--transition-medium);
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  padding: 50px 0 30px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-glass);
}

.footer-content {
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}

.footer-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
}

.footer-links a {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--money-green);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

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

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

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 48px 0;
  }

  .container {
    padding: 0 18px;
  }

  .hero {
    padding: 80px 0 32px;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 0.95rem;
  }

  .hero-content {
    gap: 24px;
  }

  .phone-mockup-group {
    width: 220px;
    height: 440px;
  }

  .phone-mockup {
    width: 190px;
    height: 380px;
  }

  .phone-mockup-main {
    left: 15px;
    top: 30px;
  }

  .phone-mockup-back {
    left: 35px;
    top: 10px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .problem-list {
    grid-template-columns: 1fr;
  }

  .problem-chain-item {
    padding: 12px 16px;
    font-size: 0.88rem;
  }

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

  .solution-item {
    padding: 16px 18px;
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .benefit-card {
    padding: 24px 14px;
  }

  .benefit-icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .benefit-card h3 {
    font-size: 0.82rem;
  }

  .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step-card {
    padding: 24px 20px;
  }

  .step-icon {
    width: 54px;
    height: 54px;
    font-size: 1.5rem;
    margin-bottom: 16px;
  }

  .step-number {
    font-size: 2.5rem;
    top: 12px;
    right: 16px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .testimonial-card {
    padding: 22px 18px;
  }

  .offer-card {
    padding: 36px 24px;
  }

  .urgency-card {
    padding: 28px 20px;
    margin: 0 8px;
  }

  .urgency-title {
    font-size: 1.3rem;
  }

  .urgency-text {
    font-size: 0.9rem;
  }

  .guarantee-card {
    padding: 32px 24px;
    margin: 0 8px;
  }

  .guarantee-badge {
    width: 64px;
    height: 64px;
    font-size: 1.6rem;
  }

  .guarantee-title {
    font-size: 1.3rem;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 0.9rem;
  }

  .faq-answer p {
    padding: 0 20px 18px;
    font-size: 0.85rem;
  }

  .countdown-timer {
    gap: 8px;
  }

  .countdown-number {
    font-size: 1.4rem;
    padding: 6px 10px;
    min-width: 48px;
  }

  .mockup-phone {
    width: 160px;
    height: 320px;
    border-radius: 22px;
  }

  .mockups-carousel::before,
  .mockups-carousel::after {
    width: 40px;
  }

  footer {
    padding: 36px 0 24px;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .section-title {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  .hero-social-proof {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero-social-proof {
    flex-direction: column;
    align-items: center;
  }

  .cta-button-large {
    padding: 18px 24px;
    font-size: 0.95rem;
  }

  .offer-price {
    font-size: 2.4rem;
  }

  .phone-mockup-group {
    width: 200px;
    height: 400px;
  }

  .phone-mockup {
    width: 170px;
    height: 340px;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 14px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .benefits-grid {
    gap: 8px;
  }

  .benefit-card {
    padding: 18px 10px;
  }

  .benefit-card h3 {
    font-size: 0.78rem;
  }

  .how-it-works-grid {
    gap: 12px;
  }

  .offer-price {
    font-size: 2rem;
  }

  .countdown-item {
    min-width: 60px;
    padding: 10px 8px;
  }

  .countdown-number {
    font-size: 1.6rem;
  }
}

/* --- Floating CTA (mobile) --- */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 14px 16px;
  background: rgba(5, 10, 6, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(0, 212, 90, 0.15);
  box-shadow: 0 -8px 30px rgba(0, 212, 90, 0.08);
}

.floating-cta .cta-button {
  width: 100%;
  padding: 18px;
  font-size: 0.95rem;
  box-shadow: 0 0 20px rgba(0, 212, 90, 0.2);
}

@media (max-width: 768px) {
  .floating-cta {
    display: block;
  }

  body {
    padding-bottom: 76px;
  }
}

/* --- Grid background pattern --- */
.grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(0, 212, 90, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 90, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* --- Money Dollar Signs floating --- */
.money-float {
  position: absolute;
  font-size: 1.4rem;
  opacity: 0.06;
  color: var(--money-green);
  pointer-events: none;
  z-index: 0;
  animation: floatMoney 6s ease-in-out infinite;
}

@keyframes floatMoney {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.06; }
  50% { transform: translateY(-20px) rotate(15deg); opacity: 0.12; }
}

/* ============================================
   TOP URGENCY BAR
   ============================================ */
.top-urgency-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(5, 8, 5, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 212, 90, 0.15);
  z-index: 1000;
  padding: 10px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 212, 90, 0.05);
}

.top-urgency-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.85rem;
  color: #fff;
  flex-wrap: wrap;
}

.top-urgency-content .pulse-dot {
  width: 8px;
  height: 8px;
  background: #ff3c3c;
  border-radius: 50%;
  animation: pulseRed 2s infinite;
  box-shadow: 0 0 8px rgba(255, 60, 60, 0.6);
  flex-shrink: 0;
}

@keyframes pulseRed {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

.top-urgency-text {
  text-align: center;
}

.top-urgency-text strong {
  color: #ff3c3c;
}

.top-urgency-highlight {
  color: var(--money-green);
  font-weight: 600;
}

.top-urgency-timer {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(0, 212, 90, 0.1);
  border: 1px solid rgba(0, 212, 90, 0.2);
  padding: 4px 10px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

body {
  padding-top: 48px;
}

@media (max-width: 768px) {
  .top-urgency-bar {
    padding: 8px 10px;
  }
  .top-urgency-content {
    font-size: 0.8rem;
    gap: 6px;
    flex-wrap: nowrap;
  }
  .hide-mobile {
    display: none;
  }
  .top-urgency-timer {
    padding: 2px 6px;
    font-size: 0.75rem;
  }
  body {
    padding-top: 40px;
  }
}
