/* --- Variables --- */
:root {
  --bg: #FAF6F0;
  --bg-alt: #F0EAE0;
  --fg: #1B3D2F;
  --fg-muted: #3D6B45;
  --accent: #C9953A;
  --accent-soft: #D4A853;
  --sage: #6B8F71;
  --sage-light: #8A9E7E;
  --border: rgba(59, 109, 69, 0.18);
  --radius: 12px;
}

/* --- Reset & Base --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
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.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  color: var(--fg);
}

/* --- Kicker / Label --- */
.section-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-headline {
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 600;
  margin-bottom: 20px;
}

/* ========================================== */
/* HERO                                          */
/* ========================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 40px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(212,168,83,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 28px;
  color: var(--fg);
}

.hero-headline em {
  font-style: italic;
  color: var(--fg-muted);
}

.hero-lede {
  font-size: 18px;
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 440px;
  line-height: 1.65;
}

.hero-illustration {
  width: 100%;
}

.hero-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(27,61,47,0.12));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-muted);
  background: rgba(59,107,69,0.08);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
  margin-top: 32px;
}

/* ========================================== */
/* AGENTS                                         */
/* ========================================== */
.agents {
  padding: 100px 48px;
  background: var(--fg);
  color: #fff;
}

.agents .section-kicker { color: var(--accent-soft); }
.agents .section-headline { color: #fff; }

.agents-header {
  max-width: 1200px;
  margin: 0 auto 64px;
  text-align: center;
}

.agents-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.agent-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.agent-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,149,58,0.3);
}

.agent-icon {
  margin-bottom: 20px;
}

.agent-name {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.agent-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 20px;
}

.agent-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-soft);
  border: 1px solid rgba(201,149,58,0.3);
  padding: 5px 10px;
  border-radius: 4px;
  display: inline-block;
}

/* ========================================== */
/* HOW IT WORKS                                   */
/* ========================================== */
.howitworks {
  padding: 100px 48px;
  background: var(--bg);
}

.howitworks-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.howitworks-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-top: 16px;
}

.step {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  align-items: flex-start;
}

.step:last-child { margin-bottom: 0; }

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.5;
  min-width: 36px;
  line-height: 1;
  padding-top: 4px;
}

.step-content h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}

.step-content p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ========================================== */
/* OUTCOMES                                       */
/* ========================================== */
.outcomes {
  padding: 100px 48px;
  background: var(--bg-alt);
}

.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.outcomes-header {
  text-align: center;
  margin-bottom: 64px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 48px;
}

.outcome-stat {
  background: var(--bg);
  padding: 40px 32px;
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}

.outcomes-callout {
  background: var(--fg);
  border-radius: var(--radius);
  padding: 40px 48px;
  text-align: center;
}

.outcomes-callout p {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: #fff;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
}

/* ========================================== */
/* CLOSING                                        */
/* ========================================== */
.closing {
  padding: 120px 48px;
  background: var(--bg);
}

.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.closing-deco {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.closing-headline {
  font-size: clamp(30px, 4.5vw, 54px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 28px;
  color: var(--fg);
}

.closing-body {
  font-size: 17px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* ========================================== */
/* FOOTER                                         */
/* ========================================== */
.footer {
  padding: 40px 48px;
  background: var(--fg);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* ========================================== */
/* RESPONSIVE                                     */
/* ========================================== */
@media (max-width: 900px) {
  .hero-inner,
  .howitworks-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .agents-grid {
    grid-template-columns: 1fr;
  }
  .outcomes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero {
    padding: 60px 24px 40px;
  }
  .agents, .howitworks, .outcomes, .closing {
    padding: 72px 24px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 500px) {
  .outcomes-grid {
    grid-template-columns: 1fr;
  }
  .stat-number {
    font-size: 40px;
  }
}