/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: #1a1a2e;
  background: #0A1628;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === CSS VARIABLES === */
:root {
  --navy:    #0A1628;
  --navy2:   #0F1E36;
  --amber:   #E8912D;
  --amber2:  #F5A623;
  --cream:   #F8F4EE;
  --cream2:  #F0EBE3;
  --text:    #1a1a2e;
  --text-lt: #F8F4EE;
  --text-md: #c8c8d8;
  --border:  rgba(255,255,255,0.08);
}

/* === TYPOGRAPHY === */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; }

/* === LAYOUT === */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
  font-family: 'DM Sans', sans-serif;
}
.section-label.light { color: var(--amber); }

.section-headline {
  font-size: clamp(28px, 5vw, 44px);
  color: var(--cream);
  margin-bottom: 20px;
  max-width: 700px;
}
.section-headline.light { color: #F8F4EE; }

.section-body {
  font-size: 17px;
  line-height: 1.75;
  color: #c8c8d8;
  max-width: 680px;
  margin-bottom: 48px;
}
.section-body.light { color: #c8c8d8; }

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}
.btn-gold {
  background: linear-gradient(135deg, #E8912D 0%, #F5A623 100%);
  color: #0A1628;
  box-shadow: 0 4px 24px rgba(232,145,45,0.4), 0 0 0 0 rgba(232,145,45,0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,145,45,0.5), 0 0 0 4px rgba(232,145,45,0.15);
}
.btn-large { padding: 22px 44px; font-size: 18px; }

/* === HERO === */
.hero {
  background: linear-gradient(160deg, #0A1628 0%, #0F1E36 60%, #1a2a40 100%);
  padding: 80px 24px 100px;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,145,45,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,145,45,0.3), transparent);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,145,45,0.1);
  border: 1px solid rgba(232,145,45,0.25);
  border-radius: 100px;
  padding: 8px 16px;
  margin-bottom: 32px;
}
.hero-badge span {
  font-size: 13px;
  font-weight: 500;
  color: var(--amber);
  letter-spacing: 0.02em;
}
.hero-headline {
  font-size: clamp(36px, 6vw, 64px);
  color: #F8F4EE;
  max-width: 820px;
  margin-bottom: 24px;
  line-height: 1.1;
  font-style: italic;
}
.hero-subheadline {
  font-size: clamp(16px, 2.5vw, 20px);
  color: #c8c8d8;
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-cta-wrap { margin-bottom: 40px; }
.hero-cta { font-size: 17px; padding: 20px 40px; }
.cta-sub {
  margin-top: 12px;
  font-size: 13px;
  color: #8888a8;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #a0a0b8;
  font-weight: 500;
}

/* === PROBLEM === */
.problem { background: var(--cream); }
.problem .section-body { color: #4a4a6a; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.pain-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.pain-icon {
  width: 52px;
  height: 52px;
  background: rgba(232,145,45,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.pain-card h3 {
  font-size: 20px;
  color: #1a1a2e;
  margin-bottom: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
}
.pain-card p {
  font-size: 15px;
  color: #5a5a7a;
  line-height: 1.7;
}
.problem-statement {
  font-size: 18px;
  color: #1a1a2e;
  font-weight: 600;
  line-height: 1.6;
  max-width: 640px;
}
.problem-statement em { font-style: italic; color: var(--amber); font-family: 'Playfair Display', serif; }

/* === SOLUTION === */
.solution { background: linear-gradient(180deg, #0A1628 0%, #0F1E36 100%); }
.solution-include {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  max-width: 640px;
}
.include-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.include-item svg { flex-shrink: 0; margin-top: 2px; }
.include-item strong { display: block; color: #F8F4EE; font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.include-item span { display: block; color: #9090aa; font-size: 14px; line-height: 1.6; }
.solution-cta { text-align: left; }

/* === BENEFITS === */
.benefits { background: #F8F4EE; }
.benefits .section-body { color: #5a5a7a; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.benefit-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.benefit-icon {
  width: 56px;
  height: 56px;
  background: rgba(232,145,45,0.07);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.benefit-card h3 {
  font-size: 18px;
  color: #1a1a2e;
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
}
.benefit-card p { font-size: 14px; color: #6a6a8a; line-height: 1.65; }

/* === HOW IT WORKS === */
.howitworks { background: linear-gradient(180deg, #0F1E36 0%, #0A1628 100%); }
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 48px;
  overflow-x: auto;
  padding-bottom: 16px;
}
.step-card {
  flex: 1;
  min-width: 220px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 28px;
}
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--amber);
  opacity: 0.4;
  margin-bottom: 16px;
  line-height: 1;
}
.step-card h3 {
  font-size: 18px;
  color: #F8F4EE;
  margin-bottom: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
}
.step-card p { font-size: 14px; color: #8888aa; line-height: 1.7; }
.step-connector {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 12px;
}
.how-cta { text-align: left; }

/* === TESTIMONIALS === */
.testimonials { background: #F0EBE3; }
.testimonials .section-body { color: #5a5a7a; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.testimonial-card blockquote {
  font-size: 16px;
  line-height: 1.75;
  color: #3a3a5a;
  font-style: italic;
  margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #0A1628, #1a3a5c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--amber);
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 15px;
  color: #1a1a2e;
  font-weight: 700;
}
.testimonial-author span { font-size: 13px; color: #8888aa; }

/* === FAQ === */
.faq { background: var(--cream); }
.faq-list { max-width: 680px; }
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 20px 0;
}
.faq-item:first-child { border-top: 1px solid rgba(0,0,0,0.08); }
.faq-item summary {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 8px;
}
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--amber);
  font-weight: 700;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  font-size: 15px;
  color: #5a5a7a;
  line-height: 1.75;
  margin-top: 14px;
  padding-right: 40px;
}

/* === FINAL CTA === */
.finalcta {
  background: linear-gradient(180deg, #0A1628 0%, #0d1e35 50%, #0A1628 100%);
  text-align: center;
}
.finalcta .section-inner { max-width: 720px; }
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,145,45,0.1);
  border: 1px solid rgba(232,145,45,0.25);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 32px;
}
.urgency-badge span { font-size: 13px; font-weight: 600; color: var(--amber); }
.cta-headline {
  font-size: clamp(40px, 7vw, 68px);
  color: #F8F4EE;
  font-style: italic;
  margin-bottom: 20px;
}
.cta-subheadline {
  font-size: 18px;
  color: #9090aa;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 40px;
}
.cta-benefits-recap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  margin-bottom: 40px;
}
.recap-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #c0c0d8;
  font-weight: 500;
}
.countdown-wrap { margin-bottom: 36px; }
.countdown-label {
  font-size: 13px;
  color: #8888aa;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.countdown-timer {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(232,145,45,0.2);
  border-radius: 12px;
  padding: 16px 24px;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
}
.countdown-unit span {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}
.countdown-unit label {
  font-size: 10px;
  color: #666688;
  margin-top: 4px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.countdown-sep {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: rgba(232,145,45,0.4);
  line-height: 1;
  padding: 0 8px;
}
.cta-final-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: #666688;
  margin-top: 16px;
  flex-wrap: wrap;
}
.cta-final-sub .sep { color: rgba(255,255,255,0.2); }
.final-price-note {
  margin-top: 20px;
  font-size: 14px;
  color: #666688;
}
.final-price-note strong { color: #c0c0d8; }

/* === FOOTER === */
.site-footer {
  background: #060e1a;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 48px 24px;
}
.footer-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #F8F4EE;
  margin-bottom: 16px;
  font-weight: 700;
}
.footer-disclaimer {
  font-size: 12px;
  color: #444466;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.footer-links a {
  font-size: 13px;
  color: #444466;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--amber); }
.footer-copy { font-size: 12px; color: #333355; }

/* === STICKY MOBILE CTA === */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0A1628;
  border-top: 1px solid rgba(232,145,45,0.2);
  padding: 12px 16px;
  z-index: 999;
}
.sticky-cta a {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #E8912D, #F5A623);
  color: #0A1628;
  font-weight: 700;
  font-size: 15px;
  padding: 14px;
  border-radius: 8px;
  text-decoration: none;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .section-inner { padding: 60px 20px; }
  .hero-headline { font-size: 34px; }
  .pain-grid, .benefits-grid, .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    flex-direction: column;
    gap: 16px;
  }
  .step-connector { display: none; }
  .countdown-timer { padding: 12px 16px; }
  .countdown-unit span { font-size: 28px; }
  .cta-final-sub { font-size: 12px; }
}

@media (max-width: 480px) {
  .trust-row { gap: 14px; }
  .sticky-cta { display: block; }
  body { padding-bottom: 72px; }
  .finalcta .section-inner { padding: 60px 16px; }
  .btn-large { width: 100%; justify-content: center; }
}