/* ── GOOGLE FONTS imported via index.html ── */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ── CSS VARIABLES ── */
:root {
  --cream: #FDF6F8;
  --warm: #FAF0F4;
  --sand: #F0D8E4;
  --terracota: #C2547A;
  --terracota-dark: #9B3A5E;
  --terra-light: #E07AA0;
  --brown: #2C1A26;
  --brown-mid: #7A4A62;
  --text: #2A1520;
  --muted: #9A6E82;
  --white: #FFFFFF;
  --gold: #C97A9A;
  --gold-light: #F0AACE;
}

/* ── BASE ── */
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

section { padding: 6rem 2rem; }
.container { max-width: 720px; margin: 0 auto; }
.container-wide { max-width: 960px; margin: 0 auto; }

/* ── STICKY CTA BAR ── */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--terracota);
  padding: 0.9rem 1.5rem;
  display: flex; align-items: center; justify-content: center; gap: 1.5rem;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.25);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar p { color: white; font-weight: 700; font-size: 0.9rem; }
.sticky-bar p span { color: var(--gold-light); }
.sticky-btn {
  background: white; color: var(--terracota);
  border: none; padding: 0.65rem 1.8rem; border-radius: 50px;
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 0.85rem; cursor: pointer; white-space: nowrap;
  transition: transform 0.2s; letter-spacing: 0.5px;
}
.sticky-btn:hover { transform: scale(1.05); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--brown);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center;
  position: relative; overflow: hidden;
  padding: 6rem 2rem 4rem;
  text-align: center;
}
.hero-texture {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(194,84,122,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(224,122,160,0.15) 0%, transparent 50%);
}
.grain {
  position: absolute; inset: 0; opacity: 0.04; pointer-events: none;
  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)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.hero-tag {
  display: inline-block;
  border: 1px solid rgba(232,194,106,0.5);
  color: var(--gold-light);
  font-size: 0.7rem; letter-spacing: 4px; text-transform: uppercase;
  font-weight: 700; padding: 0.45rem 1.4rem;
  margin-bottom: 2.5rem; border-radius: 50px;
  background: rgba(201,153,58,0.1);
  animation: fadeUp 0.8s ease both;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.1s ease both;
  max-width: 800px;
}
.hero-title em {
  font-style: italic;
  color: var(--terra-light);
  position: relative;
}
.hero-title em::after {
  content: '';
  position: absolute; left: 0; bottom: -6px; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terracota), transparent);
  border-radius: 2px;
}
.hero-sub {
  color: rgba(250,246,240,0.65);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 400; line-height: 1.7;
  max-width: 520px; margin: 0 auto 3rem;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-cta {
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-proof {
  margin-top: 2.5rem;
  display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.4s ease both;
}
.proof-item {
  display: flex; align-items: center; gap: 0.5rem;
  color: rgba(250,246,240,0.5); font-size: 0.8rem; font-weight: 500;
}
.proof-dot { width: 4px; height: 4px; background: var(--terracota); border-radius: 50%; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(250,246,240,0.3); font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase;
  animation: fadeUp 1s 0.6s ease both;
}
.scroll-dot {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(250,246,240,0.3), transparent);
  animation: scrollPulse 2s infinite;
}

/* ── BUTTONS ── */
.btn-main {
  display: inline-block;
  background: linear-gradient(135deg, var(--terracota), var(--terracota-dark));
  color: white; border: none; padding: 1.1rem 3rem;
  border-radius: 60px; font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 1rem; letter-spacing: 1px;
  text-transform: uppercase; cursor: pointer;
  box-shadow: 0 8px 40px rgba(194,84,122,0.5);
  transition: all 0.3s; text-decoration: none;
  position: relative; overflow: hidden;
}
.btn-main::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.btn-main:hover { transform: translateY(-3px); box-shadow: 0 14px 50px rgba(194,84,122,0.6); }
.btn-main:hover::after { opacity: 1; }

/* ── SECTION COMMON ── */
.section-eyebrow {
  font-size: 0.7rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--terracota); font-weight: 700; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.section-eyebrow::before {
  content: ''; width: 30px; height: 1px; background: var(--terracota);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15; margin-bottom: 1.5rem; color: var(--brown);
}
.section-title em { font-style: italic; color: var(--terracota); }
.section-body {
  font-size: 1.05rem; color: var(--muted);
  line-height: 1.85; font-weight: 400;
}
.divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--terracota), transparent);
  margin: 2rem 0;
}
.divider.center {
  margin: 2rem auto;
  background: linear-gradient(90deg, transparent, var(--terracota), transparent);
  width: 120px;
}

