/* =====================================================
   NFAST COURIER SERVICE — light · cinematic · navy × red
   Fast · Reliable · Secure
   ===================================================== */

:root {
  /* ---- brand (sampled from logo) ---- */
  --navy: #0a1e46;
  --navy-700: #123061;
  --navy-600: #1c447f;
  --ink: #0f2148;
  --ink-soft: #33456a;

  --red: #e01e26;
  --red-deep: #b3141b;
  --red-bright: #ff2d34;

  /* ---- light surfaces ---- */
  --paper: #ffffff;
  --paper-2: #eef3fb;
  --paper-3: #e4ebf6;
  --tint-blue: #e7f0fc;
  --tint-rose: #fdeef0;
  --tint-sky: #ecf5fd;
  --tint-mist: #f0f4fb;

  --muted: rgba(15, 33, 72, 0.66);
  --muted-2: rgba(15, 33, 72, 0.45);
  --line: rgba(10, 30, 70, 0.12);
  --line-strong: rgba(10, 30, 70, 0.20);

  --shadow-sm: 0 2px 10px rgba(10, 30, 70, 0.06);
  --shadow: 0 20px 50px -24px rgba(10, 30, 70, 0.28);
  --shadow-lg: 0 40px 90px -40px rgba(10, 30, 70, 0.4);
  --shadow-red: 0 16px 40px -14px rgba(224, 30, 38, 0.45);

  --display: 'Anton', 'Impact', sans-serif;
  --body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', 'Courier New', monospace;

  --max: 1240px;
  --pad: clamp(18px, 4vw, 56px);
  --nav-h: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--body);
  color: var(--ink);
  background:
    radial-gradient(1100px 600px at 82% -8%, rgba(224, 30, 38, 0.06), transparent 60%),
    radial-gradient(900px 700px at -5% 8%, rgba(28, 68, 127, 0.07), transparent 60%),
    var(--paper);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--red); color: #fff; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--paper-2); }
::-webkit-scrollbar-thumb { background: var(--navy-600); border-radius: 20px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.eyebrow-num { color: var(--muted-2); }
.eyebrow-divider {
  width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
  display: inline-block;
}
.eyebrow-label { color: var(--muted); }

/* ---------- Section ---------- */
.section {
  position: relative;
  padding: clamp(38px, 5.5vh, 64px) 0;
}
.section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.6vw, 2.9rem);
  line-height: 0.94;
  letter-spacing: 0.5px;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-title em { font-style: normal; color: var(--red); }
.section-title .stroke {
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(10, 30, 70, 0.35);
}
.section-text {
  font-size: 14.5px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.6;
  text-align: justify;
}
.section-text strong { color: var(--navy); font-weight: 700; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  transition: gap 0.3s var(--ease), color 0.2s;
}
.link-arrow:hover { gap: 24px; color: var(--red-deep); }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 30px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  border-radius: 3px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), color 0.2s, background 0.2s;
  will-change: transform;
}
.btn svg { transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(5px); }

.btn-red {
  color: #fff;
  background: linear-gradient(135deg, var(--red-bright) 0%, var(--red) 45%, var(--red-deep) 100%);
  box-shadow: var(--shadow-red);
}
.btn-red::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,0.5) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}
.btn-red:hover { transform: translateY(-3px); box-shadow: 0 22px 46px -14px rgba(224,30,38,0.6); }
.btn-red:hover::before { transform: translateX(120%); }

.btn-ghost {
  color: var(--navy);
  background: #fff;
  border: 1.5px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--red); color: var(--red); transform: translateY(-3px); box-shadow: var(--shadow); }

