/* =====================================================
   WNR LLC — Mockup 2: "Meridian Light"
   White-dominant, bold green geometry
   Syne display + Jost body
   ===================================================== */

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --g950: #031509;
  --g900: #062210;
  --g800: #0a3520;
  --g700: #0d4a2a;
  --g500: #009448;
  --g400: #12b05a;
  --g300: #4dcc88;
  --g200: #c0ecd4;
  --g100: #eaf7f0;
  --g50:  #f5fdf8;
  --white: #ffffff;

  --ink:   #0d1e13;
  --ink-2: #2b4636;
  --ink-3: #5c7a68;
  --ink-4: #8faa97;

  --font-head: 'Syne', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Jost', 'Segoe UI', system-ui, sans-serif;

  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --t:        0.28s;
  --t-slow:   0.55s;

  --nav-h: 72px;
  --max:   1180px;
  --pad:   clamp(1.25rem, 5vw, 3rem);
}

/* ── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--white);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}
img    { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
a      { text-decoration: none; color: inherit; }
address { font-style: normal; }
button  { font-family: inherit; cursor: pointer; border: none; background: none; }
svg    { display: block; }

::selection { background: var(--g500); color: #fff; }
::-webkit-scrollbar       { width: 4px; }
::-webkit-scrollbar-track { background: var(--g50); }
::-webkit-scrollbar-thumb { background: var(--g500); border-radius: 2px; }

/* ── LAYOUT ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* ── TYPOGRAPHY ─────────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-head); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); color: var(--ink); }
h3 { font-size: 1.1rem; font-weight: 600; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--g500);
  margin-bottom: 1rem;
}
.section-tag::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--g500);
  flex-shrink: 0;
}
.section-tag--light { color: var(--g300); }
.section-tag--light::before { background: var(--g300); }

.section-header { margin-bottom: 3rem; }
.section-header h2 em { font-style: italic; color: var(--g500); }
.section-sub {
  font-size: 1rem;
  color: var(--ink-3);
  max-width: 540px;
  margin-top: 0.85rem;
  line-height: 1.75;
}
.section-header--light h2 { color: var(--white); }
.text-white { color: var(--white) !important; }

/* ── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 3px;
  transition: background var(--t), color var(--t), border-color var(--t),
              transform var(--t), box-shadow var(--t);
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform var(--t); }
.btn:hover { transform: translateY(-2px); }
.btn:hover svg { transform: translateX(3px); }

.btn-green {
  background: var(--g500);
  color: var(--white);
  border-color: var(--g500);
}
.btn-green:hover {
  background: var(--g400);
  border-color: var(--g400);
  box-shadow: 0 8px 28px rgba(0,148,72,0.32);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: rgba(13,30,19,0.3);
}
.btn-outline:hover {
  border-color: var(--g500);
  color: var(--g500);
}

/* Light variant — for dark backgrounds (hero, contact, etc.) */
.btn-outline-light {
  background: transparent;
  color: rgba(255,255,255,0.78);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline-light:hover {
  border-color: var(--g400);
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.btn-full { width: 100%; justify-content: center; }

/* ── REVEAL ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--t-slow) var(--ease-out),
              transform var(--t-slow) var(--ease-out);
  transition-delay: var(--delay, 0s);
}
.reveal.in { opacity: 1; transform: none; }

/* ── KEYFRAMES ──────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes lineGrow {
  0%, 100% { transform: scaleY(0); opacity: 0.4; }
  50%       { transform: scaleY(1); opacity: 1; }
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,148,72,0.5); }
  50%       { box-shadow: 0 0 0 8px rgba(0,148,72,0); }
}

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: fixed;
  inset-block-start: 0; inset-inline: 0;
  z-index: 900;
  height: var(--nav-h);
  background: rgba(255,255,255,0);
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease),
              border-color 0.4s var(--ease),
              box-shadow 0.4s var(--ease);
}
.navbar.on {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-bottom-color: rgba(0,148,72,0.12);
  box-shadow: 0 2px 24px rgba(0,0,0,0.07);
}

.nav-wrap {
  max-width: var(--max);
  height: 100%;
  margin-inline: auto;
  padding-inline: var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo { display: flex; align-items: center; }
.logo-img  { height: 40px; width: auto; }
.logo-text {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.logo-dot { color: var(--g500); }

/* Navbar links are white-ish on transparent hero, dark on scrolled */
.nav-link {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--t);
  position: relative;
  padding-block: 0.3rem;
}
.navbar.on .nav-link { color: var(--ink-2); }
.nav-link::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--g500);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t) var(--ease);
}
.nav-link:hover,
.nav-link.active { color: var(--g500) !important; }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-cta {
  background: var(--g500) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 3px;
  font-size: 0.68rem !important;
  letter-spacing: 0.08em !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover  { background: var(--g400) !important; color: var(--white) !important; }

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 901;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t) var(--ease), opacity var(--t), background var(--t);
  transform-origin: center;
}
.navbar.on .nav-burger span { background: var(--ink); }
.nav-burger.open span { background: var(--white) !important; }
.nav-burger.open { z-index: 1001; }
.nav-burger.open span:nth-child(1) { transform: translate(0,7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translate(0,-7px) rotate(-45deg); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  background: var(--g950);  /* dark bg so white nav links are visible initially */
}

/* Full-bleed photo covers entire hero on mobile */
.hero-bg-full {
  position: absolute; inset: 0;
  background-image: url('/assets/images/logistic_bg.jpg');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}
.hero-bg-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to right,
    rgba(3,21,9,0.88) 0%,
    rgba(3,21,9,0.70) 55%,
    rgba(3,21,9,0.40) 100%
  ), linear-gradient(
    to top,
    rgba(3,21,9,0.6) 0%,
    transparent 40%
  );
}

