/* ============================================================
   ATTALLAH CGL — Stylesheet
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Brand colors */
  --burgundy: #632032;
  --burgundy-light: #8a3448;
  --burgundy-soft: #c4606e;
  --burgundy-dark: #4a1826;
  --green: #206351;
  --green-light: #2a7d66;
  --green-soft: #5cb89a;
  --gold: #ffb700;
  --gold-muted: #c8942e;

  /* Neutrals */
  --cream: #FAF9F6;
  --warm-gray: #f5f2ed;
  --dark: #0c0c0c;
  --dark-surface: #111111;
  --dark-card: #141414;

  /* Text colors */
  --text-on-dark: rgba(255, 255, 255, 0.75);
  --text-muted-dark: rgba(255, 255, 255, 0.5);
  --text-on-light: #2a2a2a;
  --text-muted-light: #5a5a5a;

  /* Spacing */
  --section-padding: 120px 48px;
  --section-padding-mobile: 80px 24px;
  --container-max: 1200px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-on-light);
  background: var(--dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Base Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--burgundy-soft);
  margin-bottom: 16px;
}

.section-title {
  font-size: 42px;
  margin-bottom: 24px;
}

.section-text {
  font-size: 16px;
  line-height: 1.8;
  max-width: 600px;
  font-weight: 300;
}

/* Light section overrides */
.section--light .section-label {
  color: var(--burgundy);
}

.section--light .section-title {
  color: var(--text-on-light);
}

.section--light .section-text {
  color: var(--text-muted-light);
}

.section--warm .section-label {
  color: var(--burgundy);
}

.section--warm .section-title {
  color: var(--text-on-light);
}

.section--warm .section-text {
  color: var(--text-muted-light);
}

/* Dark section text */
.section--dark .section-text {
  color: var(--text-on-dark);
}

/* --- Section Backgrounds --- */
.section {
  padding: var(--section-padding);
}

.section--dark {
  background: var(--dark);
  color: #fff;
}

.section--surface {
  background: var(--dark-surface);
  color: #fff;
}

.section--light {
  background: var(--cream);
  color: var(--text-on-light);
}

.section--warm {
  background: var(--warm-gray);
  color: var(--text-on-light);
}

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
}

/* --- Scroll Animation Base --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background var(--transition-base);
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__logo-icon {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  width: 28px;
  height: 28px;
}

.nav__logo-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--burgundy-soft);
}

/* Vary dot opacity to match Attallah logo pattern */
.nav__logo-dot:nth-child(1) { opacity: 0.3; }
.nav__logo-dot:nth-child(2) { opacity: 0.5; }
.nav__logo-dot:nth-child(4) { opacity: 0.7; }
.nav__logo-dot:nth-child(6) { opacity: 0.4; }
.nav__logo-dot:nth-child(10) { opacity: 0.6; }
.nav__logo-dot:nth-child(15) { opacity: 0.5; }
.nav__logo-dot:nth-child(20) { opacity: 0.3; }

.nav__logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.nav__logo-text span {
  font-weight: 300;
  opacity: 0.6;
  margin-left: 4px;
  font-size: 13px;
  letter-spacing: 2px;
}

.nav__logo-img {
  height: 36px;
  width: auto;
  border-radius: 4px;
  transition: opacity var(--transition-base);
}

/* Desktop Nav Links */
.nav__links {
  display: flex;
  gap: 32px;
}

.nav__link {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition-base);
}

.nav__link:hover {
  color: #fff;
}

/* CTA Button */
.nav__cta {
  display: inline-block;
  padding: 9px 22px;
  background: var(--burgundy);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background var(--transition-base);
}

.nav__cta:hover {
  background: var(--burgundy-light);
}

/* Hamburger Button */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 101;
}

.nav__hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

/* Hamburger open state */
.nav__hamburger.is-open .nav__hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.is-open .nav__hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.is-open .nav__hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.nav__mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.97);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.nav__mobile-overlay.is-open {
  display: flex;
  opacity: 1;
}

.nav__mobile-link {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-base);
}

.nav__mobile-link:hover {
  color: #fff;
}

.nav__mobile-cta {
  margin-top: 16px;
  padding: 14px 36px;
  background: var(--burgundy);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background var(--transition-base);
}

.nav__mobile-cta:hover {
  background: var(--burgundy-light);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a0d12 0%, #0a1628 30%, #0d1b12 60%, #0a0a0a 100%);
}

