/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #F5EDE0;
  --cream-dark: #EDE5D6;
  --terracotta: #C4622D;
  --terracotta-dark: #A34F23;
  --forest: #2D5C47;
  --forest-light: #3A7459;
  --gold: #D4A843;
  --charcoal: #1E1E1E;
  --ink: #2A2A2A;
  --warm-grey: #7A6F5E;
  --mtn-color: #FFD700;
  --orange-color: #FF6600;
  --wave-color: #5BC2E7;
  --djamo-color: #E8A838;
  --moov-color: #4CAF50;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAVBAR === */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: var(--cream);
  border-bottom: 1px solid rgba(45,92,71,0.12);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-icon {
  color: var(--terracotta);
  font-size: 1.2rem;
}

.nav-tagline {
  font-size: 0.875rem;
  color: var(--warm-grey);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

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

.hero-text { display: flex; flex-direction: column; gap: 24px; }

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(196,98,45,0.1);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 2px;
  width: fit-content;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--warm-grey);
  max-width: 480px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 8px;
}

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

.stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
}

.stat-label { font-size: 0.75rem; color: var(--warm-grey); line-height: 1.4; max-width: 140px; }

.stat-sep {
  width: 1px;
  height: 48px;
  background: rgba(45,92,71,0.2);
}

/* Device mockup */
.hero-visual { display: flex; justify-content: center; }

.device-mockup {
  width: 320px;
  background: var(--forest);
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(45,92,71,0.25), 0 8px 24px rgba(0,0,0,0.15);
  overflow: hidden;
}

.mockup-header {
  background: rgba(255,255,255,0.1);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mockup-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.mockup-dot.red { background: #FF5F57; }
.mockup-dot.yellow { background: #FFBD2E; }
.mockup-dot.green { background: #28CA41; }

.mockup-url {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  margin-left: 8px;
  font-family: monospace;
}

.mockup-screen {
  padding: 20px 16px 24px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-city {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
}

.mockup-date {
  font-size: 0.75rem;
  color: var(--warm-grey);
  margin-top: -8px;
}

.mockup-flight {
  background: white;
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.flight-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flight-airline { font-size: 0.8rem; font-weight: 600; color: var(--charcoal); }

.flight-price {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--terracotta);
}

.flight-times { font-size: 0.7rem; color: var(--warm-grey); }

.payment-methods {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}

.pm {
  font-size: 0.65rem;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
  background: var(--forest);
  color: white;
}

.pay-btn {
  background: var(--terracotta);
  color: white;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: 4px;
}

/* Ticker */
.hero-ticker {
  background: var(--forest);
  overflow: hidden;
  padding: 14px 0;
  margin-top: auto;
}

.ticker-inner {
  display: flex;
  gap: 0;
  animation: scroll-ticker 20s linear infinite;
  white-space: nowrap;
}

.ticker-inner span {
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  padding: 0 20px;
}

.ticker-inner .dot { color: var(--gold); }

@keyframes scroll-ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === PROVIDERS === */
.providers {
  background: var(--forest);
  padding: 56px 48px;
}

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

.providers-label {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 24px;
}

.provider-grid {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.provider {
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1.5px solid;
  letter-spacing: 0.02em;
}

.provider.mtn { background: var(--mtn-color); color: #1a1a1a; border-color: var(--mtn-color); }
.provider.orange { background: var(--orange-color); color: white; border-color: var(--orange-color); }
.provider.wave { background: var(--wave-color); color: #1a3a4a; border-color: var(--wave-color); }
.provider.djamo { background: var(--djamo-color); color: #1a1a1a; border-color: var(--djamo-color); }
.provider.moov { background: var(--moov-color); color: white; border-color: var(--moov-color); }

.providers-note {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  margin-top: 16px;
}

/* === HOW === */
.how { background: var(--cream); padding: 96px 48px; }

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

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: 16px;
}

.section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 56px;
  line-height: 1.2;
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 56px;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 24px;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(45,92,71,0.15);
  line-height: 1;
}

.step-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--warm-grey);
  line-height: 1.6;
}

.step-connector {
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, var(--forest), var(--terracotta));
  margin-top: 28px;
  flex-shrink: 0;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 48px;
  border-top: 1px solid rgba(45,92,71,0.1);
}

.trust-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.trust-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1.2;
}

.trust-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.trust-item p {
  font-size: 0.8rem;
  color: var(--warm-grey);
  line-height: 1.4;
}

/* === CTA === */
.cta {
  background: var(--terracotta);
  padding: 96px 48px;
}

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

.cta-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  line-height: 1.7;
}

.cta-action { flex-shrink: 0; }

.subscribe-block {
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  padding: 32px 40px;
  text-align: center;
}

.subscribe-cta {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.subscribe-sub { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

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

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

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.footer-mission {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 40px;
}

.footer-links span { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.footer-links .sep { color: rgba(255,255,255,0.2); }

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

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding: 48px 24px 32px; gap: 40px; }
  .hero-visual { order: -1; }
  .device-mockup { width: 280px; }
  .steps { flex-direction: column; gap: 32px; }
  .step-connector { width: 48px; height: 2px; margin: 0; }
  .trust-row { grid-template-columns: 1fr; gap: 20px; }
  .cta-inner { flex-direction: column; }
  .navbar { padding: 16px 24px; }
  .providers, .how, .cta, .footer { padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.2rem; }
  .hero-stat-row { flex-direction: column; gap: 16px; }
  .stat-sep { display: none; }
  .provider-grid { gap: 10px; }
  .provider { font-size: 0.85rem; padding: 8px 16px; }
}