:root {
  --cream: #FFF8F0;
  --warm-white: #FFFCF7;
  --pink-soft: #FFD6E7;
  --pink-mid: #FF94BD;
  --pink-hot: #FF3D85;
  --pink-deep: #C2185B;
  --green-fresh: #00C896;
  --green-deep: #00875A;
  --yellow-pop: #FFD600;
  --dark: #1A0A12;
  --dark-soft: #3D1F2E;
  --text-muted: #7A5566;
  --shadow-pink: 0 20px 60px rgba(255,61,133,0.18);
  --shadow-soft: 0 8px 40px rgba(26,10,18,0.10);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

/* ─── NOISE TEXTURE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  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)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ─── SCROLL PROGRESS BAR ─── */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink-hot), var(--yellow-pop));
  width: 0%;
  z-index: 10000;
  transition: width 0.1s linear;
  border-radius: 0 4px 4px 0;
}

/* ─── FLOATING CTA ─── */
#floating-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 1000;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}
#floating-cta.visible { transform: translateX(-50%) translateY(0); }
#floating-cta a {
  display: flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, var(--pink-hot), var(--pink-deep));
  color: white;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 8px 32px rgba(255,61,133,0.45), 0 2px 8px rgba(0,0,0,0.15);
  animation: pulse-btn 2.5s ease-in-out infinite;
}
@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 8px 32px rgba(255,61,133,0.45), 0 2px 8px rgba(0,0,0,0.15); }
  50% { box-shadow: 0 12px 48px rgba(255,61,133,0.65), 0 4px 16px rgba(0,0,0,0.2); }
}

/* ─── HERO SECTION ─── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #FFF0F7 0%, #FFF8F0 40%, #F0FFF8 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,148,189,0.2) 0%, transparent 70%);
  top: -200px; right: -200px;
  animation: float-orb 8s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,150,0.12) 0%, transparent 70%);
  bottom: -150px; left: -150px;
  animation: float-orb 10s ease-in-out infinite reverse;
}
@keyframes float-orb {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.05); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,61,133,0.1);
  border: 1px solid rgba(255,61,133,0.25);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pink-hot);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  animation: fade-up 0.6s ease 0.2s forwards;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  max-width: 820px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fade-up 0.7s ease 0.4s forwards;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--pink-hot), var(--pink-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--text-muted);
  text-align: center;
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 400;
  opacity: 0;
  animation: fade-up 0.7s ease 0.6s forwards;
}

.hero-price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fade-up 0.7s ease 0.8s forwards;
}
.hero-price-old {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.hero-price-new {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--pink-hot);
  line-height: 1;
}
.hero-price-label {
  font-size: 0.85rem;
  color: var(--green-deep);
  font-weight: 600;
  background: rgba(0,200,150,0.12);
  padding: 4px 14px;
  border-radius: 100px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--green-fresh), var(--green-deep));
  color: white;
  text-decoration: none;
  padding: 20px 48px;
  border-radius: 100px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 40px rgba(0,200,150,0.35);
  transition: all 0.3s ease;
  opacity: 0;
  animation: fade-up 0.7s ease 1s forwards;
  position: relative;
  overflow: hidden;
}
.btn-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-hero:hover { transform: translateY(-3px); box-shadow: 0 18px 50px rgba(0,200,150,0.45); }
.btn-hero:hover::before { opacity: 1; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fade-up 0.7s ease 1.2s forwards;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}
.hero-trust-item .icon { font-size: 1rem; }

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ─── SECTION BASE ─── */
section {
  padding: 80px 24px;
  position: relative;
}

.container {
  max-width: 960px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink-hot);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

