/* =====================================================================
   New Frontier Transport & Logistics
   Global Stylesheet
   Brand: Moving Business Beyond Borders. One Mile at a Time.
   ===================================================================== */

/* ----------  Design Tokens  ---------- */
:root {
  /* Brand palette (from Branding Guide) */
  --red:        #E6332A;
  --red-dark:   #b81f18;
  --red-light:  #ff5147;
  --black:      #050505;
  --charcoal:   #343A40;
  --grey:       #6D6E71;
  --grey-light: #F4F4F4;
  --white:      #FFFFFF;

  --ink:        #1c1f22;   /* primary text */
  --line:       #e7e8ea;   /* hairline dividers */

  /* Typography */
  --font-head: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Montserrat", "Segoe UI", sans-serif;

  /* Layout */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --radius-sm: 8px;

  /* Effects */
  --shadow-sm: 0 4px 14px rgba(5, 5, 5, .06);
  --shadow:    0 18px 50px rgba(5, 5, 5, .12);
  --shadow-red:0 18px 40px rgba(230, 51, 42, .28);

  --ease: cubic-bezier(.22, 1, .36, 1);
  --header-h: 86px;
}

/* ----------  Reset  ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 16.5px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--black);
}

/* ----------  Helpers  ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding: clamp(64px, 9vw, 130px) 0; position: relative; }
.section--grey { background: var(--grey-light); }
.section--dark { background: var(--black); color: #d6d8db; }
/* subtle dotted world-map texture on white sections */
.section:not(.section--grey):not(.section--dark)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../dot_map_2.png") center center / cover no-repeat;
  opacity: .1;
  pointer-events: none;
  z-index: 0;
}
.section > * { position: relative; z-index: 1; }
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: #fff; }

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.measure { max-width: 760px; }

/* Eyebrow / section labels (bold red labels per guide) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .76rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 2px;
  background: var(--red);
}
.eyebrow--center { justify-content: center; }

/* Section titles — bold italic accent style per guide */
.title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: -.02em;
}
.title em, .accent-italic {
  font-style: italic;
  color: var(--red);
  font-weight: 800;
}
.lead {
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: var(--charcoal);
  max-width: 720px;
}
.section-head { margin-bottom: clamp(38px, 5vw, 60px); }
.section-head.text-center .lead { margin-inline: auto; }

/* ----------  Buttons  ---------- */
.btn {
  --bg: var(--red);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .01em;
  padding: 9px 17px;
  border: 2px solid transparent;
  border-radius: 50px;
  background: var(--bg);
  color: var(--fg);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn svg { width: 15px; height: 15px; }
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-red); }
.btn--lg { padding: 9px 17px; font-size: .8rem; }

