:root {
  --bg: #FAFAF8;
  --surface: #F2F0EB;
  --text: #1A1917;
  --text-muted: #6B6760;
  --accent: #E54D2E;
  --accent-dark: #C43D1E;
  --accent-light: #FFF1EE;
  --border: #E4E0D8;
  --radius: 6px;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(250, 250, 248, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.logo {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text);
  letter-spacing: -0.02em;
}
nav {
  display: flex;
  gap: 32px;
}
nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}
nav a:hover { color: var(--text); }

/* Stats row */
.stats-row {
  background: var(--text);
  color: #fff;
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-card {
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}
.stat-card:last-child, .stat-card.no-border { border-right: none; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card.highlight .stat-number { color: var(--accent); }
.stat-label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

/* Problem section */
.problem { padding: 96px 0; }
.problem-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.overline {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.overline.centered { text-align: center; display: block; margin-bottom: 16px; }
.problem h2 {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1.15;
  color: var(--text);
}
.problem-right p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.problem-right p:last-child { margin-bottom: 0; }

/* Solution / How it works */
.solution { padding: 96px 0; background: var(--surface); }
.section-title {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 64px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 18px;
  border-radius: 50%;
  margin-bottom: 20px;
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 12px;
}
.step-card p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* Outcomes */
.outcomes { padding: 96px 0; }
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.outcome-item {}
.outcome-icon {
  color: var(--accent);
  margin-bottom: 16px;
}
.outcome-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.outcome-item p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* Pricing */
.pricing { padding: 96px 0; background: var(--surface); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 8px;
}
.pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}
.price { margin-bottom: 24px; }
.price-amount {
  font-family: var(--font-display);
  font-size: 44px;
}
.price-period { font-size: 16px; color: var(--text-muted); margin-left: 4px; }
.pricing-features {
  list-style: none;
  margin-bottom: 24px;
}
.pricing-features li {
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pricing-features li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M3 8l3 3 7-7'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}
.pricing-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}
.pricing-cta {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* Contact form */
.contact-section { padding: 96px 0; }
.contact-intro {
  font-size: 17px;
  color: var(--text-muted);
  text-align: center;
  max-width: 520px;
  margin: 0 auto 48px;
}
.contact-form { max-width: 600px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 10px 12px; border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 15px; font-family: var(--font-body); background: var(--bg); color: var(--text);
  transition: border-color 0.15s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 80px; }
.btn-primary {
  width: 100%; padding: 14px 24px; background: var(--accent); color: #fff;
  border: none; border-radius: var(--radius); font-size: 16px; font-weight: 600;
  font-family: var(--font-body); cursor: pointer; transition: background 0.15s;
}
.btn-primary:hover:not(:disabled) { background: var(--accent-dark); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }
.form-message { margin-top: 16px; padding: 12px 16px; border-radius: var(--radius); font-size: 14px; text-align: center; }
.form-message.success { background: #E8F5E9; color: #2E7D32; }
.form-message.error { background: var(--accent-light); color: var(--accent-dark); }

/* Testimonials */
.testimonials { padding: 96px 0; background: var(--surface); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 64px; }
.testimonial-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.stars { color: #F59E0B; font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: 15px; line-height: 1.7; color: var(--text); margin-bottom: 20px; font-style: italic; }
.testimonial-author strong { display: block; font-size: 14px; font-weight: 700; }
.testimonial-author span { display: block; font-size: 13px; color: var(--text-muted); }
.social-proof-logos { text-align: center; }
.proof-label { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; font-weight: 500; }
.logo-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.proof-badge { background: var(--bg); border: 1px solid var(--border); border-radius: 20px; padding: 6px 16px; font-size: 13px; color: var(--text-muted); }

/* Closing */
.closing {
  padding: 120px 0;
  background: var(--text);
  color: #fff;
  text-align: center;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto;
}

/* Footer */
.site-footer {
  padding: 64px 0;
  background: var(--text);
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.site-footer .container { text-align: center; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  color: #fff;
  margin-bottom: 8px;
}
.footer-tagline { font-size: 14px; margin-bottom: 32px; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 12px; }

/* Responsive */
@media (max-width: 768px) {
  nav { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stat-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding-bottom: 24px; }
  .stat-card:nth-child(3), .stat-card:nth-child(4) { border-bottom: none; }
  .stat-number { font-size: 36px; }
  .problem-layout { grid-template-columns: 1fr; gap: 32px; }
  .problem h2 { font-size: 32px; }
  .steps-grid, .outcome-grid, .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .section-title { font-size: 30px; }
  .closing h2 { font-size: 32px; }
}