.hero-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + clamp(3rem, 8vw, 6rem)) var(--pad) clamp(4rem, 8vw, 7rem);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: fadeIn 0.6s var(--ease-out) 0.15s both;
}
.hero-tag {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--g300);
}
.hero-tag-div {
  width: 1px; height: 14px;
  background: rgba(255,255,255,0.2);
}

/* Hero title — NO reveal class, pure CSS animations */
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3.8rem, 10vw, 8rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 2rem;
}
.ht-line {
  display: block;
  animation: fadeUp 0.7s var(--ease-out) both;
}
.ht-line:nth-child(1) { animation-delay: 0.25s; }
.ht-line:nth-child(2) { animation-delay: 0.42s; }
.ht-line:nth-child(3) { animation-delay: 0.59s; }

/* Outlined green text — "Without" */
.ht-outline {
  -webkit-text-stroke: 2px var(--g400);
  color: transparent;
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: rgba(255,255,255,0.6);
  max-width: 460px;
  line-height: 1.78;
  margin-bottom: 2.25rem;
  font-weight: 300;
  animation: fadeUp 0.7s var(--ease-out) 0.75s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeUp 0.7s var(--ease-out) 0.95s both;
}

/* Floating stat card */
.hero-float-card {
  position: absolute;
  bottom: 2.5rem; right: var(--pad);
  z-index: 2;
  background: rgba(10,53,32,0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0,148,72,0.3);
  border-left: 3px solid var(--g400);
  padding: 1.25rem 1.5rem;
  animation: fadeIn 0.8s var(--ease-out) 1.2s both;
}
.hfc-label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--g300);
  margin-bottom: 0.4rem;
}
.hfc-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hfc-num sup { font-size: 1rem; color: var(--g400); vertical-align: top; line-height: 1; padding-top: 0.35rem; display: inline-block; }
.hfc-sub {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.3rem;
}

/* Scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: var(--pad);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
  animation: fadeIn 1s var(--ease-out) 1.6s both;
}
.hs-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--g400), transparent);
  transform-origin: top;
  animation: lineGrow 2.4s ease-in-out 2s infinite;
}
.hs-text {
  font-family: var(--font-head);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
}

/* =====================================================
   STATS BAR
   ===================================================== */
.stats-bar {
  background: var(--g500);
  padding-block: 2.75rem;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: 'WNR LLC';
  position: absolute;
  right: -1%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-head);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 800;
  color: rgba(255,255,255,0.07);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.03em;
  user-select: none;
}