.btn--ghost {
  --bg: transparent;
  --fg: #fff;
  border-color: rgba(255, 255, 255, .55);
}
.btn--ghost:hover { background: #fff; color: var(--black); box-shadow: none; }

.btn--dark { --bg: var(--black); --fg: #fff; }
.btn--dark:hover { box-shadow: 0 18px 40px rgba(5, 5, 5, .3); }

.btn--outline {
  --bg: transparent;
  --fg: var(--black);
  border-color: var(--ink);
}
.btn--outline:hover { background: var(--black); color: #fff; box-shadow: none; }

/* link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
  color: var(--red);
}
.link-arrow svg { width: 17px; height: 17px; transition: transform .3s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* =====================================================================
   HEADER / NAV
   ===================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s, border-color .3s, background .3s;
}
.site-header.scrolled {
  background: var(--white);
  box-shadow: 0 6px 24px rgba(5, 5, 5, .08);
  border-color: var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 62px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(4px, 1.2vw, 14px);
  margin-left: auto;
}
.nav-links > a,
.nav-links .nav-trigger {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .88rem;
  color: var(--charcoal);
  padding: 8px 4px;
  position: relative;
  transition: color .25s;
  background: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}
.nav-links > a::after,
.nav-links .nav-trigger::after {
  content: "";
  position: absolute;
  left: 4px; right: 4px; bottom: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-links > a:hover,
.nav-links > a[aria-current="page"],
.nav-links .nav-trigger:hover,
.nav-links .nav-item.active .nav-trigger { color: var(--black); }
.nav-links > a:hover::after,
.nav-links > a[aria-current="page"]::after,
.nav-links .nav-item:hover .nav-trigger::after,
.nav-links .nav-item.active .nav-trigger::after { transform: scaleX(1); }

/* dropdown menus */
.nav-item { position: relative; }
.nav-trigger .chev { width: 13px; height: 13px; transition: transform .3s var(--ease); }
.nav-item:hover .nav-trigger .chev,
.nav-item:focus-within .nav-trigger .chev { transform: rotate(180deg); }
.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 232px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 8px;
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  z-index: 50;
}
.dropdown::before {
  content: "";
  position: absolute;
  top: -14px; left: 0; right: 0; height: 14px;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .88rem;
  color: var(--charcoal);
  padding: 11px 16px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background .2s, color .2s, padding .2s;
}
.dropdown a::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
  opacity: 0;
  transform: scale(.4);
  transition: opacity .2s, transform .2s;
}
.dropdown a:hover,
.dropdown a[aria-current="page"] { background: var(--grey-light); color: var(--black); }
.dropdown a:hover::before,
.dropdown a[aria-current="page"]::before { opacity: 1; transform: scale(1); }

.nav-cta { display: flex; align-items: center; gap: 10px; margin-left: 10px; }
.nav-cta .btn { padding: 9px 17px; font-size: .8rem; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 2px;
  background: var(--black);
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle span::before { transform: translate(-50%, -7px); }
.nav-toggle span::after  { transform: translate(-50%, 5px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translate(-50%, -50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translate(-50%, -50%) rotate(-45deg); }

/* =====================================================================
   HERO (home)
   ===================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  color: #fff;
  overflow: hidden;
  background: #111;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center right;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(5,5,5,.92) 0%, rgba(5,5,5,.72) 38%, rgba(5,5,5,.25) 70%, rgba(5,5,5,.45) 100%);
}
/* diagonal red panel accent */
.hero__panel {
  position: absolute;
  top: 0; bottom: 0;
  left: -8%;
  width: 56%;
  background: linear-gradient(135deg, rgba(230,51,42,.16), rgba(230,51,42,0));
  clip-path: polygon(0 0, 78% 0, 56% 100%, 0 100%);
  z-index: 1;
  pointer-events: none;
}
/* map line overlay */
.hero__map {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .5;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero__inner { max-width: 720px; padding-block: 60px; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -.025em;
}
.hero h1 em { font-style: italic; color: var(--red-light); }
.hero__sub {
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  color: #d8dadd;
  margin-top: 22px;
  max-width: 560px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}
.hero__tagline {
  margin-top: 40px;
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 600;
  letter-spacing: .02em;
  color: rgba(255,255,255,.62);
}
.hero__tagline span { color: var(--red-light); }

.scroll-cue {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: .68rem; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
  font-family: var(--font-head);
}
.scroll-cue i {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 14px;
  position: relative;
}
.scroll-cue i::after {
  content: ""; position: absolute; top: 7px; left: 50%;
  width: 4px; height: 7px; border-radius: 3px;
  background: #fff; transform: translateX(-50%);
  animation: scrolldot 1.6s infinite;
}
@keyframes scrolldot { 0%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 80%{opacity:0;transform:translate(-50%,12px)} }

/* =====================================================================
   PAGE HERO (inner pages)
   ===================================================================== */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 78px) 0 78px;
  color: #fff;
  overflow: hidden;
  background: var(--black);
}
.page-hero__media { position: absolute; inset: 0; z-index: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.page-hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(5,5,5,.92), rgba(5,5,5,.55));
}
.page-hero::before {
  /* red diagonal slash */
  content: "";
  position: absolute; z-index: 1;
  top: 0; right: 0; bottom: 0; width: 38%;
  background: linear-gradient(135deg, rgba(230,51,42,.85), rgba(184,31,24,.2));
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 0 100%);
  opacity: .5;
  mix-blend-mode: screen;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 5vw, 3.5rem);
}
.page-hero h1 em { font-style: italic; color: var(--red-light); }
.page-hero p { color: #d8dadd; font-size: clamp(1rem, 1.5vw, 1.2rem); margin-top: 16px; max-width: 640px; }

.crumbs {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-size: .8rem; letter-spacing: .04em;
  color: rgba(255,255,255,.6);
  margin-bottom: 22px;
}
.crumbs a:hover { color: #fff; }
.crumbs span { color: var(--red-light); }

/* =====================================================================
   TRUST BAR
   ===================================================================== */
.trust-bar { background: var(--black); color: #fff; }
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
}
.trust-bar__item {
  background: var(--black);
  padding: 30px 26px;
  display: flex; align-items: flex-start; gap: 16px;
}
.trust-bar__item .ic {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--red);
  color: #fff;
}
.trust-bar__item .ic svg { width: 22px; height: 22px; }
.trust-bar__item strong { font-family: var(--font-head); font-weight: 600; font-size: .98rem; line-height: 1.2; color: #fff; display: block; margin-bottom: 6px; }
.trust-bar__item span { font-size: .82rem; line-height: 1.2; color: #9a9da2; display: block; }

/* =====================================================================
   CARDS / GRIDS
   ===================================================================== */
.grid { display: grid; gap: 13px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--red);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform .4s var(--ease), background .3s;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { background: var(--black); }

.card__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--red);
  color: #fff;
  margin-bottom: 22px;
  transition: background .3s, color .3s;
}
.card__icon svg { width: 28px; height: 28px; }
.card:hover .card__icon { background: var(--black); color: #fff; }
.card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.card p { color: var(--charcoal); font-size: .96rem; }

/* numbered / step cards */
.card__num {
  font-family: var(--font-head);
  font-weight: 800; font-style: italic;
  font-size: 2.4rem;
  color: var(--grey-light);
  line-height: 1;
  margin-bottom: 14px;
  -webkit-text-stroke: 1px var(--line);
}

/* feature service block (large) */
.service-block {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.service-block:nth-child(even) { direction: rtl; }
.service-block:nth-child(even) > * { direction: ltr; }
.service-block__media { position: relative; min-height: 340px; }
.service-block__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.service-block__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,.05), rgba(5,5,5,.35));
}
.service-block__tag {
  position: absolute; top: 20px; left: 20px; z-index: 2;
  background: var(--red); color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: .76rem;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 50px;
}
.service-block__body { padding: clamp(30px, 4vw, 52px); display: flex; flex-direction: column; justify-content: center; }
.service-block__body h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 16px; }
.service-block__body h3 em { font-style: italic; color: var(--red); }
.service-block__body p { color: var(--charcoal); margin-bottom: 22px; }

