:root {
  --color-bg: #1B2342;
  --color-text: #ffffff;
  --color-primary: #1F2937;
  --color-accent: #E63946;
  --color-surface: #ffffff;
  --radius: 14px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 10px 30px rgba(0,0,0,.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, "Helvetica Neue", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

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

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

/* Align section content and grids */
.section .container > *:not(.grid):not(.carousel):not(.products):not(.capabilities):not(.footprint-grid):not(form) { max-width: 72ch; }
.section .container > .grid { align-items: start; }
.section .container > h2.section__title { max-width: none; }

.section {
  padding: 96px 0;
}
.section.has-bg { position: relative; overflow: hidden; }
.section__bg { position: absolute; inset: -10% 0 -10% 0; background-image: var(--bg); background-size: cover; background-position: center; background-repeat: no-repeat; pointer-events: none; will-change: transform; }

.section__title {
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.2;
  margin: 0 0 20px;
}

.lead { font-size: 1.125rem; }

.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }

@media (min-width: 700px) {
  .grid--2 { grid-template-columns: 1.1fr .9fr; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* Buttons */
.btn {
  appearance: none;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn--accent {
  background: var(--color-accent);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--accent:hover { filter: brightness(0.95); }

/* Hero */
.hero {
  min-height: 72vh;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--color-text);
  background: var(--color-bg);
}
.hero__overlay { position: absolute; inset: 0; background: transparent; z-index: 2; }
.hero__content { position: relative; z-index: 3; }
.hero__content { text-align: center; }
.hero__title { font-size: clamp(32px, 6vw, 56px); margin: 0 0 12px; }
.hero__subtitle { margin: 0 0 24px; font-size: 1.1rem; opacity: 0.95; }
.hero__logo { width: clamp(120px, 18vw, 220px); height: auto; margin: 0 auto 14px; display: block; }

/* Globe canvas */
.hero__globe {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 1;
}
#globe { width: min(90vmin, 760px); height: min(90vmin, 760px); opacity: .85; filter: drop-shadow(0 20px 40px rgba(0,0,0,.25)); }

@media (max-width: 700px) {
  .hero { min-height: 62vh; }
}

/* Sequential fade on load */
.fade-seq { opacity: 0; transform: translateY(10px); }
.loaded .fade-seq { animation: fadeUp .7s ease forwards; animation-delay: calc(var(--i, 0) * 160ms); }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* About */
.about__media img { border-radius: var(--radius); box-shadow: var(--shadow-md); }

/* Cards / Capabilities */
.capabilities { margin-top: 24px; }
.card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  color: var(--color-text);
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.card > * { position: relative; z-index: 1; }
.card::before, .card::after { content: none; }
.card__icon { font-size: 28px; margin-bottom: 6px; }
.card__title { margin: 8px 0 6px; font-size: 1.05rem; }

/* Product tiles */
.card--tile { padding: 0; overflow: hidden; }
.card__thumb {
  aspect-ratio: 16/10;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
}
.card--tile .card__title { padding: 12px 0 18px; }

/* Reach */
.section--reach { position: relative; overflow: hidden; background: var(--color-bg); }
.reach__bg::before { content: none; }

/* Testimonials removed */

/* Remove previous reach bg image handled elsewhere */

/* List inline for reach */
.list--inline { list-style: none; padding: 0; margin: 14px 0 6px; display: flex; flex-wrap: wrap; gap: 8px 14px; }
.list--inline li { background: rgba(255, 255, 255, 0.1); border-radius: 999px; padding: 8px 14px; box-shadow: var(--shadow-sm); color: var(--color-text); }

/* Contact */
.form { margin-top: 12px; }
.form__row { margin-bottom: 14px; }
.form input, .form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  font: inherit;
  color: var(--color-text);
}
.form input::placeholder, .form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.form input:focus, .form textarea:focus { outline: 2px solid color-mix(in srgb, var(--color-accent) 30%, transparent); border-color: var(--color-accent); }
.form__note { margin-top: 10px; font-size: .95rem; }

/* Footer */
.footer {
  background-color: var(--color-primary);
  color: #F9FAFB;
  text-align: center;
  padding: 40px 20px;
  font-size: 14px;
}
.footer p { margin: 0 0 12px; }
.footer__links { margin-bottom: 16px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.footer__links a { color: #F9FAFB; text-decoration: underline; }
.footer__sub { opacity: .7; margin: 0; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); }
.reveal.reveal--visible { opacity: 1; transform: translateY(0); transition: opacity .6s ease, transform .6s ease; }

/* Utilities */
.section--capabilities { position: relative; background: transparent; }
.section--products { background: var(--color-bg); }

/* Footprint cards */
.footprint-grid { margin: 18px 0 8px; }
.footprint-card { overflow: hidden; padding: 0; }
.footprint-thumb { aspect-ratio: 16/10; background-image: var(--bg); background-size: cover; background-position: center; display: block; }
.footprint-card__body { display: flex; align-items: center; gap: 12px; padding: 14px 16px 18px; }
.footprint-card__flag { font-size: 22px; }
.footprint-card__title { font-weight: 600; }
.footprint-card__meta { font-size: .9rem; color: rgba(255, 255, 255, 0.7); }


