/* ============================================================
   FARIZ EXIM (OPC) PRIVATE LIMITED — Export website
   Design system + components
   Brand: deep navy + maritime blue + saffron gold
   Type:  Fraunces (display) · Plus Jakarta Sans (UI) · IBM Plex Mono (labels)
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Brand — navy */
  --navy-900: #061634;
  --navy-800: #0b2452; /* primary navy (logo) */
  --navy-700: #143169;
  --navy-600: #1d3f80;

  /* Maritime blue (logo) */
  --blue-600: #1655b0;
  --blue-500: #1e6fd9;
  --blue-400: #4d8ce6;
  --blue-200: #b9d3f4;

  /* Accent — saffron / harvest gold */
  --gold-600: #c8892a;
  --gold-500: #e3ae4a;
  --gold-400: #efc56e;
  --gold-200: #f6e1b0;

  /* Category accents */
  --spice: #d9962b;
  --produce: #2f8f4e;
  --granite: #64748b;
  --construction: #c2541f;

  /* Neutrals (cool, not cream) */
  --paper: #f3f6fb;
  --paper-2: #e9eff7;
  --white: #ffffff;
  --ink-900: #0c1a2e;
  --ink-700: #243549;
  --ink-500: #51637b;
  --line: #d9e2ef;

  /* Semantic */
  --bg: var(--white);
  --text: var(--ink-900);
  --muted: var(--ink-500);
  --link: var(--blue-600);

  /* Typography */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;

  /* Spacing scale (8pt rhythm) */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Radius / shadow / motion */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(6, 22, 52, 0.08), 0 2px 8px rgba(6, 22, 52, 0.06);
  --shadow-md: 0 10px 30px rgba(6, 22, 52, 0.12);
  --shadow-lg: 0 24px 60px rgba(6, 22, 52, 0.22);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur: 240ms;

  --container: 1200px;
  --header-h: 76px;
  --z-header: 100;
  --z-menu: 200;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-sans);
  font-size: 1rem;             /* 16px base */
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 50%;
  top: -60px;
  transform: translateX(-50%);
  background: var(--navy-800);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  z-index: 1000;
  transition: top 160ms var(--ease-out);
}
.skip-link:focus { top: 0; text-decoration: none; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.5rem);
}
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); position: relative; }
.section--navy { background: var(--navy-800); color: #eaf1fb; }
.section--paper { background: var(--paper); }

.section__head { max-width: 720px; margin-bottom: clamp(2rem, 5vw, 3.25rem); }
.section__head.is-center { margin-inline: auto; text-align: center; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.section--navy .eyebrow { color: var(--gold-400); }

.section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.85rem, 4.4vw, 3.05rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-top: 0.7rem;
  color: var(--navy-800);
}
.section--navy .section__title { color: #fff; }
.section__lead {
  margin-top: 1rem;
  font-size: 1.075rem;
  color: var(--muted);
  max-width: 60ch;
}
.section--navy .section__lead { color: #b9c8df; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--navy-800);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1;
  padding: 0.95rem 1.5rem;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  transition: transform var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out),
              background-color var(--dur) var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn .btn__icon { width: 18px; height: 18px; transition: transform var(--dur) var(--ease-out); }
.btn:hover .btn__icon { transform: translateX(3px); }

.btn--primary { --btn-bg: var(--gold-500); --btn-fg: #2a1a05; }
.btn--primary:hover { --btn-bg: var(--gold-400); }

.btn--whatsapp { --btn-bg: #25d366; --btn-fg: #ffffff; }
.btn--whatsapp:hover { --btn-bg: #1ebe57; }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--ghost:hover { --btn-bg: rgba(255, 255, 255, 0.08); border-color: rgba(255,255,255,0.6); box-shadow: none; }

.btn--dark { --btn-bg: var(--navy-800); --btn-fg: #fff; }
.btn--block { width: 100%; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background-color 240ms var(--ease-out),
              border-color 240ms var(--ease-out),
              box-shadow 240ms var(--ease-out);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(6, 22, 52, 0.07);
}
.nav {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand__mark { width: auto; height: 44px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: 0.01em;
  color: var(--navy-800);
}
.brand__tag {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-top: 3px;
}
.nav__spacer { flex: 1; }
.nav__links { display: flex; align-items: center; gap: clamp(0.5rem, 2vw, 1.8rem); }
.nav__link {
  position: relative;
  color: var(--ink-700);
  font-weight: 500;
  font-size: 0.96rem;
  padding: 0.5rem 0.25rem;
  text-decoration: none;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms var(--ease-out);
}
.nav__link:hover { text-decoration: none; color: var(--navy-800); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }

.nav__toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  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(--navy-800);
  transform: translate(-50%, -50%);
  transition: transform 220ms var(--ease-out), opacity 160ms var(--ease-out);
}
.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); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: var(--sp-4) 0 var(--sp-8);
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out), visibility 0s linear 220ms;
  z-index: var(--z-menu);
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); transition-delay: 0s; }
.mobile-menu .container { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu a {
  padding: 0.85rem 0.5rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink-900);
  border-bottom: 1px solid var(--paper-2);
}
.mobile-menu a:hover { text-decoration: none; color: var(--blue-600); }
.mobile-menu .btn { margin-top: var(--sp-4); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: radial-gradient(120% 130% at 78% 8%, #103069 0%, var(--navy-800) 42%, var(--navy-900) 100%);
  color: #eef4fd;
  overflow: hidden;
  isolation: isolate;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;            /* enabled via [data-video="on"] */
  transition: opacity 1.2s ease;
  z-index: -2;
}
.hero[data-video="on"] .hero__video { opacity: 0.92; }
.hero[data-video="on"] .hero__map { display: none; } /* let the video be the hero visual */
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(95deg, rgba(6,22,52,0.95) 0%, rgba(6,22,52,0.86) 40%, rgba(6,22,52,0.5) 62%, rgba(6,22,52,0.16) 82%, rgba(6,22,52,0.05) 100%),
    linear-gradient(0deg, rgba(6,22,52,0.5) 0%, rgba(6,22,52,0) 22%);
  z-index: -1;
}

/* signature animated map sits on the right */
.hero__map {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: min(62%, 760px);
  opacity: 0.9;
  pointer-events: none;
  z-index: -1;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: var(--sp-12);
  align-items: center;
  min-height: clamp(560px, 78vh, 760px);
  padding-block: clamp(3rem, 7vw, 5rem);
}
.hero__copy { max-width: 620px; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(239, 197, 110, 0.3);
  border-radius: var(--r-pill);
  background: rgba(239, 197, 110, 0.06);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 6.2vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-top: 1.4rem;
  color: #fff;
}
.hero__title .accent {
  color: var(--gold-400);
  font-style: italic;
  font-weight: 500;
}
.hero__subtitle {
  margin-top: 1.4rem;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.6;
  color: #c4d4ec;
  max-width: 52ch;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.1rem; }
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero__meta-item {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.9rem; color: #b9c8df;
}
.hero__meta-item svg { width: 18px; height: 18px; color: var(--gold-400); flex: none; }

/* floating route card */
.hero__card-wrap { display: flex; justify-content: flex-end; }
.route-card {
  width: min(370px, 100%);
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink-900);
  border-radius: var(--r-lg);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.4);
}
.route-card__top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.route-card__label {
  font-family: var(--font-mono);
  font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.route-card__live {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em;
  color: var(--produce); font-weight: 600;
}
.route-card__live::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--produce); box-shadow: 0 0 0 0 rgba(47,143,78,0.5);
  animation: ping 1.8s var(--ease-out) infinite;
}
.route-card__route {
  display: flex; align-items: center; justify-content: space-between;
  margin: 1.1rem 0 0.4rem;
}
.route-card__port { text-align: center; }
.route-card__port .code { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; line-height: 1.1; color: var(--navy-800); }
.route-card__port .city { display: block; font-size: 0.72rem; color: var(--muted); letter-spacing: 0.04em; margin-top: 2px; }
.route-card__line {
  flex: 1; height: 2px; margin: 0 0.6rem; position: relative;
  background: repeating-linear-gradient(90deg, var(--blue-200) 0 6px, transparent 6px 12px);
}
.route-card__line svg { position: absolute; right: -6px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: var(--gold-600); }
.route-card__meta { display: flex; justify-content: space-between; margin-top: 1rem; padding-top: 0.9rem; border-top: 1px solid var(--line); }
.route-card__meta div { font-size: 0.72rem; color: var(--muted); }
.route-card__meta strong { display: block; font-size: 0.95rem; color: var(--ink-900); font-variant-numeric: tabular-nums; }