/* ─── PAIN SECTION ─── */
.pain-section {
  background: var(--dark);
  color: white;
  overflow: hidden;
}
.pain-section::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,61,133,0.15) 0%, transparent 70%);
  top: -100px; left: -100px;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.pain-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px 24px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.pain-card:hover {
  background: rgba(255,61,133,0.08);
  border-color: rgba(255,61,133,0.2);
  transform: translateY(-4px);
}
.pain-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.pain-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; color: white; }
.pain-card p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ─── SOLUTION SECTION ─── */
.solution-section { background: var(--warm-white); }
.solution-visual {
  background: linear-gradient(135deg, #FFF0F7, #F0FFF8);
  border-radius: 32px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-top: 48px;
  border: 1px solid rgba(255,61,133,0.1);
  box-shadow: var(--shadow-pink);
}
.solution-big-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  text-align: center;
  line-height: 1.4;
  max-width: 600px;
}
.solution-big-text strong { color: var(--pink-hot); }

/* ─── WHAT YOU GET ─── */
.get-section { background: var(--cream); }
.get-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.get-card {
  background: white;
  border-radius: 20px;
  padding: 28px 24px;
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.get-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, var(--pink-hot), var(--green-fresh));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s;
}
.get-card:hover::before { opacity: 1; }
.get-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-pink); }
.get-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,61,133,0.08);
  line-height: 1;
  position: absolute;
  top: 12px; right: 20px;
}
.get-icon { font-size: 2.2rem; margin-bottom: 16px; display: block; }
.get-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.get-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; }

/* ─── DISCIPLINES ─── */
.disciplines-section {
  background: linear-gradient(135deg, #FFF0F7 0%, #F0FFF8 100%);
}
.disc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.disc-card {
  background: white;
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  cursor: default;
}
.disc-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(255,61,133,0.15);
}
.disc-icon { font-size: 2.5rem; display: block; margin-bottom: 12px; }
.disc-name { font-size: 0.88rem; font-weight: 600; color: var(--dark-soft); }

.how-section { background: var(--cream); }
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .how-grid { grid-template-columns: 1fr; }
  .how-sticky { position: static !important; }
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--pink-hot), var(--green-fresh));
}
.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 0 0 40px 0;
  position: relative;
}
.step-num {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--pink-hot);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--pink-hot);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(255,61,133,0.2);
  transition: all 0.3s ease;
}
.step:hover .step-num {
  background: var(--pink-hot);
  color: white;
  transform: scale(1.1);
}
.step-content h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 6px; padding-top: 14px; }
.step-content p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ─── BONUS SECTION ─── */
.bonus-section {
  background: linear-gradient(135deg, var(--dark) 0%, #2A0D1E 100%);
  color: white;
  overflow: hidden;
}
.bonus-section::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,200,150,0.1) 0%, transparent 70%);
  bottom: -200px; right: -200px;
}
.bonus-card {
  background: linear-gradient(135deg, rgba(255,61,133,0.12), rgba(0,200,150,0.08));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 40px;
  margin-top: 40px;
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.bonus-badge {
  background: var(--yellow-pop);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 12px;
  display: inline-block;
}
.bonus-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}
.bonus-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.bonus-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}
.bonus-list li::before {
  content: '✦';
  color: var(--yellow-pop);
  flex-shrink: 0;
}

/* ─── TESTIMONIALS ─── */
.testimonials-section { background: var(--warm-white); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.testi-card {
  background: white;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--pink-hot);
  transition: all 0.3s ease;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-pink); }
.testi-stars { color: var(--yellow-pop); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testi-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--dark-soft);
  margin-bottom: 16px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-soft), var(--pink-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.testi-name { font-size: 0.85rem; font-weight: 600; }
.testi-role { font-size: 0.78rem; color: var(--text-muted); }

/* ─── VISUAL TESTIMONIALS ─── */
.visual-testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.visual-testi-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border-bottom: 4px solid var(--pink-hot);
}
.visual-testi-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-pink);
}
.visual-testi-image {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--pink-soft), #FFEAF2);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.visual-testi-image .image-placeholder-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--pink-deep);
  text-align: center;
  padding: 0 20px;
  opacity: 0.6;
}
.visual-testi-image img.testi-img-preview {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  display: none;
}
.visual-testi-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.visual-testi-author {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px dashed rgba(0,0,0,0.08);
}

