@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  /* Primary Palette */
  --coral: #FF6B6B;
  --coral-dark: #E85D5D;
  --coral-light: #FF8E8E;
  --coral-glow: rgba(255, 107, 107, 0.25);

  /* Secondary Palette */
  --emerald: #2ED8A3;
  --emerald-dark: #25B888;
  --emerald-light: #5EEBC0;
  --emerald-glow: rgba(46, 216, 163, 0.2);

  /* Accent */
  --gold: #FFD93D;
  --purple: #A78BFA;

  /* Neutrals */
  --dark-900: #0B0F19;
  --dark-800: #111827;
  --dark-700: #1F2937;
  --dark-600: #374151;
  --light-100: #F9FAFB;
  --light-200: #F3F4F6;
  --light-300: #E5E7EB;
  --text-primary: #F9FAFB;
  --text-secondary: #9CA3AF;
  --text-dark: #1F2937;
  --text-muted: #6B7280;

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-bg-light: rgba(255, 255, 255, 0.7);
  --glass-border-light: rgba(255, 255, 255, 0.5);

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #0B0F19 0%, #1a1030 40%, #0d1b2a 100%);
  --gradient-coral: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
  --gradient-emerald: linear-gradient(135deg, #2ED8A3 0%, #38BDF8 100%);
  --gradient-cta: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 50%, #FFD93D 100%);
  --gradient-text: linear-gradient(135deg, #FF6B6B, #FF8E53, #FFD93D);

  /* Spacing */
  --section-padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 6rem);

  /* Radii */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
  --shadow-glow-coral: 0 0 40px rgba(255, 107, 107, 0.3), 0 0 80px rgba(255, 107, 107, 0.1);
  --shadow-glow-emerald: 0 0 40px rgba(46, 216, 163, 0.3);
}

/* ============================================
   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: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--light-100);
}

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

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.serif { font-family: 'Playfair Display', Georgia, serif; }

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s;
}

.btn-primary {
  background: var(--gradient-cta);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 107, 107, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-glow-coral);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
}

.btn-dark {
  background: var(--dark-800);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-dark:hover {
  background: var(--dark-700);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn i {
  font-size: 1.1em;
  transition: transform 0.3s;
}

.btn:hover i {
  transform: translateX(3px);
}

/* Pulse animation on CTA buttons */
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(255, 107, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0); }
}

.btn-pulse {
  animation: pulse-ring 2.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem clamp(1.5rem, 5vw, 4rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
}

.site-header.scrolled {
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-block: 0.8rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  z-index: 10;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-coral);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
}

.logo-dot {
  color: var(--coral);
}

.header-cta {
  padding: 0.65rem 1.5rem;
  font-size: 0.85rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  padding: clamp(7rem, 12vh, 10rem) clamp(1.5rem, 5vw, 6rem) clamp(4rem, 8vh, 6rem);
  overflow: hidden;
}

/* Animated gradient orbs */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: orbit 20s ease-in-out infinite;
}

.hero::before {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--coral) 0%, transparent 70%);
  top: -10%;
  right: -5%;
}

.hero::after {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--emerald) 0%, transparent 70%);
  bottom: -10%;
  left: -5%;
  animation-delay: -10s;
}

@keyframes orbit {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.1); }
  50% { transform: translate(-20px, 30px) scale(0.95); }
  75% { transform: translate(40px, 20px) scale(1.05); }
}

/* Grid Overlay */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

.hero-content {
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  color: var(--emerald);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
}

.hero-badge i {
  font-size: 0.7rem;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero h1 .accent {
  position: relative;
  display: inline;
}

.hero h1 .accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--gradient-coral);
  opacity: 0.4;
  border-radius: 4px;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-subtitle strong {
  color: #fff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-proof-avatars {
  display: flex;
}

.hero-proof-avatars span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--dark-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  margin-left: -8px;
  color: #fff;
}