/* Subtle burgundy glow top-right */
.hero__bg::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 32, 50, 0.15) 0%, transparent 60%);
}

/* Subtle green glow bottom-left */
.hero__bg::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 50%;
  height: 50%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(32, 99, 81, 0.1) 0%, transparent 60%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.15) 0%, rgba(10, 10, 10, 0.45) 40%, rgba(10, 10, 10, 0.92) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}

.hero__tagline {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero__title {
  font-size: 58px;
  font-weight: 400;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 24px;
}

.hero__title em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}

.hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 44px;
}

.hero__cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 34px;
  background: var(--burgundy);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: background var(--transition-base);
}

.hero__cta:hover {
  background: var(--burgundy-light);
}

.hero__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 34px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all var(--transition-base);
}

.hero__cta-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.hero__cta-icon {
  width: 16px;
  height: 16px;
}

/* Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.hero__scroll-text {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.hero__scroll-line {
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, var(--burgundy-soft), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ============================================================
   SCROLL TO TOP BUTTON
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--burgundy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(99, 32, 50, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base), background var(--transition-base);
  cursor: pointer;
}

.scroll-top:hover {
  background: var(--burgundy-light);
  transform: translateY(-2px);
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ============================================================
   ABOUT / WHO WE ARE
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__image {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--burgundy-dark), #1a0d12);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(99, 32, 50, 0.15);
  border-radius: 4px;
}

.about__image-dots {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  opacity: 0.2;
}

.about__image-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--burgundy-soft);
}

.about__text-group .section-text + .section-text {
  margin-top: 20px;
}

/* --- Mission & Vision Cards --- */
.mv-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}

.mv-card {
  padding: 36px;
  background: #fff;
  border-left: 3px solid var(--burgundy);
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.mv-card--green {
  border-left-color: var(--green);
}

.mv-card__title {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-on-light);
}

.mv-card__text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted-light);
  line-height: 1.8;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats {
  padding: 0 48px;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(99, 32, 50, 0.2);
}

.stats__item {
  text-align: center;
  padding: 52px 24px;
  background: var(--dark);
}

.stats__number {
  font-family: 'Inter', sans-serif;
  font-size: 52px;
  font-weight: 200;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 8px;
}

.stats__number .accent {
  color: var(--gold);
}

.stats__label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

/* ============================================================
   OUR COMPANIES / ECOSYSTEM
   ============================================================ */
.ecosystem__header {
  text-align: center;
  margin-bottom: 80px;
}

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

.eco-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  cursor: pointer;
}

.eco-card__bg {
  position: absolute;
  inset: 0;
  transition: transform var(--transition-slow);
}

.eco-card:hover .eco-card__bg {
  transform: scale(1.05);
}

.eco-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.15) 100%
  );
  z-index: 1;
}

.eco-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px;
  z-index: 2;
}

.eco-card__badge {
  display: inline-block;
  padding: 5px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.eco-card__name {
  font-size: 22px;
  color: #fff;
  margin-bottom: 10px;
}

.eco-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 16px;
}

.eco-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: gap var(--transition-base);
}

.eco-card__link:hover {
  gap: 14px;
}

/* DGL color coding */
.eco-card--dgl .eco-card__badge {
  background: rgba(99, 32, 50, 0.4);
  color: #e8899a;
  border: 1px solid rgba(99, 32, 50, 0.4);
}
.eco-card--dgl .eco-card__link { color: #e8899a; }

/* HTL color coding */
.eco-card--htl .eco-card__badge {
  background: rgba(32, 99, 81, 0.4);
  color: #7dd4b6;
  border: 1px solid rgba(32, 99, 81, 0.4);
}
.eco-card--htl .eco-card__link { color: #7dd4b6; }

/* Abelia color coding */
.eco-card--abelia .eco-card__badge {
  background: rgba(255, 183, 0, 0.2);
  color: var(--gold);
  border: 1px solid rgba(255, 183, 0, 0.25);
}
.eco-card--abelia .eco-card__link { color: var(--gold); }

/* ============================================================
   OUR IMPACT
   ============================================================ */
.impact__header {
  text-align: center;
  margin-bottom: 64px;
}

.impact__intro {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--text-on-dark);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

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

.impact__pillar {
  padding: 36px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--burgundy);
  border-radius: 2px;
}

.impact__pillar--green {
  border-left-color: var(--green);
}

.impact__pillar--gold {
  border-left-color: var(--gold);
}

.impact__pillar-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.impact__pillar-title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.impact__pillar-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

/* ============================================================
   FUTURE FOCUS
   ============================================================ */
.future__header {
  text-align: center;
  margin-bottom: 64px;
}

.future__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted-light);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.future__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.future__card {
  padding: 48px 24px;
  background: #fff;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.future__card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--burgundy);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.future__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.future__card:hover::before {
  transform: scaleX(1);
}