/* full-bleed split feature (services) */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: #fff;
}
.feature--grey { background: var(--grey-light); }
.feature__media { position: relative; min-height: 500px; overflow: hidden; }
.feature__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,.12), rgba(5,5,5,.34));
}
.feature--reverse .feature__media { order: 2; }
.feature__tag {
  position: absolute; top: 26px; left: 26px; z-index: 2;
  background: var(--red); color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: .76rem;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 9px 18px; border-radius: 50px;
}
.feature__body {
  display: flex; align-items: center;
  padding: clamp(44px, 6vw, 100px);
}
.feature__inner { width: 100%; max-width: 600px; }
.feature:not(.feature--reverse) .feature__inner { margin-right: auto; }
.feature--reverse .feature__inner { margin-left: auto; }
.feature__body .title { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.feature__body .title em { font-style: italic; color: var(--red); }

@media (max-width: 920px) {
  .feature { grid-template-columns: 1fr; }
  .feature__media,
  .feature--reverse .feature__media { order: 0; min-height: 300px; }
  .feature__inner { max-width: none; }
}

/* =====================================================================
   CHECK LISTS
   ===================================================================== */
.checklist { display: grid; gap: 14px; }
.checklist.cols-2 { grid-template-columns: repeat(2, 1fr); gap: 14px 30px; }
.checklist li {
  display: flex; align-items: flex-start; gap: 13px;
  font-size: .97rem; color: var(--charcoal);
}
.checklist li::before {
  content: "";
  flex-shrink: 0;
  width: 24px; height: 24px;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(230,51,42,.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E6332A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.section--dark .checklist li { color: #c9ccd0; }
.section--dark .checklist li::before { background-color: rgba(230,51,42,.22); }

/* pill tags */
.pills { display: flex; flex-wrap: wrap; gap: 12px; }
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 20px;
  border: 1px solid var(--line);
  border-radius: 50px;
  background: #fff;
  font-family: var(--font-head); font-weight: 500; font-size: .9rem;
  color: var(--charcoal);
  transition: all .3s var(--ease);
}
.pill svg { width: 16px; height: 16px; color: var(--red); }
.pill:hover { border-color: var(--red); color: var(--black); transform: translateY(-3px); box-shadow: var(--shadow-sm); }

/* =====================================================================
   SPLIT / MEDIA SECTIONS
   ===================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}
.split--media-right { grid-template-columns: 1fr 1.05fr; }
.media-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.media-frame--tall img { aspect-ratio: 3 / 4; }
/* red accent corner */
.media-frame__badge {
  position: absolute; left: 0; bottom: 0;
  background: var(--red); color: #fff;
  padding: 22px 26px;
  max-width: 70%;
}
.media-frame__badge strong { font-family: var(--font-head); font-size: 1.8rem; display: block; line-height: 1; }
.media-frame__badge span { font-size: .8rem; letter-spacing: .04em; opacity: .9; }
/* decorative offset square */
.media-stack { position: relative; }
/* drop the picture down so its top aligns with the main title (below the eyebrow) */
.split .media-stack { margin-top: calc(0.76rem * 1.7 + 18px); }
.media-stack::before {
  content: ""; position: absolute;
  right: -22px; top: -22px;
  width: 60%; height: 60%;
  border: 3px solid var(--red);
  border-radius: var(--radius);
  z-index: -1;
}

.prose p + p { margin-top: 18px; }
.prose p { color: var(--charcoal); }

/* =====================================================================
   STATS
   ===================================================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stat { text-align: center; }
.stat__num {
  font-family: var(--font-head);
  font-weight: 800; font-style: italic;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--red);
  line-height: 1;
}
.stat__label { margin-top: 8px; font-size: .9rem; color: var(--charcoal); font-weight: 500; }
.section--dark .stat__label { color: #b9bcc1; }

/* =====================================================================
   QUOTE / STATEMENT
   ===================================================================== */
.statement {
  position: relative;
  padding: clamp(40px, 6vw, 70px);
  border-radius: var(--radius);
  background: var(--black);
  color: #fff;
  overflow: hidden;
}
.statement::before {
  content: "\201C";
  position: absolute; top: -20px; left: 26px;
  font-family: Georgia, serif;
  font-size: 11rem; line-height: 1;
  color: var(--red);
  opacity: .35;
}
.statement::after {
  content: ""; position: absolute; right: -60px; bottom: -60px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(230,51,42,.4), transparent 70%);
}
.statement blockquote {
  position: relative; z-index: 1;
  font-family: var(--font-head);
  font-weight: 600; font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  line-height: 1.35;
  color: #fff;
  max-width: 880px;
}
.statement cite {
  display: block; margin-top: 22px;
  font-style: normal; font-family: var(--font-body); font-weight: 600;
  font-size: .92rem; color: var(--red-light);
}

/* =====================================================================
   PROCESS TIMELINE
   ===================================================================== */
.timeline { position: relative; display: grid; gap: 0; }
.timeline__row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 26px;
  padding-bottom: 34px;
  position: relative;
}
.timeline__row::before {
  content: ""; position: absolute;
  left: 34px; top: 56px; bottom: -4px;
  width: 2px; background: var(--line);
}
.timeline__row:last-child { padding-bottom: 0; }
.timeline__row:last-child::before { display: none; }
.timeline__dot {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--line);
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-style: italic;
  font-size: 1.3rem; color: var(--red);
  position: relative; z-index: 1;
  transition: all .3s var(--ease);
}
.timeline__row:hover .timeline__dot { background: var(--red); color: #fff; border-color: var(--red); transform: scale(1.05); }
.timeline__body { padding-top: 10px; }
.timeline__body h4 { font-size: 1.12rem; margin-bottom: 4px; }
.timeline__body p { color: var(--charcoal); font-size: .94rem; }

/* horizontal timeline (logistics visibility) */
.flow {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 0;
}
.flow__step { text-align: center; position: relative; padding: 0 12px; }
.flow__step::before {
  content: ""; position: absolute; top: 27px; left: -50%; width: 100%; height: 2px;
  background: var(--line); z-index: 0;
}
.flow__step:first-child::before { display: none; }
.flow__dot {
  width: 56px; height: 56px; margin: 0 auto 16px;
  border-radius: 50%; background: var(--red); color: #fff;
  display: grid; place-items: center; position: relative; z-index: 1;
  box-shadow: 0 8px 20px rgba(230,51,42,.3);
}
.flow__dot svg { width: 24px; height: 24px; }
.flow__step h4 { font-size: 1rem; margin-bottom: 4px; }
.flow__step p { font-size: .84rem; color: var(--grey); }

/* =====================================================================
   CORRIDOR MAP
   ===================================================================== */
.corridor-map {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(160deg, #0c0d0f, #15171b);
  color: #fff;
  padding: clamp(30px, 5vw, 60px);
  min-height: 460px;
}
.corridor-map svg { width: 100%; height: auto; display: block; }
.route-line {
  fill: none; stroke: var(--red); stroke-width: 3;
  stroke-dasharray: 8 8;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(230,51,42,.6));
  animation: dash 22s linear infinite;
}
@keyframes dash { to { stroke-dashoffset: -400; } }
.route-node circle { fill: var(--red); }
.route-node text { fill: #fff; font-family: var(--font-head); font-weight: 600; font-size: 15px; }
.route-node .sub { fill: #9a9da2; font-size: 11px; font-weight: 400; }
.route-node .pulse { fill: var(--red); opacity: .5; animation: pulse 2.4s ease-out infinite; transform-origin: center; }
@keyframes pulse { 0%{ r: 8; opacity:.6 } 100%{ r: 26; opacity: 0 } }

/* country cards */
.country-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  min-height: 320px;
  display: flex; align-items: flex-end;
  color: #fff;
  background: #111;
}
.country-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.country-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,5,5,0) 30%, rgba(5,5,5,.9)); }
.country-card:hover img { transform: scale(1.06); }
.country-card__body { position: relative; z-index: 1; padding: 28px; }
.country-card__flag {
  font-family: var(--font-head); font-weight: 600; font-size: .74rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--red-light);
  margin-bottom: 8px; display: block;
}
.country-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 8px; }
.country-card p { color: #cfd1d5; font-size: .92rem; }

/* =====================================================================
   LEADERSHIP
   ===================================================================== */
.leader-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.leader-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.leader-card__photo { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--grey-light); }
.leader-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .6s var(--ease); }
.leader-card:hover .leader-card__photo img { transform: scale(1.05); }
.leader-card__role {
  position: absolute; left: 0; bottom: 0;
  background: var(--red); color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: .76rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 8px 16px;
}
.leader-card__body { padding: 26px 28px 30px; }
.leader-card__body h3 { font-size: 1.3rem; margin-bottom: 4px; }
.leader-card__title { font-family: var(--font-head); font-weight: 600; color: var(--red); font-size: .9rem; margin-bottom: 14px; }
.leader-card__body p { color: var(--charcoal); font-size: .92rem; }
.leader-card__meta { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); display: grid; gap: 8px; }
.leader-card__meta div { display: flex; gap: 10px; font-size: .85rem; color: var(--grey); }
.leader-card__meta strong { font-family: var(--font-head); color: var(--charcoal); font-weight: 600; min-width: 92px; }

