/* ══════════════════════════════════════════════════════════════════
   Alam Al Arabia — Transportation & Logistics · style.css
   ══════════════════════════════════════════════════════════════════

   TABLE OF CONTENTS
   § 01  RESET & CSS VARIABLES
   § 02  BASE STYLES & TYPOGRAPHY
   § 03  LAYOUT HELPERS
   § 04  BUTTONS & CHIPS
   § 05  NAVIGATION
   § 06  HERO
   § 07  TICKER STRIP
   § 08  ABOUT
   § 09  SERVICES
   § 10  WHY US
   § 11  PROCESS
   § 12  FLEET / CAPABILITIES
   § 13  INDUSTRIES
   § 14  TESTIMONIALS
   § 15  CTA BAND
   § 16  CONTACT
   § 17  FOOTER
   § 18  WHATSAPP FLOAT
   § 19  ANIMATIONS & KEYFRAMES
   § 20  SCROLL-REVEAL
   § 21  RESPONSIVE · TABLET  ≤ 1024 px
   § 22  RESPONSIVE · MOBILE  ≤  768 px
   § 23  RESPONSIVE · SMALL   ≤  480 px
   ══════════════════════════════════════════════════════════════════ */


/* ──────────────────────────────────────────────────────────────────
   § 01  RESET & CSS VARIABLES
   ────────────────────────────────────────────────────────────────── */

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

:root {

  /* Colour Palette */
  --ink-900: #050D1A;
  --ink-800: #091524;
  --ink-700: #0D1E30;
  --ink-600: #12273D;
  --ink-500: #1A3452;
  --ink-400: #243F60;

  --gold-400: #CDA94A;
  --gold-500: #B8932E;
  --gold-600: #9A7820;
  --gold-glow: rgba(184, 147, 46, 0.14);
  --gold-line: rgba(184, 147, 46, 0.22);

  --slate-200: #D0DCE9;
  --slate-400: #8BA4BF;
  --slate-600: #506A84;

  --white: #FFFFFF;
  --line: rgba(255, 255, 255, 0.06);

  /* Typography */
  --serif: 'Cormorant', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Spacing scale */
  --s1: 0.5rem;
  --s2: 1rem;
  --s3: 1.5rem;
  --s4: 2rem;
  --s5: 2.5rem;
  --s6: 3rem;
  --s8: 4rem;
  --s10: 5rem;
  --s12: 6rem;
  --s16: 8rem;

  /* Layout */
  --max: 1160px;
  --nav-h: 68px;

  /* Easing */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --eout: cubic-bezier(0, 0, .2, 1);
}


/* ──────────────────────────────────────────────────────────────────
   § 02  BASE STYLES & TYPOGRAPHY
   ────────────────────────────────────────────────────────────────── */

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--slate-400);
  background: var(--ink-900);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: var(--ink-900);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-500);
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* Heading styles */
.t-display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.07;
  color: var(--white);
  letter-spacing: -0.01em;
}

.t-display em {
  font-style: italic;
  color: var(--gold-400);
}

.t-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 500;
  line-height: 1.16;
  color: var(--white);
  letter-spacing: -0.01em;
}

.t-heading em {
  font-style: italic;
  color: var(--gold-400);
}

/* Eyebrow / overline */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--gold-400);
  flex-shrink: 0;
}

/* Section rule accent */
.rule {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-400), transparent);
  margin: var(--s3) 0;
}

.rule--c {
  margin-left: auto;
  margin-right: auto;
}

/* Body text */
.body {
  font-size: 0.93rem;
  line-height: 1.85;
  color: var(--slate-400);
}


/* ──────────────────────────────────────────────────────────────────
   § 03  LAYOUT HELPERS
   ────────────────────────────────────────────────────────────────── */

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--s5);
}

.section {
  padding: var(--s16) 0;
}

.section--sm {
  padding: var(--s12) 0;
}

.col-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s12);
}

.col-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink-600);
}

.col-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ink-600);
}

.h-line {
  height: 1px;
  background: var(--line);
  border: none;
  margin: 0;
}