.btn-navy { color: #fff; background: var(--navy); }
.btn-navy:hover { background: var(--navy-700); transform: translateY(-3px); box-shadow: var(--shadow); }

.btn-block { width: 100%; }

/* ============ PRELOADER ============ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 26px;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preload-logo { width: min(300px, 60vw); animation: preFloat 2.4s var(--ease) infinite; }
@keyframes preFloat { 0%,100%{transform:translateX(0)} 50%{transform:translateX(10px)} }
.preload-bar { width: min(280px, 54vw); height: 3px; background: var(--paper-3); overflow: hidden; position: relative; border-radius: 3px; }
.preload-bar span { position: absolute; inset: 0; width: 0%; background: linear-gradient(90deg, var(--red-deep), var(--red-bright)); }
.preload-pct { font-family: var(--mono); font-size: 12px; letter-spacing: 3px; color: var(--muted-2); }

/* ============ CUSTOM CURSOR ============ */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 999;
  pointer-events: none; border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-dot { width: 9px; height: 9px; background: var(--red); box-shadow: 0 0 0 3px rgba(224,30,38,0.16); }
.cursor-ring { display: none !important; }
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ============ SCROLL PROGRESS ============ */
.progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  z-index: 200;
  background: linear-gradient(90deg, var(--red-deep), var(--red-bright));
}

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 150;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.nav.is-shrunk {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -14px rgba(10,30,70,0.3);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad);
  height: var(--nav-h);
  transition: height 0.35s var(--ease);
}
.nav.is-shrunk .nav-inner { height: calc(var(--nav-h) - 14px); }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { height: 46px; width: auto; transition: height 0.35s var(--ease); }
.nav.is-shrunk .brand-mark { height: 38px; }

.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-menu li a:not(.nav-cta) {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  font-size: 14px; font-weight: 700; color: var(--navy);
  letter-spacing: 0.2px; transition: color 0.2s;
}
.nav-menu li a[data-num]::before {
  content: attr(data-num);
  font-family: var(--mono); font-size: 10px;
  color: var(--red); opacity: 0.9;
}
.nav-menu li a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 16px; right: 16px; bottom: 6px;
  height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-menu li a:not(.nav-cta):hover { color: var(--red); }
.nav-menu li a:not(.nav-cta):hover::after { transform: scaleX(1); }

.nav-cta {
  margin-left: 10px;
  padding: 12px 22px !important;
  font-family: var(--body); font-weight: 700; font-size: 13px;
  letter-spacing: 0.8px; text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--red-bright), var(--red-deep));
  border-radius: 3px;
  box-shadow: var(--shadow-red);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -12px rgba(224,30,38,0.55); }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 46px; height: 46px; flex-direction: column;
  justify-content: center; align-items: center; gap: 6px;
}
.nav-toggle span {
  display: block; width: 26px; height: 2.5px; background: var(--navy); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: calc(var(--nav-h) + 10px);
  padding-bottom: 44px;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 88% 12%, rgba(224,30,38,0.08), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--tint-blue) 100%);
}
.hero-streaks { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.streak {
  position: absolute; height: 2px; left: -30%;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0; border-radius: 2px;
  animation: streak var(--sdur, 3s) linear infinite;
  animation-delay: var(--sdelay, 0s);
}
.streak.navy { background: linear-gradient(90deg, transparent, rgba(28,68,127,0.5), transparent); }
@keyframes streak {
  0% { transform: translateX(0); opacity: 0; }
  10% { opacity: 0.5; }
  90% { opacity: 0.3; }
  100% { transform: translateX(160vw); opacity: 0; }
}
.hero-glow {
  position: absolute; z-index: 0; pointer-events: none;
  width: 720px; height: 720px; right: -140px; top: 46%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(224,30,38,0.10), transparent 62%);
}

.hero-grid {
  position: relative; z-index: 5;
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px; align-items: center; width: 100%;
}
.hero-copy { max-width: 620px; position: relative; z-index: 5; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px; margin-bottom: 12px;
  border: 1px solid var(--line-strong);
  border-radius: 40px;
  background: #fff; box-shadow: var(--shadow-sm);
  font-family: var(--mono); font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--navy);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red-bright); box-shadow: 0 0 0 0 rgba(224,30,38,0.6); animation: pulse 1.8s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(224,30,38,0.6); }
  70% { box-shadow: 0 0 0 12px rgba(224,30,38,0); }
  100% { box-shadow: 0 0 0 0 rgba(224,30,38,0); }
}

.hero-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.3rem, 4.6vw, 3.8rem);
  line-height: 0.92;
  letter-spacing: 0.5px;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.hero-title span { display: block; overflow: hidden; }
.hero-title span > i { font-style: normal; display: inline-block; will-change: transform; }
.hero-title .accent { color: var(--red); }
.hero-title .outline {
  color: transparent;
  -webkit-text-stroke: 1.7px rgba(10,30,70,0.42);
}

