/* ─── Reset & Base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #faf8f5;
  --fg: #1a1a1a;
  --accent: #c9893a;
  --accent-light: #e8c27a;
  --muted: #6b6560;
  --surface: #f0ede8;
  --border: #ddd8d0;
  --dark: #111;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

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

/* ─── Typography ───────────────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--serif); font-weight: 700; line-height: 1.15; color: var(--fg); }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.2rem; font-family: var(--sans); font-weight: 500; }

p { color: var(--muted); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* ─── Layout Helpers ───────────────────────────────────────────────── */
section { padding: 5rem 2rem; }
.inner { max-width: 1140px; margin: 0 auto; }

/* ─── Hero ─────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--dark);
  color: #fff;
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  padding: 7rem 2rem 5rem;
}
.hero-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: #fff;
  max-width: 660px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 1.8rem;
}
.hero-lede {
  color: #b0a99f;
  font-size: 1.05rem;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 3rem;
}
.hero-rule {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat { padding-right: 2.5rem; }
.stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-desc {
  display: block;
  font-size: 0.75rem;
  color: #8a8278;
  max-width: 120px;
  line-height: 1.4;
}
.stat-sep {
  width: 1px;
  height: 48px;
  background: #333;
  margin-right: 2.5rem;
}
.hero-bg-shape {
  position: absolute;
  top: -80px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,137,58,0.12) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* ─── Problem ──────────────────────────────────────────────────────── */
.problem { background: var(--bg); }
.problem-inner { max-width: 1140px; margin: 0 auto; }
.problem-header { max-width: 580px; margin-bottom: 4rem; }
.problem-header h2 { color: var(--fg); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
  margin-bottom: 4rem;
}
.problem-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
}
.problem-icon {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.problem-card h3 { margin-bottom: 0.8rem; color: var(--fg); }
.problem-card p { font-size: 0.9rem; line-height: 1.6; }
.problem-quote {
  max-width: 600px;
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
}
.problem-quote blockquote {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 0.8rem;
}
.problem-quote cite {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ─── How ─────────────────────────────────────────────────────────── */
.how { background: var(--surface); }
.how-inner { max-width: 1140px; margin: 0 auto; }
.how-inner > h2 { margin-bottom: 0.8rem; }
.how-intro { max-width: 520px; margin-bottom: 3.5rem; font-size: 1rem; }
.workflows { display: flex; flex-direction: column; gap: 0; }
.workflow {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.workflow:first-child { border-top: 1px solid var(--border); }
.workflow-num {
  font-family: var(--serif);
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
  min-width: 28px;
  padding-top: 0.2rem;
}
.workflow-body h3 { margin-bottom: 0.5rem; }
.workflow-body p { font-size: 0.9rem; }

/* ─── Pricing ─────────────────────────────────────────────────────── */
.pricing { background: var(--bg); }
.pricing-inner { max-width: 1140px; margin: 0 auto; }
.pricing-inner > h2 { margin-bottom: 0.8rem; }
.pricing-sub { max-width: 480px; margin-bottom: 3rem; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 760px;
}
.pricing-card {
  border: 1.5px solid var(--border);
  padding: 2.5rem 2rem;
  background: var(--bg);
}
.pricing-card--featured {
  border-color: var(--accent);
  background: var(--dark);
  color: #fff;
}
.pricing-tier {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.pricing-card--featured .pricing-tier { color: var(--accent-light); }
.pricing-price {
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.pricing-card--featured .pricing-price { color: #fff; }
.pricing-price span {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
}
.pricing-detail {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.pricing-card--featured .pricing-detail { color: #8a8278; }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pricing-features li {
  font-size: 0.85rem;
  color: var(--muted);
  padding-left: 1.2rem;
  position: relative;
}
.pricing-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.7rem;
}
.pricing-card--featured .pricing-features li { color: #b0a99f; }
.pricing-anchor {
  margin-top: 2rem;
  max-width: 480px;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--border);
  border-left: 2px solid var(--accent);
}
.pricing-anchor p { font-size: 0.875rem; color: var(--muted); line-height: 1.5; }

/* ─── Closing ──────────────────────────────────────────────────────── */
.closing {
  background: var(--dark);
  color: #fff;
  text-align: center;
}
.closing-inner { max-width: 800px; margin: 0 auto; padding: 7rem 2rem; }
.closing h2 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.closing p {
  color: #8a8278;
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}
.closing-cta { padding-top: 2rem; }
.closing-text {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--accent-light);
}

/* ─── Footer ──────────────────────────────────────────────────────── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
}
.footer-inner { max-width: 1140px; margin: 0 auto; text-align: center; }
.footer-brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.footer-tagline { font-size: 0.85rem; color: var(--muted); margin-bottom: 1rem; }
.footer-copy { font-size: 0.75rem; color: var(--border); }

/* ─── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 640px) {
  section { padding: 3.5rem 1.25rem; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .stat-sep { display: none; }
  .stat { padding-right: 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .workflow { gap: 1rem; }
  .problem-grid { grid-template-columns: 1fr; }
  .hero-bg-shape { display: none; }
}