.stats-inner {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
}
.stat-n {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 6.5vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-l {
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* =====================================================
   ABOUT
   ===================================================== */
.about {
  padding-block: clamp(4rem, 10vw, 8rem);
  background: var(--white);
}

.about-wrap {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad);
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.about-img-col {
  position: relative;
  padding-bottom: 2.5rem; /* space for the badge that pokes below */
}
.about-img-frame {
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 94%, 96% 100%, 0 100%);
}
.about-img-frame img {
  width: 100%;
  height: clamp(300px, 50vw, 580px);
  object-fit: cover;
  filter: saturate(0.9);
  transition: transform 0.8s var(--ease-out);
  display: block;
}
.about-img-frame:hover img { transform: scale(1.03); }

.about-badge {
  position: absolute;
  bottom: 0; right: 1.5rem;
  background: var(--g500);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  text-align: center;
  min-width: 120px;
}
.ab-n {
  display: block;
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}
.ab-l {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.82;
  margin-top: 0.3rem;
  line-height: 1.4;
}

.about-text-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-text-col h2 em { color: var(--g500); font-style: italic; }

.about-lead {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--ink-2);
  line-height: 1.72;
}
.about-body {
  font-size: 0.93rem;
  color: var(--ink-3);
  line-height: 1.82;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--g100);
  border: 1px solid var(--g100);
  margin-block: 0.5rem;
}
.pillar {
  background: var(--white);
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  border-left: 3px solid transparent;
  transition: border-color var(--t), background var(--t);
}
.pillar:hover { border-left-color: var(--g500); background: var(--g50); }
.pillar-bar {
  width: 20px; height: 2px;
  background: var(--g500);
  margin-bottom: 0.4rem;
  transition: width var(--t);
}
.pillar:hover .pillar-bar { width: 36px; }
.pillar strong {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}
.pillar span { font-size: 0.8rem; color: var(--ink-3); line-height: 1.6; }

/* =====================================================
   SERVICES
   ===================================================== */
.services {
  padding-block: clamp(4rem, 10vw, 7rem);
  background: var(--g50);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--g500);
}

.svc-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--g100);
  border: 1px solid var(--g100);
}

.svc-row {
  display: grid;
  grid-template-columns: 2.5ch 1fr 36px;
  gap: 1.25rem;
  align-items: start;
  padding: 1.5rem 1.25rem;
  background: var(--white);
  border-left: 3px solid transparent;
  transition: border-color var(--t), background var(--t), transform var(--t);
}
.svc-row:hover {
  border-left-color: var(--g500);
  background: var(--g50);
  transform: translateX(3px);
}

.svc-num {
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--g500);
  opacity: 0.65;
  padding-top: 0.2rem;
}

.svc-body { display: flex; flex-direction: column; gap: 0.45rem; }
.svc-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.svc-head h3 {
  font-size: 0.97rem;
  color: var(--ink);
  font-weight: 700;
}
.svc-tag {
  font-family: var(--font-head);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--g500);
  background: var(--g100);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
}
.svc-body p { font-size: 0.87rem; color: var(--ink-3); line-height: 1.7; }

.svc-arrow {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--g200);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--ink-3);
  transition: background var(--t), border-color var(--t), color var(--t);
}
.svc-arrow svg { width: 14px; height: 14px; transition: transform var(--t); }
.svc-row:hover .svc-arrow {
  background: var(--g500);
  border-color: var(--g500);
  color: var(--white);
}
.svc-row:hover .svc-arrow svg { transform: translateX(2px); }

/* =====================================================
   PROCESS
   ===================================================== */
.process {
  padding-block: clamp(4rem, 10vw, 7rem);
  background: var(--g900);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: 'HOW';
  position: absolute;
  bottom: -0.1em; left: -0.05em;
  font-family: var(--font-head);
  font-size: clamp(8rem, 22vw, 20rem);
  font-weight: 800;
  color: rgba(0,148,72,0.06);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.04em;
  user-select: none;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.06);
}

.proc-card {
  background: var(--g800);
  padding: 2.25rem 1.75rem;
  position: relative;
  border-top: 2px solid transparent;
  transition: border-color var(--t), background var(--t);
  overflow: hidden;
}
.proc-card:hover {
  background: var(--g700);
  border-top-color: var(--g500);
}