.hero-tagline {
  display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 10px;
  font-family: var(--mono); font-size: 13px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--red);
}
.hero-tagline span { position: relative; padding-left: 22px; color: var(--ink-soft); }
.hero-tagline span::before { content: ''; position: absolute; left: 0; top: 50%; width: 12px; height: 2px; background: var(--red); transform: translateY(-50%); }
.hero-tagline span:first-child { padding-left: 0; }
.hero-tagline span:first-child::before { display: none; }

.hero-desc { font-size: 15px; line-height: 1.65; color: var(--muted); max-width: 500px; margin-bottom: 16px; text-align: justify; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }

.hero-meta {
  display: grid; grid-template-columns: repeat(3, auto); gap: 32px;
  padding-top: 14px; border-top: 1px solid var(--line); width: fit-content;
}
.hero-meta div { display: flex; flex-direction: column; gap: 4px; }
.meta-num { font-family: var(--display); font-size: 30px; color: var(--navy); letter-spacing: 1px; line-height: 1; }
.meta-num em { font-style: normal; color: var(--red); }
.meta-label { font-family: var(--mono); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted-2); }

/* hero visual — full-bleed 16:9 background that colour-transitions into the text */
.hero-visual {
  position: absolute; inset: var(--nav-h) 0 0 0;
  width: 100%; height: auto;
  z-index: 0; overflow: hidden; display: block;
}
.hero-visual img {
  position: absolute; right: 0; bottom: 0;
  height: 100%; width: auto; max-width: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 12%);
  mask-image: linear-gradient(90deg, transparent 0, #000 12%);
}
.hero-visual::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0) 15%),
    linear-gradient(90deg, #ffffff 0%, #f1f5fc 25%, rgba(241,245,252,0.85) 42%, rgba(241,245,252,0.35) 60%, rgba(241,245,252,0) 78%);
}
.hero-visual .visual-tag { display: none; }
.hero-visual .visual-placeholder { text-align: center; padding: 30px; }
.hero-visual .visual-placeholder .pkg { width: 96px; height: 96px; margin: 0 auto 20px; color: var(--red); animation: floatPkg 3.4s var(--ease) infinite; }
@keyframes floatPkg { 0%,100%{transform:translateY(0) rotate(-4deg)} 50%{transform:translateY(-14px) rotate(4deg)} }
.hero-visual .visual-placeholder p { font-family: var(--mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted-2); }
.hero-visual .visual-tag {
  position: absolute; right: 24px; bottom: 28px;
  display: none; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 40px;
  background: rgba(255,255,255,0.9); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  font-family: var(--mono); font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--navy);
}
.hero-visual .visual-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: #16a34a; box-shadow: 0 0 8px rgba(22,163,74,0.6); }

.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 6; display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted-2);
}
.hero-scroll .mouse { width: 22px; height: 34px; border: 1.5px solid var(--line-strong); border-radius: 14px; position: relative; }
.hero-scroll .mouse::before { content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 3px; height: 7px; border-radius: 3px; background: var(--red); animation: scrollDot 1.8s var(--ease) infinite; }
@keyframes scrollDot { 0%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 80%{opacity:0;transform:translate(-50%,12px)} 100%{opacity:0} }

