/* ============================================
   DESIGN SYSTEM — Masaje Profundo
   Clean White-Hat Sales Page
   ============================================ */

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

/* ---------- CSS Custom Properties ---------- */
:root {
  --bg-primary: #080510;
  --bg-secondary: #0f0b1a;
  --bg-card: rgba(20, 14, 35, 0.6);
  --bg-glass: rgba(255, 255, 255, 0.03);

  --accent-rose: #e84393;
  --accent-rose-light: #fd79a8;
  --accent-rose-glow: rgba(232, 67, 147, 0.3);
  --accent-gold: #f9ca24;
  --accent-gold-light: #ffeaa7;
  --accent-purple: #a855f7;
  --accent-purple-deep: #6c2bd9;

  --text-primary: #f5f0ff;
  --text-secondary: rgba(245, 240, 255, 0.7);
  --text-muted: rgba(245, 240, 255, 0.45);

  --gradient-rose: linear-gradient(135deg, #e84393, #fd79a8, #fab1a0);
  --gradient-cta: linear-gradient(135deg, #e84393 0%, #d63384 40%, #a855f7 100%);
  --gradient-cta-hover: linear-gradient(135deg, #fd79a8 0%, #e84393 40%, #c084fc 100%);
  --gradient-gold: linear-gradient(135deg, #f9ca24, #f0932b);
  --gradient-section: linear-gradient(180deg, transparent 0%, rgba(232, 67, 147, 0.03) 50%, transparent 100%);

  --border-subtle: rgba(232, 67, 147, 0.12);
  --border-glow: rgba(232, 67, 147, 0.25);

  --shadow-rose: 0 0 40px rgba(232, 67, 147, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-cta: 0 8px 30px rgba(232, 67, 147, 0.35);
  --shadow-cta-hover: 0 12px 45px rgba(232, 67, 147, 0.5);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-accent: 'Outfit', sans-serif;

  --section-padding: clamp(60px, 10vw, 120px);
  --container-max: 860px;
  --container-wide: 1100px;

  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
}

/* ---------- 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-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

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

.container--wide { max-width: var(--container-wide); }
.text-center { text-align: center; }

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

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

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

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-rose), transparent);
  opacity: 0.3;
}

.section__eyebrow {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-rose-light);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.section__eyebrow::before,
.section__eyebrow::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--accent-rose-light);
  opacity: 0.5;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

/* ---------- Particles ---------- */
#particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}
.orb--rose { background: var(--accent-rose); }
.orb--purple { background: var(--accent-purple); }

/* ==========================================
   HERO
   ========================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}

.hero::before { display: none; }

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--bg-primary));
  z-index: 1;
}

.hero__bg-gradient {
  position: absolute;
  top: -20%; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(232, 67, 147, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 67, 147, 0.1);
  border: 1px solid rgba(232, 67, 147, 0.2);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-rose-light);
  margin-bottom: 32px;
  animation: fadeInDown 0.8s var(--ease-smooth) both;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s 0.2s var(--ease-smooth) both;
}

.hero__title em {
  font-style: italic;
  color: var(--accent-rose-light);
}

.hero__description {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s 0.4s var(--ease-smooth) both;
}

.hero__cta-wrapper {
  animation: fadeInUp 0.8s 0.6s var(--ease-smooth) both;
}

/* ==========================================
   PROBLEM
   ========================================== */
.problem { background: var(--gradient-section); }

.problem__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 640px;
  margin: 0 auto 48px;
}

.problem__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease-smooth);
}

.problem__item:hover {
  border-color: var(--border-glow);
  background: rgba(232, 67, 147, 0.03);
  transform: translateX(4px);
}

.problem__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: rgba(232, 67, 147, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.problem__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.problem__text strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ==========================================
   SOLUTION
   ========================================== */
.solution__highlight {
  background: linear-gradient(135deg, rgba(232, 67, 147, 0.08), rgba(168, 85, 247, 0.08));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.solution__highlight::before {
  content: '';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 2px;
  background: var(--gradient-rose);
  border-radius: 2px;
}

.solution__quote {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.solution__quote em { color: var(--accent-rose-light); }

.solution__author {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* ==========================================
   ABOUT / BIO
   ========================================== */
.about { background: var(--gradient-section); }

.about__card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
}

.about__image-wrapper { position: relative; }

.about__image-wrapper::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: var(--gradient-rose);
  border-radius: var(--radius-lg);
  opacity: 0.4;
  z-index: 0;
}

.about__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
}

.about__name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.about__role {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-rose-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about__bio {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.about__stats {
  display: flex;
  gap: 32px;
}

.about__stat { text-align: center; }

.about__stat-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-rose-light);
}

.about__stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 680px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all 0.4s var(--ease-smooth);
  backdrop-filter: blur(10px);
}

.testimonial-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-rose);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-family: var(--font-heading);
  font-size: 4rem;
  color: rgba(232, 67, 147, 0.1);
  line-height: 1;
}