/* ── PAIN SECTION ── */
.pain-section {
  background: var(--warm);
  padding: 5rem 2rem;
}
.pain-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-top: 3rem;
}
.pain-item {
  background: white; border-radius: 16px; padding: 1.5rem;
  display: flex; align-items: flex-start; gap: 1rem;
  border: 1px solid var(--sand);
  transition: box-shadow 0.2s;
}
.pain-item:hover { box-shadow: 0 8px 30px rgba(44,26,38,0.07); }
.pain-x {
  width: 28px; height: 28px; background: #FDE8F0;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.75rem; color: var(--terracota); font-weight: 900;
}
.pain-text { font-size: 0.9rem; color: var(--brown-mid); font-weight: 500; line-height: 1.5; }
.pain-conclusion {
  margin-top: 3rem; padding: 2rem 2.5rem;
  background: var(--brown); border-radius: 20px; text-align: center;
}
.pain-conclusion p {
  color: rgba(250,246,240,0.7); font-size: 1rem; line-height: 1.7; margin-bottom: 0.5rem;
}
.pain-conclusion strong {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem); color: var(--terra-light); display: block; margin-top: 0.5rem;
}

/* ── METHOD SECTION ── */
.method-section { background: var(--cream); }
.method-intro { text-align: center; margin-bottom: 4rem; }
.method-name {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800; letter-spacing: -2px;
  color: var(--brown); line-height: 1;
  position: relative; display: inline-block;
}
.method-name .outline {
  -webkit-text-stroke: 2px var(--terracota);
  color: transparent;
}
.pillars-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5px; background: var(--sand);
  border: 1.5px solid var(--sand); border-radius: 20px; overflow: hidden;
}
.pillar {
  background: var(--cream); padding: 2.5rem 2rem;
  transition: background 0.3s;
}
.pillar:hover { background: var(--warm); }
.pillar-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; color: var(--sand); line-height: 1;
  margin-bottom: 0.5rem; font-style: italic;
}
.pillar-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1px; color: var(--brown); margin-bottom: 0.8rem;
}
.pillar-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* ── RESULTS SECTION ── */
.results-section {
  background: var(--brown);
  padding: 5rem 2rem;
  text-align: center;
}
.results-section .section-title { color: var(--cream); }
.results-section .section-eyebrow { color: var(--terra-light); justify-content: center; }
.results-section .section-eyebrow::before { background: var(--terra-light); }
.results-marquee-wrap {
  overflow: hidden; margin: 3rem -2rem; position: relative;
}
.results-marquee-wrap::before,
.results-marquee-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
  pointer-events: none;
}
.results-marquee-wrap::before { left: 0; background: linear-gradient(90deg, var(--brown), transparent); }
.results-marquee-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--brown), transparent); }
.marquee-track {
  display: flex; gap: 1.5rem;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
  padding: 0.5rem 0;
}
.marquee-track:hover { animation-play-state: paused; }
.result-card {
  flex-shrink: 0;
  width: 200px; height: 260px; border-radius: 16px;
  overflow: hidden; position: relative;
  border: 1px solid rgba(250,246,240,0.1);
}
.result-card-inner {
  width: 100%; height: 100%;
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 1rem; position: relative;
}
.result-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.result-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}
.result-info { position: relative; z-index: 2; text-align: left; }
.result-name { color: white; font-weight: 700; font-size: 0.85rem; }
.result-stat { color: var(--terra-light); font-size: 0.75rem; font-weight: 500; }
.result-avatar {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -60%);
  font-size: 4rem; opacity: 0.35;
}
.rc-1 .result-bg { background: linear-gradient(135deg, #C8899E 0%, #8B5070 100%); }
.rc-2 .result-bg { background: linear-gradient(135deg, #B87890 0%, #7A4065 100%); }
.rc-3 .result-bg { background: linear-gradient(135deg, #D4A0B8 0%, #9E6080 100%); }
.rc-4 .result-bg { background: linear-gradient(135deg, #C888A8 0%, #8C5070 100%); }
.rc-5 .result-bg { background: linear-gradient(135deg, #BF8098 0%, #876075 100%); }
.rc-6 .result-bg { background: linear-gradient(135deg, #CA90AA 0%, #8E5878 100%); }
.rc-7 .result-bg { background: linear-gradient(135deg, #D0A0B8 0%, #946280 100%); }
.rc-8 .result-bg { background: linear-gradient(135deg, #BAA0B8 0%, #806080 100%); }
.results-cta { margin-top: 3rem; }
.results-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5rem);
  color: var(--terra-light); line-height: 1; font-style: italic;
}
.results-number-label {
  color: rgba(250,246,240,0.6); font-size: 1rem; margin-top: 0.3rem; margin-bottom: 2rem;
}

/* ── INCLUDES SECTION ── */
.includes-section { background: var(--warm); }
.includes-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-top: 3rem;
}
.include-item {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1.4rem; background: white; border-radius: 14px;
  border: 1px solid var(--sand); transition: all 0.2s;
}
.include-item.bonus {
  border-color: var(--gold);
  background: linear-gradient(135deg, #FEF0F7, white);
}
.include-item:hover { transform: translateX(4px); }
.include-check {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.include-check.main { background: #FDE8F0; color: var(--terracota); }
.include-check.bonus-chk { background: #FCE8F4; color: var(--gold); }
.include-label { font-weight: 700; font-size: 0.95rem; color: var(--brown); }
.include-desc { font-size: 0.8rem; color: var(--muted); margin-top: 0.15rem; }
.badge-bonus {
  font-size: 0.7rem; color: var(--gold); font-weight: 700;
  background: #FCE8F4; padding: 0.1rem 0.5rem; border-radius: 20px;
}

/* ── PRICING SECTION ── */
.pricing-section {
  background: var(--brown);
  text-align: center;
  padding: 6rem 2rem;
  position: relative; overflow: hidden;
}
.pricing-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(194,84,122,0.2), transparent);
}
.pricing-section .section-title { color: var(--cream); }
.pricing-section .section-eyebrow { color: var(--terra-light); justify-content: center; }
.pricing-section .section-eyebrow::before { background: var(--terra-light); }
.price-card {
  max-width: 420px; margin: 3rem auto;
  background: var(--cream); border-radius: 28px;
  overflow: hidden; position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}
.price-card-top {
  background: linear-gradient(135deg, var(--terracota), var(--terracota-dark));
  padding: 2rem; text-align: center; color: white;
}
.price-plan-name {
  font-size: 0.7rem; letter-spacing: 4px; text-transform: uppercase;
  opacity: 0.8; margin-bottom: 1rem; font-weight: 700;
}
.price-original { font-size: 1rem; opacity: 0.6; text-decoration: line-through; margin-bottom: 0.3rem; }
.price-value { font-family: 'Playfair Display', serif; font-size: 1.1rem; opacity: 0.85; margin-bottom: -0.3rem; }
.price-big {
  font-family: 'Syne', sans-serif;
  font-size: 5rem; font-weight: 800; line-height: 1;
  display: flex; align-items: flex-start; justify-content: center; gap: 0.2rem;
}
.price-big sup { font-size: 1.8rem; margin-top: 0.8rem; opacity: 0.9; }
.price-period { opacity: 0.7; font-size: 0.85rem; margin-top: 0.3rem; }
.price-card-body { padding: 2rem; }
.price-features { list-style: none; margin-bottom: 2rem; }
.price-features li {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.6rem 0; border-bottom: 1px solid var(--sand);
  font-size: 0.9rem; color: var(--brown-mid); font-weight: 500;
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before {
  content: '✓'; width: 20px; height: 20px;
  background: #FDE8F0; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; color: var(--terracota); font-weight: 900;
  flex-shrink: 0;
}
.btn-pricing {
  display: block; width: 100%;
  background: linear-gradient(135deg, var(--terracota), var(--terracota-dark));
  color: white; border: none; padding: 1.1rem;
  border-radius: 50px; font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 1rem; letter-spacing: 1px;
  text-transform: uppercase; cursor: pointer;
  box-shadow: 0 8px 30px rgba(194,84,122,0.4);
  transition: all 0.3s; text-decoration: none;
}
.btn-pricing:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(194,84,122,0.5); }
.guarantee-badge {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(250,246,240,0.07);
  border: 1px solid rgba(250,246,240,0.15);
  border-radius: 14px; padding: 1.2rem 1.5rem;
  max-width: 420px; margin: 0 auto 2rem;
}
.guarantee-icon { font-size: 2.5rem; flex-shrink: 0; }
.guarantee-text { color: rgba(250,246,240,0.7); font-size: 0.85rem; line-height: 1.6; }
.guarantee-text strong { color: var(--cream); }

/* ── URGENCY SECTION ── */
.urgency-section {
  background: var(--terracota);
  padding: 5rem 2rem; text-align: center;
}
.urgency-section .section-title { color: white; font-family: 'Syne', sans-serif; font-weight: 800; }
.urgency-section .section-eyebrow { color: rgba(255,255,255,0.7); justify-content: center; }
.urgency-section .section-eyebrow::before { background: rgba(255,255,255,0.4); }
.countdown-wrap {
  display: flex; justify-content: center; gap: 1.5rem;
  margin: 2.5rem 0; flex-wrap: wrap;
}
.countdown-box {
  background: rgba(0,0,0,0.2); border-radius: 16px;
  padding: 1.2rem 1.8rem; min-width: 90px; text-align: center;
  backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.15);
}
.countdown-num {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 3rem; color: white; line-height: 1;
}
.countdown-label { font-size: 0.65rem; color: rgba(255,255,255,0.6); letter-spacing: 2px; text-transform: uppercase; margin-top: 0.3rem; font-weight: 700; }
.countdown-sep { font-family: 'Syne', sans-serif; font-size: 2rem; color: rgba(255,255,255,0.4); align-self: center; }
.btn-urgency {
  display: inline-block;
  background: white; color: var(--terracota);
  border: none; padding: 1.1rem 3rem; border-radius: 60px;
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 1rem; letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s; text-decoration: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.btn-urgency:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,0.3); }
.urgency-note { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-top: 1.5rem; font-style: italic; }

/* ── FOOTER ── */
footer {
  background: var(--brown); padding: 2.5rem 2rem; text-align: center;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 1.2rem; letter-spacing: 3px;
  color: var(--terra-light); text-transform: uppercase; margin-bottom: 1rem;
}
footer p { color: rgba(250,246,240,0.3); font-size: 0.75rem; line-height: 1.8; }
footer a { color: rgba(250,246,240,0.5); text-decoration: none; }
footer a:hover { color: var(--terra-light); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse { 0%,100%{opacity:0.3} 50%{opacity:1} }
@keyframes marqueeScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .pain-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.8rem; }
  .countdown-sep { display: none; }
}