.hero-proof-avatars span:nth-child(1) { background: var(--coral); margin-left: 0; }
.hero-proof-avatars span:nth-child(2) { background: var(--emerald); }
.hero-proof-avatars span:nth-child(3) { background: var(--purple); }
.hero-proof-avatars span:nth-child(4) { background: var(--gold); color: #333; }

.hero-proof-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.hero-proof-text strong {
  color: #fff;
}

/* Hero Image Column */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
}

.hero-image-wrapper img {
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 25px 50px rgba(0,0,0,0.4));
  animation: hero-float 6s ease-in-out infinite;
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(1deg); }
}

/* Floating badges around the ebook */
.float-badge {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 5;
  white-space: nowrap;
  animation: float-in 1s ease-out both;
}

.float-badge i {
  font-size: 1.1rem;
}

.float-badge.badge-top-right {
  top: 20%;
  right: -12%;
  animation-delay: 0.3s;
}

.float-badge.badge-bottom-left {
  bottom: 10%;
  left: -5%;
  animation-delay: 0.6s;
}

.float-badge.badge-bottom-right {
  bottom: 25%;
  right: -15%;
  animation-delay: 0.9s;
}

@keyframes float-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Price badge */
.price-badge {
  position: absolute;
  top: -15px;
  right: 10px;
  background: var(--gradient-cta);
  color: #fff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.4rem;
  z-index: 10;
  box-shadow: var(--shadow-glow-coral);
  animation: bounce-subtle 3s ease-in-out infinite;
}

.price-badge small {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
}

@keyframes bounce-subtle {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* ============================================
   PAIN POINTS SECTION
   ============================================ */
.pain-points {
  padding: var(--section-padding);
  background: var(--light-100);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--coral-glow);
  color: var(--coral);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.2rem;
}

.section-tag.emerald {
  background: var(--emerald-glow);
  color: var(--emerald-dark);
}

.section-header h2 {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.pain-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.pain-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid var(--light-300);
}

.pain-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pain-card {
  overflow: hidden;
}

.pain-card .pain-card-img {
  width: 100%;
  height: 260px;
  background-image: url('assets/pain-points.jpg');
  background-size: 300% auto;
  background-repeat: no-repeat;
  transition: transform 0.6s;
}

.pain-card:hover .pain-card-img {
  transform: scale(1.05);
}

/* Each card shows a different 1/3 of the triptych */
#card-frustration .pain-card-img { background-position: 0% center; }
#card-mirror .pain-card-img { background-position: 50% center; }
#card-solution .pain-card-img { background-position: 100% center; }

/* hover handled above */

.pain-card-content {
  padding: 1.5rem;
}

.pain-card-emoji {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.pain-card h3 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.pain-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.pain-card.solution {
  border: 2px solid var(--emerald);
  background: linear-gradient(135deg, rgba(46, 216, 163, 0.03), rgba(56, 189, 248, 0.03));
}

.pain-card.solution h3 {
  color: var(--emerald-dark);
}

/* Arrow between cards */
.pain-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-muted);
  opacity: 0.4;
}

/* ============================================
   FEATURES / WHAT YOU GET
   ============================================ */
.features {
  padding: var(--section-padding);
  background: var(--dark-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--coral) 0%, transparent 70%);
  filter: blur(100px);
  opacity: 0.08;
  top: 0;
  right: 0;
}

.features .section-header h2 {
  color: #fff;
}

.features .section-header p {
  color: var(--text-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all 0.4s ease;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-coral);
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-6px);
}

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

.feature-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.feature-icon-box.coral {
  background: var(--coral-glow);
  color: var(--coral);
}

.feature-icon-box.emerald {
  background: var(--emerald-glow);
  color: var(--emerald);
}

.feature-icon-box.purple {
  background: rgba(167, 139, 250, 0.15);
  color: var(--purple);
}

.feature-icon-box.gold {
  background: rgba(255, 217, 61, 0.15);
  color: var(--gold);
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================
   DETAILS / FULL BREAKDOWN
   ============================================ */
.details {
  padding: var(--section-padding);
  background: var(--light-100);
}

.details-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  max-width: 1200px;
  margin: 0 auto;
}