/* ──────────────────────────────────────────────────────────────────
   § 04  BUTTONS & CHIPS
   ────────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.82rem 1.8rem;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.24s var(--ease),
    border-color 0.24s var(--ease),
    color 0.24s var(--ease),
    transform 0.22s var(--ease),
    box-shadow 0.24s var(--ease);
}

.btn-gold {
  background: var(--gold-400);
  color: var(--ink-900);
  border-color: var(--gold-400);
}

.btn-gold:hover {
  background: #D8B45A;
  border-color: #D8B45A;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(184, 147, 46, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--slate-200);
  border-color: var(--ink-500);
}

.btn-ghost:hover {
  border-color: var(--gold-400);
  color: var(--gold-400);
  transform: translateY(-2px);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-400);
  background: var(--gold-glow);
  border: 1px solid var(--gold-line);
  padding: 0.26rem 0.7rem;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ADE80;
  animation: pulse-dot 2.2s ease-in-out infinite;
  flex-shrink: 0;
}


/* ──────────────────────────────────────────────────────────────────
   § 05  NAVIGATION
   ────────────────────────────────────────────────────────────────── */

#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 950;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 0.38s var(--ease),
    border-color 0.38s var(--ease),
    box-shadow 0.38s var(--ease);
}

#nav.is-solid {
  background: rgba(5, 13, 26, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--ink-600);
  box-shadow: 0 1px 40px rgba(0, 0, 0, 0.4);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex-shrink: 0;
}

.nav-logo-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.nav-logo-name span {
  color: var(--gold-400);
}

.nav-logo-tag {
  font-family: var(--mono);
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--slate-600);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s5);
}

.nav-links a {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--slate-400);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.22s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-400);
  transition: width 0.28s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--s3);
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 36px;
  height: 36px;
  padding: 7px;
  border: 1px solid var(--ink-500);
  background: none;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-burger span {
  display: block;
  height: 1px;
  background: var(--white);
  transition: transform 0.28s var(--ease), opacity 0.22s;
}

.nav-burger.open span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
  opacity: 0;
}

.nav-burger.open span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 13, 26, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 940;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s5);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  font-weight: 400;
  color: var(--slate-200);
  transition: color 0.2s;
}

.nav-mobile a:hover {
  color: var(--gold-400);
}

.nav-mobile .btn {
  margin-top: var(--s2);
}


/* ──────────────────────────────────────────────────────────────────
   § 06  HERO
   ────────────────────────────────────────────────────────────────── */

.hero-solution {
  position: absolute;
  top: calc(var(--nav-h) + 20px);
  right: var(--s5);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  padding: 0.6rem 1rem;
  border: 1px dashed var(--gold-400);
  border-radius: 999px;
  background: rgba(184, 147, 46, 0.06);
  backdrop-filter: blur(6px);
  transition: all 0.3s var(--ease);
}

.hero-solution:hover {
  background: rgba(184, 147, 46, 0.15);
  transform: translateY(-2px);
}

.solution-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 0 rgba(184, 147, 46, 0.7);
  animation: blink-pulse 1.5s infinite;
}

@keyframes blink-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(184, 147, 46, 0.6);
  }

  70% {
    transform: scale(1.4);
    opacity: 0.6;
    box-shadow: 0 0 0 10px rgba(184, 147, 46, 0);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .hero-solution {
    right: var(--s3);
    top: calc(var(--nav-h) + 10px);
    font-size: 0.7rem;
    padding: 0.5rem 0.8rem;
  }
}

#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-base {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg,
      #030A16 0%,
      #070F1E 35%,
      #0A1628 65%,
      #050C18 100%);
}

.hero-bg-amber {
  position: absolute;
  top: -5%;
  left: -10%;
  width: 55%;
  height: 80%;
  background: radial-gradient(ellipse,
      rgba(184, 147, 46, 0.08) 0%,
      transparent 65%);
  border-radius: 50%;
}

.hero-bg-blue {
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 60%;
  height: 90%;
  background: radial-gradient(ellipse,
      rgba(18, 39, 80, 0.9) 0%,
      transparent 70%);
  border-radius: 50%;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 52px 52px;
}

