/* =====================================================
   ROMANCE NOVELIST'S TOOLKIT - SALES PAGE STYLES
   Theme: White + Light Pink Gradient | Romantic Fonts
===================================================== */

:root {
  --pink-50: #fff5f9;
  --pink-100: #ffe4ef;
  --pink-200: #ffc9dd;
  --pink-300: #ffa4c6;
  --pink-400: #ff7aad;
  --pink-500: #ff4b91;
  --pink-600: #e6297a;
  --pink-700: #c41c67;
  --pink-800: #a01254;
  --deep-rose: #8b1948;
  --ink: #3a1524;
  --gray-text: #6b4b5a;
  --white: #ffffff;

  --grad-bg: linear-gradient(180deg, #ffffff 0%, #fff0f7 40%, #ffe0ee 100%);
  --grad-btn: linear-gradient(135deg, #ffb3d1 0%, #ff4b91 55%, #c41c67 100%);
  --grad-btn-hover: linear-gradient(135deg, #ffa4c6 0%, #ff2f7f 55%, #a01254 100%);
  --grad-card: linear-gradient(135deg, #ffffff 0%, #fff5fa 100%);
  --grad-section: linear-gradient(180deg, #fff5fa 0%, #ffe4ef 100%);

  --shadow-soft: 0 20px 60px rgba(255, 75, 145, 0.15);
  --shadow-strong: 0 24px 70px rgba(196, 28, 103, 0.25);
  --shadow-inset: inset 0 0 40px rgba(255, 180, 210, 0.2);

  --font-script: 'Great Vibes', 'Dancing Script', cursive;
  --font-dancing: 'Dancing Script', cursive;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', 'Helvetica Neue', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--grad-bg);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

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

/* =========== HEADER =========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 164, 198, 0.3);
  box-shadow: 0 4px 20px rgba(255, 75, 145, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}
.brand img {
  height: 62px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: var(--deep-rose);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color .3s;
  font-family: var(--font-serif);
}
.main-nav a:hover { color: var(--pink-500); }
.nav-cta {
  background: var(--grad-btn);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 40px;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  box-shadow: 0 8px 22px rgba(255, 75, 145, 0.35);
  transition: transform .3s, box-shadow .3s;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(196, 28, 103, 0.45);
  color: #fff !important;
}
.header-hearts {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.header-hearts span {
  position: absolute;
  color: rgba(255, 164, 198, 0.35);
  font-size: 14px;
  animation: floatUp 8s linear infinite;
}
.header-hearts span:nth-child(1) { left: 15%; animation-delay: 0s; }
.header-hearts span:nth-child(2) { left: 55%; animation-delay: 3s; }
.header-hearts span:nth-child(3) { left: 85%; animation-delay: 6s; }

@keyframes floatUp {
  0% { transform: translateY(60px); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(-60px); opacity: 0; }
}

/* =========== TYPOGRAPHY =========== */
.script-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.30;
  color: var(--deep-rose);
  margin: 16px 0 20px;
}
.script-title span {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--pink-600);
  font-size: 78px;
  display: inline-block;
  line-height: 1;
  margin: 8px 0;
  background: linear-gradient(135deg, #ff4b91, #c41c67);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.script-heading {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 38px;
  color: var(--deep-rose);
  line-height: 1.25;
  margin-bottom: 22px;
  position: relative;
}
.script-heading.center { text-align: center; }
.script-heading::first-letter,
.script-title::first-letter {
  /* keep serif */
}

.eyebrow {
  font-family: var(--font-dancing);
  color: var(--pink-600);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.eyebrow-2 {
  font-family: var(--font-dancing);
  color: var(--pink-500);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-script);
  color: var(--pink-600);
  font-size: 62px;
  text-align: center;
  line-height: 1;
  margin-bottom: 6px;
}
.section-sub {
  text-align: center;
  color: var(--gray-text);
  font-size: 17px;
  margin-bottom: 30px;
  font-style: italic;
}
.mid-heading {
  font-family: var(--font-serif);
  color: var(--deep-rose);
  font-size: 30px;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 6px;
}

p { margin-bottom: 14px; color: var(--gray-text); }
.note-italic {
  font-style: italic;
  font-size: 14px;
  color: #b06580;
  padding-left: 12px;
  border-left: 3px solid var(--pink-300);
}

/* =========== CTA BUTTONS =========== */
.btn-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 60px;
  background: var(--grad-btn);
  color: #fff !important;
  text-decoration: none;
  border-radius: 60px;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.4px;
  box-shadow: 0 15px 40px rgba(255, 75, 145, 0.4), inset 0 -3px 0 rgba(0,0,0,0.1);
  transition: transform .3s, box-shadow .3s, background .5s;
  position: relative;
  overflow: hidden;
  margin: 10px 0;
}
.btn-cta span { position: relative; z-index: 2; }
.btn-cta em {
  font-family: var(--font-dancing);
  font-style: normal;
  font-size: 15px;
  font-weight: 500;
  margin-top: 4px;
  opacity: 0.95;
  position: relative;
  z-index: 2;
}
.btn-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-btn-hover);
  opacity: 0;
  transition: opacity .4s;
}
.btn-cta:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 22px 55px rgba(196, 28, 103, 0.55);
}
.btn-cta:hover::before { opacity: 1; }
.btn-cta.small {
  padding: 14px 32px;
  font-size: 16px;
}

/* =========== HERO =========== */
.hero {
  position: relative;
  padding: 70px 0 90px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fff0f7 100%);
}
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  z-index: 0;
}
.hero::before {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #ffc9dd, transparent);
  top: -100px; left: -100px;
}
.hero::after {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #ffa4c6, transparent);
  bottom: -150px; right: -120px;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: 60px;
}
.hero-sub {
  font-size: 17px;
  color: var(--deep-rose);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 18px;
  line-height: 1.5;
}
.hero-desc {
  font-size: 16px;
  color: var(--gray-text);
  margin-bottom: 28px;
  max-width: 560px;
}
.hero-note {
  font-size: 12px;
  color: #b8a4ad;
  margin-top: 8px;
  font-style: italic;
}