/* ============ MARQUEE (industries) ============ */
.marquee {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--navy);
  padding: 24px 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track { display: flex; gap: 0; width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 20px;
  padding: 0 30px;
  font-family: var(--display); font-size: 26px; letter-spacing: 1px;
  text-transform: uppercase; color: rgba(255,255,255,0.62);
  white-space: nowrap;
}
.marquee-item::after { content: '●'; color: var(--red-bright); font-size: 10px; }
.marquee-item:hover { color: #fff; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ ABOUT / VISION-MISSION ============ */
.about { background: linear-gradient(180deg, #ffffff 0%, var(--tint-mist) 100%); }
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: center; }

.counters { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.counter {
  background: #fff; padding: 12px 16px; position: relative;
  border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.counter::before { content: ''; position: absolute; top: 0; left: 20px; width: 34px; height: 3px; background: var(--red); border-radius: 0 0 3px 3px; }
.counter:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.counter-num { display: block; font-family: var(--display); font-size: clamp(1.8rem, 2.8vw, 2.4rem); color: var(--navy); line-height: 1; margin-bottom: 4px; }
.counter-num em { font-style: normal; color: var(--red); }
.counter-label { font-family: var(--mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted-2); }

.vm-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
.vm-card {
  position: relative; padding: 16px 18px;
  border: 1px solid var(--line); background: #fff; border-radius: 10px;
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.vm-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.vm-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--red), transparent); }
.vm-icon { width: 26px; height: 26px; color: var(--red); margin-bottom: 6px; }
.vm-card h3 { font-family: var(--display); font-weight: 400; font-size: 17px; color: var(--navy); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.vm-card p { color: var(--muted); font-size: 13.5px; line-height: 1.55; }

/* ============ SERVICES ============ */
.services { background: var(--tint-blue); }
.services-head { max-width: 780px; margin-bottom: 12px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.service-card {
  position: relative; background: #fff;
  padding: 16px 16px 14px; overflow: hidden; border-radius: 10px;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: box-shadow 0.35s, transform 0.35s var(--ease);
}
.service-card::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--red); transform: scaleY(0); transform-origin: top;
  transition: transform 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card:hover::after { transform: scaleY(1); }
.service-num { position: absolute; top: 20px; right: 22px; font-family: var(--mono); font-size: 12px; letter-spacing: 2px; color: var(--muted-2); }
.service-icon {
  width: 32px; height: 32px; color: var(--red); margin-bottom: 8px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px; background: rgba(224,30,38,0.08);
  transition: background 0.35s, color 0.35s;
}
.service-icon svg { width: 18px; height: 18px; }
.service-card:hover .service-icon { background: var(--red); color: #fff; }
.service-card h3 { font-family: var(--display); font-weight: 400; font-size: 18px; color: var(--navy); letter-spacing: 0.6px; margin-bottom: 4px; text-transform: uppercase; }
.service-card p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ============ VALUES ============ */
.values { background: var(--tint-rose); }
.values-head { text-align: center; margin-bottom: 24px; }
.values-head .eyebrow { justify-content: center; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-card {
  display: flex; align-items: center; gap: 20px;
  padding: 26px 28px; border: 1px solid var(--line); border-radius: 10px;
  background: #fff; box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-num { font-family: var(--display); font-size: 40px; color: var(--red); line-height: 1; min-width: 54px; }
.value-card h3 { font-size: 17px; font-weight: 800; color: var(--navy); letter-spacing: 0.2px; margin-bottom: 4px; }
.value-card p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ============ WHY CHOOSE ============ */
.why { background: var(--tint-sky); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card {
  position: relative; padding: 26px 24px;
  border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.why-icon { width: 52px; height: 52px; margin-bottom: 14px; color: var(--red); display: flex; align-items: center; justify-content: center; position: relative; }
.why-icon svg { width: 32px; height: 32px; position: relative; z-index: 2; }
.why-icon::before { content: ''; position: absolute; inset: -6px; border-radius: 50%; background: radial-gradient(circle, rgba(224,30,38,0.14), transparent 65%); animation: glow 3.4s ease-in-out infinite; }
@keyframes glow { 0%,100%{opacity:0.5;transform:scale(1)} 50%{opacity:1;transform:scale(1.12)} }
.why-card h3 { font-family: var(--display); font-weight: 400; font-size: 21px; color: var(--navy); text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 8px; }
.why-card p { color: var(--muted); font-size: 13.5px; line-height: 1.6; }

/* ============ JOURNEY (1-day) ============ */
.journey { background: var(--paper); }
.journey-head { text-align: center; margin-bottom: 28px; }
.journey-head .eyebrow { justify-content: center; }
.journey-track { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.journey-line { position: absolute; top: 29px; left: 8%; right: 8%; height: 3px; background: var(--paper-3); overflow: hidden; border-radius: 3px; }
.journey-line span { position: absolute; inset: 0; width: 0%; background: linear-gradient(90deg, var(--red-deep), var(--red-bright)); transition: width 1.4s var(--ease); }
.journey-step { position: relative; text-align: center; }
.journey-node {
  width: 60px; height: 60px; margin: 0 auto 16px;
  border-radius: 50%; background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); position: relative; z-index: 2;
  transition: background 0.4s, color 0.4s, border-color 0.4s, transform 0.4s var(--ease), box-shadow 0.4s;
}
.journey-node svg { width: 30px; height: 30px; }
.journey-step.is-active .journey-node { background: var(--red); color: #fff; border-color: var(--red); transform: scale(1.08); box-shadow: var(--shadow-red); }
.journey-num { font-family: var(--mono); font-size: 11px; letter-spacing: 2px; color: var(--red); margin-bottom: 10px; display: block; }
.journey-step h3 { font-family: var(--display); font-weight: 400; font-size: 22px; color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.journey-step p { font-size: 13.5px; color: var(--muted); line-height: 1.7; max-width: 220px; margin: 0 auto; }

/* ============ COVERAGE ============ */
.coverage { background: var(--tint-blue); overflow: hidden; }
.coverage-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 44px; align-items: center; }
.coverage-zones { display: flex; gap: 12px; margin: 18px 0 4px; flex-wrap: wrap; }
.zone-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 16px; border: 1px solid var(--line-strong); border-radius: 40px;
  background: #fff; box-shadow: var(--shadow-sm); font-weight: 700; letter-spacing: 0.2px; color: var(--navy);
}
.zone-chip .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--red-bright); box-shadow: 0 0 8px rgba(224,30,38,0.5); }
.zone-chip.soon { color: var(--muted); }
.zone-chip.soon .dot { background: var(--muted-2); box-shadow: none; }
.coverage-note { font-family: var(--mono); font-size: 12px; letter-spacing: 1px; color: var(--muted-2); margin-top: 10px; }

.map-frame {
  position: relative; border: 1px solid var(--line); border-radius: 14px;
  background: #e9eef4;
  padding: 0; aspect-ratio: 1645 / 1233; overflow: hidden;
  box-shadow: var(--shadow);
}
.map-base { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: fill; }
.map-overlay { position: absolute; inset: 0; display: block; width: 100%; height: 100%; }
.map-region-gam { fill: rgba(224,30,38,0.20); stroke: rgba(224,30,38,0.85); stroke-width: 4; stroke-linejoin: round; }
.map-region-col { fill: rgba(28,68,127,0.26); stroke: rgba(28,68,127,0.85); stroke-width: 4; stroke-linejoin: round; }
.map-dot { fill: var(--red); stroke: #fff; stroke-width: 4; }
.map-dot-sm { fill: var(--navy); stroke: #fff; stroke-width: 3; }
.map-air path { fill: var(--ink-soft); }
.map-pulse { fill: none; stroke: var(--red); stroke-width: 2; opacity: 0; }
.map-sea-fix { fill: rgb(213,232,236); }
.map-label text {
  font-family: var(--display); font-size: 62px; letter-spacing: 6px;
  fill: var(--navy); text-anchor: middle;
  paint-order: stroke; stroke: rgba(255,255,255,0.92); stroke-width: 12px;
}
.map-label-dots circle { stroke: #fff; stroke-width: 2; }
.map-label-gam .map-label-dots circle { fill: var(--red); }
.map-label-col .map-label-dots circle { fill: var(--navy-600); }
.map-city-sm { font-family: var(--mono); font-size: 25px; fill: var(--ink-soft); letter-spacing: 1px; paint-order: stroke; stroke: rgba(255,255,255,0.9); stroke-width: 6px; }
.map-attr {
  position: absolute; right: 10px; bottom: 8px;
  font-family: var(--body); font-size: 10px; color: rgba(15,33,72,0.6);
  background: rgba(255,255,255,0.78); padding: 3px 9px; border-radius: 10px;
}

/* ============ CTA BAND ============ */
.cta-band { background: var(--paper); }
.cta-inner {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  flex-wrap: wrap;
  padding: clamp(30px, 4.5vw, 50px);
  border-radius: 16px;
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-700) 55%, #0c2a5a 100%);
  box-shadow: var(--shadow-lg);
}
.cta-inner::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(-45deg, transparent 0 24px, rgba(255,255,255,0.03) 24px 48px); pointer-events: none; }
.cta-inner::after { content: ''; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(224,30,38,0.35), transparent 62%); pointer-events: none; }
.cta-copy { position: relative; z-index: 2; }
.cta-copy h2 { font-family: var(--display); font-weight: 400; font-size: clamp(1.8rem, 3.4vw, 2.8rem); color: #fff; text-transform: uppercase; line-height: 0.96; letter-spacing: 0.5px; }
.cta-copy p { color: rgba(255,255,255,0.82); font-size: 15px; margin-top: 10px; max-width: 460px; }
.cta-inner .btn-white { position: relative; z-index: 2; color: var(--red-deep); background: #fff; }
.cta-inner .btn-white:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -14px rgba(0,0,0,0.4); }

/* ============ CONTACT ============ */
.contact { background: linear-gradient(180deg, #ffffff 0%, var(--tint-rose) 100%); }
.contact-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 44px; }
.badge-247 {
  display: inline-flex; align-items: center; gap: 12px;
  margin: 4px 0 18px; padding: 8px 16px;
  background: rgba(224,30,38,0.08); border: 1px solid rgba(224,30,38,0.35);
  border-radius: 40px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--red-deep);
}
.badge-247 .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--red-bright); box-shadow: 0 0 0 0 rgba(224,30,38,0.6); animation: pulse 1.6s infinite; }

.contact-lines { display: flex; flex-direction: column; gap: 4px; margin-bottom: 18px; }
.contact-line {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--navy); letter-spacing: 1px; line-height: 1.15;
  transition: color 0.2s, transform 0.25s var(--ease);
}
.contact-line .ci { width: 26px; height: 26px; color: var(--red); flex-shrink: 0; }

.contact-info { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.info-row { display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: 15px; }
.info-row .ci { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; }
.info-row a:hover { color: var(--red); }

.contact-form {
  background: #fff; border: 1px solid var(--line);
  padding: 28px; border-radius: 14px; position: relative;
  box-shadow: var(--shadow);
}
.contact-form::before { content: ''; position: absolute; top: 0; left: 0; width: 44px; height: 44px; border-top: 3px solid var(--red); border-left: 3px solid var(--red); border-radius: 14px 0 0 0; }
.contact-form::after { content: ''; position: absolute; bottom: 0; right: 0; width: 44px; height: 44px; border-bottom: 3px solid var(--red); border-right: 3px solid var(--red); border-radius: 0 0 14px 0; }
.contact-form h3 { font-family: var(--display); font-weight: 400; font-size: 24px; color: var(--navy); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.form-row { margin-bottom: 14px; }
.form-row label { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.form-row input, .form-row textarea {
  width: 100%; padding: 11px 14px; background: var(--paper-2);
  border: 1.5px solid var(--line); color: var(--ink);
  font-family: var(--body); font-size: 15px; border-radius: 6px;
  transition: border-color 0.2s, background 0.2s;
}
.form-row input::placeholder, .form-row textarea::placeholder { color: var(--muted-2); }
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--red); background: #fff; }
.form-row textarea { resize: vertical; min-height: 84px; }
.form-note { margin-top: 16px; padding: 12px 16px; background: rgba(224,30,38,0.08); border-left: 3px solid var(--red); color: var(--ink); font-size: 13px; border-radius: 6px; }

/* ============ FOOTER (dark anchor) ============ */
.footer { background: var(--navy); color: #fff; padding-top: 72px; position: relative; overflow: hidden; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 56px; padding-bottom: 56px; }
.footer-brand { display: flex; flex-direction: column; gap: 22px; align-items: flex-start; }
.footer-logo { height: 62px; width: auto; }
.footer-tagline { display: flex; gap: 22px; flex-wrap: wrap; font-family: var(--mono); font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--red-bright); }
.footer-tagline span { position: relative; padding-left: 22px; color: rgba(255,255,255,0.6); }
.footer-tagline span::before { content: ''; position: absolute; left: 0; top: 50%; width: 12px; height: 2px; background: var(--red); transform: translateY(-50%); }
.footer-tagline span:first-child { padding-left: 0; }
.footer-tagline span:first-child::before { display: none; }
.footer-desc { color: rgba(255,255,255,0.62); font-size: 14.5px; max-width: 340px; line-height: 1.75; }
.footer-col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--red-bright); margin-bottom: 18px; }
.footer-col a, .footer-col span { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.66); font-size: 15px; padding: 5px 0; transition: color 0.2s, padding 0.2s var(--ease); }
.footer-col a:hover, .footer-col span:hover { color: #fff; padding-left: 6px; }
.footer-col .fi { width: 15px; height: 15px; color: var(--red-bright); flex-shrink: 0; }
.footer-socials { display: flex; gap: 12px; margin-top: 8px; }
.footer-socials a {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.18); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}
.footer-socials a:hover { background: var(--red); border-color: var(--red); transform: translateY(-3px); }
.footer-socials svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 24px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-family: var(--mono); font-size: 11px; letter-spacing: 1.5px; color: rgba(255,255,255,0.5); text-transform: uppercase; }
.footer-bottom-inner .accent { color: var(--red-bright); }

/* ============ FLOATING CALL (mobile only) ============ */
.float-stack { position: fixed; right: 22px; bottom: 22px; z-index: 120; }
.float-btn {
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff;
  box-shadow: 0 14px 30px rgba(10,30,70,0.28);
  transition: transform 0.3s var(--ease); position: relative;
}
.float-btn svg { width: 24px; height: 24px; }
.float-call { background: var(--red); }
.float-call::before { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--red); animation: ripple 2s ease-out infinite; pointer-events: none; }
.float-btn:hover { transform: scale(1.09); }
@keyframes ripple { 0%{transform:scale(1);opacity:1} 100%{transform:scale(1.7);opacity:0} }

/* the floating call button only makes sense on phones — hide on larger screens */
@media (min-width: 761px) {
  .float-stack { display: none; }
}

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); transition-delay: calc(var(--delay, 0) * 1ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-x { opacity: 0; transform: translateX(-40px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); transition-delay: calc(var(--delay, 0) * 1ms); }
.reveal-x.is-visible { opacity: 1; transform: translateX(0); }
.services-grid .service-card.reveal:nth-child(even) { transform: translateY(56px); }
.services-grid .service-card.reveal.is-visible { transform: translateY(0); }

.hero .reveal { animation: heroIn 1s var(--ease) forwards; opacity: 0; transform: translateY(24px); }
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .hero { display: flex; flex-direction: column; align-items: stretch; min-height: auto; padding-top: calc(var(--nav-h) + 30px); padding-bottom: 44px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; order: 1; }
  .hero-copy { max-width: 100%; }
  .hero-visual {
    position: relative; inset: auto; right: auto; top: auto; bottom: auto; left: auto;
    order: 2;
    width: 100%; height: auto; max-width: 560px; margin: 24px auto 0; aspect-ratio: 16 / 11;
    border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-lg);
  }
  .hero-visual img { position: static; width: 100%; height: 100%; object-fit: cover; object-position: right center; -webkit-mask-image: none; mask-image: none; }
  .hero-visual::after { display: none; }
  .hero-visual .visual-tag { display: inline-flex; right: 14px; bottom: 14px; }
  .hero-scroll { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .vm-wrap { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr; gap: 44px; }
  .journey-track { grid-template-columns: repeat(2, 1fr); gap: 48px 24px; }
  .journey-line { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  :root { --nav-h: 66px; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch;
    gap: 0; padding: 12px var(--pad) 24px;
    background: #ffffff; backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity 0.25s, transform 0.25s var(--ease);
  }
  .nav-menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-menu li a:not(.nav-cta) { padding: 15px 0; border-bottom: 1px solid var(--line); width: 100%; }
  .nav-menu li a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin: 14px 0 0; width: 100%; text-align: center; justify-content: center; }
  .hero-meta { grid-template-columns: repeat(3, 1fr); gap: 20px; width: 100%; }
  .meta-num { font-size: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .counters { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.4rem, 11vw, 3.4rem); }
  .hero-actions .btn { width: 100%; }
  .marquee-item { font-size: 20px; }
  .journey-track { grid-template-columns: 1fr; }
  .counters { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 22px; }
  .float-stack { right: 16px; bottom: 16px; }
  .float-btn { width: 52px; height: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal, .reveal-x { opacity: 1 !important; transform: none !important; }
  .cursor-dot, .cursor-ring { display: none; }
}
