/* ===== BASE ===== */
:root {
  --bg: #FAFAF7;
  --bg-alt: #F0F4F3;
  --fg: #1A2E28;
  --fg-muted: #5A6E68;
  --accent: #0D9488;
  --accent-warm: #F59E0B;
  --border: #DDE5E1;
  --white: #FFFFFF;
}

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

html { scroll-behavior: smooth; }

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

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

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
}

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

.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--accent);
  letter-spacing: -0.02em;
}

nav { display: flex; gap: 32px; }
nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
nav a:hover { color: var(--fg); }

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

/* ===== HERO ===== */
.hero {
  padding: 80px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-text h1 {
  font-size: 3.25rem;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 300;
}

.hero-pills { display: flex; gap: 10px; flex-wrap: wrap; }

.pill {
  font-size: 0.78rem;
  font-weight: 500;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--fg);
  padding: 6px 14px;
  border-radius: 100px;
}

.hero-image-wrap {
  position: relative;
}

.hero-img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 8px 40px rgba(13, 148, 136, 0.15);
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge-time {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.badge-label {
  font-size: 0.78rem;
  color: var(--fg-muted);
  font-weight: 500;
}

/* ===== PROBLEM ===== */
.problem {
  background: var(--fg);
  color: var(--white);
  padding: 80px 40px;
}

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

.problem-header { margin-bottom: 56px; }
.problem-header h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-top: 12px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 56px;
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-warm);
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.problem-copy {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 760px;
}

/* ===== HOW ===== */
.how {
  background: var(--bg);
  padding: 80px 40px;
}

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

.how h2 {
  font-size: 2.25rem;
  margin-bottom: 56px;
  margin-top: 12px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 56px;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--border);
  margin-bottom: 16px;
  line-height: 1;
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--fg);
}

.step p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

.ui-mockup-wrap {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  padding: 32px;
}

.ui-mockup {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.mockup-caption {
  text-align: center;
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 16px;
  font-style: italic;
}

/* ===== OUTCOMES ===== */
.outcomes {
  background: var(--white);
  padding: 80px 40px;
  border-top: 1px solid var(--border);
}

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

.outcomes h2 {
  font-size: 2.25rem;
  margin-top: 12px;
  margin-bottom: 56px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 56px;
}

.outcome-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}

.outcome h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.outcome p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== CLOSING ===== */
.closing {
  background: var(--accent);
  padding: 80px 40px;
}

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

.closing-quote {
  margin-bottom: 32px;
}

.closing-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1.25;
  font-weight: 600;
}

.closing-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 660px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--fg);
  color: rgba(255,255,255,0.5);
  padding: 40px;
}

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

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.82rem;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}
.footer-links a:hover { color: var(--white); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { padding: 48px 24px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-text h1 { font-size: 2.25rem; }
  .hero-image-wrap { order: -1; }
  .hero-badge { bottom: -16px; left: 16px; }

  .problem { padding: 56px 24px; }
  .problem-header h2 { font-size: 1.75rem; }
  .stat-row { grid-template-columns: 1fr; gap: 24px; }
  .stat-number { font-size: 2.25rem; }

  .how { padding: 56px 24px; }
  .how h2 { font-size: 1.75rem; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }

  .outcomes { padding: 56px 24px; }
  .outcomes h2 { font-size: 1.75rem; }
  .outcomes-grid { grid-template-columns: 1fr; }

  .closing { padding: 56px 24px; }
  .closing-quote blockquote { font-size: 1.75rem; }

  .site-header { padding: 0 24px; }
  nav { display: none; }

  .footer-inner { flex-direction: column; gap: 20px; }
}