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

* { box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: #16161a; background: #fff8fa; }

/* ======================================
   BASE UTILITIES
   ====================================== */
.glass {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 4px 24px rgba(255,131,149,0.10);
}
.glass-card {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.btn-primary {
  background: linear-gradient(135deg, #ff8395 0%, #e84393 100%);
  box-shadow: 0 4px 20px rgba(255,131,149,0.40);
  color: #fff;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-primary:hover { opacity: 0.92; transform: translateY(-1px); }
.btn-primary:active { transform: scale(0.98); }

.btn-secondary {
  background: rgba(255,255,255,0.90);
  border: 1.5px solid rgba(255,131,149,0.45);
  color: #16161a;
  font-weight: 600;
  transition: all 0.2s;
}
.btn-secondary:hover { background: #fff0f3; border-color: rgba(232,67,147,0.6); }

.hero-bg { background: linear-gradient(135deg, #fff0f5 0%, #ffe4ef 30%, #fff8fa 70%, #ffeef5 100%); }

.heading-pink {
  background: linear-gradient(135deg, #ff8395 0%, #e84393 40%, #ff6b8a 80%, #ffb8c3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.offer-bg { background: linear-gradient(180deg, #ffb8c6 0%, #ffc8d4 30%, #ffd4df 100%); }
.compare-bg { background: linear-gradient(135deg, #1a1a20 0%, #1e1626 50%, #1a1a20 100%); }

.summary-card {
  background: linear-gradient(135deg, #ff8395 0%, #e84393 50%, #c9278a 100%);
  box-shadow: 0 20px 60px rgba(255,131,149,0.35);
}

.dark-card {
  background: rgba(26,26,32,0.95);
  border: 1px solid rgba(255,255,255,0.10);
}

.light-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(228,228,235,0.75);
  box-shadow: 0 8px 30px rgba(255,131,149,0.07);
}

/* ======================================
   MACOS CARD
   ====================================== */
.mac-bar {
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.9), rgba(248,248,250,0.8));
  border-bottom: 1px solid rgba(228,228,235,0.6);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
}
.mac-dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-red    { background: #ff5f57; }
.dot-yellow { background: #ffbd2e; }
.dot-green  { background: #28c840; }

/* ======================================
   BATTLE CARD / PROCESS / PRICING
   ====================================== */
.battle-card {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,131,149,0.18);
  border-radius: 1rem;
  box-shadow: 0 4px 24px rgba(255,131,149,0.08);
}

.process-circle {
  background: linear-gradient(135deg, rgba(255,131,149,0.12), rgba(255,131,149,0.04)), #fffafc;
  border: 1px solid rgba(255,131,149,0.22);
  box-shadow: 0 4px 20px rgba(255,131,149,0.12);
}

.pricing-popular {
  background: linear-gradient(to bottom, rgba(255,240,245,0.7), #fff);
  border: 2px solid rgba(255,131,149,0.45);
  box-shadow: 0 16px 48px rgba(255,131,149,0.16);
}
.pricing-normal {
  background: #fff;
  border: 1px solid rgba(228,228,235,0.8);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

/* ======================================
   FAQ ACCORDION
   ====================================== */
.faq-item { transition: all 0.25s ease; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease;
  opacity: 0;
}
.faq-answer.open { max-height: 500px; opacity: 1; }
.faq-chevron { transition: transform 0.25s ease; }
.faq-chevron.open { transform: rotate(180deg); }

/* ======================================
   ANIMATIONS
   ====================================== */
@keyframes gentleBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}
.bob { animation: gentleBob 2s ease-in-out infinite; }

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

@keyframes countUp {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ======================================
   SCROLL REVEAL
   ====================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ======================================
   MOBILE MENU
   ====================================== */
#mobile-menu { display: none; }
#mobile-menu.open { display: block; }

/* ======================================
   WAVES / MISC
   ====================================== */
.wave-top    { margin-top: -2px; }
.wave-bottom { margin-bottom: -2px; }

.score-gradient {
  background: linear-gradient(135deg, #ff8395, #e84393);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tool-card { transition: box-shadow 0.25s, transform 0.25s; }
.tool-card:hover { box-shadow: 0 20px 60px rgba(255,131,149,0.18); transform: translateY(-2px); }

.form-input:focus {
  outline: none;
  border-color: rgba(255,131,149,0.5);
  box-shadow: 0 0 0 3px rgba(255,131,149,0.12);
}

.toggle-btn { transition: all 0.2s; }
.toggle-btn.selected {
  background: linear-gradient(135deg, #ff8395, #e84393);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 2px 12px rgba(255,131,149,0.35);
}

.section { padding: 5rem 0; }
@media(max-width: 768px) { .section { padding: 3.5rem 0; } }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

.orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; z-index: 0; }

/* ======================================
   STATS BAR
   ====================================== */
.stats-bar {
  background: linear-gradient(90deg, #1a1a20 0%, #1e1626 100%);
}
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.12); }
@media(max-width: 640px) { .stat-divider { display: none; } }

/* ======================================
   TESTIMONIALS
   ====================================== */
.testimonial-card {
  background: #fff;
  border: 1px solid rgba(255,131,149,0.14);
  border-radius: 1.25rem;
  box-shadow: 0 4px 24px rgba(255,131,149,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(255,131,149,0.16);
}
.star-filled { color: #f59e0b; }
.earnings-badge {
  background: linear-gradient(135deg, rgba(255,131,149,0.12), rgba(232,67,147,0.06));
  border: 1px solid rgba(255,131,149,0.22);
  border-radius: 0.75rem;
}

/* ======================================
   EARNINGS CALCULATOR
   ====================================== */
.calc-bg { background: linear-gradient(135deg, #fff0f5 0%, #ffe4ef 50%, #fff8fa 100%); }

.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  background: linear-gradient(to right, #ff8395 50%, rgba(255,131,149,0.2) 50%);
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8395, #e84393);
  border: 3px solid #fff;
  box-shadow: 0 2px 10px rgba(255,131,149,0.55);
  cursor: pointer;
}
.calc-slider::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8395, #e84393);
  border: 3px solid #fff;
  box-shadow: 0 2px 10px rgba(255,131,149,0.55);
  cursor: pointer;
}

.calc-result {
  background: linear-gradient(135deg, #1a1a20 0%, #1e1626 100%);
  border-radius: 1.5rem;
}
.calc-pill {
  background: rgba(255,131,149,0.15);
  border: 1px solid rgba(255,131,149,0.3);
  border-radius: 9999px;
  padding: 0.2rem 0.875rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffb8c3;
}

/* ======================================
   VIDEO EMBED
   ====================================== */
.video-wrapper {
  position: relative;
  padding-top: 56.25%;
  background: #0f0f0f;
  overflow: hidden;
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(26,26,32,0.88), rgba(30,22,38,0.75));
  transition: background 0.2s;
}
.video-play-overlay:hover { background: linear-gradient(135deg, rgba(26,26,32,0.7), rgba(30,22,38,0.6)); }
.video-play-overlay:hover .play-circle { transform: scale(1.12); }
.play-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: #ff0000;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(255,0,0,0.4);
  transition: transform 0.2s;
}

/* ======================================
   STICKY CTA BAR
   ====================================== */
#sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 40;
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: rgba(22, 22, 26, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,131,149,0.22);
  box-shadow: 0 -8px 30px rgba(0,0,0,0.3);
}
#sticky-bar.show { transform: translateY(0); }

/* ======================================
   EXIT-INTENT POPUP
   ====================================== */
#exit-popup {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#exit-popup.open { opacity: 1; pointer-events: all; }
.popup-card {
  background: #fff;
  border-radius: 1.75rem;
  max-width: 460px;
  width: calc(100% - 2.5rem);
  padding: 2.5rem 2rem;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.22);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
#exit-popup.open .popup-card { transform: none; }

/* ======================================
   COOKIE BANNER
   ====================================== */
#cookie-banner {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(130%);
  z-index: 50;
  width: calc(100% - 2.5rem);
  max-width: 620px;
  background: rgba(26,26,32,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.25rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
#cookie-banner.show { transform: translateX(-50%) translateY(0); }

/* ======================================
   MOBILE POLISH
   ====================================== */
@media(max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-headline-1 { font-size: 2.75rem !important; }
  .hero-headline-2 { font-size: 2.25rem !important; }
  .hero-cta-group { flex-direction: column !important; width: 100%; }
  .hero-cta-group a { width: 100% !important; }
  #sticky-bar .sticky-tagline { display: none; }
}
@media(max-width: 375px) {
  .hero-headline-1 { font-size: 2.4rem !important; }
  .testimonial-grid { grid-template-columns: 1fr !important; }
}