.details-image {
  position: relative;
}

.details-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.details-image::after {
  content: '';
  position: absolute;
  inset: -15px;
  border-radius: var(--radius-xl);
  background: var(--gradient-coral);
  opacity: 0.07;
  z-index: -1;
}

.details-content .section-tag {
  margin-bottom: 1rem;
}

.details-content h2 {
  text-align: left;
  margin-bottom: 1.2rem;
  color: var(--text-dark);
}

.details-content h2 .accent {
  color: var(--coral);
}

.details-content > p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.details-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--light-300);
  transition: all 0.3s ease;
}

.details-list li:hover {
  border-color: var(--emerald);
  box-shadow: 0 4px 20px var(--emerald-glow);
  transform: translateX(5px);
}

.detail-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--emerald-glow);
  color: var(--emerald-dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  margin-top: 2px;
}

.details-list li span {
  font-size: 0.98rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.details-list li strong {
  color: var(--text-dark);
}

/* ============================================
   LIFESTYLE IMAGE SECTION
   ============================================ */
.lifestyle-banner {
  position: relative;
  height: 400px;
  overflow: hidden;
  margin: 0;
}

.lifestyle-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lifestyle-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11, 15, 25, 0.3), rgba(11, 15, 25, 0.7));
}

.lifestyle-banner-text {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: #fff;
  width: 90%;
  max-width: 700px;
}

.lifestyle-banner-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.lifestyle-banner-text p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: var(--section-padding);
  background: var(--dark-900);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--coral) 0%, transparent 70%);
  filter: blur(120px);
  opacity: 0.12;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
}

.cta-box {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.08), rgba(46, 216, 163, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  backdrop-filter: blur(10px);
}

.cta-price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
}

.cta-price .old-price {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: line-through;
  opacity: 0.5;
}

.cta-price .new-price {
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-box h2 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.cta-box > p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.cta-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.cta-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

.cta-feature-item i {
  color: var(--emerald);
  font-size: 1rem;
}

.cta-guarantee {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.cta-guarantee i {
  color: var(--gold);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--dark-900);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 3rem clamp(1.5rem, 5vw, 4rem);
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.88rem;
  transition: color 0.3s;
}

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

.footer-copy {
  color: var(--text-secondary);
  font-size: 0.82rem;
  opacity: 0.6;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Staggered reveal for cards */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-content {
    margin: 0 auto;
    max-width: 600px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-proof {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-image-wrapper img {
    max-width: 340px;
  }

  .float-badge {
    display: none;
  }

  .price-badge {
    width: 65px;
    height: 65px;
    font-size: 1.1rem;
  }

  .details-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .details-content h2 {
    text-align: center;
  }

  .details-content .section-tag {
    display: inline-flex;
  }
}

@media (max-width: 768px) {
  .pain-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .pain-arrow {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .cta-features {
    flex-direction: column;
    align-items: center;
  }

  .lifestyle-banner {
    height: 280px;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 500px) {
  h1 { font-size: 2rem; }

  .hero {
    padding-top: 6rem;
    min-height: auto;
    padding-bottom: 3rem;
  }

  .hero-image-wrapper img {
    max-width: 260px;
  }

  .price-badge {
    width: 55px;
    height: 55px;
    font-size: 0.95rem;
    top: -8px;
    right: 5px;
  }

  .btn {
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
  }

  .details-list li {
    padding: 1rem;
  }
}

/* ============================================
   SMOOTH SCROLL INDICATOR
   ============================================ */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scroll-bounce 2s ease-in-out infinite;
}

.scroll-indicator i {
  font-size: 1.2rem;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   COUNT-UP STATS BAR (BETWEEN SECTIONS)
   ============================================ */
.stats-bar {
  background: #fff;
  padding: 2.5rem clamp(1.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--light-300);
}

.stats-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-coral);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}
