:root {
      --bg: #f7f4ef;
      --surface: #ffffff;
      --surface-soft: #fbfaf7;
      --text: #1e2428;
      --muted: #68727c;
      --green: #0b6b4b;
      --green-dark: #084c37;
      --blue: #2f5f73;
      --amber: #c9932c;
      --border: #e5e2dc;
      --shadow: 0 22px 70px rgba(30, 36, 40, 0.08);
      --radius: 18px;
      --max: 1180px;
    }
    * { box-sizing: border-box; }
    body {
      margin: 0;
      font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.55;
    }
    a { color: inherit; text-decoration: none; }
    .page { overflow: hidden; position: relative; }
    .grid-bg {
      position: fixed;
      inset: 0;
      z-index: -2;
      background-image:
        linear-gradient(rgba(11, 107, 75, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 107, 75, 0.04) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: linear-gradient(to bottom, black, transparent 85%);
    }
    .glow {
      position: fixed;
      width: 680px;
      height: 680px;
      right: -240px;
      top: -260px;
      background: radial-gradient(circle, rgba(11, 107, 75, 0.16), transparent 62%);
      z-index: -1;
      pointer-events: none;
    }
    .container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
    header {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(16px);
      background: rgba(247, 244, 239, 0.88);
      border-bottom: 1px solid rgba(229, 226, 220, 0.72);
    }
    .nav {
      height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      letter-spacing: 0.03em;
    }
    .logo-mark {
      width: 42px;
      height: 42px;
      border: 1px solid rgba(11, 107, 75, 0.28);
      border-radius: 10px;
      background: linear-gradient(145deg, #ffffff, #f0eee7);
      display: grid;
      place-items: center;
      box-shadow: 0 10px 30px rgba(30, 36, 40, 0.07);
      position: relative;
      overflow: hidden;
    }
    .logo-mark::before,
    .logo-mark::after {
      content: '';
      position: absolute;
      width: 58px;
      height: 2px;
      background: var(--green);
      transform: rotate(-28deg);
      opacity: 0.84;
    }
    .logo-mark::after { transform: rotate(-28deg) translateY(8px); opacity: 0.36; }
    .logo-text span {
      display: block;
      font-size: 9.5px;
      color: var(--muted);
      font-weight: 700;
      letter-spacing: 0.09em;
      margin-top: -4px;
      max-width: 210px;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
      color: #49525a;
      font-size: 14px;
      font-weight: 600;
    }
    .nav-links a:hover { color: var(--green); }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 20px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 14px;
      transition: 0.22s ease;
      border: 1px solid transparent;
      cursor: pointer;
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--green);
      color: #fff;
      box-shadow: 0 14px 32px rgba(11, 107, 75, 0.2);
    }
    .btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }
    .btn-secondary {
      background: rgba(255,255,255,0.78);
      border-color: var(--border);
      color: var(--text);
    }
    .btn-secondary:hover { border-color: rgba(11, 107, 75, 0.34); color: var(--green); }
    .hero { padding: 58px 0 46px; }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.02fr 0.98fr;
      gap: 56px;
      align-items: center;
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--green);
      background: rgba(11, 107, 75, 0.08);
      border: 1px solid rgba(11, 107, 75, 0.14);
      border-radius: 999px;
      padding: 9px 13px;
      font-size: 13px;
      font-weight: 800;
    }
    .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 5px rgba(11,107,75,0.12);
    }
    h1, h2, h3 {
      font-family: 'Space Grotesk', 'Inter', sans-serif;
      line-height: 1.02;
      letter-spacing: -0.045em;
      margin: 0;
    }
    h1 {
      font-size: clamp(44px, 6.6vw, 78px);
      max-width: 850px;
      margin-top: 24px;
    }
    .hero p {
      font-size: 18.5px;
      color: var(--muted);
      max-width: 680px;
      margin: 26px 0 0;
    }
    .hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
    .trust-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 34px; }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      color: #48525b;
      font-size: 14px;
    }
    .check {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      border: 1px solid rgba(11,107,75,0.25);
      color: var(--green);
      display: grid;
      place-items: center;
      font-size: 12px;
      background: rgba(255,255,255,0.78);
    }
    .office-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 22px;
      max-width: 620px;
    }
    .office-card {
      background: rgba(255,255,255,0.84);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 16px 18px;
      box-shadow: 0 12px 30px rgba(30,36,40,0.05);
    }
    .office-card strong {
      display: block;
      font-family: 'Space Grotesk', 'Inter', sans-serif;
      font-size: 17px;
      letter-spacing: -0.02em;
    }
    .office-card span {
      display: block;
      color: var(--muted);
      font-size: 13px;
      margin-top: 4px;
      font-weight: 600;
    }
    .hero-visual { min-height: 500px; position: relative; }
    .hero-photo {
      position: absolute;
      inset: 18px 0 0 24px;
      border-radius: 28px;
      box-shadow: var(--shadow);
      overflow: hidden;
      border: 1px solid var(--border);
      background: #fff;
    }
    .hero-photo img, .mini-map-card img, .corridor img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .hero-photo::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(17, 26, 24, 0.04) 0%, rgba(17, 26, 24, 0.02) 40%, rgba(17, 26, 24, 0.28) 100%);
      pointer-events: none;
    }
    .desert-badge, .map-card-title, .corridor-badge {
      position: absolute;
      left: 20px;
      bottom: 18px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.9);
      border: 1px solid rgba(229,226,220,0.92);
      border-radius: 999px;
      padding: 10px 14px;
      font-size: 12px;
      font-weight: 800;
      color: var(--text);
      box-shadow: 0 12px 36px rgba(30,36,40,0.12);
      z-index: 2;
    }
    .desert-badge::before, .map-card-title::before, .corridor-badge::before {
      content: '';
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 4px rgba(11,107,75,0.12);
    }
    .mini-map-card {
      position: absolute;
      top: -32px;
      left: -18px;
      width: 270px;
      height: 202px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 24px;
      box-shadow: 0 20px 54px rgba(30,36,40,0.15);
      overflow: hidden;
      z-index: 4;
    }
    .map-card-title { bottom: 12px; left: 12px; padding: 8px 11px; font-size: 11px; }
    .floating-panel {
      position: absolute;
      background: rgba(255,255,255,0.92);
      border: 1px solid var(--border);
      border-radius: 18px;
      box-shadow: 0 18px 50px rgba(30,36,40,0.1);
      padding: 18px;
      backdrop-filter: blur(12px);
      z-index: 3;
    }
    .panel-top {
      top: 38px;
      right: -34px;
      width: 205px;
    }
    .panel-bottom { bottom: 24px; left: 20px; width: 330px; }
    .panel-kicker {
      font-size: 11px;
      color: var(--green);
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
    .panel-title {
      font-family: 'Space Grotesk';
      font-weight: 700;
      font-size: 22px;
      letter-spacing: -0.03em;
      margin-top: 8px;
    }
    .panel-copy { margin-top: 7px; color: var(--muted); font-size: 13px; }
    .meter { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-top: 16px; }
    .meter span { height: 8px; border-radius: 99px; background: rgba(11,107,75,0.14); }
    .meter span:nth-child(2) { background: rgba(47,95,115,0.24); }
    .meter span:nth-child(3) { background: rgba(201,147,44,0.32); }
    section { padding: 82px 0; }
    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 28px;
      margin-bottom: 34px;
    }
    .section-head h2 { font-size: clamp(34px, 4vw, 54px); max-width: 760px; }
    .section-head p { max-width: 500px; color: var(--muted); margin: 0; font-size: 16px; }
    .regional {
      background: rgba(255,255,255,0.42);
      border-top: 1px solid rgba(229,226,220,0.82);
      border-bottom: 1px solid rgba(229,226,220,0.82);
    }
    .regional-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 28px;
      padding: 46px;
      box-shadow: var(--shadow);
      display: grid;
      grid-template-columns: 1fr 0.9fr;
      gap: 42px;
      position: relative;
      overflow: hidden;
    }
    .regional-card h2 { font-size: clamp(34px, 4vw, 56px); }
    .regional-card p { color: var(--muted); font-size: 17px; margin: 22px 0 0; }
    .proof-grid { display: grid; gap: 14px; position: relative; z-index: 1; }
    .proof {
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 20px;
      background: var(--surface-soft);
    }
    .proof strong { display: block; font-family: 'Space Grotesk'; font-size: 22px; letter-spacing: -0.03em; }
    .proof span { color: var(--muted); font-size: 14px; }
    .capabilities-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .service-card, .support-card, .case-card {
      background: rgba(255,255,255,0.86);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 26px;
      transition: 0.22s ease;
      position: relative;
      overflow: hidden;
    }
    .service-card:hover, .support-card:hover, .case-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 46px rgba(30, 36, 40, 0.08);
      border-color: rgba(11,107,75,0.24);
    }
    .service-number {
      font-family: 'Space Grotesk';
      color: rgba(11,107,75,0.38);
      font-weight: 800;
      font-size: 14px;
      margin-bottom: 24px;
    }
    .service-card h3, .support-card h3, .case-card h3 {
      font-size: 24px;
      letter-spacing: -0.035em;
      margin-bottom: 14px;
    }
    .service-card p, .support-card p, .case-card p {
      color: var(--muted);
      margin: 0;
      font-size: 15px;
    }
    .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
    .tag {
      font-size: 12px;
      font-weight: 700;
      color: #52606a;
      border: 1px solid var(--border);
      background: rgba(247,244,239,0.72);
      border-radius: 999px;
      padding: 7px 9px;
    }
    .support-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .support-card { min-height: 210px; }
    .support-icon {
      width: 42px; height: 42px; border-radius: 12px;
      background: rgba(11,107,75,0.08);
      border: 1px solid rgba(11,107,75,0.12);
      display: grid; place-items: center;
      color: var(--green); margin-bottom: 20px; font-weight: 900;
    }
    .why { background: #10231d; color: #fff; position: relative; }
    .why::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
      background-size: 44px 44px;
      opacity: 0.7;
    }
    .why .container { position: relative; z-index: 1; }
    .why .section-head p { color: rgba(255,255,255,0.68); }
    .why-list { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 36px; align-items: start; }
    .stat-box {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 24px;
      padding: 30px;
      min-height: 360px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .stat-box .big {
      font-family: 'Space Grotesk';
      font-size: 66px;
      line-height: 0.9;
      letter-spacing: -0.06em;
    }
    .stat-box p { color: rgba(255,255,255,0.72); max-width: 430px; }
    .why-items { display: grid; gap: 12px; }
    .why-item {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 18px;
      padding: 22px;
    }
    .why-item strong { display: block; font-family: 'Space Grotesk'; font-size: 22px; letter-spacing: -0.03em; }
    .why-item span { display: block; margin-top: 8px; color: rgba(255,255,255,0.68); }
    .case-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .case-card { min-height: 250px; display: flex; flex-direction: column; justify-content: space-between; }
    .case-label {
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.12em;
      color: var(--green);
      text-transform: uppercase;
    }
    .regional-strip {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 30px;
      padding: 56px;
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 38px;
      align-items: center;
      box-shadow: var(--shadow);
    }
    .regional-strip h2 { font-size: clamp(34px, 4vw, 54px); }
    .regional-strip p { color: var(--muted); font-size: 17px; }
    .corridor {
      border-radius: 24px;
      min-height: 320px;
      border: 1px solid var(--border);
      position: relative;
      overflow: hidden;
      box-shadow: 0 16px 42px rgba(30,36,40,0.08);
      background: linear-gradient(145deg, #f5f0e8, #ffffff);
    }
    .cta { padding-top: 20px; }
    .cta-box {
      text-align: center;
      background: linear-gradient(145deg, #ffffff, #f4f1ea);
      border: 1px solid var(--border);
      border-radius: 34px;
      padding: 70px 30px;
      box-shadow: var(--shadow);
    }
    .cta-box h2 { font-size: clamp(38px, 5vw, 66px); max-width: 900px; margin: 0 auto; }
    .cta-box p { max-width: 760px; margin: 22px auto 0; color: var(--muted); font-size: 18px; }
    .cta-actions { margin-top: 32px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
    footer {
      padding: 56px 0 34px;
      border-top: 1px solid var(--border);
      background: rgba(255,255,255,0.42);
    }
    .footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 40px; }
    .footer-brand p { color: var(--muted); max-width: 390px; }
    .footer-col h4 { margin: 0 0 16px; font-family: 'Space Grotesk'; }
    .footer-col a { display: block; color: var(--muted); font-weight: 600; margin: 10px 0; font-size: 14px; }
    .footer-col a:hover { color: var(--green); }
    .footer-bottom { color: var(--muted); font-size: 13px; margin-top: 42px; }
    .mobile-menu { display: none; }
    @media (max-width: 980px) {
      .nav-links, .nav .btn { display: none; }
      .mobile-menu { display: inline-flex; }
      .hero-grid, .regional-card, .why-list, .regional-strip { grid-template-columns: 1fr; }
      .hero-visual { min-height: 460px; }
      .support-grid, .case-grid { grid-template-columns: repeat(2, 1fr); }
      .section-head { align-items: start; flex-direction: column; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 640px) {
      .container { width: min(100% - 28px, var(--max)); }
      .hero { padding-top: 54px; }
      section { padding: 58px 0; }
      .hero p { font-size: 17px; }
      .hero-visual { min-height: 400px; }
      .hero-photo { inset: 22px 0 0 0; }
      .mini-map-card {
      position: absolute;
      top: -32px;
      left: -18px;
      width: 270px;
      height: 202px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 24px;
      box-shadow: 0 20px 54px rgba(30,36,40,0.15);
      overflow: hidden;
      z-index: 4;
    }
      .panel-top { width: 205px; }
      .panel-bottom { width: 250px; left: 8px; bottom: 0; }
      .regional-card, .regional-strip, .cta-box { padding: 30px; border-radius: 24px; }
      .capabilities-grid, .support-grid, .case-grid, .footer-grid, .office-row { grid-template-columns: 1fr; }
      .stat-box .big { font-size: 48px; }
      .nav { height: 68px; }
      h1 { font-size: 44px; }
    }

/* --- Hero overlay card positioning fix --- */
.hero-visual {
  overflow: visible;
}

.hero-photo {
  z-index: 1;
}

.mini-map-card {
  top: -32px !important;
  left: -18px !important;
  width: 270px !important;
  height: 202px !important;
  z-index: 4 !important;
}

.panel-top {
  top: 38px !important;
  right: -34px !important;
  width: 205px !important;
  z-index: 5 !important;
}

.panel-bottom {
  bottom: 22px !important;
  left: -22px !important;
  width: 285px !important;
  z-index: 5 !important;
}

.panel-top,
.panel-bottom,
.mini-map-card {
  pointer-events: none;
}

@media (max-width: 980px) {
  .panel-top {
    right: 12px !important;
    top: 190px !important;
  }

  .panel-bottom {
    left: 12px !important;
    bottom: 10px !important;
  }

  .mini-map-card {
    left: -8px !important;
    top: -18px !important;
    width: 200px !important;
    height: 150px !important;
  }
}

@media (max-width: 640px) {
  .panel-top {
    right: 10px !important;
    top: 165px !important;
    width: 180px !important;
  }

  .panel-bottom {
    left: 10px !important;
    bottom: 10px !important;
    width: 235px !important;
  }

  .mini-map-card {
    width: 175px !important;
    height: 132px !important;
    left: -6px !important;
    top: -14px !important;
  }
}


/* --- Technical Documentation card bottom-right fix --- */
.hero-visual {
  overflow: visible;
}

.panel-bottom {
  bottom: 18px !important;
  left: auto !important;
  right: -18px !important;
  width: 285px !important;
  z-index: 5 !important;
}

@media (max-width: 980px) {
  .panel-bottom {
    right: 12px !important;
    left: auto !important;
    bottom: 10px !important;
    width: 260px !important;
  }
}

@media (max-width: 640px) {
  .panel-bottom {
    right: 10px !important;
    left: auto !important;
    bottom: 10px !important;
    width: 220px !important;
  }
}


/* --- Clean hero: remove overlay cards and enlarge map --- */
.floating-panel,
.panel-top,
.panel-bottom {
  display: none !important;
}

.hero-visual {
  overflow: visible;
}

.mini-map-card {
  top: -44px !important;
  left: -28px !important;
  width: 340px !important;
  height: 245px !important;
  z-index: 4 !important;
  border-radius: 28px !important;
  box-shadow: 0 24px 64px rgba(30,36,40,0.16) !important;
}

.map-card-title {
  bottom: 14px !important;
  left: 14px !important;
  padding: 9px 13px !important;
  font-size: 11.5px !important;
}

@media (max-width: 980px) {
  .mini-map-card {
    top: -26px !important;
    left: -14px !important;
    width: 250px !important;
    height: 180px !important;
  }
}

@media (max-width: 640px) {
  .mini-map-card {
    top: -18px !important;
    left: -8px !important;
    width: 205px !important;
    height: 150px !important;
  }
}
