/* theme.css — Design tokens + Landing page styles.
   App pages (body.app-body) use the :root tokens + app.css.
   Landing page (body.landing-page) overrides tokens for the light theme. */

/* ─── Dark theme tokens (used by app.css for dashboard/auth/campaigns) ─── */
:root {
  --bg-primary: #0a0f1c;
  --bg-secondary: #111827;
  --bg-card: #1a2236;
  --fg-primary: #f0f2f5;
  --fg-secondary: #94a3b8;
  --fg-muted: #64748b;
  --accent: #e8a838;
  --accent-light: #f5c563;
  --accent-glow: rgba(232, 168, 56, 0.15);
  --border: rgba(148, 163, 184, 0.1);
  --radius: 12px;
  --radius-lg: 20px;
}

/* ─── Landing page design system ──────────────────────────────────────── */

/* Palette */
.landing-page {
  --l-bg: #faf8f5;
  --l-bg-warm: #f5f0ea;
  --l-bg-teal: #0d3b3e;
  --l-bg-teal-light: #145456;
  --l-bg-white: #ffffff;
  --l-fg: #1a1a1a;
  --l-fg-mid: #4a4a4a;
  --l-fg-light: #7a7a7a;
  --l-teal: #0d3b3e;
  --l-teal-mid: #1a6b6e;
  --l-emerald: #10b981;
  --l-emerald-light: #34d399;
  --l-coral: #e8614d;
  --l-coral-light: #f07c6c;
  --l-amber: #f59e0b;
  --l-border: rgba(13, 59, 62, 0.1);
  --l-border-strong: rgba(13, 59, 62, 0.2);
  --l-shadow: 0 1px 3px rgba(0,0,0,0.06);
  --l-shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --l-shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
}

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

html { scroll-behavior: smooth; }

body.landing-page {
  background: var(--l-bg);
  color: var(--l-fg);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ─── Language toggle: hide non-active lang by default ─── */
.landing-page [data-lang="en"] { display: none; }
.landing-page [data-lang="es"] { display: revert; }
.landing-page.lang-en [data-lang="es"] { display: none; }
.landing-page.lang-en [data-lang="en"] { display: revert; }

/* ─── Typography ─── */
.landing-page h1,
.landing-page h2,
.landing-page h3 {
  font-family: 'DM Serif Display', 'Georgia', serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--l-fg);
}

/* ─── Container ─── */
.l-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ─── Buttons ─── */
.l-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  text-decoration: none;
  line-height: 1;
}

.l-btn-primary {
  background: var(--l-coral);
  color: #fff;
}

.l-btn-primary:hover {
  background: var(--l-coral-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232, 97, 77, 0.3);
}

.l-btn-secondary {
  background: transparent;
  color: var(--l-teal);
  border: 2px solid var(--l-teal);
}

.l-btn-secondary:hover {
  background: var(--l-teal);
  color: #fff;
  transform: translateY(-2px);
}

.l-btn-white {
  background: #fff;
  color: var(--l-teal);
}

.l-btn-white:hover {
  background: var(--l-bg);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}

.l-btn-coral-outline {
  background: transparent;
  color: var(--l-coral);
  border: 2px solid var(--l-coral);
}

.l-btn-coral-outline:hover {
  background: var(--l-coral);
  color: #fff;
}

.l-btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.l-btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* ─── Section tag ─── */
.l-tag {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--l-emerald);
  margin-bottom: 16px;
}

.l-tag-light {
  color: var(--l-emerald-light);
}

/* ═══════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--l-border);
  transition: box-shadow 0.3s;
}

.site-nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--l-teal);
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 0;
}

.nav-logo-doc {
  font-weight: 400;
}

.nav-logo-reach {
  color: var(--l-coral);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--l-fg-mid);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover {
  color: var(--l-teal);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--l-coral);
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--l-bg-warm);
  border-radius: 100px;
  padding: 3px;
  gap: 0;
}

.lang-btn {
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--l-fg-light);
  background: transparent;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.lang-btn.active {
  background: #fff;
  color: var(--l-teal);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--l-fg);
  margin: 5px 0;
  transition: all 0.3s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--l-bg);
  z-index: 999;
  padding: 32px 28px;
  flex-direction: column;
  gap: 0;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  display: block;
  padding: 18px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--l-fg);
  text-decoration: none;
  border-bottom: 1px solid var(--l-border);
}

.mobile-menu .l-btn {
  margin-top: 24px;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-right .l-btn { display: none; }
  .nav-hamburger { display: block; }
}

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.l-hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.l-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.l-hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 97, 77, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--l-emerald);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--l-emerald);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.l-hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.12;
}

.l-hero h1 .coral {
  color: var(--l-coral);
}

.hero-lede {
  font-size: 1.1rem;
  color: var(--l-fg-mid);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Hero right: metrics showcase */
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.08);
  border: 1px solid var(--l-border);
  position: relative;
}