.hero-bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 90% at 50% 50%,
      transparent 30%,
      rgba(3, 10, 22, 0.7) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--s8) 0;
}

.hero-layout {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: var(--s10);
  align-items: center;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  animation: fadeUp 0.6s 0.1s both;
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 500;
  line-height: 1.07;
  color: var(--white);
  letter-spacing: -0.02em;
  animation: fadeUp 0.6s 0.22s both;
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold-400);
  display: block;
}

.hero-sub {
  font-size: 0.97rem;
  line-height: 1.82;
  color: var(--slate-400);
  max-width: 460px;
  animation: fadeUp 0.6s 0.34s both;
}

.hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: fadeUp 0.6s 0.46s both;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-600);
  animation: fadeUp 0.6s 0.58s both;
}

.hero-proof-sep {
  color: var(--ink-500);
}

.hero-right {
  animation: fadeUp 0.6s 0.38s both;
}

.hero-panel {
  background: rgba(9, 21, 36, 0.8);
  border: 1px solid var(--ink-600);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-stat {
  padding: var(--s5) var(--s5);
  border-right: 1px solid var(--ink-600);
  border-bottom: 1px solid var(--ink-600);
}

.hero-stat:nth-child(2n) {
  border-right: none;
}

.hero-stat:nth-last-child(-n+2) {
  border-bottom: none;
}

.hero-stat-val {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 0.3rem;
}

.hero-stat-val sup {
  font-size: 1.1rem;
  color: var(--gold-400);
  vertical-align: super;
  margin-left: 1px;
}

.hero-stat-label {
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate-600);
}

.hero-ports {
  padding: var(--s2) var(--s5);
  border-top: 1px solid var(--ink-600);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s2);
}

.hero-ports-label {
  font-family: var(--mono);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-500);
  flex-shrink: 0;
}

.hero-ports-chips {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: var(--s4);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s 1.4s forwards;
}

.hero-scroll-bar {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-400), transparent);
  animation: bar-pulse 2.4s ease-in-out infinite;
}

.hero-scroll-txt {
  font-family: var(--mono);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--slate-600);
}


/* ──────────────────────────────────────────────────────────────────
   § 07  TICKER STRIP
   ────────────────────────────────────────────────────────────────── */

.ticker {
  background: var(--gold-400);
  overflow: hidden;
  padding: 0.72rem 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0 2rem;
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-900);
  white-space: nowrap;
}

.ticker-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--ink-900);
  opacity: 0.3;
  flex-shrink: 0;
}


/* ──────────────────────────────────────────────────────────────────
   § 08  ABOUT
   ────────────────────────────────────────────────────────────────── */

#about {
  border-top: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--s12);
  align-items: center;
}

.about-frame {
  position: relative;
  padding: var(--s3);
}

.about-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 54%;
  height: 54%;
  border-top: 1px solid var(--gold-500);
  border-left: 1px solid var(--gold-500);
}

.about-frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 54%;
  height: 54%;
  border-bottom: 1px solid var(--gold-500);
  border-right: 1px solid var(--gold-500);
}

.about-img {
  background: var(--ink-700);
  border: 1px solid var(--ink-600);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-img-dots {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184, 147, 46, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 147, 46, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

.about-img svg {
  position: relative;
  z-index: 2;
  opacity: 0.62;
}

.about-badge {
  position: absolute;
  right: -0.8rem;
  bottom: -0.8rem;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--ink-900);
  padding: 1.2rem 1.4rem;
  text-align: center;
  z-index: 10;
}

.about-badge-num {
  display: block;
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1;
}

.about-badge-sub {
  display: block;
  font-family: var(--mono);
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 0.25rem;
  opacity: 0.65;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-top: var(--s1);
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: var(--s2) var(--s3);
  background: var(--ink-700);
  border: 1px solid var(--ink-600);
  transition: border-color 0.26s var(--ease);
}

.pillar:hover {
  border-color: var(--gold-line);
}

.pillar-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar-name {
  display: block;
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.pillar-desc {
  font-size: 0.76rem;
  color: var(--slate-400);
  line-height: 1.6;
}


/* ──────────────────────────────────────────────────────────────────
   § 09  SERVICES
   ────────────────────────────────────────────────────────────────── */

#services {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg,
      transparent 0%,
      rgba(12, 22, 40, 0.5) 50%,
      transparent 100%);
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s12);
  align-items: end;
  margin-bottom: var(--s8);
}