.proc-n {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--g500);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 0.75rem;
  transition: opacity var(--t);
  letter-spacing: -0.04em;
}
.proc-card:hover .proc-n { opacity: 0.26; }

.proc-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.55rem;
}
.proc-desc { font-size: 0.86rem; color: rgba(255,255,255,0.45); line-height: 1.75; }

.proc-line {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--g500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.proc-card:hover .proc-line { transform: scaleX(1); }

/* =====================================================
   GLOBAL
   ===================================================== */
.global {
  padding-block: clamp(4rem, 10vw, 7rem);
  background: var(--white);
}

.global-header {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad);
  margin-bottom: 2.5rem;
}
.global-header h2 em { color: var(--g500); font-style: italic; }

.global-map-band {
  position: relative;
  overflow: hidden;
}
.global-map-band img {
  width: 100%;
  height: clamp(200px, 32vw, 400px);
  object-fit: cover;
  filter: saturate(0.2) brightness(0.65) sepia(0.1);
  transition: filter 0.8s var(--ease-out);
  display: block;
}
.global-map-band:hover img { filter: saturate(0.4) brightness(0.78); }
.global-map-fade {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    var(--white) 0%, transparent 12%,
    transparent 88%, var(--white) 100%
  ), linear-gradient(
    to right,
    var(--white) 0%, transparent 8%,
    transparent 92%, var(--white) 100%
  );
  pointer-events: none;
}

.global-regions {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad);
  padding-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--g100);
  border: 1px solid var(--g100);
}

.region {
  background: var(--white);
  padding: 1.4rem 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  border-left: 3px solid transparent;
  transition: border-color var(--t), background var(--t);
}
.region:hover { border-left-color: var(--g500); background: var(--g50); }
.region-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--g500);
  flex-shrink: 0;
  margin-top: 0.4rem;
  box-shadow: 0 0 0 3px rgba(0,148,72,0.14);
  animation: dotPulse 3s ease-in-out infinite;
}
.region:nth-child(2) .region-dot { animation-delay: 0.5s; }
.region:nth-child(3) .region-dot { animation-delay: 1s; }
.region:nth-child(4) .region-dot { animation-delay: 1.5s; }
.region:nth-child(5) .region-dot { animation-delay: 2s; }
.region:nth-child(6) .region-dot { animation-delay: 2.5s; }
.region strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.region span { font-size: 0.76rem; color: var(--ink-3); }

/* =====================================================
   WHY US
   ===================================================== */
.whyus {
  padding-block: clamp(4rem, 10vw, 7rem);
  background: var(--g50);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--g100);
  border-top: 3px solid transparent;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-top-color var(--t), box-shadow var(--t), transform var(--t);
}
.why-card:hover {
  border-top-color: var(--g500);
  box-shadow: 0 10px 36px rgba(0,148,72,0.1);
  transform: translateY(-3px);
}

.wc-icon {
  width: 46px; height: 46px;
  background: var(--g100);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t);
}
.wc-icon svg { width: 20px; height: 20px; stroke: var(--g500); transition: stroke var(--t); }
.why-card:hover .wc-icon { background: var(--g500); }
.why-card:hover .wc-icon svg { stroke: var(--white); }

.why-card h3 { font-size: 0.97rem; font-weight: 700; color: var(--ink); }
.why-card p  { font-size: 0.86rem; color: var(--ink-3); line-height: 1.76; }

/* =====================================================
   CONTACT
   ===================================================== */
.contact { background: var(--g900); }

.contact-wrap {
  max-width: var(--max);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}

.contact-left {
  padding: clamp(3rem, 8vw, 5rem) var(--pad);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-left h2 { color: var(--white); }

.contact-intro {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.5);
  max-width: 420px;
  line-height: 1.82;
  font-weight: 300;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem;
  margin-top: 0.5rem;
}
.contact-info li { display: flex; align-items: flex-start; gap: 1rem; }
.contact-info svg {
  width: 18px; height: 18px;
  stroke: var(--g400);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--g400);
  margin-bottom: 0.2rem;
}
.contact-info span,
.contact-info a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
}

.contact-right {
  padding: clamp(2.5rem, 8vw, 5rem) var(--pad);
  background: var(--g800);
}

