/* ============================================
   GenitorixDavvero — Landing Page Styles
   ============================================ */

:root {
  --coral: #E07A5F;
  --deep-coral: #C4593E;
  --sage: #5B8C5A;
  --deep-sage: #3D6B3C;
  --gold: #D4A96A;
  --cream: #FFF8F2;
  --dark: #2D2926;
  --medium: #5C5552;
  --light: #E8E2DC;
  --soft-coral: #F5DDD4;
  --soft-sage: #DDE8D9;
  --soft-gold: #F5E8D4;
  --white: #FFFFFF;
  --radius: 12px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--dark);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}

/* ===== LAYOUT ===== */
.container {
  max-width: 640px;
  margin: 0 auto;
}
.section-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 12px;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(24px, 5vw, 36px);
  line-height: 1.15; color: var(--dark);
  margin-bottom: 24px;
}
.section-title em { color: var(--coral); font-style: italic; }

/* ===== TOP BAR ===== */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,248,242,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,226,220,0.5);
  padding: 10px 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.topbar-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 17px; color: var(--dark);
}
.topbar-brand span { color: var(--coral); font-style: italic; }
.topbar-cta {
  background: var(--coral); color: white;
  padding: 8px 20px; border-radius: 50px;
  font-weight: 600; font-size: 13px;
  transition: all .3s ease; letter-spacing: .02em;
}
.topbar-cta:hover {
  background: var(--deep-coral);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(224,122,95,.3);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; padding: 100px 24px 60px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -20%; right: -30%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(224,122,95,.08) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -15%; left: -20%;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(91,140,90,.05) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--soft-coral); padding: 8px 18px; border-radius: 50px;
  font-size: 11px; font-weight: 600; color: var(--deep-coral);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 28px;
  animation: fadeUp .8s ease;
}
.hero-cover {
  width: 200px; height: auto; border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  margin-bottom: 28px;
  animation: fadeUp .8s ease .05s both;
}
.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 7.5vw, 52px); line-height: 1.08;
  color: var(--dark); margin-bottom: 6px;
  animation: fadeUp .8s ease .1s both;
  position: relative; z-index: 1;
}
.hero-title em { color: var(--coral); font-style: italic; }
.hero-hook {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(17px, 3.5vw, 24px); line-height: 1.4;
  color: var(--medium); font-style: italic;
  max-width: 480px; margin: 0 auto 12px;
  animation: fadeUp .8s ease .2s both;
  position: relative; z-index: 1;
}
.hero-sub {
  font-size: 15px; color: var(--medium); line-height: 1.6;
  max-width: 420px; margin: 0 auto 36px;
  animation: fadeUp .8s ease .3s both;
  position: relative; z-index: 1;
}
.hero-sub strong { color: var(--dark); }

/* ===== CTA BUTTONS ===== */
.cta-btn {
  display: inline-block;
  background: var(--coral); color: white;
  padding: 16px 40px; border-radius: 50px;
  font-weight: 700; font-size: 16px;
  transition: all .3s ease; letter-spacing: .01em;
  box-shadow: 0 6px 25px rgba(224,122,95,.25);
  animation: fadeUp .8s ease .4s both;
  border: none;
}
.cta-btn:hover {
  background: var(--deep-coral);
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(224,122,95,.35);
}
.cta-btn-sub {
  display: block; margin-top: 12px;
  font-size: 12px; color: var(--medium);
  animation: fadeUp .8s ease .5s both;
}
.cta-btn-sub strong { color: var(--deep-coral); }

/* ===== PAIN SECTION ===== */
.pain {
  background: var(--white); padding: 80px 24px;
}
.pain-intro {
  font-size: 15px; line-height: 1.7; color: var(--medium);
}
.pain-list { list-style: none; margin: 28px 0; }
.pain-list li {
  padding: 16px 0 16px 48px; position: relative;
  border-bottom: 1px solid var(--light);
  font-size: 15px; line-height: 1.5; color: var(--dark);
}
.pain-list li::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--soft-coral);
}
.pain-list li::after {
  content: attr(data-icon); position: absolute; left: 7px; top: 50%;
  transform: translateY(-50%); font-size: 16px;
}
.pain-quote {
  font-family: 'DM Serif Display', serif;
  font-size: 20px; line-height: 1.4; font-style: italic;
  color: var(--deep-coral);
  padding: 28px 0 28px 24px;
  border-left: 3px solid var(--coral);
  margin: 32px 0;
}
.pain-resolve {
  font-size: 15px; line-height: 1.7; color: var(--dark);
}
.pain-resolve strong { color: var(--dark); }

/* ===== PROMISE ===== */
.promise { padding: 80px 24px; }
.promise-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
  margin-top: 32px;
}
.promise-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 24px;
  border-left: 4px solid var(--sage);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.promise-card .icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--soft-sage);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 14px;
}
.promise-card h3 {
  font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--dark);
}
.promise-card p { font-size: 14px; line-height: 1.6; color: var(--medium); }
.promise-card--coral { border-color: var(--coral); }
.promise-card--coral .icon { background: var(--soft-coral); }
.promise-card--gold { border-color: var(--gold); }
.promise-card--gold .icon { background: var(--soft-gold); }

/* ===== INSIDE ===== */
.inside { background: var(--white); padding: 80px 24px; }
.inside-intro {
  font-size: 14px; color: var(--medium); line-height: 1.6; margin-bottom: 8px;
}
.chapter-list { list-style: none; margin: 32px 0; }
.chapter-list li {
  padding: 18px 0; border-bottom: 1px solid var(--light);
  display: flex; align-items: flex-start; gap: 16px;
}
.chapter-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--coral); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.chapter-num--sage { background: var(--sage); }
.chapter-num--gold { background: var(--gold); }
.chapter-info h3 { font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 3px; }
.chapter-info p { font-size: 13px; color: var(--medium); line-height: 1.5; }