/* =====================================================================
   COMPANY DETAILS TABLE
   ===================================================================== */
.info-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.info-table tr { border-bottom: 1px solid var(--line); }
.info-table tr:last-child { border-bottom: 0; }
.info-table th {
  text-align: left; width: 42%;
  font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--black);
  padding: 18px 24px; background: var(--grey-light);
  vertical-align: top;
}
.info-table td { padding: 18px 24px; color: var(--charcoal); font-size: .94rem; }

/* =====================================================================
   CTA STRIP
   ===================================================================== */
.cta-strip {
  position: relative;
  overflow: hidden;
  background: var(--red);
  color: #fff;
}
.cta-strip::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, var(--red-dark), var(--red) 55%, var(--red-light));
}
.cta-strip::after {
  content: ""; position: absolute; right: -5%; top: -40%;
  width: 520px; height: 520px; border-radius: 50%;
  border: 60px solid rgba(255,255,255,.08);
}
.cta-strip .container { position: relative; z-index: 1; }
.cta-strip__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
  padding: clamp(48px, 6vw, 80px) 0;
}
.cta-strip h2 { color: #fff; font-size: clamp(1.7rem, 3.5vw, 2.7rem); max-width: 720px; }
.cta-strip h2 em { font-style: italic; }
.cta-strip p { color: rgba(255,255,255,.9); margin-top: 10px; max-width: 560px; }
.cta-strip .btn--dark { background: #fff; color: var(--red); }
.cta-strip .btn--dark:hover { background: var(--black); color: #fff; }
.cta-strip .btn--ghost { border-color: rgba(255,255,255,.7); }

/* dark CTA variant */
.cta-dark { background: var(--black); }
.cta-dark::before { background: radial-gradient(circle at 80% 20%, rgba(230,51,42,.4), transparent 50%); content:""; position:absolute; inset:0; }
.cta-dark .btn { }

/* =====================================================================
   CONTACT
   ===================================================================== */
.contact-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 28px;
  text-align: center;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.contact-card .ic {
  width: 60px; height: 60px; margin: 0 auto 18px;
  display: grid; place-items: center;
  border-radius: 50%; background: rgba(230,51,42,.1); color: var(--red);
}
.contact-card .ic svg { width: 28px; height: 28px; }
.contact-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.contact-card a, .contact-card p { color: var(--charcoal); font-size: .95rem; word-break: break-word; }
.contact-card a:hover { color: var(--red); }

.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.col-span { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-head); font-weight: 500; font-size: .85rem; color: var(--charcoal);
}
.field label .req { color: var(--red); }
.field input,
.field select,
.field textarea {
  font-family: var(--font-body); font-size: .95rem;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--grey-light);
  color: var(--ink);
  transition: border-color .25s, background .25s, box-shadow .25s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(230,51,42,.1);
}
.field--file input { padding: 11px 16px; background: #fff; }
.form__note { font-size: .82rem; color: var(--grey); margin-top: 4px; }
.form__success {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(40, 167, 69, .12);
  border: 1px solid rgba(40,167,69,.4);
  color: #1c7a32;
  font-size: .9rem;
}
.form__success.show { display: block; }
.form__error {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(230, 51, 42, .1);
  border: 1px solid rgba(230, 51, 42, .4);
  color: var(--red-dark);
  font-size: .9rem;
}
.form__error.show { display: block; }
.btn:disabled { opacity: .6; cursor: not-allowed; transform: none; box-shadow: none; }
/* hide the floating reCAPTCHA badge but keep brand notice in footer/forms */
.grecaptcha-badge { visibility: hidden; }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  min-height: 360px;
}
.map-embed iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: var(--black); color: #9a9da2; padding-top: clamp(56px, 7vw, 90px); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 56px;
}
.footer-brand__logo {
  background: #fff;
  border-radius: 10px;
  padding: 12px 16px;
  display: inline-block;
  margin-bottom: 20px;
}
.footer-brand__logo img { height: 38px; width: auto; }
.footer-brand p { font-size: .92rem; color: #9a9da2; max-width: 320px; }
.footer-brand .tagline {
  font-family: var(--font-head); font-style: italic; font-weight: 600;
  color: #fff; margin-top: 16px; font-size: .95rem;
}
.footer-brand .tagline span { color: var(--red-light); }
.footer-col h4 {
  color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 20px; font-weight: 600;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col a, .footer-col li { font-size: .92rem; color: #9a9da2; transition: color .25s; }
.footer-col a:hover { color: var(--red-light); }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--red); flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .84rem;
}
.footer-bottom a:hover { color: #fff; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.06); color: #c9ccd0;
  transition: all .3s var(--ease);
}
.footer-socials a:hover { background: var(--red); color: #fff; transform: translateY(-3px); }
.footer-socials svg { width: 17px; height: 17px; }

/* =====================================================================
   SCROLL REVEAL
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; scroll-behavior: auto; }
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .trust-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}

@media (max-width: 920px) {
  :root { --header-h: 74px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: grid; place-items: center; }

  /* mobile menu panel */
  .mobile-menu {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 18px var(--gutter) 28px;
    display: grid;
    gap: 4px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ease), transform .3s var(--ease);
    z-index: 99;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .mobile-menu.open { opacity: 1; transform: none; pointer-events: auto; }
  .mobile-menu > a,
  .mobile-group__trigger {
    font-family: var(--font-head); font-weight: 500; font-size: 1.02rem;
    color: var(--charcoal); padding: 14px 6px; border-bottom: 1px solid var(--line);
  }
  .mobile-menu > a[aria-current="page"] { color: var(--red); }
  .mobile-menu .btn { margin-top: 18px; }

  /* mobile accordion groups */
  .mobile-group { border-bottom: 1px solid var(--line); }
  .mobile-group__trigger {
    width: 100%;
    background: none; border: 0; border-bottom: 0;
    display: flex; align-items: center; justify-content: space-between;
    cursor: pointer; text-align: left;
  }
  .mobile-group__trigger .chev { width: 16px; height: 16px; color: var(--red); transition: transform .3s var(--ease); }
  .mobile-group.open .mobile-group__trigger .chev { transform: rotate(180deg); }
  .mobile-submenu {
    display: grid;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s var(--ease);
    padding-left: 14px;
  }
  .mobile-group.open .mobile-submenu { max-height: 320px; }
  .mobile-submenu a {
    font-family: var(--font-head); font-weight: 500; font-size: 1.02rem;
    color: var(--grey); padding: 13px 6px;
    border-bottom: 1px solid var(--line);
    display: flex; align-items: center; gap: 10px;
  }
  .mobile-submenu a:last-child { border-bottom: 0; }
  .mobile-submenu a::before {
    content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--red); opacity: .5;
  }
  .mobile-submenu a[aria-current="page"] { color: var(--red); }
  .mobile-submenu a[aria-current="page"]::before { opacity: 1; }

  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .service-block { grid-template-columns: 1fr; direction: ltr; }
  .service-block:nth-child(even) { direction: ltr; }
  .service-block__media { min-height: 260px; }
  .split, .split--media-right { grid-template-columns: 1fr; gap: 40px; }
  .media-stack { order: -1; }
  .split .media-stack { margin-top: 0; }
  .flow { grid-auto-flow: row; grid-auto-columns: auto; gap: 22px; }
  .flow__step::before { display: none; }
  .flow__step { display: flex; align-items: center; gap: 18px; text-align: left; }
  .flow__dot { margin: 0; flex-shrink: 0; }
}

.mobile-menu { display: none; }
@media (max-width: 920px) { .mobile-menu { display: grid; } }

@media (max-width: 620px) {
  body { font-size: 16px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .trust-bar__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 28px; }
  .checklist.cols-2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .info-table th { width: 45%; padding: 14px 16px; }
  .info-table td { padding: 14px 16px; }
  .cta-strip__inner { flex-direction: column; align-items: flex-start; }
  .hero { min-height: 92vh; }
}