/* ---------- Marquee (destination markets) ---------- */
.marquee {
  background: var(--navy-900);
  border-block: 1px solid rgba(255,255,255,0.08);
  padding-block: 0.9rem;
  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: 3rem; 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: 0.7rem;
  font-family: var(--font-mono); font-size: 0.82rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: #9fb4d4; white-space: nowrap;
}
.marquee__item::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-500); }

/* ---------- Stats ---------- */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
}
.stat { text-align: center; padding: var(--sp-4) var(--sp-2); }
.stat__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 5vw, 3.1rem);
  line-height: 1;
  color: var(--navy-800);
  font-variant-numeric: tabular-nums;
}
.stat__num .suffix { color: var(--gold-600); }
.stat__label { margin-top: 0.5rem; font-size: 0.92rem; color: var(--muted); }
.stats__note {
  margin-top: var(--sp-8);
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.74rem; letter-spacing: 0.06em;
  color: var(--ink-500);
}
.stats__note .chip {
  display: inline-block; margin: 0.2rem 0.3rem;
  padding: 0.35rem 0.8rem; border: 1px solid var(--line); border-radius: var(--r-pill);
  color: var(--ink-700); background: #fff;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(0.9rem, 1.6vw, 1.25rem);
}
.product-card {
  --c: var(--blue-500);
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: color-mix(in srgb, var(--c) 45%, var(--line)); }
.product-card__media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; background: var(--paper-2); }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease-out); }
.product-card:hover .product-card__media img { transform: scale(1.07); }
.product-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(6, 22, 52, 0.5)); }
.product-card__badge {
  position: absolute; left: 14px; bottom: 12px; z-index: 1;
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 12px; background: var(--c); color: #fff;
  box-shadow: 0 6px 16px rgba(6, 22, 52, 0.32);
}
.product-card__badge svg { width: 24px; height: 24px; }
.product-card__body { display: flex; flex-direction: column; flex: 1; padding: 1.2rem 1.25rem 1.4rem; }
.product-card__title { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--navy-800); }
.product-card__desc { margin-top: 0.4rem; font-size: 0.88rem; color: var(--muted); }
.product-card__list { margin-top: 0.9rem; display: flex; flex-wrap: wrap; gap: 0.35rem; }
.product-card__list li {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.02em;
  padding: 0.28rem 0.55rem; border-radius: var(--r-pill);
  background: var(--paper); color: var(--ink-700);
}
.product-card__link {
  margin-top: auto; padding-top: 1rem;
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-weight: 600; font-size: 0.86rem; color: var(--c);
}
.product-card__link svg { width: 15px; height: 15px; transition: transform var(--dur) var(--ease-out); }
.product-card:hover .product-card__link svg { transform: translateX(4px); }