.services-intro {
  font-size: 0.93rem;
  line-height: 1.86;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink-600);
}

.svc-card {
  background: var(--ink-800);
  padding: var(--s5);
  position: relative;
  overflow: hidden;
  transition: background 0.28s var(--ease);
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-400), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.36s var(--ease);
}

.svc-card:hover {
  background: var(--ink-700);
}

.svc-card:hover::before {
  transform: scaleX(1);
}

.svc-card-num {
  position: absolute;
  top: var(--s3);
  right: var(--s4);
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: rgba(184, 147, 46, 0.07);
  line-height: 1;
  transition: color 0.28s;
}

.svc-card:hover .svc-card-num {
  color: rgba(184, 147, 46, 0.14);
}

.svc-icon {
  font-size: 1.7rem;
  margin-bottom: var(--s2);
  display: block;
}

.svc-title {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.svc-body {
  font-size: 0.8rem;
  line-height: 1.8;
  color: var(--slate-400);
  margin-bottom: var(--s3);
}

.svc-list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.svc-list li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  color: var(--slate-400);
}

.svc-list li::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 1px;
  background: var(--gold-500);
  flex-shrink: 0;
}


/* ──────────────────────────────────────────────────────────────────
   § 10  WHY US
   ────────────────────────────────────────────────────────────────── */

#why {
  border-top: 1px solid var(--line);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s12);
  align-items: start;
}

.why-list {
  margin-top: var(--s3);
}

.why-item {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: var(--s2);
  padding: var(--s3) 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.26s var(--ease);
}

.why-item:first-child {
  border-top: 1px solid var(--line);
}

.why-item:hover {
  padding-left: 0.45rem;
}

.why-num {
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 500;
  color: var(--gold-400);
  margin-top: 3px;
}

.why-title {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.why-desc {
  font-size: 0.8rem;
  line-height: 1.78;
  color: var(--slate-400);
}

.why-panel {
  background: var(--ink-700);
  border: 1px solid var(--ink-600);
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}

.why-panel-head {
  padding: var(--s3) var(--s4);
  border-bottom: 1px solid var(--ink-600);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.why-panel-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.why-map-area {
  padding: var(--s3) var(--s4);
  background: rgba(3, 10, 22, 0.5);
  border-bottom: 1px solid var(--ink-600);
}

.why-map-area svg {
  width: 100%;
  height: auto;
}

.why-ports {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.why-port {
  padding: var(--s2) var(--s3);
  border-right: 1px solid var(--ink-600);
  border-bottom: 1px solid var(--ink-600);
  transition: background 0.24s;
}

.why-port:nth-child(2n) {
  border-right: none;
}

.why-port:nth-last-child(-n+2) {
  border-bottom: none;
}

.why-port:hover {
  background: var(--ink-600);
}

.port-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-400);
  margin-right: 0.4rem;
  animation: pulse-dot 2.6s ease-in-out infinite;
}

.port-name {
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.15rem;
}

.port-type {
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  color: var(--slate-600);
}


/* ──────────────────────────────────────────────────────────────────
   § 11  PROCESS
   ────────────────────────────────────────────────────────────────── */

#process {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg,
      transparent 0%,
      rgba(12, 22, 40, 0.4) 50%,
      transparent 100%);
}

.process-head {
  text-align: center;
  max-width: 520px;
  margin: 0 auto var(--s10);
}

.process-head .rule {
  margin-left: auto;
  margin-right: auto;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}

.process-track::before {
  content: '';
  position: absolute;
  top: 25px;
  left: calc(10% + 25px);
  right: calc(10% + 25px);
  height: 1px;
  background: linear-gradient(90deg,
      var(--gold-400) 0%,
      rgba(184, 147, 46, 0.18) 50%,
      var(--gold-400) 100%);
}

.proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--s2);
  position: relative;
}

.proc-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--ink-500);
  background: var(--ink-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--slate-600);
  margin-bottom: var(--s3);
  position: relative;
  z-index: 2;
  transition: border-color 0.26s, color 0.26s;
}

.proc-circle.lit {
  background: var(--gold-400);
  border-color: var(--gold-400);
  color: var(--ink-900);
}

.proc-step:hover .proc-circle {
  border-color: var(--gold-400);
  color: var(--gold-400);
}

.proc-step:hover .proc-circle.lit {
  color: var(--ink-900);
}

.proc-title {
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 0.45rem;
}

.proc-desc {
  font-size: 0.76rem;
  line-height: 1.7;
  color: var(--slate-400);
}


/* ──────────────────────────────────────────────────────────────────
   § 12  FLEET / CAPABILITIES
   ────────────────────────────────────────────────────────────────── */

#fleet {
  border-top: 1px solid var(--line);
}

.fleet-head {
  text-align: center;
  max-width: 480px;
  margin: 0 auto var(--s8);
}

.fleet-head .rule {
  margin-left: auto;
  margin-right: auto;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ink-600);
}

.fleet-card {
  background: var(--ink-800);
  padding: var(--s6) var(--s4);
  text-align: center;
  transition: background 0.26s;
}

.fleet-card:hover {
  background: var(--ink-700);
}

.fleet-icon {
  font-size: 2rem;
  margin-bottom: var(--s2);
  display: block;
}

.fleet-title {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.fleet-body {
  font-size: 0.76rem;
  line-height: 1.72;
  color: var(--slate-400);
}


/* ──────────────────────────────────────────────────────────────────
   § 13  INDUSTRIES
   ────────────────────────────────────────────────────────────────── */

#industries {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg,
      transparent 0%,
      rgba(12, 22, 40, 0.4) 50%,
      transparent 100%);
}

.industries-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s12);
  align-items: end;
  margin-bottom: var(--s8);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ink-600);
}

.ind-card {
  background: var(--ink-800);
  padding: var(--s5) var(--s3);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background 0.26s;
}

.ind-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-400), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.ind-card:hover {
  background: var(--ink-700);
}

.ind-card:hover::after {
  transform: scaleX(1);
}

.ind-icon {
  font-size: 1.7rem;
  margin-bottom: 0.8rem;
  display: block;
}

.ind-name {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1.45;
}


/* ──────────────────────────────────────────────────────────────────
   § 14  TESTIMONIALS
   ────────────────────────────────────────────────────────────────── */

#testimonials {
  border-top: 1px solid var(--line);
}

.testi-head {
  text-align: center;
  max-width: 440px;
  margin: 0 auto var(--s8);
}

.testi-head .rule {
  margin-left: auto;
  margin-right: auto;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink-600);
}

.testi-card {
  background: var(--ink-800);
  padding: var(--s6) var(--s5);
  display: flex;
  flex-direction: column;
  transition: background 0.26s;
}

.testi-card:hover {
  background: var(--ink-700);
}

.testi-stars {
  color: var(--gold-400);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  margin-bottom: 0.7rem;
}

.testi-quote {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.8;
  color: var(--slate-200);
  flex: 1;
  padding-bottom: var(--s4);
}

.testi-divider {
  height: 1px;
  background: var(--line);
}

.testi-author {
  display: flex;
  align-items: center;
  gap: var(--s2);
  padding-top: var(--s4);
}

.testi-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--ink-900);
  flex-shrink: 0;
}

.testi-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.1rem;
}

.testi-role {
  font-size: 0.7rem;
  color: var(--slate-600);
}


/* ──────────────────────────────────────────────────────────────────
   § 15  CTA BAND
   ────────────────────────────────────────────────────────────────── */

#cta {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-800);
  padding: var(--s12) 0;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  right: -12%;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(ellipse,
      rgba(184, 147, 46, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s10);
  align-items: center;
}

.cta-label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: var(--s2);
}

.cta-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold-400);
}

.cta-h2 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.8vw, 2.6rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}

.cta-h2 em {
  font-style: italic;
  color: var(--gold-400);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
  flex-shrink: 0;
}