/* ===== AUTHOR ===== */
.author { padding: 80px 24px; }
.author-card {
  background: var(--white); border-radius: var(--radius);
  padding: 40px 28px; text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
}
.author-photo {
  width: 120px; height: 120px; border-radius: 50%;
  object-fit: cover; margin: 0 auto 20px;
  border: 4px solid var(--soft-coral);
}
.author-name {
  font-family: 'DM Serif Display', serif;
  font-size: 22px; color: var(--dark); margin-bottom: 4px;
}
.author-role {
  font-size: 13px; color: var(--coral); font-weight: 600;
  letter-spacing: .04em; margin-bottom: 16px;
}
.author-bio {
  font-size: 14.5px; line-height: 1.7; color: var(--medium);
  max-width: 460px; margin: 0 auto;
}
.author-bio strong { color: var(--dark); }
.author-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--soft-sage); padding: 8px 16px; border-radius: 50px;
  font-size: 12px; font-weight: 600; color: var(--deep-sage);
  margin-top: 20px;
}

/* ===== SOCIAL PROOF ===== */
.proof { background: var(--soft-coral); padding: 60px 24px; }
.proof .section-label { color: var(--deep-coral); }
.proof-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 28px; }
.proof-card {
  background: var(--white); border-radius: var(--radius);
  padding: 24px; position: relative;
}
.proof-card::before {
  content: '\201C'; font-family: 'DM Serif Display', serif;
  font-size: 48px; color: var(--soft-coral);
  position: absolute; top: 8px; left: 16px; line-height: 1;
}
.proof-card p {
  font-size: 14px; line-height: 1.6; color: var(--dark);
  padding-top: 20px; font-style: italic;
}
.proof-card .proof-name {
  font-size: 12px; font-weight: 600; color: var(--coral);
  margin-top: 12px; font-style: normal;
}

/* ===== PRICING ===== */
.pricing { padding: 80px 24px; text-align: center; }
.price-card {
  background: var(--white); border-radius: 16px;
  padding: 44px 28px; max-width: 480px; margin: 32px auto 0;
  box-shadow: 0 8px 40px rgba(0,0,0,.07);
  border: 2px solid var(--coral);
  position: relative; overflow: hidden;
}
.price-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--gold), var(--sage));
}
.price-product {
  font-size: 14px; color: var(--medium); margin-bottom: 4px; font-weight: 600;
}
.price-tag {
  font-family: 'DM Serif Display', serif;
  font-size: 52px; color: var(--coral); margin: 8px 0;
}
.price-tag sup { font-size: 24px; vertical-align: super; }
.price-info { font-size: 13px; color: var(--medium); }
.price-features { list-style: none; text-align: left; margin: 28px 0; }
.price-features li {
  padding: 10px 0; font-size: 14px; color: var(--dark);
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(232,226,220,.5);
}
.price-features li::before {
  content: '✓'; width: 24px; height: 24px; border-radius: 50%;
  background: var(--soft-sage); color: var(--deep-sage);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0;
}
.price-cta {
  display: block; width: 100%;
  background: var(--coral); color: white;
  padding: 18px; border-radius: 50px; border: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 17px;
  cursor: pointer; transition: all .3s ease;
  box-shadow: 0 6px 25px rgba(224,122,95,.3);
}
.price-cta:hover {
  background: var(--deep-coral);
  transform: translateY(-2px);
}
.price-guarantee {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 16px; font-size: 12px; color: var(--medium);
}
.price-guarantee::before { content: '🔒'; }

/* ===== FAQ ===== */
.faq { background: var(--white); padding: 80px 24px; }
.faq-item { border-bottom: 1px solid var(--light); }
.faq-q {
  padding: 20px 0; font-weight: 600; font-size: 15px;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  color: var(--dark); user-select: none;
}
.faq-q::after {
  content: '+'; font-size: 22px; color: var(--coral);
  transition: transform .3s ease;
}
.faq-q.open::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  font-size: 14px; line-height: 1.7; color: var(--medium);
}
.faq-a.open { max-height: 300px; padding-bottom: 20px; }

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 80px 24px; text-align: center;
  background: linear-gradient(180deg, var(--cream) 0%, var(--soft-coral) 100%);
}
.final-icon { font-size: 40px; margin-bottom: 20px; }
.final-quote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(20px, 4.5vw, 30px); line-height: 1.35;
  color: var(--dark); max-width: 500px; margin: 0 auto 32px;
  font-style: italic;
}
.final-quote em { color: var(--coral); }
.final-cta .cta-btn { animation: none; }
.final-cta .cta-btn-sub { animation: none; opacity: 1; }

/* ===== FOOTER ===== */
.footer {
  padding: 32px 24px; text-align: center;
  font-size: 12px; color: var(--medium);
  border-top: 1px solid var(--light);
}
.footer a { color: var(--coral); }
.footer p + p { margin-top: 6px; }

/* ===== RESPONSIVE ===== */
@media (min-width: 480px) {
  .hero-cover { width: 220px; }
}
@media (min-width: 640px) {
  .promise-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .hero-cover { width: 240px; }
}
@media (min-width: 768px) {
  .container { max-width: 680px; }
  .promise-grid { grid-template-columns: 1fr 1fr 1fr; }
}