.hero-image-frame {
  position: relative;
  padding: 20px;
  background: var(--grad-card);
  border-radius: 30px;
  box-shadow: var(--shadow-strong);
  border: 3px solid #fff;
  transform: rotate(-2deg);
  transition: transform .5s;
}
.hero-image-frame:hover { transform: rotate(0deg) scale(1.02); }
.hero-image-frame img {
  width: 100%;
  display: block;
  border-radius: 20px;
}
.hero-image-frame::before {
  content: '\2764';
  position: absolute;
  top: -20px; right: -20px;
  width: 60px; height: 60px;
  background: var(--grad-btn);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 10px 25px rgba(255, 75, 145, 0.4);
  animation: heartbeat 2s infinite;
}
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.15); }
  30% { transform: scale(1); }
  45% { transform: scale(1.1); }
}

/* Floating hearts in hero */
.floating-hearts {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.floating-hearts span {
  position: absolute;
  color: var(--pink-300);
  font-size: 22px;
  animation: floatDrift 12s linear infinite;
  opacity: 0.5;
}
.floating-hearts span:nth-child(1) { top: 10%; left: 8%; animation-delay: 0s; font-size: 18px; }
.floating-hearts span:nth-child(2) { top: 25%; left: 45%; animation-delay: 2s; font-size: 26px; }
.floating-hearts span:nth-child(3) { top: 60%; left: 20%; animation-delay: 4s; font-size: 20px; }
.floating-hearts span:nth-child(4) { top: 80%; left: 70%; animation-delay: 6s; font-size: 24px; }
.floating-hearts span:nth-child(5) { top: 40%; left: 90%; animation-delay: 1s; font-size: 16px; }
.floating-hearts span:nth-child(6) { top: 15%; left: 75%; animation-delay: 3s; font-size: 20px; }
.floating-hearts span:nth-child(7) { top: 70%; left: 5%; animation-delay: 5s; font-size: 22px; }
.floating-hearts span:nth-child(8) { top: 55%; left: 60%; animation-delay: 7s; font-size: 18px; }
@keyframes floatDrift {
  0% { transform: translate(0, 0) rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  50% { transform: translate(30px, -40px) rotate(15deg); opacity: 0.8; }
  90% { opacity: 0.5; }
  100% { transform: translate(-20px, -80px) rotate(-10deg); opacity: 0; }
}

/* =========== SLIDER =========== */
.slider-section {
  padding: 70px 0 90px;
  background: var(--grad-section);
  position: relative;
  overflow: hidden;
}
.slider-wrap {
  overflow: hidden;
  position: relative;
  padding: 30px 0;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.slider-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: slide 35s linear infinite;
}
.slider-wrap:hover .slider-track { animation-play-state: paused; }
@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.slide {
  width: 300px;
  flex-shrink: 0;
}
.slide-inner {
  height: 260px;
  border-radius: 24px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: transform .4s;
}
.slide-inner:hover { transform: translateY(-8px); }
.slide-inner span {
  font-size: 56px;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.2));
}
.slide-inner h3 {
  font-family: var(--font-script);
  font-size: 34px;
  margin-bottom: 6px;
  line-height: 1;
  font-weight: 400;
}
.slide-inner p {
  color: rgba(255,255,255,0.95);
  font-size: 14px;
  font-family: var(--font-serif);
  font-style: italic;
  margin: 0;
}
.slide-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.15) 100%);
  pointer-events: none;
}
.s1 { background: linear-gradient(135deg, #ff9ec7, #ff4b91); }
.s2 { background: linear-gradient(135deg, #ffb3d1, #e6297a); }
.s3 { background: linear-gradient(135deg, #ffc9dd, #ff7aad); }
.s4 { background: linear-gradient(135deg, #ff7aad, #a01254); }
.s5 { background: linear-gradient(135deg, #ffa4c6, #c41c67); }
.s6 { background: linear-gradient(135deg, #ffc9dd, #ff4b91); }

/* =========== SPLIT SECTIONS =========== */
.split-section {
  padding: 40px 0;
  position: relative;
}
.split-section.alt {
  background: linear-gradient(180deg, #fff5fa 0%, #ffffff 100%);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-text p { font-size: 16px; }
.fancy-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.fancy-list li {
  position: relative;
  padding: 10px 0 10px 34px;
  color: var(--gray-text);
  border-bottom: 1px dashed rgba(255, 164, 198, 0.4);
}
.fancy-list li::before {
  content: '\2764';
  position: absolute;
  left: 0; top: 12px;
  color: var(--pink-500);
  font-size: 18px;
}
.compare-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.compare-list li {
  padding: 10px 0;
  color: var(--gray-text);
  border-bottom: 1px dashed rgba(255, 164, 198, 0.4);
}
.compare-list li:last-child {
  color: var(--deep-rose);
  font-weight: 600;
}

/* =========== ILLUSTRATIONS =========== */
.illustration {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  background: var(--grad-card);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  border: 2px solid rgba(255, 164, 198, 0.4);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.illustration::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 201, 221, 0.5), transparent 60%);
}

/* Couple illustration */
.couple-scene {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.heart-big {
  font-size: 260px;
  color: #ff7aad;
  filter: drop-shadow(0 20px 40px rgba(255, 75, 145, 0.35));
  background: linear-gradient(135deg, #ffa4c6, #c41c67);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heartbeat 2.2s infinite;
}
.silhouette-1, .silhouette-2 {
  position: absolute;
  bottom: 20%;
  width: 90px;
  height: 160px;
  background: linear-gradient(180deg, #8b1948, #c41c67);
  border-radius: 40px 40px 20px 20px;
}
.silhouette-1 { left: 30%; }
.silhouette-1::before {
  content: '';
  position: absolute;
  top: -35px;
  left: 15px;
  width: 60px;
  height: 60px;
  background: linear-gradient(180deg, #a01254, #8b1948);
  border-radius: 50%;
}
.silhouette-2 { right: 30%; }
.silhouette-2::before {
  content: '';
  position: absolute;
  top: -45px;
  left: 15px;
  width: 60px;
  height: 70px;
  background: linear-gradient(180deg, #a01254, #8b1948);
  border-radius: 50% 50% 40% 40%;
}
.mini-hearts {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.mini-hearts span {
  position: absolute;
  color: var(--pink-400);
  font-size: 20px;
  animation: floatDrift 8s linear infinite;
}
.mini-hearts span:nth-child(1) { top: 15%; left: 20%; }
.mini-hearts span:nth-child(2) { top: 25%; right: 15%; animation-delay: 2s; }
.mini-hearts span:nth-child(3) { top: 60%; left: 10%; animation-delay: 4s; }
.mini-hearts span:nth-child(4) { top: 70%; right: 20%; animation-delay: 6s; }

/* Book illustration */
.illus-book {
  background: linear-gradient(135deg, #fff5fa, #ffe0ee);
}
.open-book {
  display: flex;
  gap: 4px;
  position: relative;
  filter: drop-shadow(0 25px 35px rgba(196, 28, 103, 0.25));
}
.page {
  width: 130px;
  height: 200px;
  background: #fff;
  border-radius: 6px 12px 12px 6px;
  padding: 22px 14px;
  position: relative;
}
.right-page {
  border-radius: 12px 6px 6px 12px;
}
.left-page { transform: rotate(-3deg); }
.right-page { transform: rotate(3deg); }
.lines {
  height: 100%;
  background:
    linear-gradient(#ffc9dd, #ffc9dd) 0 12px / 100% 2px no-repeat,
    linear-gradient(#ffc9dd, #ffc9dd) 0 28px / 100% 2px no-repeat,
    linear-gradient(#ffc9dd, #ffc9dd) 0 44px / 100% 2px no-repeat,
    linear-gradient(#ffc9dd, #ffc9dd) 0 60px / 100% 2px no-repeat,
    linear-gradient(#ffc9dd, #ffc9dd) 0 76px / 100% 2px no-repeat,
    linear-gradient(#ffc9dd, #ffc9dd) 0 92px / 100% 2px no-repeat,
    linear-gradient(#ffc9dd, #ffc9dd) 0 108px / 60% 2px no-repeat;
}
.heart-page {
  font-size: 100px;
  color: var(--pink-500);
  text-align: center;
  line-height: 200px;
  background: linear-gradient(135deg, #ff7aad, #c41c67);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.rose-1, .rose-2 {
  position: absolute;
  font-size: 60px;
  filter: drop-shadow(0 6px 12px rgba(196, 28, 103, 0.3));
}
.rose-1 { bottom: 12%; left: 10%; transform: rotate(-15deg); }
.rose-2 { top: 12%; right: 10%; transform: rotate(15deg); }

/* Workbook */
.illus-workbook { background: linear-gradient(135deg, #fff, #ffe4ef); }
.workbook-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 26px;
  width: 85%;
  box-shadow: 0 20px 45px rgba(196, 28, 103, 0.2);
  border-top: 6px solid var(--pink-500);
  position: relative;
}
.workbook-card h5 {
  font-family: var(--font-script);
  color: var(--deep-rose);
  font-size: 32px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 18px;
  line-height: 1;
}
.checkbox-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255, 164, 198, 0.4);
  font-family: var(--font-serif);
  color: var(--ink);
  font-size: 14px;
}
.cb {
  width: 20px; height: 20px;
  border: 2px solid var(--pink-500);
  border-radius: 5px;
  flex-shrink: 0;
  position: relative;
}
.cb.checked {
  background: var(--grad-btn);
  border-color: var(--pink-600);
}
.cb.checked::after {
  content: '\2713';
  position: absolute;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  top: -1px; left: 3px;
}

/* Sample page */
.illus-sample { background: linear-gradient(135deg, #fff5fa, #ffe0ee); }
.sample-page {
  background: #fff;
  border-radius: 16px;
  padding: 40px 34px;
  width: 82%;
  box-shadow: 0 18px 40px rgba(196, 28, 103, 0.18);
  position: relative;
  font-family: var(--font-serif);
  color: var(--ink);
  border-left: 5px solid var(--pink-500);
}
.quote-mark {
  font-family: var(--font-script);
  font-size: 90px;
  color: var(--pink-400);
  line-height: 0.6;
  margin-bottom: 8px;
}
.sample-page p {
  color: var(--gray-text);
  font-size: 16px;
  line-height: 1.6;
}
.signature-line {
  height: 2px;
  width: 60%;
  background: linear-gradient(90deg, var(--pink-400), transparent);
  margin-top: 20px;
}
.heart-corner {
  position: absolute;
  bottom: 16px;
  right: 20px;
  color: var(--pink-500);
  font-size: 26px;
}

/* Compare */
.illus-compare {
  background: linear-gradient(135deg, #fff, #ffe4ef);
}
.compare-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 24px;
  text-align: center;
  border: 3px solid var(--pink-500);
  box-shadow: 0 20px 50px rgba(255, 75, 145, 0.25);
  width: 75%;
  position: relative;
}
.compare-card .badge {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad-btn);
  color: #fff;
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 16px rgba(255, 75, 145, 0.3);
}
.compare-card h4 {
  font-family: var(--font-script);
  color: var(--deep-rose);
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
  margin: 12px 0 8px;
}
.compare-card p {
  color: var(--gray-text);
  font-family: var(--font-serif);
  font-style: italic;
  margin: 0;
}

/* =========== INTRO SECTION =========== */
.intro-section {
  padding: 40px 0;
  background: linear-gradient(180deg, #fff 0%, #fff5fa 100%);
}
.intro-card {
  background: var(--grad-card);
  border-radius: 30px;
  padding: 50px 60px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 164, 198, 0.5);
  max-width: 900px;
  margin: 0 auto;
}
.intro-lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--deep-rose);
  margin: 16px 0;
  line-height: 1.5;
}

.stages-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.stage-card {
  background: var(--grad-card);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(255, 75, 145, 0.1);
  border: 1px solid rgba(255, 164, 198, 0.4);
  transition: transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.stage-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-btn);
}
.stage-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}
.stage-num {
  font-family: var(--font-script);
  color: var(--pink-500);
  font-size: 48px;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ff7aad, #c41c67);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stage-card h4 {
  font-family: var(--font-serif);
  color: var(--deep-rose);
  font-size: 22px;
  margin-bottom: 4px;
}
.stage-tag {
  font-family: var(--font-dancing);
  color: var(--pink-500);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.stage-card p {
  font-size: 13px;
  color: var(--gray-text);
  margin: 0;
}

.center-cta {
  text-align: center;
  margin-top: 50px;
}

/* =========== EVERYTHING YOU GET =========== */
.get-everything {
  padding: 90px 0;
  background: var(--grad-section);
}
.everything-showcase {
  max-width: 780px;
  margin: 30px auto 20px;
  padding: 30px;
  background: #fff;
  border-radius: 30px;
  box-shadow: var(--shadow-strong);
  border: 2px solid #fff;
  position: relative;
}
.everything-showcase::before,
.everything-showcase::after {
  content: '\2764';
  position: absolute;
  color: var(--pink-400);
  font-size: 40px;
}
.everything-showcase::before { top: -20px; left: -20px; }
.everything-showcase::after { bottom: -20px; right: -20px; }
.everything-showcase img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

/* =========== BONUSES =========== */
.bonuses-section {
  padding: 20px 0px 60px;
  background: linear-gradient(180deg, #ffe4ef 0%, #fff5fa 100%);
}
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-top: 40px;
}
.bonus-card {
  background: #fff;
  border-radius: 24px;
  padding: 34px 30px;
  box-shadow: var(--shadow-soft);
  border: 2px solid transparent;
  position: relative;
  transition: transform .3s, border-color .3s;
}
.bonus-card:hover {
  transform: translateY(-8px);
  border-color: var(--pink-300);
}
.bonus-tag {
  display: inline-block;
  background: var(--grad-btn);
  color: #fff;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  box-shadow: 0 6px 16px rgba(255, 75, 145, 0.3);
}
.bonus-card h3 {
  font-family: var(--font-serif);
  color: var(--deep-rose);
  font-size: 22px;
  margin-bottom: 12px;
  line-height: 1.3;
}
.bonus-card p {
  font-size: 15px;
  color: var(--gray-text);
  margin: 0;
}

/* =========== SCROLL REVEAL ANIMATIONS =========== */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  animation: revealUp 0.9s ease forwards;
  animation-timeline: view();
  animation-range: entry 0% cover 25%;
}
@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}
/* Fallback for browsers without scroll-timeline */
@supports not (animation-timeline: view()) {
  .reveal-up { animation: revealUp 0.9s ease 0.15s forwards; }
}

.pulse {
  animation: pulseGlow 2.6s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 15px 40px rgba(255, 75, 145, 0.4), 0 0 0 0 rgba(255, 75, 145, 0.5); }
  50% { box-shadow: 0 18px 45px rgba(255, 75, 145, 0.55), 0 0 0 14px rgba(255, 75, 145, 0); }
}

/* =========== LOOPING ENGINE CALLOUT =========== */
.looping-engine-box {
  margin: 60px auto 30px;
  max-width: 900px;
  background: linear-gradient(135deg, #ffe4ef 0%, #fff5fa 100%);
  border-left: 6px solid var(--pink-500);
  border-radius: 20px;
  padding: 34px 40px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  box-shadow: 0 18px 45px rgba(255, 75, 145, 0.12);
  position: relative;
  overflow: hidden;
}
.looping-engine-box::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255,164,198,0.35), transparent 70%);
  border-radius: 50%;
}
.engine-icon {
  font-size: 46px;
  flex-shrink: 0;
  animation: spinLoop 4s linear infinite;
  filter: drop-shadow(0 6px 12px rgba(196, 28, 103, 0.3));
  background: linear-gradient(135deg, #ff7aad, #c41c67);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@keyframes spinLoop {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.engine-content h3 {
  font-family: var(--font-serif);
  color: var(--deep-rose);
  font-size: 24px;
  margin-bottom: 10px;
}
.engine-content p {
  color: var(--ink);
  font-size: 16px;
  margin: 0;
  line-height: 1.7;
}

/* =========== IDEA VAULT BOX =========== */
.idea-vault-box {
  background: linear-gradient(135deg, #fff5fa 0%, #ffe4ef 100%);
  border-left: 5px solid var(--pink-500);
  border-radius: 16px;
  padding: 24px 28px;
  margin: 22px 0;
  box-shadow: 0 12px 30px rgba(255, 75, 145, 0.1);
  transition: transform .4s;
}
.idea-vault-box:hover { transform: translateX(6px); }
.idea-vault-box h4 {
  font-family: var(--font-serif);
  color: var(--deep-rose);
  font-size: 20px;
  margin-bottom: 10px;
}
.idea-vault-box p {
  font-size: 15px;
  margin: 0;
  color: var(--ink);
}

.screenshot-row, .proof-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0 10px;
}
.screenshot-box, .proof-box {
  background: rgba(255, 255, 255, 0.6);
  border: 2px dashed var(--pink-300);
  border-radius: 14px;
  padding: 34px 20px;
  text-align: center;
  color: #b06580;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all .3s;
}
.screenshot-box:hover, .proof-box:hover {
  background: #fff;
  border-color: var(--pink-500);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(255, 75, 145, 0.15);
}
.center-italic { text-align: center; border-left: none; padding-left: 0; }

/* =========== STORY SAMPLE =========== */
.story-sample {
  background: linear-gradient(135deg, #fff5fa 0%, #ffe4ef 100%);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 164, 198, 0.5);
  position: relative;
  transition: transform .5s;
}
.story-sample:hover { transform: rotate(0deg) scale(1.02); }
.story-inner {
  background: #fff;
  border-radius: 16px;
  padding: 34px 30px;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink);
  position: relative;
  border-left: 4px solid var(--pink-400);
}
.story-inner p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 14px;
}
.story-inner .quote-mark {
  font-family: var(--font-script);
  font-size: 90px;
  color: rgba(255, 122, 173, 0.4);
  line-height: 0.3;
  margin-bottom: 8px;
}
.story-inner .heart-corner {
  position: absolute;
  bottom: 14px; right: 20px;
  color: var(--pink-500);
  font-size: 24px;
  animation: heartbeat 2s infinite;
}
.proof-lead {
  text-align: center;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--deep-rose);
  font-size: 18px;
  margin: 50px auto 20px;
  max-width: 900px;
}

/* =========== PACKAGE PRICING =========== */
.package-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #ffffff 0%, #ffe4ef 100%);
  position: relative;
}
.package-card {
  max-width: 920px;
  margin: 30px auto 0;
  background: linear-gradient(135deg, #fff5fa 0%, #ffffff 100%);
  border-radius: 26px;
  padding: 50px 44px;
  box-shadow: 0 30px 70px rgba(255, 75, 145, 0.18);
  border: 2px solid rgba(255, 164, 198, 0.5);
  position: relative;
  overflow: hidden;
}
.package-card::before {
  content: '\2764';
  position: absolute;
  top: -30px; right: -30px;
  font-size: 200px;
  color: rgba(255, 164, 198, 0.18);
  pointer-events: none;
}
.package-list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}
.package-list li {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(255, 164, 198, 0.4);
  align-items: center;
  transition: transform .3s;
}
.package-list li:hover { transform: translateX(6px); }
.package-list .check {
  width: 28px; height: 28px;
  background: var(--grad-btn);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(255, 75, 145, 0.3);
}
.package-list div { color: var(--ink); font-size: 15px; line-height: 1.5; }
.package-list div strong { color: var(--deep-rose); }
.package-list .value {
  font-family: var(--font-serif);
  color: var(--pink-600);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}
.bonus-subheading {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--deep-rose);
  font-size: 18px;
  margin: 20px 0 10px;
}
.package-list.bonuses .bonus-arrow {
  background: var(--pink-100);
  color: var(--deep-rose);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  height: fit-content;
  align-self: center;
  white-space: nowrap;
}
.package-list.bonuses li {
  grid-template-columns: 90px 1fr auto;
}

.totals {
  margin: 30px 0 22px;
  padding: 22px 26px;
  background: linear-gradient(135deg, #ffe4ef 0%, #ffc9dd 100%);
  border-radius: 16px;
  border: 2px solid rgba(255, 122, 173, 0.4);
}
.total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
  font-family: var(--font-serif);
  color: var(--ink);
  font-size: 20px;
}
.total-row .strike {
  text-decoration: line-through;
  color: #b8879a;
  font-weight: 600;
}
.total-row.big { font-size: 22px; font-weight: 700; margin-top: 8px; }
.total-row.big .price {
  font-size: 46px;
  line-height: 1;
  background: linear-gradient(135deg, #ff4b91, #c41c67);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
}

.btn-cta.big-cta {
  display: flex;
  width: 100%;
  padding: 22px 30px;
  font-size: 22px;
  border-radius: 16px;
  margin-top: 10px;
}

/* =========== COMPARISON TABLE =========== */
.comparison-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #ffe4ef 0%, #fff5fa 100%);
  text-align: center;
}
.compare-table-wrap {
  overflow-x: auto;
  margin: 30px 0 40px;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(255, 75, 145, 0.15);
  background: #fff;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  text-align: left;
  min-width: 700px;
}
.compare-table thead th {
  background: linear-gradient(135deg, #ffb3d1, #ff4b91);
  color: #fff;
  padding: 18px 20px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
}
.compare-table thead th.highlight-col {
  background: linear-gradient(135deg, #ff4b91, #c41c67);
  position: relative;
}
.compare-table thead th.highlight-col::before {
  content: '\2764';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  color: rgba(255,255,255,0.7);
}
.compare-table tbody tr {
  transition: background .3s;
}
.compare-table tbody tr:hover { background: #fff5fa; }
.compare-table tbody tr:nth-child(even) { background: #fffafc; }
.compare-table tbody tr:nth-child(even):hover { background: #ffe4ef; }
.compare-table td {
  padding: 16px 20px;
  color: var(--ink);
  font-size: 14.5px;
  border-bottom: 1px solid rgba(255, 164, 198, 0.25);
  vertical-align: middle;
}
.compare-table td:first-child {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--deep-rose);
}
.compare-table td.highlight-col {
  background: rgba(255, 201, 221, 0.35);
  color: var(--deep-rose);
  font-weight: 500;
  border-left: 3px solid var(--pink-500);
  border-right: 3px solid var(--pink-500);
}
.compare-table .yes {
  color: #c41c67;
  font-weight: 700;
}
.compare-table .no {
  color: #99788a;
  font-weight: 600;
}

/* =========== MINI PRICE BOX =========== */
.mini-price-box {
  background: linear-gradient(135deg, #ffe4ef 0%, #ffc9dd 100%);
  border-radius: 16px;
  padding: 20px 26px;
  margin: 20px 0;
  border: 2px solid rgba(255, 122, 173, 0.4);
  box-shadow: 0 12px 30px rgba(255, 75, 145, 0.15);
}
.mini-total {
  display: flex;
  justify-content: space-between;
  color: var(--ink);
  font-family: var(--font-serif);
  font-weight: 600;
  margin-bottom: 6px;
}
.mini-total .strike {
  text-decoration: line-through;
  color: #b8879a;
}
.mini-today {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--deep-rose);
  font-size: 22px;
  text-align: center;
  padding-top: 8px;
  border-top: 1px dashed rgba(255, 122, 173, 0.4);
}
.price-now {
  font-family: var(--font-script);
  font-size: 44px;
  background: linear-gradient(135deg, #ff4b91, #c41c67);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
  margin-left: 8px;
}

/* =========== TESTIMONIALS =========== */
.testimonials-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #fff5fa 0%, #ffe4ef 100%);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before,
.testimonials-section::after {
  content: '\2764';
  position: absolute;
  color: rgba(255, 164, 198, 0.18);
  font-size: 260px;
  pointer-events: none;
  line-height: 1;
}
.testimonials-section::before { top: 40px; left: -40px; transform: rotate(-15deg); }
.testimonials-section::after { bottom: 40px; right: -40px; transform: rotate(20deg); }
.center-eyebrow { text-align: center; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
.testimonial-card {
  background: linear-gradient(135deg, #ffffff 0%, #fff0f7 100%);
  border-radius: 24px;
  padding: 40px 34px 30px;
  box-shadow: 0 18px 40px rgba(255, 75, 145, 0.12);
  border: 1px solid rgba(255, 164, 198, 0.5);
  border-left: 6px solid var(--pink-400);
  position: relative;
  transition: transform .4s, box-shadow .4s;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(255, 75, 145, 0.2);
}
.quote-icon {
  position: absolute;
  top: 18px;
  right: 26px;
  font-family: var(--font-script);
  font-size: 110px;
  color: rgba(255, 122, 173, 0.25);
  line-height: 0.6;
  pointer-events: none;
}
.testimonial-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0 6px;
  border-top: 1px dashed rgba(255, 122, 173, 0.4);
}
.author-avatar {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #ffc9dd, #ff7aad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 6px 18px rgba(255, 75, 145, 0.3);
  flex-shrink: 0;
}
.author-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  flex: 1;
}
.author-info strong {
  font-family: var(--font-serif);
  color: var(--deep-rose);
  font-size: 15px;
  font-weight: 700;
}
.author-info span {
  font-family: var(--font-dancing);
  color: var(--pink-500);
  font-size: 15px;
  font-weight: 600;
}
.stars {
  color: #ff7aad;
  font-size: 15px;
  letter-spacing: 1px;
}
.placeholder-note {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255, 164, 198, 0.4);
  font-family: var(--font-body);
  font-style: italic;
  font-size: 11.5px;
  color: #b8879a;
  line-height: 1.5;
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* =========== TWO COLUMNS (WHO FOR / NOT) =========== */
.two-columns-section {
  padding: 20px 0px 50px;
  background: var(--grad-section);
}
.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.col {
  background: #fff;
  border-radius: 24px;
  padding: 40px 34px;
  box-shadow: var(--shadow-soft);
  border-top: 6px solid var(--pink-500);
}
.col.not-for { border-top-color: #b8a4ad; }
.col h3 {
  font-family: var(--font-serif);
  color: var(--deep-rose);
  font-size: 26px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cf-icon {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-btn);
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
}
.col.not-for .cf-icon { background: linear-gradient(135deg, #b8a4ad, #6b4b5a); }
.col ul { list-style: none; padding: 0; }
.col ul li {
  padding: 10px 0 10px 24px;
  color: var(--gray-text);
  position: relative;
  border-bottom: 1px dashed rgba(255, 164, 198, 0.3);
  font-size: 15px;
}
.col ul li::before {
  content: '\2764';
  position: absolute;
  left: 0; top: 12px;
  color: var(--pink-500);
  font-size: 12px;
}
.col.not-for ul li::before {
  content: '\2716';
  color: #b8a4ad;
}

/* =========== GUARANTEE =========== */
.guarantee-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #fff5fa 0%, #ffffff 100%);
}
.guarantee-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: center;
}
.badge-30 {
  position: relative;
  display: flex;
  justify-content: center;
}
.badge-30-inner {
  width: 260px; height: 260px;
  background: var(--grad-btn);
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 25px 60px rgba(255, 75, 145, 0.4), inset 0 0 0 8px rgba(255,255,255,0.4);
  position: relative;
  animation: spin-slow 20s linear infinite;
  border: 4px solid #fff;
}
@keyframes spin-slow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.badge-30-inner .days {
  font-family: var(--font-script);
  font-size: 90px;
  line-height: 1;
  font-weight: 400;
  animation: spin-slow-reverse 20s linear infinite;
}
.badge-30-inner .daytext {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 3px;
  animation: spin-slow-reverse 20s linear infinite;
}
.badge-30-inner .risk {
  font-family: var(--font-dancing);
  font-size: 20px;
  margin-top: 4px;
  animation: spin-slow-reverse 20s linear infinite;
}
@keyframes spin-slow-reverse {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

/* =========== WAIT SECTION =========== */
.wait-section {
  padding: 90px 0;
  background: var(--grad-section);
}
.wait-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.wait-card {
  background: #fff;
  border-radius: 20px;
  padding: 34px 24px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform .3s;
}
.wait-card:hover { transform: translateY(-6px); }
.wait-icon {
  font-size: 40px;
  display: inline-block;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #ff7aad, #c41c67);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wait-card p { font-size: 15px; color: var(--gray-text); margin: 0; }

/* =========== FAQ =========== */
.faq-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #fff 0%, #fff5fa 100%);
}
.faq-list {
  max-width: 860px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-list details {
  background: #fff;
  border-radius: 16px;
  padding: 22px 26px;
  box-shadow: 0 10px 26px rgba(255, 75, 145, 0.1);
  border: 1px solid rgba(255, 164, 198, 0.4);
  transition: box-shadow .3s;
}
.faq-list details[open] {
  box-shadow: var(--shadow-soft);
  border-color: var(--pink-300);
}
.faq-list summary {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--deep-rose);
  font-size: 18px;
  cursor: pointer;
  list-style: none;
  padding-right: 30px;
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '\2764';
  position: absolute;
  right: 0; top: 0;
  color: var(--pink-500);
  transition: transform .3s;
  font-size: 18px;
}
.faq-list details[open] summary::after {
  transform: rotate(180deg);
}
.faq-list details p {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255, 164, 198, 0.5);
  color: var(--gray-text);
  font-size: 15px;
}

/* =========== FINAL CTA =========== */
.final-cta {
  padding: 90px 0px 30px;
  background: linear-gradient(180deg, #ffe4ef 0%, #ffc9dd 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '\2764';
  position: absolute;
  font-size: 400px;
  color: rgba(255, 255, 255, 0.3);
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}
.final-cta .container { position: relative; z-index: 1; }
.final-lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--deep-rose);
  max-width: 780px;
  margin: 0 auto 24px;
  line-height: 1.6;
}
.postscript {
  max-width: 780px;
  margin: 40px auto 0;
  text-align: left;
  background: rgba(255, 255, 255, 0.7);
  padding: 30px 34px;
  border-radius: 20px;
  border-left: 5px solid var(--pink-500);
}
.postscript p { color: var(--ink); font-size: 15px; }
.postscript p strong { color: var(--deep-rose); }

/* =========== DISCLAIMER =========== */
.disclaimer {
  padding: 40px 0;
  background: #fff5fa;
  border-top: 1px solid rgba(255, 164, 198, 0.4);
}
.disclaimer p {
  font-size: 12px;
  color: #99788a;
  line-height: 1.6;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

/* =========== FOOTER =========== */
.site-footer {
  background: linear-gradient(180deg, #ffc9dd 0%, #a01254 100%);
  padding: 50px 0 30px;
  color: #fff;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-logo {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.2));
  background: rgba(255,255,255,0.9);
  border-radius: 12px;
  padding: 8px 14px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
}
.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 15px;
  padding: 6px 4px;
  position: relative;
  transition: color .3s;
}
.footer-nav a::after {
  content: '\2764';
  margin-left: 20px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
}
.footer-nav a:last-child::after { display: none; }
.footer-nav a:hover { color: #ffe4ef; }
.copy {
  font-family: var(--font-dancing);
  font-size: 18px;
  color: rgba(255,255,255,0.95);
  margin: 0;
}

/* =========== RESPONSIVE =========== */
@media (max-width: 960px) {
  .hero-inner,
  .split,
  .two-columns,
  .guarantee-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .split.reverse { direction: ltr; }
  .stages-grid { grid-template-columns: repeat(2, 1fr); }
  .bonuses-grid { grid-template-columns: 1fr; }
  .wait-grid { grid-template-columns: 1fr; }
  .script-title { font-size: 40px; }
  .script-title span { font-size: 62px; }
  .script-heading { font-size: 30px; }
  .section-title { font-size: 48px; }
  .main-nav { display: none; }
  .main-nav .nav-cta { display: inline-flex; }
  .main-nav {
    display: flex;
    gap: 12px;
  }
  .main-nav a:not(.nav-cta) { display: none; }
  .intro-card { padding: 34px 24px; }
  .hero { padding: 40px 0 60px; }
  .badge-30-inner { width: 220px; height: 220px; }
  .badge-30-inner .days { font-size: 70px; }
}
@media (max-width: 720px) {
  .looping-engine-box { flex-direction: column; padding: 26px; }
  .package-card { padding: 30px 22px; }
  .package-list li,
  .package-list.bonuses li {
    grid-template-columns: 28px 1fr;
  }
  .package-list .value { grid-column: 2; padding-top: 4px; }
  .package-list.bonuses .bonus-arrow { grid-column: 1 / -1; justify-self: start; }
  .btn-cta.big-cta { font-size: 17px; padding: 18px 20px; }
  .total-row.big .price { font-size: 36px; }
  .screenshot-row, .proof-row { grid-template-columns: 1fr; }
}

/* Extra romantic float animations */
.slide-inner:hover span {
  animation: heartbeat 1s infinite;
}

.bonus-card {
  position: relative;
}
.bonus-card::after {
  content: '\2764';
  position: absolute;
  top: 16px; right: 20px;
  color: rgba(255, 122, 173, 0.25);
  font-size: 26px;
  transition: transform .5s;
}
.bonus-card:hover::after {
  transform: scale(1.4) rotate(-20deg);
  color: rgba(255, 75, 145, 0.55);
}

.stage-card {
  animation: floatCard 4s ease-in-out infinite;
}
.stage-card:nth-child(2) { animation-delay: 0.5s; }
.stage-card:nth-child(3) { animation-delay: 1s; }
.stage-card:nth-child(4) { animation-delay: 1.5s; }
.stage-card:nth-child(5) { animation-delay: 2s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (max-width: 560px) {
  .stages-grid { grid-template-columns: 1fr; }
  .script-title { font-size: 32px; }
  .script-title span { font-size: 52px; }
  .btn-cta { padding: 14px 26px; font-size: 16px; }
  .slide { width: 240px; }
  .footer-nav { flex-direction: column; gap: 10px; }
  .footer-nav a::after { display: none; }
}