.cta-tel {
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--slate-600);
}


/* ──────────────────────────────────────────────────────────────────
   § 16  CONTACT
   ────────────────────────────────────────────────────────────────── */

#contact {
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: var(--s12);
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: var(--s1);
}

.contact-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: var(--s2);
  align-items: center;
  padding: var(--s2) var(--s3);
  background: var(--ink-700);
  border: 1px solid var(--ink-600);
  transition: border-color 0.24s;
}

.contact-item:hover {
  border-color: var(--gold-line);
}

.ci-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-glow);
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.ci-label {
  font-family: var(--mono);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 0.18rem;
}

.ci-val {
  font-size: 0.8rem;
  color: var(--slate-200);
  line-height: 1.5;
}

/* Map embed */
.contact-map {
  margin-top: var(--s2);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-map-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  padding: 0.65rem var(--s3);
  background: var(--ink-700);
  border: 1px solid var(--ink-600);
  border-bottom: none;
}

.contact-map-frame {
  position: relative;
  width: 100%;
  height: 240px;
  border: 1px solid var(--ink-600);
  overflow: hidden;
  filter: grayscale(30%) brightness(0.85) contrast(1.05);
  transition: filter 0.3s var(--ease);
}

.contact-map-frame:hover {
  filter: grayscale(0%) brightness(0.95) contrast(1.02);
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.contact-map-link {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem var(--s3);
  background: var(--ink-700);
  border: 1px solid var(--ink-600);
  border-top: none;
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-400);
  transition: background 0.22s, color 0.22s;
}

.contact-map-link:hover {
  background: var(--ink-600);
  color: var(--white);
}

.contact-form {
  background: var(--ink-700);
  border: 1px solid var(--ink-600);
  padding: var(--s5);
}

.form-ttl {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  padding-bottom: var(--s3);
  border-bottom: 1px solid var(--ink-600);
  margin-bottom: var(--s3);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.form-grp {
  margin-bottom: 0.75rem;
}

.form-lbl {
  display: block;
  font-family: var(--mono);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate-600);
  margin-bottom: 0.35rem;
}

.form-ctrl {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--ink-500);
  padding: 0.72rem 0.9rem;
  font-family: var(--sans);
  font-size: 0.83rem;
  color: var(--white);
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.22s, background 0.22s;
}

.form-ctrl::placeholder {
  color: rgba(139, 164, 191, 0.35);
}

.form-ctrl:focus {
  border-color: var(--gold-500);
  background: rgba(184, 147, 46, 0.04);
}

.form-ctrl option {
  background: var(--ink-700);
}

textarea.form-ctrl {
  height: 112px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.35rem;
}

.form-note {
  font-size: 0.69rem;
  color: var(--slate-600);
  text-align: center;
  margin-top: 0.5rem;
}


/* ──────────────────────────────────────────────────────────────────
   § 17  FOOTER
   ────────────────────────────────────────────────────────────────── */

footer {
  background: #04091A;
  border-top: 1px solid var(--ink-600);
  padding: var(--s12) 0 var(--s4);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: var(--s10);
  margin-bottom: var(--s10);
}

.footer-desc {
  font-size: 0.8rem;
  line-height: 1.8;
  color: var(--slate-600);
  margin: var(--s3) 0;
  max-width: 270px;
}

.footer-socials {
  display: flex;
  gap: 0.45rem;
}

.footer-social {
  width: 30px;
  height: 30px;
  border: 1px solid var(--ink-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--slate-600);
  transition: border-color 0.22s, color 0.22s;
}

.footer-social:hover {
  border-color: var(--gold-400);
  color: var(--gold-400);
}

.footer-col-lbl {
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: var(--s3);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  font-size: 0.79rem;
  color: var(--slate-600);
  transition: color 0.22s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: var(--s4);
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s2);
}

.footer-copy {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: var(--slate-600);
}

.footer-legal {
  display: flex;
  gap: var(--s4);
}

.footer-legal a {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--slate-600);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--white);
}


/* ──────────────────────────────────────────────────────────────────
   § 18  WHATSAPP FLOAT
   ────────────────────────────────────────────────────────────────── */