.future__card-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.future__card-name {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-on-light);
  margin-bottom: 6px;
}

.future__card-sub {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--text-muted-light);
  letter-spacing: 0.5px;
}

/* ============================================================
   WHERE WE OPERATE / MAP
   ============================================================ */
.map__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.map__visual {
  position: relative;
  display: block;
  width: 100%;
  max-width: 420px;
}

.map__svg {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 4px 24px rgba(99, 32, 50, 0.08));
}

/* Map pin styles */
.map__pin {
  position: absolute;
  width: 14px;
  height: 14px;
  z-index: 2;
}

.map__pin-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--burgundy);
  position: absolute;
  top: 2px;
  left: 2px;
  z-index: 2;
  border: 2px solid var(--cream);
}

.map__pin-dot--green { background: var(--green); }
.map__pin-dot--gold { background: var(--gold-muted); }

.map__pin-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--burgundy);
  animation: mapPing 2.5s cubic-bezier(0, 0, 0.2, 1) infinite;
  opacity: 0;
}

.map__pin-ring--green { border-color: var(--green); }
.map__pin-ring--gold { border-color: var(--gold-muted); }

@keyframes mapPing {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(3); opacity: 0; }
}

.map__pin-label {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  background: var(--burgundy);
  padding: 4px 10px;
  border-radius: 3px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity var(--transition-fast);
  pointer-events: none;
}

.map__pin-label::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid var(--burgundy);
}

.map__pin-label--green { background: var(--green); }
.map__pin-label--green::after { border-top-color: var(--green); }
.map__pin-label--gold { background: var(--gold-muted); }
.map__pin-label--gold::after { border-top-color: var(--gold-muted); }

.map__pin:hover .map__pin-label {
  opacity: 1;
}

.country-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.country-tag {
  padding: 7px 16px;
  border: 1px solid #d5cfc8;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--text-muted-light);
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition-base);
  cursor: default;
}

.country-tag:hover {
  border-color: var(--burgundy);
  color: var(--burgundy);
  background: rgba(99, 32, 50, 0.04);
}

/* ============================================================
   CTA / PARTNER WITH US
   ============================================================ */
.cta__content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta__text {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: var(--text-muted-light);
  line-height: 1.8;
  margin-bottom: 44px;
}

.cta__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 44px;
  background: var(--burgundy);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all var(--transition-base);
}

.cta__button:hover {
  background: var(--burgundy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(99, 32, 50, 0.25);
}

.cta__button-icon {
  width: 16px;
  height: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 64px 48px;
  background: var(--dark);
  border-top: 1px solid rgba(99, 32, 50, 0.1);
  color: #fff;
}

.footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer__logo-dots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.footer__logo-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--burgundy-soft);
}

.footer__logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
}

.footer__tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
}

.footer__links {
  display: flex;
  gap: 48px;
}

.footer__col-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--burgundy-soft);
  margin-bottom: 16px;
}

.footer__link {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
  transition: color var(--transition-base);
}

.footer__link:hover {
  color: #fff;
}

.footer__bottom {
  max-width: var(--container-max);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
}

