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

:root {
  --green-deep: #1B4332;
  --green-dark: #0D2818;
  --green-mid: #2D6A4F;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --terracotta: #8B4513;
  --cream: #FDF6E9;
  --cream-warm: #F5EDD8;
  --white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-mid: #4A4A4A;
  --text-light: #7A7A7A;
  --border: rgba(201, 168, 76, 0.2);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAVBAR === */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(27, 67, 50, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--green-deep);
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.nav-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  letter-spacing: 0.5px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.nav-link:hover {
  background: rgba(201,168,76,0.15);
  color: var(--gold);
}

/* === HERO === */
.hero {
  min-height: 100vh;
  background: var(--green-deep);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 48px 80px;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-geo {
  position: absolute;
  border: 1px solid rgba(201, 168, 76, 0.06);
  border-radius: 50%;
}
.geo-1 { width: 600px; height: 600px; bottom: -200px; right: -150px; }
.geo-2 { width: 400px; height: 400px; bottom: -100px; right: -50px; border-color: rgba(201, 168, 76, 0.08); }
.geo-3 { width: 250px; height: 250px; bottom: 0; right: 50px; border-color: rgba(201, 168, 76, 0.1); }

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-text { }

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-family: 'DM Sans', sans-serif;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat { display: flex; flex-direction: column; }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-div {
  width: 1px;
  height: 40px;
  background: rgba(201, 168, 76, 0.2);
}

/* Globe visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 360px;
}

.diaspora-globe {
  position: relative;
  width: 280px;
  height: 280px;
}

.globe-ring {
  position: absolute;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ring-1 { width: 280px; height: 280px; animation: pulse 4s ease-in-out infinite; }
.ring-2 { width: 200px; height: 200px; border-color: rgba(201, 168, 76, 0.15); animation: pulse 4s ease-in-out infinite 0.5s; }
.ring-3 { width: 130px; height: 130px; border-color: rgba(201, 168, 76, 0.1); animation: pulse 4s ease-in-out infinite 1s; }

.globe-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.2);
}

.city-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 3s ease-in-out infinite;
}
.city-dot::after {
  content: attr(data-city);
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: var(--gold);
  white-space: nowrap;
  font-weight: 500;
}
.dot-1 { top: 10px; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.dot-2 { bottom: 30px; right: 10px; animation-delay: 0.8s; }
.dot-3 { bottom: 10px; left: 30px; animation-delay: 1.6s; }
.dot-4 { top: 40%; right: 0px; animation-delay: 2.4s; }

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.02); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* === SECTION SHARED === */
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-eyebrow.light { color: var(--green-mid); }

.section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 48px;
}

.section-headline.light { color: var(--green-deep); }

/* === PROBLEM === */
.problem {
  padding: 100px 48px;
  background: var(--cream-warm);
}

.problem-content { max-width: 900px; margin: 0 auto; }

.problem-stories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.story-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  position: relative;
}

.story-quote {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 16px;
}

.story-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.story-attr {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
}

.problem-cta {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--green-deep);
  font-weight: 600;
  text-align: center;
  padding: 32px;
  border: 2px solid var(--gold);
  border-radius: 12px;
  background: rgba(201, 168, 76, 0.04);
}

/* === SERVICES === */
.services {
  padding: 100px 48px;
  background: var(--cream);
}

.services-content { max-width: 1100px; margin: 0 auto; }

.doc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.doc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.doc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(27, 67, 50, 0.08);
}

.doc-icon {
  width: 48px;
  height: 48px;
  background: rgba(27, 67, 50, 0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.doc-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.doc-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 16px;
}

.doc-time {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.services-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-mid);
  font-style: italic;
}

/* === HOW IT WORKS === */
.how {
  padding: 100px 48px;
  background: var(--green-deep);
  color: var(--white);
}

.how-content { max-width: 900px; margin: 0 auto; }

.how .section-eyebrow { color: var(--gold-light); }
.how .section-headline { color: var(--white); }

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

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

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.step-connector {
  width: 60px;
  height: 1px;
  background: rgba(201, 168, 76, 0.2);
  flex-shrink: 0;
  margin-top: 30px;
}

.agent-callout {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 12px;
  padding: 24px 32px;
}

.agent-badge {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--green-deep);
  flex-shrink: 0;
}

.agent-text {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

/* === PRICING === */
.pricing {
  padding: 100px 48px;
  background: var(--cream-warm);
}

.pricing-content { max-width: 1100px; margin: 0 auto; }

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

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  transition: transform 0.2s;
}

.price-card:hover { transform: translateY(-2px); }

.price-card.featured {
  border: 2px solid var(--gold);
  box-shadow: 0 8px 40px rgba(27, 67, 50, 0.1);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-doc {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.price-amount {
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 12px;
}

.price-val {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--green-deep);
}

.price-note {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
}

.payment-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pay-label {
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 500;
}

.pay-icons { display: flex; align-items: center; gap: 8px; }

.pay-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-deep);
}

.pay-sep { color: var(--text-light); }

/* === CLOSING === */
.closing {
  padding: 120px 48px;
  background: var(--green-deep);
  text-align: center;
}

.closing-content { max-width: 800px; margin: 0 auto; }

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

.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 32px;
}

.closing-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 64px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.closing-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.5px;
}

/* === FOOTER === */
.footer {
  padding: 48px;
  background: var(--green-dark);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

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

.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  max-width: 400px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links span {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: color 0.2s;
}

.footer-links span:hover { color: var(--gold); }

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

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero { padding: 100px 24px 60px; }
  .hero-headline { font-size: 38px; }
  .doc-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .problem-stories { grid-template-columns: 1fr; }
  .steps { flex-direction: column; gap: 32px; }
  .step-connector { width: 40px; height: 1px; margin: 0; }
  .navbar { padding: 16px 24px; }
  .nav-tagline { display: none; }
}

@media (max-width: 600px) {
  .hero { padding: 90px 20px 50px; }
  .hero-headline { font-size: 32px; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 24px; }
  .doc-grid { grid-template-columns: 1fr; }
  .section-headline { font-size: 28px; }
  .problem, .services, .how, .pricing, .closing { padding: 64px 24px; }
}