.wa {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  animation: fadeIn 1s 2s forwards;
}

.wa-tip {
  background: var(--ink-700);
  border: 1px solid var(--ink-600);
  color: var(--white);
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.72rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.22s var(--ease);
  pointer-events: none;
}

.wa-btn {
  width: 46px;
  height: 46px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.28);
  flex-shrink: 0;
  transition: transform 0.24s, box-shadow 0.24s;
}

.wa:hover .wa-tip {
  opacity: 1;
  transform: translateX(0);
}

.wa:hover .wa-btn {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.42);
}


/* ──────────────────────────────────────────────────────────────────
   § 19  ANIMATIONS & KEYFRAMES
   ────────────────────────────────────────────────────────────────── */

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.3;
    transform: scale(0.8);
  }
}

@keyframes bar-pulse {

  0%,
  100% {
    opacity: 0.25;
  }

  50% {
    opacity: 1;
  }
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


/* ──────────────────────────────────────────────────────────────────
   § 20  SCROLL-REVEAL
   ────────────────────────────────────────────────────────────────── */

.sr {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--eout), transform 0.6s var(--eout);
}

.sr.in {
  opacity: 1;
  transform: none;
}

.sr.d1 {
  transition-delay: 0.08s;
}

.sr.d2 {
  transition-delay: 0.16s;
}

.sr.d3 {
  transition-delay: 0.24s;
}

.sr.d4 {
  transition-delay: 0.32s;
}

.sr.d5 {
  transition-delay: 0.40s;
}


/* ──────────────────────────────────────────────────────────────────
   § 21  RESPONSIVE · TABLET  ≤ 1024 px
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  :root {
    --s16: 6rem;
    --s12: 4rem;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: var(--s8);
  }

  .hero-right {
    max-width: 520px;
  }

  .hero-h1 {
    font-size: clamp(2.4rem, 7vw, 3.8rem);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--s8);
  }

  .about-frame {
    max-width: 440px;
  }

  .services-header {
    grid-template-columns: 1fr;
    gap: var(--s4);
  }

  .svc-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-panel {
    position: static;
  }

  .process-track {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s6);
  }

  .process-track::before {
    display: none;
  }

  .fleet-grid {
    grid-template-columns: 1fr 1fr;
  }

  .industries-header {
    grid-template-columns: 1fr;
    gap: var(--s4);
  }

  .industry-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testi-grid .testi-card:last-child {
    display: none;
  }

  .cta-row {
    grid-template-columns: 1fr;
    gap: var(--s6);
  }

  .cta-actions {
    align-items: flex-start;
    flex-direction: row;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s6);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}


/* ──────────────────────────────────────────────────────────────────
   § 22  RESPONSIVE · MOBILE  ≤ 768 px
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  :root {
    --s16: 5rem;
    --s12: 3.5rem;
    --s10: 3rem;
    --nav-h: 60px;
  }

  .wrap {
    padding: 0 var(--s3);
  }

  .nav-links,
  .nav-desktop-btn {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .hero-h1 {
    font-size: clamp(2.1rem, 9vw, 3rem);
  }

  .hero-ports {
    flex-direction: column;
    align-items: flex-start;
  }

  .svc-grid {
    grid-template-columns: 1fr;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .process-track {
    grid-template-columns: 1fr 1fr;
  }

  .process-track::before {
    display: none;
  }

  .industry-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .testi-grid .testi-card:last-child {
    display: flex;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: var(--s3);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--s5);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
    flex-wrap: wrap;
  }
}


/* ──────────────────────────────────────────────────────────────────
   § 23  RESPONSIVE · SMALL  ≤ 480 px
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 480px) {
  :root {
    --s16: 4rem;
    --s12: 3rem;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

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

  .about-pillars {
    grid-template-columns: 1fr;
  }

  .industry-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-track {
    grid-template-columns: 1fr;
  }

  .why-ports {
    grid-template-columns: 1fr;
  }

  .why-port {
    border-right: none !important;
  }

  .why-port:last-child {
    border-bottom: none !important;
  }
}