.product-card--spice { --c: var(--spice); }
.product-card--produce { --c: var(--produce); }
.product-card--granite { --c: var(--granite); }
.product-card--steel { --c: #3e6ea8; }
.product-card--construction { --c: var(--construction); }

/* ============================================================
   WHY US (navy)
   ============================================================ */
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.4vw, 1.6rem);
}
.feature {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  padding: 1.5rem 1.4rem;
  transition: transform var(--dur) var(--ease-out), background-color var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}
.feature:hover { transform: translateY(-4px); background: rgba(255,255,255,0.07); border-color: rgba(239,197,110,0.4); }
.feature__icon {
  width: 50px; height: 50px; display: grid; place-items: center;
  border-radius: 12px; background: rgba(239,197,110,0.12); color: var(--gold-400);
  margin-bottom: 1rem;
}
.feature__icon svg { width: 26px; height: 26px; }
.feature__title { font-size: 1.12rem; font-weight: 700; color: #fff; }
.feature__desc { margin-top: 0.45rem; font-size: 0.92rem; color: #aebfd9; }

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about__points { margin-top: 1.6rem; display: grid; gap: 1rem; }
.about__point { display: flex; gap: 0.9rem; align-items: flex-start; }
.about__point svg { width: 24px; height: 24px; color: var(--produce); flex: none; margin-top: 2px; }
.about__point h4 { font-size: 1.02rem; color: var(--navy-800); }
.about__point p { font-size: 0.92rem; color: var(--muted); }

.about__panel {
  position: relative;
  background: radial-gradient(120% 120% at 30% 10%, var(--navy-700), var(--navy-900));
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about__panel-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(80% 80% at 70% 20%, #000, transparent 75%);
  mask-image: radial-gradient(80% 80% at 70% 20%, #000, transparent 75%);
}
.about__panel-inner { position: relative; }
.about__panel h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; }
.about__badges { margin-top: 1.4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.about__badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  padding: 1rem;
}
.about__badge .k { font-family: var(--font-display); font-weight: 700; font-size: 1.8rem; color: var(--gold-400); font-variant-numeric: tabular-nums; }
.about__badge .v { font-size: 0.82rem; color: #aebfd9; margin-top: 0.2rem; }

/* ============================================================
   PROCESS (timeline)
   ============================================================ */
.process__timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  counter-reset: step;
}
.step { position: relative; padding-top: 2.4rem; }
.step::before {
  content: "";
  position: absolute; left: 0; top: 14px; right: 0; height: 2px;
  background: var(--line);
}
.step:last-child::before { background: linear-gradient(90deg, var(--line), transparent); }
.step__dot {
  position: absolute; left: 0; top: 6px;
  width: 18px; height: 18px; border-radius: 50%;
  background: #fff; border: 3px solid var(--gold-500);
  z-index: 1;
}
.step__num {
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.1em;
  color: var(--gold-600); font-weight: 600;
}
.step__title { margin-top: 0.3rem; font-size: 1.05rem; font-weight: 700; color: var(--navy-800); }
.step__desc { margin-top: 0.35rem; font-size: 0.88rem; color: var(--muted); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.contact__list { margin-top: 1.8rem; display: grid; gap: 1.1rem; }
.contact__item { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact__item svg { width: 22px; height: 22px; color: var(--gold-400); flex: none; margin-top: 3px; }
.contact__item .k { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: #93a6c4; }
.contact__item .v { color: #eaf1fb; font-size: 1.02rem; }
.contact__item a { color: #eaf1fb; }
.contact__socials { display: flex; gap: 0.7rem; margin-top: 1.8rem; }
.contact__socials a {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: #cdd-9; color: #cdd9ee;
  transition: background-color var(--dur), transform var(--dur);
}
.contact__socials a:hover { background: rgba(239,197,110,0.16); transform: translateY(-3px); }
.contact__socials svg { width: 20px; height: 20px; }

.quote-form {
  background: #fff;
  color: var(--ink-900);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-lg);
}
.quote-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.82rem; font-weight: 600; color: var(--ink-700); }
.field label .req { color: var(--construction); }
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 0.96rem;
  padding: 0.8rem 0.9rem;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--paper);
  color: var(--ink-900);
  transition: border-color 160ms var(--ease-out), box-shadow 160ms var(--ease-out), background-color 160ms;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(30,111,217,0.15);
}
.field .error-text { font-size: 0.78rem; color: var(--construction); min-height: 1em; }
.field[data-invalid="true"] input,
.field[data-invalid="true"] select,
.field[data-invalid="true"] textarea { border-color: var(--construction); }
.form__note {
  margin-top: 0.9rem;
  font-size: 0.78rem; color: var(--muted); line-height: 1.5;
}
.form__status {
  margin-top: 0.9rem;
  padding: 0.8rem 1rem;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  display: none;
}
.form__status.is-success { display: block; background: #e8f6ed; color: #1d6b3a; border: 1px solid #b7e0c4; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-900); color: #aebfd9; padding-top: var(--sp-20); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  padding-bottom: var(--sp-16);
}
.footer__brand .brand__name { color: #fff; }
.footer__brand .brand__mark { height: 50px; background: #fff; padding: 7px 10px; border-radius: 12px; }
.footer__about { margin-top: 1rem; font-size: 0.92rem; max-width: 38ch; color: #93a6c4; }
.footer__col h5 {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold-400); margin-bottom: 1rem;
}
.footer__col ul { display: grid; gap: 0.6rem; }
.footer__col a { color: #aebfd9; font-size: 0.94rem; }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: 1.6rem;
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; justify-content: space-between;
  font-size: 0.84rem; color: #7e93b5;
}
.footer__bottom a { color: #7e93b5; }

/* ---------- Floating WhatsApp button ---------- */
.wa-fab {
  position: fixed;
  right: clamp(14px, 3vw, 24px);
  bottom: clamp(14px, 3vw, 24px);
  z-index: 95;
  display: inline-flex;
  align-items: center;
  height: 60px;
  border-radius: var(--r-pill);
  background: #25d366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45), 0 4px 12px rgba(6, 22, 52, 0.22);
  overflow: hidden;
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out), background-color 240ms var(--ease-out);
}
.wa-fab:hover { transform: translateY(-3px); background: #1ebe57; text-decoration: none; box-shadow: 0 16px 36px rgba(37, 211, 102, 0.5), 0 6px 14px rgba(6, 22, 52, 0.25); }
.wa-fab__icon { width: 30px; height: 30px; margin: 15px; flex: none; }
.wa-fab__label {
  font-weight: 600; font-size: 0.95rem; white-space: nowrap;
  max-width: 0; opacity: 0; padding-left: 0;
  transition: max-width 320ms var(--ease-out), opacity 220ms var(--ease-out), padding 320ms var(--ease-out);
}
.wa-fab:hover .wa-fab__label,
.wa-fab:focus-visible .wa-fab__label { max-width: 240px; opacity: 1; padding-left: 20px; }
.wa-fab__pulse {
  position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  animation: waPulse 2.6s var(--ease-out) infinite;
}
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70%, 100% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
}
@media (max-width: 560px) {
  .wa-fab { height: 56px; }
  .wa-fab__icon { width: 28px; height: 28px; margin: 14px; }
  /* icon-only on phones (label stays collapsed) */
  .wa-fab:hover .wa-fab__label, .wa-fab:focus-visible .wa-fab__label { max-width: 0; opacity: 0; padding-left: 0; }
}

/* ============================================================
   Scroll reveal animation
   ============================================================ */
/* Hidden-until-revealed state only applies when JS is active (progressive
   enhancement): with JS off, content stays fully visible. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 620ms var(--ease-out), transform 620ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* Hero load sequence */
.js .hero [data-hero] {
  opacity: 0;
  transform: translateY(22px);
  animation: heroIn 760ms var(--ease-out) forwards;
  animation-delay: var(--hero-delay, 0ms);
}

/* SVG route draw */
.route-path {
  stroke-dasharray: var(--len, 1000);
  stroke-dashoffset: var(--len, 1000);
  animation: drawRoute 2.6s var(--ease-out) 0.5s forwards;
}
.route-ship { offset-path: var(--ship-path); animation: sailShip 6s linear 0.8s infinite; }
.port-ping { transform-box: fill-box; transform-origin: center; animation: portPing 2.4s ease-out infinite; }
.port-ping:nth-of-type(2) { animation-delay: 0.6s; }
.port-ping:nth-of-type(3) { animation-delay: 1.2s; }
.port-ping:nth-of-type(4) { animation-delay: 1.8s; }

/* ---------- Keyframes ---------- */
@keyframes heroIn { to { opacity: 1; transform: none; } }
@keyframes drawRoute { to { stroke-dashoffset: 0; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(47,143,78,0.5); }
  70%, 100% { box-shadow: 0 0 0 10px rgba(47,143,78,0); }
}
@keyframes portPing {
  0% { opacity: 0.9; transform: scale(0.4); }
  70%, 100% { opacity: 0; transform: scale(2.4); }
}
@keyframes sailShip {
  0% { offset-distance: 0%; opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.float { animation: floaty 6s var(--ease-in-out) infinite; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .stats__grid { grid-template-columns: repeat(3, 1fr); }
  .products__grid { grid-template-columns: repeat(3, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .process__timeline { grid-template-columns: repeat(3, 1fr); row-gap: 2rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__map { opacity: 0.4; width: 70%; }
}

@media (max-width: 860px) {
  :root { --header-h: 68px; }
  .nav__links, .nav__cta-desktop { display: none; }
  .nav__toggle { display: block; }
  .nav__spacer { display: none; }
  .brand { margin-right: auto; }

  .hero__inner { grid-template-columns: 1fr; gap: var(--sp-8); min-height: auto; }
  /* uniform scrim on small screens so text stays readable over the video */
  .hero__overlay { background: linear-gradient(180deg, rgba(6, 22, 52, 0.88) 0%, rgba(6, 22, 52, 0.72) 55%, rgba(6, 22, 52, 0.85) 100%); }
  .hero__card-wrap { justify-content: flex-start; }
  .hero__map { display: none; }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .stats__grid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .products__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .process__timeline { grid-template-columns: 1fr; }
  .step { padding-top: 0; padding-left: 2.2rem; }
  .step::before { left: 8px; top: 0; bottom: 0; right: auto; width: 2px; height: auto; }
  .step__dot { left: 0; top: 4px; }
  .quote-form__grid { grid-template-columns: 1fr; }
  .about__badges { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero__actions .btn { width: 100%; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero [data-hero] { opacity: 1 !important; transform: none !important; }
  .route-path { stroke-dashoffset: 0 !important; }
  .route-ship, .port-ping, .float, .marquee__track { animation: none !important; }
  /* keep the hero video visible but paused (static frame) under reduced motion — handled in JS */
}