.testimonial__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.testimonial__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-glow);
}

.testimonial__name {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial__stars {
  color: var(--accent-gold);
  font-size: 0.75rem;
  letter-spacing: 2px;
}

.testimonial__text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-style: italic;
}

/* ==========================================
   MODULES
   ========================================== */
.modules { background: var(--gradient-section); }

.modules__list {
  max-width: 640px;
  margin: 0 auto 48px;
}

.module-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(232, 67, 147, 0.08);
  transition: all 0.3s var(--ease-smooth);
}

.module-item:hover { padding-left: 8px; }
.module-item:last-child { border-bottom: none; }

.module__number {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(232, 67, 147, 0.1);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent-rose-light);
}

.module__info h4 {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.module__info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================
   BONUSES
   ========================================== */
.bonuses__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 640px;
  margin: 0 auto 48px;
}

.bonus-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  overflow: hidden;
  transition: all 0.4s var(--ease-smooth);
  backdrop-filter: blur(10px);
}

.bonus-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-3px);
  box-shadow: var(--shadow-rose);
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-rose);
}

.bonus-card--super {
  border-color: rgba(249, 202, 36, 0.3);
  background: linear-gradient(135deg, rgba(249, 202, 36, 0.05), rgba(240, 147, 43, 0.05));
}

.bonus-card--super::before { background: var(--gradient-gold); }

.bonus__tag {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-rose-light);
  background: rgba(232, 67, 147, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.bonus-card--super .bonus__tag {
  color: var(--accent-gold);
  background: rgba(249, 202, 36, 0.1);
}

.bonus__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

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

.bonus__value {
  margin-top: 14px;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.bonus__value span {
  text-decoration: line-through;
  color: var(--accent-rose);
}

/* ==========================================
   PRICING
   ========================================== */
.pricing {
  background: radial-gradient(ellipse at center, rgba(232, 67, 147, 0.06), transparent 70%);
}

.pricing__card {
  max-width: 560px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(20, 14, 35, 0.9), rgba(30, 20, 50, 0.9));
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 56px);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-rose), var(--shadow-card);
}

.pricing__card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 3px;
  background: var(--gradient-rose);
}

.pricing__card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(232, 67, 147, 0.08), transparent);
  pointer-events: none;
}

.pricing__includes {
  text-align: left;
  margin-bottom: 36px;
}