.form-error {
  background: rgba(200,40,40,0.12);
  border: 1px solid rgba(200,40,40,0.3);
  color: #fca5a5;
  padding: 0.85rem 1rem;
  font-size: 0.84rem;
  margin-bottom: 1.25rem;
  border-radius: 2px;
}

.cform { display: flex; flex-direction: column; gap: 1rem; }
.cform-row { display: flex; flex-direction: column; gap: 1rem; }

.cform-field { display: flex; flex-direction: column; gap: 0.4rem; }
.cform-field label {
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.cform-field label span { color: var(--g400); }
.cform-field input,
.cform-field select,
.cform-field textarea {
  background: rgba(3,21,9,0.55);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  color: var(--white);
  padding: 0.82rem 1rem;
  font-size: 0.9rem;
  font-family: var(--font-body);
  font-weight: 300;
  width: 100%;
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
}
.cform-field select { appearance: none; cursor: pointer; }
.cform-field input:focus,
.cform-field select:focus,
.cform-field textarea:focus {
  border-color: var(--g500);
  box-shadow: 0 0 0 3px rgba(0,148,72,0.16);
}
.cform-field input::placeholder,
.cform-field textarea::placeholder { color: rgba(255,255,255,0.18); font-style: italic; }
.cform-field textarea { resize: vertical; min-height: 130px; }
.cform .btn { margin-top: 0.5rem; }

.form-ok {
  text-align: center;
  padding: 4rem 1.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.form-ok-icon {
  width: 60px; height: 60px;
  background: var(--g500);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.form-ok-icon svg { width: 28px; height: 28px; stroke: var(--white); }
.form-ok h3 { font-family: var(--font-head); font-size: 1.5rem; color: var(--white); font-weight: 700; }
.form-ok p  { font-size: 0.88rem; color: rgba(255,255,255,0.45); }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--g950);
  padding-block-start: 4rem;
  border-top: 3px solid var(--g500);
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo-img  { height: 40px; margin-bottom: 0.85rem; }
.footer-logo-text {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}
.footer-logo-text span { color: var(--g400); }
.footer-brand p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
  max-width: 280px;
  font-weight: 300;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--g400);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col li,
.footer-col address,
.footer-col a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.28);
  line-height: 1.65;
  font-weight: 300;
  transition: color var(--t);
}
.footer-col a:hover { color: var(--g400); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-block: 1.75rem;
  text-align: center;
}
.footer-bottom p {
  font-family: var(--font-head);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
}

/* ── FOOTER SOCIALS ──────────────────────────────────── */
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  padding-bottom: 1.25rem;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.45);
  transition: border-color var(--t) var(--ease), color var(--t) var(--ease), background var(--t) var(--ease);
}
.footer-socials a:hover {
  border-color: var(--g400);
  color: var(--g400);
  background: rgba(0,148,72,0.08);
}
.footer-socials svg { width: 16px; height: 16px; fill: currentColor; }

/* ── BACK TO TOP ─────────────────────────────────────── */
.btt {
  position: fixed;
  bottom: 1.75rem; right: 1.75rem;
  width: 46px; height: 46px;
  background: var(--g500);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  border-radius: 3px;
  z-index: 500;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--t), transform var(--t), background var(--t);
  pointer-events: none;
}
.btt svg { width: 18px; height: 18px; }
.btt.show { opacity: 1; transform: none; pointer-events: auto; }
.btt:hover { background: var(--g400); transform: translateY(-2px) !important; }

/* =====================================================
   RESPONSIVE — TABLET (≥ 640px)
   ===================================================== */
@media (min-width: 640px) {
  .stats-inner    { grid-template-columns: repeat(4, 1fr); }
  .pillars-grid   { grid-template-columns: repeat(2, 1fr); }
  .process-grid   { grid-template-columns: repeat(2, 1fr); }
  .global-regions { grid-template-columns: repeat(3, 1fr); }
  .why-grid       { grid-template-columns: repeat(2, 1fr); }
  .cform-row      { flex-direction: row; }
  .footer-nav     { grid-template-columns: repeat(3, 1fr); }
}

/* =====================================================
   RESPONSIVE — DESKTOP (≥ 1024px)
   ===================================================== */