.hero-card-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--l-fg-light);
  margin-bottom: 20px;
}

.hero-metric-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
}

.hero-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-metric-value {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem;
  color: var(--l-teal);
  line-height: 1;
}

.hero-metric-label {
  font-size: 0.78rem;
  color: var(--l-fg-light);
}

.hero-metric-change {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--l-emerald);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Mini chart bars */
.hero-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
  margin-bottom: 24px;
}

.hero-bar {
  flex: 1;
  background: var(--l-bg-warm);
  border-radius: 4px 4px 0 0;
  transition: height 0.4s ease;
}

.hero-bar:nth-child(1) { height: 35%; }
.hero-bar:nth-child(2) { height: 50%; }
.hero-bar:nth-child(3) { height: 40%; }
.hero-bar:nth-child(4) { height: 65%; }
.hero-bar:nth-child(5) { height: 55%; }
.hero-bar:nth-child(6) { height: 80%; }
.hero-bar:nth-child(7) { height: 70%; background: var(--l-emerald); opacity: 0.7; }
.hero-bar:nth-child(8) { height: 90%; background: var(--l-emerald); opacity: 0.85; }
.hero-bar:nth-child(9) { height: 100%; background: var(--l-emerald); }

.hero-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--l-border);
  font-size: 0.82rem;
  color: var(--l-fg-light);
}

.hero-card-footer strong {
  color: var(--l-fg);
}

/* Floating accent card */
.hero-float-card {
  position: absolute;
  bottom: -24px;
  left: -32px;
  background: var(--l-teal);
  color: #fff;
  padding: 16px 22px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(13, 59, 62, 0.3);
  z-index: 3;
}

.hero-float-value {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-float-label {
  font-size: 0.72rem;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .l-hero {
    padding: 120px 0 60px;
  }
  .hero-float-card {
    left: auto;
    right: 16px;
    bottom: -16px;
  }
}

@media (max-width: 600px) {
  .l-hero { padding: 110px 0 48px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .l-btn { width: 100%; text-align: center; }
}

/* ═══════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════ */
.stats-bar {
  padding: 0 0 80px;
}

.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--l-shadow-md);
  border: 1px solid var(--l-border);
  overflow: hidden;
}

.stat-item {
  padding: 32px;
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--l-border);
}

.stat-value {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem;
  color: var(--l-teal);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 0.85rem;
  color: var(--l-fg-light);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(2)::after { display: none; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid var(--l-border);
  }
}

@media (max-width: 480px) {
  .stats-bar-inner {
    grid-template-columns: 1fr;
  }
  .stat-item::after { display: none !important; }
  .stat-item:not(:last-child) {
    border-bottom: 1px solid var(--l-border);
  }
}

/* ═══════════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════════ */
.trust-bar {
  padding: 32px 0;
  border-top: 1px solid var(--l-border);
  border-bottom: 1px solid var(--l-border);
  background: #fff;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--l-fg-light);
}

.trust-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: var(--l-bg-warm);
  border-radius: 8px;
  color: var(--l-teal);
}

@media (max-width: 600px) {
  .trust-bar-inner { gap: 24px; }
}

/* ═══════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════ */
.l-services {
  padding: 100px 0;
}

.l-services-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.l-services-header h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-bottom: 16px;
}

.l-services-header p {
  font-size: 1.05rem;
  color: var(--l-fg-mid);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--l-border);
  border-radius: 12px;
  padding: 32px 28px;
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  border-color: var(--l-teal-mid);
  transform: translateY(-4px);
  box-shadow: var(--l-shadow-lg);
}

.service-icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.service-icon-teal {
  background: rgba(13, 59, 62, 0.08);
  color: var(--l-teal);
}

.service-icon-emerald {
  background: rgba(16, 185, 129, 0.08);
  color: var(--l-emerald);
}

.service-icon-coral {
  background: rgba(232, 97, 77, 0.08);
  color: var(--l-coral);
}

.service-icon-amber {
  background: rgba(245, 158, 11, 0.08);
  color: var(--l-amber);
}

.service-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--l-fg);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--l-fg-mid);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .l-services { padding: 72px 0; }
}

/* ═══════════════════════════════════════════════════
   PROCESS / HOW IT WORKS
   ═══════════════════════════════════════════════════ */
