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

:root {
  --coral:    #E8523A;
  --cream:    #FDF3E8;
  --navy:     #1C1C2E;
  --warm:     #F7EDE2;
  --muted:    #8A7F76;
  --divider:  rgba(28,28,46,0.1);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--navy);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Navbar ─── */
.navbar {
  padding: 24px 48px;
  display: flex;
  align-items: center;
}
.navbar-inner {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.navbar-brand {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.navbar-tagline {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
}

/* ─── Hero ─── */
.hero {
  padding: 80px 48px 96px;
  max-width: 900px;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.0;
  color: var(--navy);
  letter-spacing: -2px;
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--coral);
}
.hero-sub {
  font-size: 19px;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 36px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--warm);
  border: 1px solid var(--divider);
  padding: 8px 18px;
  border-radius: 100px;
}

/* ─── Problem ─── */
.problem {
  background: var(--navy);
  padding: 96px 48px;
}
.problem-inner {
  max-width: 900px;
}
.problem-label,
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
}
.problem-statement {
  margin-bottom: 64px;
}
.problem-statement p {
  font-size: 20px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 16px;
}
.problem-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
}
.stat {
  background: rgba(255,255,255,0.05);
  padding: 32px 28px;
  text-align: center;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-desc {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

/* ─── How It Works ─── */
.howitworks {
  padding: 96px 48px;
  background: var(--cream);
}
.howitworks-inner { max-width: 900px; }
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--navy);
  margin-bottom: 56px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.step {}
.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--coral);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── Why Bilingual ─── */
.whybilingual {
  background: var(--warm);
  padding: 96px 48px;
}
.whybilingual-inner {
  max-width: 900px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: center;
}
.whybilingual-visual {
  display: flex;
  align-items: center;
  gap: 20px;
}
.lang-badge {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
}
.lang-en { color: var(--navy); }
.lang-es { color: var(--coral); }
.lang-amp {
  font-family: var(--font-display);
  font-size: 40px;
  font-style: italic;
  color: var(--muted);
  opacity: 0.5;
}
.whybilingual-text p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ─── Closing ─── */
.closing {
  background: var(--coral);
  padding: 96px 48px;
}
.closing-inner { max-width: 900px; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 19px;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 40px;
}
.closing-tagline {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: rgba(255,255,255,0.6);
}

/* ─── Footer ─── */
.footer {
  background: var(--navy);
  padding: 48px 48px;
}
.footer-inner { max-width: 900px; }
.footer-brand {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.footer-location {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .navbar { padding: 20px 24px; }
  .hero { padding: 48px 24px 64px; }
  .problem { padding: 64px 24px; }
  .howitworks { padding: 64px 24px; }
  .whybilingual { padding: 64px 24px; }
  .closing { padding: 64px 24px; }
  .footer { padding: 40px 24px; }

  .hero-headline { font-size: 48px; letter-spacing: -1px; }
  .problem-stat-row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .whybilingual-inner { grid-template-columns: 1fr; gap: 40px; }
  .whybilingual-visual { flex-direction: row; }
  .section-headline { font-size: 36px; }
  .closing-headline { font-size: 44px; }
}