@media (min-width: 1024px) {
  /* Navbar */
  .nav-burger { display: none !important; }
  .nav-menu   { display: flex !important; }

  /* About */
  .about-wrap     { flex-direction: row; align-items: flex-start; gap: 6rem; }
  .about-img-col  { flex: 0 0 44%; }
  .about-text-col { flex: 1; }
  .pillars-grid   { grid-template-columns: 1fr; }

  /* Process — 4 columns */
  .process-grid   { grid-template-columns: repeat(4, 1fr); }

  /* Global */
  .global-regions { grid-template-columns: repeat(6, 1fr); }

  /* Why Us */
  .why-grid       { grid-template-columns: repeat(4, 1fr); }

  /* Contact */
  .contact-wrap   { flex-direction: row; }
  .contact-left   { flex: 1; padding-right: clamp(2rem, 4vw, 4rem); }
  .contact-right  { flex: 0 0 52%; }

  /* Footer */
  .footer-top     { flex-direction: row; align-items: flex-start; }
  .footer-brand   { flex: 0 0 240px; }
  .footer-nav     { flex: 1; gap: 3rem; }
}

/* =====================================================
   MOBILE NAV (< 1024px)
   ===================================================== */
@media (max-width: 1023px) {
  /* Remove backdrop-filter from navbar on mobile — it creates a new stacking
     context on the fixed <header>, which breaks the fixed-positioned nav menu
     overlay after the user scrolls (the menu becomes relative to the navbar
     rather than the viewport). Solid background is used instead. */
  .navbar.on {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(255,255,255,0.98) !important;
  }

  .nav-burger { display: flex !important; }
  .nav-menu {
    position: fixed; inset: 0;
    background: rgba(6,34,16,0.97);
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    z-index: 1000;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-link {
    font-size: 1rem !important;
    letter-spacing: 0.08em !important;
    color: rgba(255,255,255,0.65) !important;
  }
  .nav-cta {
    padding: 0.85rem 2.5rem !important;
    font-size: 0.82rem !important;
  }
}

/* =====================================================
   REDUCED MOTION
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =====================================================
   CAREERS PAGE
   ===================================================== */

/* Department cards grid */
.dept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.dept-card {
  background: var(--white);
  border: 1.5px solid var(--g100);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  transition: box-shadow var(--t) var(--ease-out), transform var(--t) var(--ease-out), border-color var(--t) var(--ease-out);
}
.dept-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  transform: translateY(-5px);
  border-color: var(--g300);
}
.dept-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-head);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--g500);
  background: var(--g100);
  padding: 0.28rem 0.8rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}
.dept-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.55rem;
  line-height: 1.25;
}
.dept-desc {
  font-size: 0.86rem;
  color: var(--ink-3);
  line-height: 1.68;
  margin-bottom: 1.25rem;
}
.dept-positions {
  border-top: 1px solid var(--g100);
  padding-top: 0.85rem;
}
.dept-positions li {
  font-size: 0.82rem;
  color: var(--ink-2);
  padding: 0.32rem 0 0.32rem 1.1rem;
  border-bottom: 1px solid var(--g50);
  position: relative;
  font-weight: 400;
}
.dept-positions li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--g500);
  border-radius: 50%;
}
.dept-positions li:last-child { border-bottom: none; }

/* Requirements cards */
.req-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}
.req-card {
  border-left: 3px solid var(--g500);
  padding-left: 1.5rem;
}
.req-label {
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--g500);
  display: block;
  margin-bottom: 0.5rem;
}
.req-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.55rem;
}
.req-body {
  font-size: 0.88rem;
  color: var(--ink-3);
  line-height: 1.72;
}

/* Careers section spacing */
.careers-departments { padding-block: clamp(4rem, 8vw, 7rem); background: var(--g50); }
.careers-responsibilities { padding-block: clamp(4rem, 8vw, 7rem); }
.careers-requirements { padding-block: clamp(4rem, 8vw, 7rem); background: var(--g50); }

/* Responsive: 4-col dept grid on wide screens */
@media (min-width: 1024px) {
  .dept-grid { grid-template-columns: repeat(4, 1fr); }
  .req-grid  { grid-template-columns: repeat(3, 1fr); }
}