.l-process {
  padding: 100px 0;
  background: var(--l-bg-warm);
}

.l-process-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
}

.l-process-header h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-bottom: 16px;
}

.l-process-header p {
  font-size: 1.05rem;
  color: var(--l-fg-mid);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}

/* Connecting line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.67% + 24px);
  right: calc(16.67% + 24px);
  height: 2px;
  background: var(--l-border-strong);
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 24px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  position: relative;
  z-index: 2;
}

.step-1 .step-number {
  background: var(--l-teal);
  color: #fff;
}

.step-2 .step-number {
  background: var(--l-emerald);
  color: #fff;
}

.step-3 .step-number {
  background: var(--l-coral);
  color: #fff;
}

.process-step h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--l-fg);
}

.process-step p {
  font-size: 0.92rem;
  color: var(--l-fg-mid);
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 400px;
    margin: 0 auto;
  }
  .process-steps::before { display: none; }
  .l-process { padding: 72px 0; }
}

/* ═══════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════ */
.l-pricing {
  padding: 100px 0;
}

.l-pricing-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.l-pricing-header h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-bottom: 16px;
}

.l-pricing-header p {
  font-size: 1.05rem;
  color: var(--l-fg-mid);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--l-border);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--l-shadow-lg);
}

.pricing-card.featured {
  border: 2px solid var(--l-teal);
  box-shadow: 0 8px 40px rgba(13, 59, 62, 0.12);
}

.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--l-teal);
  color: #fff;
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.pricing-tier {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--l-fg-light);
  margin-bottom: 16px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.pricing-currency {
  font-size: 1rem;
  color: var(--l-fg-mid);
  font-weight: 600;
}

.pricing-number {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: var(--l-teal);
  line-height: 1;
}

.pricing-period {
  font-size: 0.88rem;
  color: var(--l-fg-light);
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--l-fg-mid);
  margin-bottom: 28px;
  line-height: 1.6;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--l-fg-mid);
  line-height: 1.5;
}

.pricing-features li::before {
  content: '✓';
  color: var(--l-emerald);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card .l-btn {
  width: 100%;
}

/* Guarantee strip */
.pricing-guarantee {
  margin-top: 48px;
  text-align: center;
  padding: 32px;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 12px;
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--l-teal);
  margin-bottom: 8px;
}

.guarantee-badge-icon {
  font-size: 1.4rem;
}

.guarantee-text {
  font-size: 0.9rem;
  color: var(--l-fg-mid);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .l-pricing { padding: 72px 0; }
}

/* ═══════════════════════════════════════════════════
   DIFFERENTIATORS / WHY US
   ═══════════════════════════════════════════════════ */
.l-why {
  padding: 100px 0;
  background: var(--l-bg-teal);
  color: #fff;
}

.l-why-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.l-why-header h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  color: #fff;
  margin-bottom: 16px;
}

.l-why-header p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 36px 32px;
  transition: all 0.3s;
}

.why-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.why-icon {
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.why-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.why-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .l-why { padding: 72px 0; }
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.l-footer-cta {
  padding: 100px 0;
  text-align: center;
  background: var(--l-bg-warm);
}

.footer-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.footer-cta-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 20px;
}

.footer-cta-inner p {
  font-size: 1.05rem;
  color: var(--l-fg-mid);
  margin-bottom: 36px;
  line-height: 1.7;
}

.footer-cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.l-footer {
  background: var(--l-teal);
  color: #fff;
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
}

.footer-brand-reach {
  color: var(--l-coral-light);
}

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 24px 0;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

@media (max-width: 600px) {
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-direction: column; gap: 12px; }
  .footer-bottom-row { flex-direction: column; gap: 8px; }
  .l-footer-cta { padding: 72px 0; }
  .footer-cta-btns { flex-direction: column; align-items: center; }
}

/* ═══════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger-children > .fade-up:nth-child(1) { transition-delay: 0s; }
.stagger-children > .fade-up:nth-child(2) { transition-delay: 0.08s; }
.stagger-children > .fade-up:nth-child(3) { transition-delay: 0.16s; }
.stagger-children > .fade-up:nth-child(4) { transition-delay: 0.24s; }
.stagger-children > .fade-up:nth-child(5) { transition-delay: 0.32s; }
.stagger-children > .fade-up:nth-child(6) { transition-delay: 0.4s; }
.stagger-children > .fade-up:nth-child(7) { transition-delay: 0.48s; }
.stagger-children > .fade-up:nth-child(8) { transition-delay: 0.56s; }
.stagger-children > .fade-up:nth-child(9) { transition-delay: 0.64s; }