.footer__bottom-text {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   RESPONSIVE — Tablet (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --section-padding: 100px 36px;
  }

  .section-title {
    font-size: 36px;
  }

  /* Nav */
  .nav {
    padding: 18px 36px;
  }

  .nav__links {
    display: none;
  }

  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  /* Hero */
  .hero__title {
    font-size: 46px;
  }

  .hero__subtitle {
    font-size: 15px;
  }

  /* About */
  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__image {
    order: -1;
    aspect-ratio: 16 / 9;
  }

  .mv-cards {
    grid-template-columns: 1fr 1fr;
  }

  /* Stats */
  .stats {
    padding: 0 36px;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats__number {
    font-size: 42px;
  }

  /* Ecosystem */
  .ecosystem__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Impact */
  .impact__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  /* Future */
  .future__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Map */
  .map__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .map__visual {
    order: -1;
  }

  /* Footer */
  .footer__inner {
    flex-direction: column;
    gap: 40px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
  }
}

/* ============================================================
   RESPONSIVE — Mobile (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-padding: 80px 24px;
  }

  .section-title {
    font-size: 30px;
  }

  .section-text {
    font-size: 15px;
  }

  /* Nav */
  .nav {
    padding: 16px 24px;
  }

  .nav__logo-text {
    font-size: 16px;
  }

  /* Hero */
  .hero {
    min-height: 500px;
  }

  .hero__tagline {
    font-size: 11px;
    letter-spacing: 3px;
    margin-bottom: 20px;
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__subtitle {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .hero__cta-group {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero__cta,
  .hero__cta-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 14px 24px;
    font-size: 11px;
  }

  .hero__scroll {
    display: none;
  }

  /* About */
  .about__image {
    aspect-ratio: 16 / 9;
  }

  .mv-cards {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
  }

  .mv-card {
    padding: 28px;
  }

  /* Stats */
  .stats {
    padding: 0 24px;
  }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats__item {
    padding: 36px 16px;
  }

  .stats__number {
    font-size: 36px;
  }

  .stats__label {
    font-size: 10px;
    letter-spacing: 2px;
  }

  /* Ecosystem */
  .ecosystem__header {
    margin-bottom: 48px;
  }

  .ecosystem__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .eco-card {
    aspect-ratio: auto;
    min-height: 280px;
  }

  .eco-card__content {
    padding: 28px;
    position: relative;
  }

  .eco-card__name {
    font-size: 20px;
  }

  .eco-card__desc {
    font-size: 13px;
  }

  /* Impact */
  .impact__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .impact__pillar {
    padding: 28px;
  }

  /* Future */
  .future__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .future__card {
    padding: 36px 20px;
  }

  /* Map */
  .map__grid {
    gap: 36px;
  }

  .map__visual {
    min-height: 300px;
  }

  .country-tags {
    gap: 8px;
  }

  .country-tag {
    padding: 6px 12px;
    font-size: 11px;
  }

  /* CTA */
  .cta__text {
    font-size: 15px;
  }

  .cta__button {
    padding: 14px 32px;
    font-size: 11px;
  }

  /* Footer */
  .footer {
    padding: 48px 24px;
  }

  .footer__links {
    flex-direction: column;
    gap: 32px;
  }
}

/* ============================================================
   RESPONSIVE — Small Mobile (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero__title {
    font-size: 28px;
  }

  .section-title {
    font-size: 26px;
  }

  .stats__grid {
    grid-template-columns: 1fr;
  }

  .stats__item {
    padding: 28px 16px;
  }

  .stats__number {
    font-size: 32px;
  }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  height: 40vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  position: relative;
  padding-top: 80px;
}

.contact-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a0d12 0%, #0a1628 30%, #0d1b12 60%, #0a0a0a 100%);
}

.contact-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

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

@media (max-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* Contact Form */
.form__group {
  margin-bottom: 24px;
}

.form__label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted-light);
  margin-bottom: 8px;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  border: 1px solid #d5cfc8;
  border-radius: 4px;
  background: #fff;
  color: var(--text-on-light);
  transition: border-color var(--transition-base);
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--burgundy);
}

.form__textarea {
  min-height: 140px;
  resize: vertical;
}

.form__submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: var(--burgundy);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition-base);
}

.form__submit:hover {
  background: var(--burgundy-light);
}

/* Contact Details */
.contact-details__item {
  margin-bottom: 28px;
}

.contact-details__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 8px;
}

.contact-details__text {
  font-size: 15px;
  color: var(--text-muted-light);
  line-height: 1.6;
}

.contact-details__text a {
  color: var(--text-on-light);
  transition: color var(--transition-base);
}

.contact-details__text a:hover {
  color: var(--burgundy);
}

.contact__map {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 4px;
  margin-top: 24px;
}

/* ============================================================
   PRIVACY PAGE
   ============================================================ */
.privacy__content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy__content h2 {
  font-size: 28px;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--text-on-light);
}

.privacy__content p {
  font-size: 15px;
  color: var(--text-muted-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.privacy__content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.privacy__content li {
  font-size: 15px;
  color: var(--text-muted-light);
  margin-bottom: 8px;
  line-height: 1.6;
  list-style: disc;
}
