:root {
  --cream: #f9f7f2;
  --cream-dark: #f2efe8;
  --navy: #1c2b4a;
  --navy-light: #2a3d6b;
  --amber: #e07b27;
  --amber-dark: #c56a1f;
  --text: #1a1a1a;
  --text-muted: #5a5a5a;
  --border: #e0d9cc;
  --white: #ffffff;
}

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

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

/* Navbar */
.navbar {
  background: var(--navy);
  padding: 0 40px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--amber); }
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

/* Hero */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 80px 40px 100px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.hero-left { }
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}
.stat-label {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
  max-width: 280px;
}
.hero-right { }
.hero-eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--amber);
  margin-bottom: 16px;
  font-weight: 600;
}
.hero-headline {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 28px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  padding: 6px 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

/* Sections common */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}
.section-eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--amber);
  margin-bottom: 12px;
  font-weight: 600;
}
.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 56px;
}

/* How it works */
.how-it-works { background: var(--cream-dark); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 32px;
}
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 16px;
  line-height: 1;
}
.step-card h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
}
.step-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}
.how-note {
  margin-top: 36px;
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

/* Features */
.features { background: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.feature-card {
  padding: 32px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--amber);
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}
.features-disclaimer {
  margin-top: 40px;
  padding: 20px 24px;
  background: var(--cream-dark);
  border-left: 3px solid var(--amber);
  border-radius: 4px;
}
.features-disclaimer p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Demo */
.demo-section {
  background: var(--navy);
  color: var(--white);
  padding: 80px 40px;
}
.demo-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.demo-left .section-eyebrow { color: var(--amber); }
.demo-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.demo-left p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
}
.demo-cta {
  display: inline-block;
  background: var(--amber);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s;
}
.demo-cta:hover { background: var(--amber-dark); }

/* Report preview */
.report-preview {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}
.report-header {
  background: var(--navy-light);
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.report-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--amber);
}
.report-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}
.report-body { padding: 24px 28px; }
.report-section { margin-bottom: 20px; }
.report-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 6px;
}
.risk-label { color: #c0392b; }
.risk-box {
  background: #fef6f4;
  border: 1px solid #f5c6c0;
  border-radius: 6px;
  padding: 14px 16px;
}
.risk-box p { font-size: 13px; color: var(--text); line-height: 1.5; }
.risk-box p strong { font-size: 13px; color: #c0392b; }
.questions-list {
  list-style: none;
  padding: 0;
}
.questions-list li {
  font-size: 13px;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}
.questions-list li:last-child { border-bottom: none; }
.report-footer {
  background: var(--cream-dark);
  padding: 12px 28px;
}
.report-footer span {
  font-size: 11px;
  color: var(--text-muted);
  font-style: italic;
}

/* Pricing */
.pricing { background: var(--cream); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 36px;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--amber);
  box-shadow: 0 8px 32px rgba(224, 123, 39, 0.15);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pricing-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}
.price { margin-bottom: 24px; }
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
}
.price-note {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-ideal {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
}
.pricing-note {
  margin-top: 32px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

/* Closing CTA */
.closing { background: var(--cream-dark); }
.closing .section-title { text-align: center; margin-bottom: 12px; }
.closing-sub {
  text-align: center;
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.cta-form {
  max-width: 540px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-full { margin-bottom: 16px; }
.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--amber); }
.form-submit {
  width: 100%;
  background: var(--amber);
  color: var(--white);
  border: none;
  padding: 16px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Nunito Sans', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--amber-dark); }
.form-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

/* Footer */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 60px 40px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-brand { margin-bottom: 24px; }
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-brand p { font-size: 14px; line-height: 1.5; }
.footer-legal {
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 28px;
}
.footer-legal p { font-size: 12px; line-height: 1.6; }
.footer-bottom p { font-size: 13px; }

/* Responsive */
@media (max-width: 768px) {
  .hero-inner, .demo-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero { padding: 60px 24px 80px; }
  .hero-headline { font-size: 32px; }
  .stat-number { font-size: 56px; }
  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .section-inner { padding: 60px 24px; }
  .demo-section { padding: 60px 24px; }
  .footer { padding: 40px 24px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 28px; }
  .section-title { font-size: 28px; }
  .price-amount { font-size: 28px; }
  .cta-form { padding: 24px; }
}