/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #F7F4EF;
  --bg-alt: #EDE8E0;
  --fg: #1B2D4F;
  --fg-light: #3A4F6E;
  --accent: #E8913A;
  --accent-dark: #C97A2D;
  --white: #FFFFFF;
  --border: #D4CDC4;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3 { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; line-height: 1.15; }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--fg);
  margin-bottom: 2.5rem;
}

/* --- NAV --- */
.nav {
  padding: 1.25rem 2.5rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.85rem;
  color: var(--fg-light);
  font-weight: 400;
}

/* --- HERO --- */
.hero {
  padding: 5rem 2.5rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--fg);
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-light);
  max-width: 480px;
  line-height: 1.7;
}

.proof-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.proof-stat {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1.25rem 0;
}
.proof-number {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
  min-width: 90px;
}
.proof-label {
  font-size: 0.85rem;
  color: var(--fg-light);
  line-height: 1.45;
}
.proof-divider {
  height: 1px;
  background: var(--border);
}

/* --- PROBLEM --- */
.problem {
  background: var(--bg-alt);
  padding: 5rem 2.5rem;
}
.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.problem-card {
  background: var(--bg);
  padding: 2rem 1.75rem;
}
.problem-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.problem-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--fg);
}
.problem-card p {
  font-size: 0.9rem;
  color: var(--fg-light);
  line-height: 1.6;
}

/* --- HOW --- */
.how {
  padding: 5rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.35;
  display: block;
  margin-bottom: 1rem;
}
.step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.step p {
  font-size: 0.9rem;
  color: var(--fg-light);
  line-height: 1.65;
}

/* --- TOOLS --- */
.tools {
  background: var(--fg);
  padding: 5rem 2.5rem;
}
.tools-inner {
  max-width: 1100px;
  margin: 0 auto;
  color: var(--white);
}
.tools .section-label { color: var(--accent); }
.tools-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}
.tools-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 3rem;
  max-width: 520px;
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.tool-item {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.tool-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
}
.tool-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.45;
}

/* --- OUTCOMES --- */
.outcomes {
  padding: 5rem 2.5rem;
  background: var(--bg-alt);
}
.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.outcomes-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.outcomes-headline {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--fg);
}
.outcomes-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.outcome {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.outcome:first-child { border-top: 1px solid var(--border); }
.outcome-check {
  color: var(--accent);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}
.outcome p {
  font-size: 0.95rem;
  color: var(--fg);
  line-height: 1.5;
}

/* --- PRICING --- */
.pricing {
  padding: 5rem 2.5rem;
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-card {
  max-width: 600px;
  border: 2px solid var(--fg);
  border-radius: 4px;
  padding: 3rem;
}
.pricing-header { margin-bottom: 2rem; }
.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}
.pricing-tagline {
  font-size: 0.9rem;
  color: var(--fg-light);
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 2rem;
}
.price-amount {
  font-family: 'DM Serif Display', serif;
  font-size: 2.8rem;
  color: var(--fg);
}
.price-period {
  font-size: 1rem;
  color: var(--fg-light);
}
.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}
.pricing-features li {
  font-size: 0.9rem;
  color: var(--fg);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.pricing-features li::before {
  content: "\2713\00A0";
  color: var(--accent);
  font-weight: 700;
}
.pricing-note {
  font-size: 0.82rem;
  color: var(--fg-light);
  line-height: 1.6;
}

/* --- CLOSING --- */
.closing {
  background: var(--fg);
  padding: 6rem 2.5rem;
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.closing-headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 700px;
}
.closing-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  line-height: 1.7;
}

/* --- FOOTER --- */
.footer {
  padding: 3rem 2.5rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--fg);
  display: block;
  margin-bottom: 0.5rem;
}
.footer-desc {
  font-size: 0.85rem;
  color: var(--fg-light);
  line-height: 1.55;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--fg-light);
}

/* --- RESPONSIVE --- */
@media (max-width: 860px) {
  .hero-split, .outcomes-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .how-steps { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .hero, .problem, .how, .pricing, .closing, .footer { padding-left: 1.25rem; padding-right: 1.25rem; }
  .nav { padding-left: 1.25rem; padding-right: 1.25rem; }
  .problem-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card { padding: 2rem 1.5rem; }
  .footer-inner { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
  .proof-block { padding: 1.5rem; }
}