/* ─── FOR WHO ─── */
.forwhom-section {
  background: linear-gradient(135deg, #FFF8F0, #FFF0F7);
}
.forwhom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.forwhom-card {
  background: white;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.forwhom-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(255,61,133,0.12);
  border-bottom: 3px solid var(--pink-hot);
}
.forwhom-icon { font-size: 2.4rem; display: block; margin-bottom: 12px; }
.forwhom-card p { font-size: 0.88rem; font-weight: 500; color: var(--dark-soft); line-height: 1.5; }

/* ─── GUARANTEE ─── */
.guarantee-section { background: var(--cream); }
.guarantee-box {
  background: white;
  border-radius: 28px;
  padding: 48px;
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: var(--shadow-soft);
  border: 2px solid rgba(0,200,150,0.15);
  margin-top: 24px;
}
.guarantee-icon { font-size: 5rem; flex-shrink: 0; }
.guarantee-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--green-deep);
}
.guarantee-text { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

/* ─── CTA FINAL ─── */
.cta-section {
  background: linear-gradient(160deg, var(--dark) 0%, #2A0D1E 50%, #001A12 100%);
  color: white;
  text-align: center;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(255,61,133,0.12) 0%, transparent 60%);
  top: -300px; left: 50%;
  transform: translateX(-50%);
}
.cta-section .section-title {
  color: white;
  position: relative;
  z-index: 1;
}
.cta-section .section-title em {
  font-style: normal;
  color: var(--yellow-pop);
}
.offer-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 32px;
  padding: 48px 40px;
  max-width: 480px;
  margin: 40px auto 0;
  position: relative;
  z-index: 1;
}
.offer-old { font-size: 1rem; color: rgba(255,255,255,0.4); text-decoration: line-through; margin-bottom: 4px; }
.offer-new {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--yellow-pop);
  line-height: 1;
  margin-bottom: 4px;
}
.offer-cents { font-size: 1rem; color: rgba(255,255,255,0.6); margin-bottom: 24px; }
.offer-discount {
  display: inline-block;
  background: var(--pink-hot);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}

.btn-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #00E5A8, #00875A);
  color: white;
  text-decoration: none;
  padding: 22px 40px;
  border-radius: 100px;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 12px 40px rgba(0,229,168,0.4);
  transition: all 0.3s ease;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.btn-buy::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-buy:hover::after { transform: translateX(100%); }
.btn-buy:hover { transform: translateY(-3px); box-shadow: 0 18px 50px rgba(0,229,168,0.5); }

.offer-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  margin-bottom: 24px;
}
.offer-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
}
.offer-feature .check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(0,200,150,0.2);
  color: var(--green-fresh);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.offer-guarantee {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.3);
  text-align: center;
  padding: 32px 24px;
  font-size: 0.82rem;
}
footer a { color: rgba(255,255,255,0.4); text-decoration: none; }
footer a:hover { color: rgba(255,255,255,0.7); }

/* ─── DIVIDERS ─── */
.wave-divider { overflow: hidden; line-height: 0; }
.wave-divider svg { display: block; }

/* ─── COUNTDOWN ─── */
.countdown-bar {
  background: linear-gradient(90deg, var(--pink-hot), var(--pink-deep));
  color: white;
  text-align: center;
  padding: 12px 24px;
  font-size: 0.88rem;
  font-weight: 500;
  position: sticky;
  top: 0;
  z-index: 100;
}
.countdown-bar strong { font-weight: 700; }
#countdown-timer {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  background: rgba(0,0,0,0.2);
  padding: 2px 10px;
  border-radius: 6px;
  font-family: monospace;
  font-size: 1rem;
}

/* ─── ANIMATIONS ─── */
.float-animation { animation: float 6s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 640px) {
  section { padding: 60px 20px; }
  .hero { padding: 100px 20px 60px; }
  .bonus-card, .guarantee-box { padding: 28px 20px; }
  .solution-visual { padding: 28px 20px; }
  .offer-card { padding: 32px 24px; }
  .steps::before { left: 22px; }
  .step-num { width: 46px; height: 46px; font-size: 1.1rem; }
}

/* ─── SCROLL SNAP CONTAINER ─── */
.smooth-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.smooth-reveal.shown {
  opacity: 1;
  transform: translateY(0);
}