.pricing__include-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.pricing__include-item::before {
  content: '✓';
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: rgba(46, 204, 113, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #2ecc71;
  font-weight: 700;
}

.pricing__label {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.pricing__price {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 8px;
}

.pricing__price-currency {
  font-size: 0.4em;
  vertical-align: super;
  margin-right: 4px;
}

.pricing__note {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* ---------- CTA Button ---------- */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gradient-cta);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  padding: 18px 48px;
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s var(--ease-smooth);
  box-shadow: var(--shadow-cta);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

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

.btn-cta:hover {
  background: var(--gradient-cta-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-cta-hover);
}

.btn-cta:hover::before { left: 100%; }
.btn-cta:active { transform: translateY(-1px) scale(0.98); }

.btn-cta--large {
  padding: 22px 56px;
  font-size: 1.1rem;
  width: 100%;
  max-width: 420px;
}

.btn-cta__arrow {
  font-size: 1.2em;
  transition: transform 0.3s;
}

.btn-cta:hover .btn-cta__arrow { transform: translateX(4px); }

.cta__subtext {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cta__subtext svg { width: 16px; height: 16px; fill: #2ecc71; }

/* ---------- Guarantee ---------- */
.guarantee {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(46, 204, 113, 0.05);
  border: 1px solid rgba(46, 204, 113, 0.15);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 36px;
  text-align: left;
}

.guarantee__icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  background: rgba(46, 204, 113, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.guarantee__title {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.95rem;
  color: #2ecc71;
  margin-bottom: 4px;
}

.guarantee__text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================
   FAQ
   ========================================== */
.faq { background: var(--gradient-section); }

.faq__list {
  max-width: 640px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.faq-item:last-child { border-bottom: none; }

.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.3s;
}

.faq__question:hover { color: var(--accent-rose-light); }

.faq__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(232, 67, 147, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-smooth);
}

.faq__icon svg {
  width: 14px; height: 14px;
  stroke: var(--accent-rose-light);
  stroke-width: 2;
  fill: none;
  transition: transform 0.3s var(--ease-smooth);
}

.faq-item.active .faq__icon { background: rgba(232, 67, 147, 0.2); }
.faq-item.active .faq__icon svg { transform: rotate(180deg); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-smooth), padding 0.4s;
}

.faq-item.active .faq__answer { max-height: 300px; }

.faq__answer-inner {
  padding: 0 0 24px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ==========================================
   FINAL CTA
   ========================================== */
.final-cta {
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(232, 67, 147, 0.08), transparent 60%);
  padding-bottom: clamp(80px, 12vw, 140px);
}

.final-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta__subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* ---------- Benefits Grid ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto 48px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all 0.3s var(--ease-smooth);
}

.benefit-item:hover {
  border-color: var(--border-glow);
  color: var(--text-primary);
}

.benefit-item__icon { font-size: 1.2rem; }

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 40px 0;
  text-align: center;
}

.footer__text {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
}

.footer__links a {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer__links a:hover { color: var(--accent-rose-light); }

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.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; }

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

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

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

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(232, 67, 147, 0.35); }
  50% { box-shadow: 0 8px 50px rgba(232, 67, 147, 0.55); }
}

.btn-cta--pulse { animation: ctaPulse 2.5s infinite; }

/* ==========================================
   QUIZ
   ========================================== */
.quiz-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-smooth);
}

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

.quiz-container {
  max-width: 580px;
  width: 100%;
  padding: 24px;
  text-align: center;
}

.quiz__progress {
  display: flex;
  gap: 6px;
  margin-bottom: 40px;
  justify-content: center;
}

.quiz__progress-dot {
  width: 40px; height: 4px;
  border-radius: 2px;
  background: rgba(232, 67, 147, 0.15);
  transition: all 0.4s var(--ease-smooth);
}

.quiz__progress-dot.active { background: var(--accent-rose); }
.quiz__progress-dot.completed { background: var(--accent-rose-light); }

.quiz__question-wrapper { animation: fadeInUp 0.5s var(--ease-smooth) both; }

.quiz__step-label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-rose-light);
  margin-bottom: 16px;
}

.quiz__question {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 36px;
  color: var(--text-primary);
}

.quiz__options { display: grid; gap: 14px; }

.quiz__option {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-align: left;
  display: flex;
  align-items: center;
  gap: 14px;
}

.quiz__option:hover {
  border-color: var(--border-glow);
  background: rgba(232, 67, 147, 0.05);
  color: var(--text-primary);
  transform: translateX(4px);
}

.quiz__option.selected {
  border-color: var(--accent-rose);
  background: rgba(232, 67, 147, 0.1);
  color: var(--text-primary);
}

.quiz__option-letter {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(232, 67, 147, 0.1);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--accent-rose-light);
  transition: all 0.3s;
}

.quiz__option.selected .quiz__option-letter {
  background: var(--accent-rose);
  border-color: var(--accent-rose);
  color: #fff;
}

.quiz__result { animation: fadeInUp 0.6s var(--ease-smooth) both; }

.quiz__result-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.quiz__result-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.quiz__result-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
  .about__card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px;
    gap: 28px;
  }

  .about__image-wrapper {
    max-width: 200px;
    margin: 0 auto;
  }

  .about__stats { justify-content: center; }

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

  .btn-cta--large {
    padding: 18px 36px;
    font-size: 0.95rem;
  }

  .pricing__card { padding: 28px 20px; }

  .hero__title { font-size: clamp(1.8rem, 7vw, 2.8rem); }

  .guarantee {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .section { padding: clamp(40px, 8vw, 80px) 0; }
  .hero { padding: 60px 0 40px; }
  .container { padding: 0 16px; }
  .bonus-card { padding: 24px 20px; }
  .testimonial-card { padding: 24px 20px; }
}
