/* ============================================================
   ROOT VARIABLES
   ============================================================ */
:root {
  --clr-orange: #E8722A;
  --clr-orange-lt: #F5943A;
  --clr-orange-dk: #C25A18;
  --clr-navy: #1B3A5C;
  --clr-navy-dk: #0D2238;
  --clr-navy-xdk: #061020;
  --clr-cyan: #00ADEF;
  --clr-cyan-lt: #33C5FF;
  --clr-gold: #F0B429;
  --clr-gold-lt: #FFD060;
  --clr-white: #FFFFFF;
  --clr-off: #F4F6F8;
  --clr-border: #E4E8EE;
  --clr-text: #0D2238;
  --clr-muted: #32373d;
  --ff-ar: 'Cairo', sans-serif;
  --ff-en: 'Rajdhani', sans-serif;
  --ff-hero: 'Barlow Condensed', sans-serif;
  --nav-h: 72px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.08);
  --shadow-float: 0 20px 60px rgba(0, 0, 0, 0.18);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--ff-ar);
  background: var(--clr-white);
  color: var(--clr-text);
  overflow-x: hidden;
  direction: rtl;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--clr-navy-xdk);
}

::-webkit-scrollbar-thumb {
  background: var(--clr-orange);
  border-radius: 3px;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 86px;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(4, 10, 20, 0.82) 0%, rgba(4, 10, 20, 0.0) 100%);
}

#navbar.scrolled {
  background: rgba(6, 16, 32, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
  height: 60px;
}

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

#navbar .nav-logo img {
  height: 44px;
  transition: height var(--transition);
  /* logo has black bg — we mix-blend to handle dark/light */
  /* For dark navbar: show as-is. We add a subtle fade */
  filter: brightness(1);
}

#navbar.scrolled .nav-logo img {
  height: 36px;
}

#navbar .nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

#navbar .nav-links a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.5px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
}

#navbar .nav-links a:hover {
  color: var(--clr-orange-lt);
  background: rgba(255, 255, 255, 0.07);
  text-shadow: 0 0 12px rgba(232, 114, 42, 0.4);
}

#navbar .nav-links .nav-cta {
  background: var(--clr-orange);
  color: var(--clr-white) !important;
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

#navbar .nav-links .nav-cta:hover {
  background: var(--clr-orange-lt);
  transform: translateY(-1px);
}

#navbar .nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

#navbar .nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

#mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(6, 16, 32, 0.98);
  backdrop-filter: blur(20px);
  padding: 20px;
  z-index: 999;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

#mobile-nav.open {
  display: block;
}

#mobile-nav a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color var(--transition);
}

#mobile-nav a:hover {
  color: var(--clr-orange-lt);
}

/* ============================================================
   HERO SWIPER
   ============================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
}

/* --- Swiper shell --- */
#hero .hero-swiper {
  width: 100%;
  height: 100%;
}

/* --- Each slide --- */
#hero .hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* slide backgrounds */
#hero .hero-swiper .swiper-slide.slide-1 {
  background: linear-gradient(135deg, #040E1A 0%, #0D2238 45%, #0A3050 100%);
}

#hero .hero-swiper .swiper-slide.slide-2 {
  background: linear-gradient(135deg, #06100A 0%, #0A2010 45%, #0D3020 100%);
}

#hero .hero-swiper .swiper-slide.slide-3 {
  background: linear-gradient(135deg, #100A04 0%, #1A1005 45%, #261808 100%);
}

/* shared grid overlay */
#hero .hero-swiper .swiper-slide .slide-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 173, 239, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 173, 239, 0.03) 1px, transparent 1px);
  background-size: 55px 55px;
  pointer-events: none;
}

/* radial accent per slide */
#hero .hero-swiper .swiper-slide.slide-1 .slide-accent {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 50%, rgba(0, 173, 239, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 85% 20%, rgba(27, 58, 92, 0.6) 0%, transparent 70%);
  pointer-events: none;
}

#hero .hero-swiper .swiper-slide.slide-2 .slide-accent {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 50%, rgba(0, 200, 80, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 85% 20%, rgba(0, 80, 30, 0.5) 0%, transparent 70%);
  pointer-events: none;
}

#hero .hero-swiper .swiper-slide.slide-3 .slide-accent {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 50%, rgba(240, 180, 41, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 85% 20%, rgba(80, 40, 0, 0.5) 0%, transparent 70%);
  pointer-events: none;
}

/* wave bottom */
#hero .hero-swiper .swiper-slide .slide-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  pointer-events: none;
  overflow: hidden;
}

#hero .hero-swiper .swiper-slide .slide-waves svg {
  position: absolute;
  bottom: 0;
  width: 200%;
  left: -50%;
}

#hero .hero-swiper .swiper-slide .slide-waves .w1 {
  animation: wave-drift 9s linear infinite;
  opacity: 0.35;
}

#hero .hero-swiper .swiper-slide .slide-waves .w2 {
  animation: wave-drift 13s linear infinite reverse;
  opacity: 0.2;
}

@keyframes wave-drift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(25%);
  }
}

/* slide content layout */
#hero .hero-swiper .swiper-slide .slide-content {
  position: relative;
  z-index: 5;
  width: 100%;
  /*padding-top: var(--nav-h);*/
}

/* slide text block */
#hero .hero-swiper .swiper-slide .s-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(232, 114, 42, 0.12);
  border: 1px solid rgba(232, 114, 42, 0.28);
  border-radius: 30px;
  padding: 7px 18px;
  margin-bottom: 22px;
}

#hero .hero-swiper .swiper-slide .s-eyebrow .dot {
  width: 7px;
  height: 7px;
  background: var(--clr-orange);
  border-radius: 50%;
  animation: blink 1.8s ease-in-out infinite;
}

#hero .hero-swiper .swiper-slide .s-eyebrow span {
  color: var(--clr-orange-lt);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

@keyframes blink {

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

  50% {
    opacity: 0.4;
    transform: scale(1.5);
  }
}

#hero .hero-swiper .swiper-slide .s-headline {
  font-family: var(--ff-ar);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--clr-white);
}

#hero .hero-swiper .swiper-slide .s-headline .hl-orange {
  color: var(--clr-orange);
}

#hero .hero-swiper .swiper-slide .s-headline .hl-cyan {
  color: var(--clr-cyan-lt);
}

#hero .hero-swiper .swiper-slide .s-headline .hl-gold {
  color: var(--clr-gold);
}

#hero .hero-swiper .swiper-slide .s-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
  margin-bottom: 32px;
  max-width: 520px;
}

#hero .hero-swiper .swiper-slide .s-sub strong {
  color: var(--clr-cyan-lt);
}

/* pill badge (route) */
#hero .hero-swiper .swiper-slide .s-route-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, rgba(240, 180, 41, 0.14), rgba(240, 180, 41, 0.04));
  border: 1px solid rgba(240, 180, 41, 0.38);
  border-radius: 8px;
  padding: 12px 22px;
  margin-bottom: 38px;
}

#hero .hero-swiper .swiper-slide .s-route-pill .rp-icon {
  color: var(--clr-gold);
  font-size: 1.1rem;
}

#hero .hero-swiper .swiper-slide .s-route-pill .rp-text {
  color: var(--clr-gold);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

#hero .hero-swiper .swiper-slide .s-route-pill .rp-sep {
  color: rgba(255, 255, 255, 0.2);
}

#hero .hero-swiper .swiper-slide .s-route-pill .rp-code {
  color: rgba(240, 180, 41, 0.55);
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--ff-en);
  letter-spacing: 2px;
}

/* CTA group */
#hero .hero-swiper .swiper-slide .s-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

#hero .hero-swiper .swiper-slide .s-ctas .btn-solid {
  background: linear-gradient(135deg, var(--clr-orange), var(--clr-orange-lt));
  color: var(--clr-white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 8px 28px rgba(232, 114, 42, 0.38);
  border: none;
}

#hero .hero-swiper .swiper-slide .s-ctas .btn-solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(232, 114, 42, 0.55);
  color: var(--clr-white);
}

#hero .hero-swiper .swiper-slide .s-ctas .btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

#hero .hero-swiper .swiper-slide .s-ctas .btn-ghost:hover {
  border-color: var(--clr-cyan);
  color: var(--clr-cyan-lt);
  background: rgba(0, 173, 239, 0.08);
}

/* RIGHT visual per slide */
#hero .hero-swiper .swiper-slide .slide-visual {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* Slide 1 visual: route map card */
#hero .hero-swiper .swiper-slide .vis-map-card {
  width: 420px;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 173, 239, 0.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-float);
  animation: float-y 5s ease-in-out infinite;
}

#hero .hero-swiper .swiper-slide .vis-map-card .mc-top {
  background: rgba(0, 173, 239, 0.06);
  border-bottom: 1px solid rgba(0, 173, 239, 0.12);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

#hero .hero-swiper .swiper-slide .vis-map-card .mc-top .mc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

#hero .hero-swiper .swiper-slide .vis-map-card .mc-top .mc-title {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--ff-en);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-right: auto;
}

#hero .hero-swiper .swiper-slide .vis-map-card .mc-body {
  padding: 24px;
}

#hero .hero-swiper .swiper-slide .vis-map-card .mc-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

#hero .hero-swiper .swiper-slide .vis-map-card .port-block {
  text-align: center;
}

#hero .hero-swiper .swiper-slide .vis-map-card .port-block .port-flag {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 6px;
}

#hero .hero-swiper .swiper-slide .vis-map-card .port-block .port-name {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--clr-white);
  display: block;
}

#hero .hero-swiper .swiper-slide .vis-map-card .port-block .port-country {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-top: 2px;
}

#hero .hero-swiper .swiper-slide .vis-map-card .route-line-vis {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 16px;
}

#hero .hero-swiper .swiper-slide .vis-map-card .route-line-vis .rl-ship {
  font-size: 1.6rem;
  animation: sail 4s ease-in-out infinite;
}

#hero .hero-swiper .swiper-slide .vis-map-card .route-line-vis .rl-line {
  width: 100%;
  height: 1.5px;
  background: linear-gradient(90deg, var(--clr-cyan), var(--clr-gold), var(--clr-cyan));
  border-radius: 2px;
}

#hero .hero-swiper .swiper-slide .vis-map-card .route-line-vis .rl-dist {
  font-size: 0.7rem;
  color: var(--clr-gold);
  font-weight: 700;
  font-family: var(--ff-en);
  letter-spacing: 1px;
}

@keyframes sail {

  0%,
  100% {
    transform: translateX(-8px) rotate(-3deg);
  }

  50% {
    transform: translateX(8px) rotate(3deg);
  }
}

#hero .hero-swiper .swiper-slide .vis-map-card .mc-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

#hero .hero-swiper .swiper-slide .vis-map-card .mc-stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 12px 8px;
  text-align: center;
}

#hero .hero-swiper .swiper-slide .vis-map-card .mc-stat .sv {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--clr-orange);
  display: block;
  font-family: var(--ff-en);
}

#hero .hero-swiper .swiper-slide .vis-map-card .mc-stat .sk {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-top: 3px;
}

/* Slide 2 visual: services grid */
#hero .hero-swiper .swiper-slide .vis-services {
  width: 420px;
  max-width: 100%;
  animation: float-y 5s ease-in-out infinite;
  animation-delay: 0.5s;
}

#hero .hero-swiper .swiper-slide .vis-services .svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

#hero .hero-swiper .swiper-slide .vis-services .svc-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  transition: var(--transition);
  cursor: default;
}

#hero .hero-swiper .swiper-slide .vis-services .svc-card:hover {
  background: rgba(0, 173, 239, 0.08);
  border-color: rgba(0, 173, 239, 0.3);
  transform: translateY(-4px);
}

#hero .hero-swiper .swiper-slide .vis-services .svc-card .svc-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
  display: block;
}

#hero .hero-swiper .swiper-slide .vis-services .svc-card .svc-brand {
  font-family: var(--ff-en);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--clr-cyan);
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

#hero .hero-swiper .swiper-slide .vis-services .svc-card .svc-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-white);
}

/* Slide 3 visual: competitive metrics */
#hero .hero-swiper .swiper-slide .vis-metrics {
  width: 400px;
  max-width: 100%;
  animation: float-y 5s ease-in-out infinite;
  animation-delay: 1s;
}

#hero .hero-swiper .swiper-slide .vis-metrics .metric-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  transition: var(--transition);
}

#hero .hero-swiper .swiper-slide .vis-metrics .metric-item:hover {
  background: rgba(240, 180, 41, 0.08);
  border-color: rgba(240, 180, 41, 0.25);
  transform: translateX(-6px);
}

#hero .hero-swiper .swiper-slide .vis-metrics .metric-item .mi-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(240, 180, 41, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--clr-gold);
  flex-shrink: 0;
}

#hero .hero-swiper .swiper-slide .vis-metrics .metric-item .mi-info {}

#hero .hero-swiper .swiper-slide .vis-metrics .metric-item .mi-val {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--clr-gold);
  font-family: var(--ff-en);
  display: block;
  line-height: 1;
}

#hero .hero-swiper .swiper-slide .vis-metrics .metric-item .mi-label {
  font-size: 0.82rem;
  color: rgb(255 255 255 / 76%);
  margin-top: 3px;
  display: block;
}

@keyframes float-y {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

/* Swiper controls */
#hero .swiper-pagination {
  bottom: 36px !important;
}

#hero .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  transition: var(--transition);
}

#hero .swiper-pagination-bullet-active {
  background: var(--clr-orange);
  width: 28px;
  border-radius: 4px;
}

#hero .swiper-button-next,
#hero .swiper-button-prev {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  transition: var(--transition);
  color: white !important;
  padding: 10px;
}

#hero .swiper-button-next:hover,
#hero .swiper-button-prev:hover {
  background: var(--clr-orange);
  border-color: var(--clr-orange);
}

#hero .swiper-button-next::after,
#hero .swiper-button-prev::after {
  font-size: 0.9rem !important;
  font-weight: 900;
}

/* slide-in animations per active slide */
#hero .hero-swiper .swiper-slide-active .s-eyebrow {
  animation: slideUp 0.6s 0.1s both ease;
}

#hero .hero-swiper .swiper-slide-active .s-headline {
  animation: slideUp 0.7s 0.2s both ease;
}

#hero .hero-swiper .swiper-slide-active .s-sub {
  animation: slideUp 0.7s 0.35s both ease;
}

#hero .hero-swiper .swiper-slide-active .s-route-pill {
  animation: slideUp 0.7s 0.45s both ease;
}

#hero .hero-swiper .swiper-slide-active .s-ctas {
  animation: slideUp 0.7s 0.55s both ease;
}

#hero .hero-swiper .swiper-slide-active .slide-visual {
  animation: slideLeft 0.8s 0.3s both ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

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

/* ============================================================
   STATS STRIP
   ============================================================ */
#stats-strip {
  background: var(--clr-navy-xdk);
  border-top: 1px solid rgba(0, 173, 239, 0.1);
  padding: 28px 0;
}

#stats-strip .strip-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

#stats-strip .strip-inner .stat-item {
  text-align: center;
  padding: 8px 20px;
  flex: 1;
  min-width: 140px;
}

#stats-strip .strip-inner .stat-item .s-num {
  font-family: var(--ff-en);
  font-size: 2rem;
  font-weight: 800;
  color: var(--clr-orange);
  display: block;
  line-height: 1;
}

#stats-strip .strip-inner .stat-item .s-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px;
  display: block;
}

#stats-strip .strip-inner .stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.06);
  align-self: stretch;
  min-height: 50px;
}

/* ============================================================
   SHARED SECTION ELEMENTS
   ============================================================ */
.section-py {
  padding: 96px 0;
}

.section-py-sm {
  padding: 64px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--clr-orange);
  margin-bottom: 14px;
}

.eyebrow .ew-line {
  width: 28px;
  height: 2px;
  background: var(--clr-orange);
  border-radius: 1px;
}

.eyebrow.ew-center {
  justify-content: center;
}

.eyebrow.ew-cyan {
  color: var(--clr-cyan);
}

.eyebrow.ew-cyan .ew-line {
  background: var(--clr-cyan);
}

.eyebrow.ew-gold {
  color: var(--clr-gold);
}

.eyebrow.ew-gold .ew-line {
  background: var(--clr-gold);
}

.sec-title {
  font-size: clamp(1.8rem, 3.5vw, 2.9rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--clr-text);
}

.sec-title.on-dark {
  color: var(--clr-white);
}

.sec-title .acc {
  color: var(--clr-orange);
}

.sec-title .acc-cyan {
  color: var(--clr-cyan-lt);
}

.sec-title .acc-gold {
  color: var(--clr-gold);
}

.sec-lead {
  font-size: 1.02rem;
  color: var(--clr-muted);
  line-height: 1.85;
  margin-bottom: 20px;
}

.sec-lead.on-dark {
  color: rgb(255 255 255 / 70%);
}

.sec-lead strong {
  color: var(--clr-cyan);
  font-weight: 700;
}

/* scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 {
  transition-delay: 0.1s;
}

.reveal.delay-2 {
  transition-delay: 0.2s;
}

.reveal.delay-3 {
  transition-delay: 0.3s;
}

.reveal.delay-4 {
  transition-delay: 0.4s;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about {
  overflow: hidden;
  position: relative;
}

#about .about-glow {
  position: absolute;
  top: -120px;
  left: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 173, 239, 0.04) 0%, transparent 65%);
  pointer-events: none;
}

#about .about-text-col {
  padding-left: 20px;
}

#about .about-info-table {
  background: var(--clr-off);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  margin-top: 28px;
}

#about .about-info-table .info-row {
  display: flex;
  align-items: center;
  padding: 15px 22px;
  gap: 16px;
  border-bottom: 1px solid var(--clr-border);
}

#about .about-info-table .info-row:last-child {
  border-bottom: none;
}

#about .about-info-table .info-row .ik {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--clr-muted);
  min-width: 150px;
  flex-shrink: 0;
  letter-spacing: 0.3px;
}

#about .about-info-table .info-row .iv {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-text);
}

#about .about-info-table .info-row .iv a {
  color: var(--clr-orange);
}

#about .about-info-table .info-row .iv .badge-pill {
  background: rgba(232, 114, 42, 0.1);
  color: var(--clr-orange);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  border: 1px solid rgba(232, 114, 42, 0.2);
}

/* map visual */
#about .about-map-col {
  position: relative;
}

#about .about-map-col .map-wrap {
  background: var(--clr-navy-dk);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0 30px 80px rgba(13, 34, 56, 0.22);
  position: relative;
}

#about .about-map-col .map-wrap::before {
  content: 'GOLDEN LINE MA-01';
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-en);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: rgba(232, 114, 42, 0.35);
  z-index: 10;
  white-space: nowrap;
}


/* ============================================================
   VISION / MISSION / COMPETITIVE EDGE SECTION
   ============================================================ */

#vision-mission {
  background: var(--clr-white);
  position: relative;
  overflow: hidden;
}

#vision-mission .vm-bg-texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(232, 114, 42, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(0, 173, 239, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

#vision-mission .vm-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--clr-border);
  transition: var(--transition);
}

#vision-mission .vm-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-float);
}

#vision-mission .vm-card.vm-vision {
  background: linear-gradient(145deg, var(--clr-navy-dk) 0%, #0A2540 100%);
  border-color: rgba(232, 114, 42, 0.2);
}

#vision-mission .vm-card.vm-mission {
  background: linear-gradient(145deg, #040E1A 0%, var(--clr-navy-dk) 100%);
  border-color: rgba(0, 173, 239, 0.2);
}

#vision-mission .vm-card .vm-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

#vision-mission .vm-card.vm-vision .vm-card-icon {
  background: rgba(232, 114, 42, 0.15);
  color: var(--clr-orange);
}

#vision-mission .vm-card.vm-mission .vm-card-icon {
  background: rgba(0, 173, 239, 0.15);
  color: var(--clr-cyan);
}

#vision-mission .vm-card .vm-card-tag {
  font-family: var(--ff-en);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

#vision-mission .vm-card.vm-vision .vm-card-tag {
  color: var(--clr-orange);
}

#vision-mission .vm-card.vm-mission .vm-card-tag {
  color: var(--clr-cyan);
}

#vision-mission .vm-card .vm-card-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--clr-white);
  margin-bottom: 16px;
  line-height: 1.25;
}

#vision-mission .vm-card .vm-card-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.85;
}

#vision-mission .vm-card .vm-card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
}

#vision-mission .vm-card.vm-vision .vm-card-accent {
  background: linear-gradient(90deg, var(--clr-orange), transparent);
}

#vision-mission .vm-card.vm-mission .vm-card-accent {
  background: linear-gradient(90deg, var(--clr-cyan), transparent);
}

#vision-mission .vm-edge-header {
  text-align: center;
  margin-bottom: 36px;
}

#vision-mission .vm-edge-table {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-card);
}

#vision-mission .vm-edge-table .vm-edge-head {
  display: grid;
  grid-template-columns: 200px 1fr 180px;
  background: var(--clr-navy-dk);
}

#vision-mission .vm-edge-table .vm-eh-cell {
  padding: 16px 24px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgb(255 255 255 / 75%);
}

#vision-mission .vm-edge-table .vm-eh-cell.vm-eh-main {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

#vision-mission .vm-edge-table .vm-edge-row {
  display: grid;
  grid-template-columns: 200px 1fr 180px;
  border-bottom: 1px solid var(--clr-border);
  background: var(--clr-white);
  transition: background var(--transition);
}

#vision-mission .vm-edge-table .vm-edge-row:last-child {
  border-bottom: none;
}

#vision-mission .vm-edge-table .vm-edge-row:hover {
  background: #FFF8F5;
}

#vision-mission .vm-edge-table .vm-ec {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--clr-muted);
}

#vision-mission .vm-edge-table .vm-ec.vm-ec-label {
  font-weight: 700;
  color: var(--clr-text);
}

#vision-mission .vm-edge-table .vm-ec.vm-ec-main {
  color: #000;
  font-size: 0.86rem;
  line-height: 1.6;
  border-right: 1px solid var(--clr-border);
  border-left: 1px solid var(--clr-border);
}

#vision-mission .vm-edge-table .vm-ec-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

#vision-mission .vm-edge-table .vm-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

#vision-mission .vm-edge-table .vm-badge-orange {
  background: rgba(232, 114, 42, 0.1);
  color: var(--clr-orange);
  border: 1px solid rgba(232, 114, 42, 0.22);
}

#vision-mission .vm-edge-table .vm-badge-cyan {
  background: rgba(0, 173, 239, 0.1);
  color: var(--clr-cyan);
  border: 1px solid rgba(0, 173, 239, 0.22);
}

#vision-mission .vm-edge-table .vm-badge-gold {
  background: rgba(240, 180, 41, 0.1);
  color: var(--clr-gold);
  border: 1px solid rgba(240, 180, 41, 0.22);
}

#vision-mission .vm-edge-table .vm-badge-green {
  background: rgba(0, 200, 100, 0.08);
  color: #00B85A;
  border: 1px solid rgba(0, 200, 100, 0.2);
}

#vision-mission .vm-edge-table .vm-badge-purple {
  background: rgba(168, 85, 247, 0.08);
  color: #A855F7;
  border: 1px solid rgba(168, 85, 247, 0.2);
}

/* Responsive */
@media (max-width: 991px) {

  #vision-mission .vm-edge-table .vm-edge-head,
  #vision-mission .vm-edge-table .vm-edge-row {
    grid-template-columns: 160px 1fr 160px;
  }
}

@media (max-width: 767px) {
  #vision-mission .vm-card {
    padding: 28px 22px;
  }

  #vision-mission .vm-edge-table {
    overflow-x: auto;
  }

  #vision-mission .vm-edge-table .vm-edge-head,
  #vision-mission .vm-edge-table .vm-edge-row {
    grid-template-columns: 130px 1fr 150px;
    min-width: 460px;
  }

  #vision-mission .vm-edge-table .vm-ec,
  #vision-mission .vm-edge-table .vm-eh-cell {
    padding: 14px 14px;
    font-size: 0.8rem;
  }
}

@media (max-width: 575px) {
  #vision-mission .vm-card {
    padding: 24px 18px;
  }

  #vision-mission .vm-card .vm-card-title {
    font-size: 1.25rem;
  }
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
#problem {
  background: linear-gradient(160deg, var(--clr-navy-xdk) 0%, #0A2540 100%);
  position: relative;
  overflow: hidden;
}

#problem .prob-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 173, 239, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 173, 239, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

#problem .prob-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  height: 100%;
  transition: var(--transition);
}

#problem .prob-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(232, 114, 42, 0.28);
  transform: translateY(-6px);
}

#problem .prob-card .pc-icon {
  width: 52px;
  height: 52px;
  background: rgba(232, 114, 42, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--clr-orange);
  margin-bottom: 18px;
}

#problem .prob-card .pc-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 10px;
}

#problem .prob-card .pc-desc {
  font-size: 0.86rem;
  color: rgb(255 255 255 / 76%);
  line-height: 1.75;
}

/* opportunity stats */
#problem .opp-stats-row {
  margin-top: 52px;
}

#problem .opp-stats-row .opp-card {
  text-align: center;
  padding: 28px 16px;
  border: 1px solid rgba(240, 180, 41, 0.18);
  border-radius: var(--radius-md);
  background: rgba(240, 180, 41, 0.04);
  height: 100%;
  transition: var(--transition);
}

#problem .opp-stats-row .opp-card:hover {
  border-color: rgba(240, 180, 41, 0.38);
  background: rgba(240, 180, 41, 0.08);
}

#problem .opp-stats-row .opp-card .oc-num {
  font-family: var(--ff-en);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--clr-gold);
  display: block;
  line-height: 1;
}

#problem .opp-stats-row .opp-card .oc-label {
  font-size: 0.8rem;
  color: rgb(255 255 255 / 75%);
  margin-top: 10px;
  display: block;
  line-height: 1.5;
}

/* solution banner */
#problem .solution-banner {
  background: linear-gradient(135deg, rgba(232, 114, 42, 0.12), rgba(232, 114, 42, 0.04));
  border: 1px solid rgba(232, 114, 42, 0.28);
  border-radius: var(--radius-lg);
  padding: 52px 40px;
  margin-top: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#problem .solution-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(232, 114, 42, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

#problem .solution-banner .sb-quote {
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 900;
  color: var(--clr-white);
  margin-bottom: 12px;
  position: relative;
}

#problem .solution-banner .sb-quote .hl {
  color: var(--clr-orange);
}

#problem .solution-banner .sb-sub {
  color: rgb(255 255 255 / 76%);
  font-size: 0.98rem;
  position: relative;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
#services {
  background: var(--clr-off);
}

#services .svc-grid .service-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--clr-border);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

#services .svc-grid .service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-orange), var(--clr-cyan));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

#services .svc-grid .service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}

#services .svc-grid .service-card:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

#services .svc-grid .service-card .sc-icon-area {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, var(--clr-navy-dk), var(--clr-navy));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--clr-cyan);
  margin-bottom: 22px;
  box-shadow: 0 8px 22px rgba(13, 34, 56, 0.18);
}

#services .svc-grid .service-card .sc-brand {
  font-family: var(--ff-en);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--clr-cyan);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

#services .svc-grid .service-card .sc-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--clr-text);
  margin-bottom: 12px;
}

#services .svc-grid .service-card .sc-desc {
  font-size: 0.88rem;
  color: var(--clr-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

#services .svc-grid .service-card .sc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 200, 100, 0.07);
  border: 1px solid rgba(0, 200, 100, 0.22);
  color: #00B85A;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

#services .svc-grid .service-card .sc-badge.partial {
  background: rgba(255, 160, 0, 0.07);
  border-color: rgba(255, 160, 0, 0.22);
  color: #E08000;
}

/* containers table */
#services .containers-wrap {
  margin-top: 64px;
}

#services .containers-wrap .ct-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--clr-text);
  margin-bottom: 24px;
}

#services .containers-wrap .ct-table {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-card);
}

#services .containers-wrap .ct-table .ct-head {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr 80px;
  background: var(--clr-navy-dk);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#services .containers-wrap .ct-table .ct-head .ch,
#services .containers-wrap .ct-table .ct-row .cr {
  padding: 14px 20px;
  display: flex;
  align-items: center;
}

#services .containers-wrap .ct-table .ct-row {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr 80px;
  border-bottom: 1px solid var(--clr-border);
  background: var(--clr-white);
  transition: background var(--transition);
}

#services .containers-wrap .ct-table .ct-row:last-child {
  border-bottom: none;
}

#services .containers-wrap .ct-table .ct-row:hover {
  background: #FFF8F5;
}

#services .containers-wrap .ct-table .ct-row .cr {
  font-size: 0.88rem;
  color: var(--clr-muted);
}

#services .containers-wrap .ct-table .ct-row .cr.bold {
  font-weight: 700;
  color: var(--clr-text);
}

#services .containers-wrap .ct-table .ct-row .cr .avail {
  color: #00B85A;
  font-weight: 700;
}

/* ============================================================
   GOLDEN LINE SECTION
   ============================================================ */
#golden-line {
  background: var(--clr-navy-dk);
  position: relative;
  overflow: hidden;
}

#golden-line .gl-bg-blur {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 173, 239, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 173, 239, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

#golden-line .route-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 48px 0;
  position: relative;
}

#golden-line .route-hero .rh-port {
  text-align: center;
  position: relative;
  z-index: 2;
}

#golden-line .route-hero .rh-port .rp-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 2.2rem;
  position: relative;
}

#golden-line .route-hero .rh-port .rp-circle.hod {
  background: linear-gradient(135deg, #1B3A5C, #0D2238);
  border: 2px solid rgba(0, 173, 239, 0.38);
  box-shadow: 0 0 30px rgba(0, 173, 239, 0.18);
}

#golden-line .route-hero .rh-port .rp-circle.jed {
  background: linear-gradient(135deg, #163016, #0A200A);
  border: 2px solid rgba(0, 200, 80, 0.38);
  box-shadow: 0 0 30px rgba(0, 200, 80, 0.18);
}

#golden-line .route-hero .rh-port .rp-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--clr-white);
  display: block;
}

#golden-line .route-hero .rh-port .rp-country {
  font-size: 0.76rem;
  color: rgb(255 255 255 / 69%);
  display: block;
  margin-top: 3px;
}

#golden-line .route-hero .rh-track {
  flex: 1;
  max-width: 380px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

#golden-line .route-hero .rh-track .rt-badge {
  background: rgba(240, 180, 41, 0.1);
  border: 1px solid rgba(240, 180, 41, 0.36);
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 0.76rem;
  color: var(--clr-gold);
  font-weight: 700;
  font-family: var(--ff-en);
  letter-spacing: 1px;
}

#golden-line .route-hero .rh-track .rt-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-cyan), var(--clr-gold), var(--clr-cyan));
  border-radius: 2px;
  position: relative;
}

#golden-line .route-hero .rh-track .rt-line .rt-ship {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  animation: track-sail 5s ease-in-out infinite;
}

@keyframes track-sail {

  0%,
  100% {
    left: 10%;
  }

  50% {
    left: 82%;
  }
}

#golden-line .route-hero .rh-track .rt-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--ff-en);
  letter-spacing: 2px;
  text-transform: uppercase;
}

#golden-line .gl-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-top: 44px;
}

#golden-line .gl-specs .gs-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  transition: var(--transition);
}

#golden-line .gl-specs .gs-card:hover {
  background: rgba(0, 173, 239, 0.06);
  border-color: rgba(0, 173, 239, 0.2);
}

#golden-line .gl-specs .gs-card .gs-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 10px;
}

#golden-line .gl-specs .gs-card .gs-val {
  font-family: var(--ff-en);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--clr-orange);
  display: block;
  line-height: 1;
}

#golden-line .gl-specs .gs-card .gs-key {
  font-size: 0.78rem;
  color: rgb(255 255 255 / 73%);
  margin-top: 7px;
  display: block;
}

/* ============================================================
   COMPARISON SECTION
   ============================================================ */
#comparison {
  background: var(--clr-white);
}

#comparison .cmp-table-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-float);
  border: 1px solid var(--clr-border);
}

#comparison .cmp-table-wrap .cmp-head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  background: var(--clr-navy-dk);
}

#comparison .cmp-table-wrap .cmp-head .ch-cell {
  padding: 20px 22px;
  font-size: 0.84rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}

#comparison .cmp-table-wrap .cmp-head .ch-cell.marafee-hd {
  background: linear-gradient(135deg, var(--clr-orange-dk), var(--clr-orange));
  color: var(--clr-white);
}

#comparison .cmp-table-wrap .cmp-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  border-bottom: 1px solid var(--clr-border);
  transition: background var(--transition);
}

#comparison .cmp-table-wrap .cmp-row:last-child {
  border-bottom: none;
}

#comparison .cmp-table-wrap .cmp-row:hover {
  background: #FFF5EF;
}

#comparison .cmp-table-wrap .cmp-row .cc {
  padding: 17px 22px;
  font-size: 0.86rem;
  color: var(--clr-muted);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

#comparison .cmp-table-wrap .cmp-row .cc.criterion {
  justify-content: flex-start;
  font-weight: 700;
  color: var(--clr-text);
  text-align: right;
}

#comparison .cmp-table-wrap .cmp-row .cc.mac {
  background: rgba(232, 114, 42, 0.04);
  font-weight: 600;
  color: var(--clr-text);
}

#comparison .cmp-table-wrap .cmp-row .cc .ck {
  color: #00B85A;
}

#comparison .cmp-table-wrap .cmp-row .cc .cx {
  color: #FF4444;
  opacity: 0.75;
}

#comparison .cmp-table-wrap .cmp-row .cc .cw {
  color: #E08000;
}

/* ============================================================
   WHY US SECTION
   ============================================================ */
#why-us {
  background: linear-gradient(155deg, var(--clr-navy-dk) 0%, #0B2845 100%);
  position: relative;
}

#why-us .wu-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 26px 24px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  transition: var(--transition);
  cursor: default;
}

#why-us .wu-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(232, 114, 42, 0.22);
  transform: translateX(-8px);
}

#why-us .wu-card .wc-num {
  font-family: var(--ff-en);
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(232, 114, 42, 0.18);
  line-height: 1;
  min-width: 48px;
  text-align: center;
}

#why-us .wu-card .wc-body .wb-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 7px;
}

#why-us .wu-card .wc-body .wb-desc {
  font-size: 0.86rem;
  color: rgb(255 255 255 / 81%);
  line-height: 1.72;
}

#why-us .wu-highlight-box {
  background: rgba(240, 180, 41, 0.07);
  border: 1px solid rgba(240, 180, 41, 0.2);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  margin-top: 20px;
}

#why-us .wu-highlight-box .wh-num {
  font-family: var(--ff-en);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--clr-gold);
  display: block;
  line-height: 1;
}

#why-us .wu-highlight-box .wh-label {
  font-size: 0.88rem;
  color: rgb(255 255 255 / 76%);
  margin-top: 10px;
  display: block;
  line-height: 1.6;
}

/* ============================================================
   HOW TO SHIP
   ============================================================ */
#how-to-ship {
  background: var(--clr-off);
}

#how-to-ship .steps-timeline {
  position: relative;
}

#how-to-ship .steps-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 34px;
  width: 2px;
  background: linear-gradient(180deg, var(--clr-orange), var(--clr-cyan));
}

#how-to-ship .steps-timeline .step-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 36px;
  direction: rtl;
  position: relative;
}

#how-to-ship .steps-timeline .step-item .si-num {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-orange), var(--clr-orange-lt));
  color: var(--clr-white);
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(232, 114, 42, 0.38);
}

#how-to-ship .steps-timeline .step-item .si-body {
  flex: 1;
  padding-top: 12px;
}

#how-to-ship .steps-timeline .step-item .si-body .sb-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--clr-text);
  margin-bottom: 7px;
}

#how-to-ship .steps-timeline .step-item .si-body .sb-desc {
  font-size: 0.88rem;
  color: var(--clr-muted);
  line-height: 1.7;
}

#how-to-ship .price-box {
  background: var(--clr-navy-dk);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  margin-top: 24px;
}

#how-to-ship .price-box .pb-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

#how-to-ship .price-box .pb-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.86rem;
  color: rgb(255 255 255 / 70%);
}

#how-to-ship .price-box .pb-item .pi-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-cyan);
  flex-shrink: 0;
}

#how-to-ship .price-box .pb-item.highlight {
  color: var(--clr-orange-lt);
  font-weight: 700;
}

/* ============================================================
   EXPANSION SECTION
   ============================================================ */
#expansion {
  background: var(--clr-white);
}

#expansion .exp-phases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

#expansion .exp-phases .ep-card {
  border-radius: var(--radius-md);
  padding: 30px 24px;
  border: 1px solid var(--clr-border);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

#expansion .exp-phases .ep-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

#expansion .exp-phases .ep-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

#expansion .exp-phases .ep-card.p1::before {
  background: var(--clr-orange);
}

#expansion .exp-phases .ep-card.p2::before {
  background: var(--clr-cyan);
}

#expansion .exp-phases .ep-card.p3::before {
  background: var(--clr-gold);
}

#expansion .exp-phases .ep-card .ec-phase {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

#expansion .exp-phases .ep-card.p1 .ec-phase {
  color: var(--clr-orange);
}

#expansion .exp-phases .ep-card.p2 .ec-phase {
  color: var(--clr-cyan);
}

#expansion .exp-phases .ep-card.p3 .ec-phase {
  color: var(--clr-gold);
}

#expansion .exp-phases .ep-card .ec-time {
  font-size: 0.8rem;
  color: var(--clr-muted);
  margin-bottom: 16px;
  display: block;
}

#expansion .exp-phases .ep-card .ec-routes {
  list-style: none;
}

#expansion .exp-phases .ep-card .ec-routes li {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-text);
  padding: 7px 0;
  border-bottom: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  gap: 8px;
}

#expansion .exp-phases .ep-card .ec-routes li:last-child {
  border-bottom: none;
}

#expansion .exp-phases .ep-card .ec-routes li::before {
  content: '→';
  color: var(--clr-muted);
  font-size: 0.75rem;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact {
  background: var(--clr-navy-xdk);
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-orange), var(--clr-cyan), var(--clr-gold));
}

#contact .contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

#contact .contact-grid .cg-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
}

#contact .contact-grid .cg-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(0, 173, 239, 0.2);
}

#contact .contact-grid .cg-card .cgc-label {
  font-family: var(--ff-en);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 22px;
  display: block;
}

#contact .contact-grid .cg-card .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#contact .contact-grid .cg-card .contact-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

#contact .contact-grid .cg-card .contact-item .ci-icon {
  width: 42px;
  height: 42px;
  background: rgba(232, 114, 42, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-orange);
  font-size: 0.95rem;
  flex-shrink: 0;
}

#contact .contact-grid .cg-card .contact-item .ci-body .cib-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.637);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  display: block;
}

#contact .contact-grid .cg-card .contact-item .ci-body .cib-val {
  font-size: 0.9rem;
  color: var(--clr-white);
  font-weight: 500;
  line-height: 1.5;
}

#contact .contact-grid .cg-card .contact-item .ci-body .cib-val a {
  color: var(--clr-cyan-lt);
  transition: color var(--transition);
}

#contact .contact-grid .cg-card .contact-item .ci-body .cib-val a:hover {
  color: var(--clr-orange-lt);
}

#contact .cta-final-box {
  background: linear-gradient(135deg, rgba(232, 114, 42, 0.13), rgba(0, 173, 239, 0.07));
  border: 1px solid rgba(232, 114, 42, 0.28);
  border-radius: var(--radius-lg);
  padding: 52px 40px;
  text-align: center;
}

#contact .cta-final-box .cfb-title {
  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
  font-weight: 900;
  color: var(--clr-white);
  margin-bottom: 14px;
}

#contact .cta-final-box .cfb-sub {
  color: rgb(255 255 255 / 70%);
  font-size: 1rem;
  margin-bottom: 34px;
}

#contact .cta-final-box .cfb-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

#contact .cta-final-box .cfb-btns .btn-solid {
  background: linear-gradient(135deg, var(--clr-orange), var(--clr-orange-lt));
  color: var(--clr-white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 8px 28px rgba(232, 114, 42, 0.35);
}

#contact .cta-final-box .cfb-btns .btn-solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(232, 114, 42, 0.52);
  color: var(--clr-white);
}

#contact .cta-final-box .cfb-btns .btn-outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

#contact .cta-final-box .cfb-btns .btn-outline:hover {
  border-color: var(--clr-cyan);
  color: var(--clr-cyan-lt);
  background: rgba(0, 173, 239, 0.07);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #020A12;
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

footer .ft-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

footer .ft-inner .ft-left .ft-tagline {
  color: var(--clr-orange-lt);
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 5px;
}

footer .ft-inner .ft-left .ft-brand {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.781);
}

footer .ft-inner .ft-center .ftc-name {
  font-family: var(--ff-en);
  font-size: 1.2rem;
  font-weight: 800;
  color: rgba(232, 114, 42, 0.55);
  letter-spacing: 3px;
  text-align: center;
}

footer .ft-inner .ft-center .ftc-route {
  font-family: var(--ff-en);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0, 173, 239, 0.35);
  text-align: center;
  margin-top: 4px;
}

footer .ft-inner .ft-right {
  text-align: end;
}

footer .ft-copy,
footer .ft-copy a {
  font-size: 0.78rem;
  color: rgb(255 255 255 / 53%);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ============================================================
   RESPONSIVE — FULL SYSTEM
   Breakpoints:
     xl  > 1199px  (large desktops — base)
     lg  991–1199  (small desktops / landscape tablets)
     md  768–990   (portrait tablets)
     sm  576–767   (large phones)
     xs  < 576     (small phones)
   ============================================================ */

/* ── LG: 991px and below ──────────────────────────────────── */
@media (max-width: 1199px) {

  /* Hero headline slightly smaller */
  #hero .hero-swiper .swiper-slide .s-headline {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
  }

  /* Contact grid: 2 cols */
  #contact .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── MD: 991px and below ──────────────────────────────────── */
@media (max-width: 991px) {

  /* ----- NAVBAR ----- */
  #navbar .nav-links {
    display: none;
  }

  #navbar .nav-toggle {
    display: flex;
  }

  /* ----- HERO ----- */
  #hero {
    min-height: 100svh;
  }

  #hero .hero-swiper .swiper-slide .slide-visual {
    display: none;
  }

  #hero .hero-swiper .swiper-slide .s-headline {
    font-size: clamp(2.4rem, 7vw, 4rem);
  }

  #hero .hero-swiper .swiper-slide .slide-content .row {
    min-height: 100svh;
  }

  /* ----- STATS STRIP ----- */
  #stats-strip .strip-inner {
    justify-content: center;
    gap: 0;
  }

  #stats-strip .strip-inner .stat-item {
    min-width: 120px;
    flex: 0 0 33.33%;
    padding: 14px 8px;
  }

  #stats-strip .strip-inner .stat-item .s-num {
    font-size: 1.6rem;
  }

  /* ----- ABOUT: map below text ----- */
  #about .row {
    flex-direction: column;
  }

  #about .about-map-col .map-wrap {
    max-width: 480px;
    margin: 0 auto;
  }

  /* ----- GOLDEN LINE route ----- */
  #golden-line .route-hero {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }

  #golden-line .route-hero .rh-track {
    transform: rotate(90deg);
    max-width: 200px;
  }

  #golden-line .route-hero .rh-track .rt-badge {
    transform: rotate(-90deg);
    white-space: nowrap;
  }

  #golden-line .route-hero .rh-track .rt-label {
    transform: rotate(-90deg);
    white-space: nowrap;
  }

  /* ----- CONTACT GRID: 1 col ----- */
  #contact .contact-grid {
    grid-template-columns: 1fr;
  }

  #contact .cta-final-box {
    padding: 36px 24px;
  }

  /* ----- WHY US ----- */
  #why-us .wu-card:hover {
    transform: none;
  }

  /* ----- FOOTER ----- */
  footer .ft-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  footer .ft-inner .ft-right {
    text-align: center;
  }
}

/* ── SM: 767px and below ──────────────────────────────────── */
@media (max-width: 767px) {

  /* Global spacing */
  .section-py {
    padding: 64px 0;
  }

  .section-py-sm {
    padding: 44px 0;
  }

  /* ----- HERO ----- */
  #hero .hero-swiper .swiper-slide .s-headline {
    font-size: clamp(2rem, 8.5vw, 3rem);
  }

  #hero .hero-swiper .swiper-slide .s-sub {
    font-size: 0.93rem;
    max-width: 100%;
  }

  #hero .hero-swiper .swiper-slide .s-route-pill {
    flex-wrap: wrap;
    gap: 6px;
    padding: 10px 14px;
  }

  #hero .hero-swiper .swiper-slide .s-ctas {
    flex-direction: column;
    gap: 10px;
  }

  #hero .hero-swiper .swiper-slide .s-ctas .btn-solid,
  #hero .hero-swiper .swiper-slide .s-ctas .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  /* Swiper nav arrows hidden on small */
  #hero .swiper-button-next,
  #hero .swiper-button-prev {
    display: none;
  }

  /* ----- STATS STRIP ----- */
  #stats-strip .strip-inner .stat-item {
    flex: 0 0 50%;
    padding: 12px 6px;
  }

  #stats-strip .strip-inner .stat-item .s-num {
    font-size: 1.4rem;
  }

  #stats-strip .strip-inner .stat-item .s-label {
    font-size: 0.7rem;
  }

  /* ----- SEC TITLES ----- */
  .sec-title {
    font-size: clamp(1.6rem, 5.5vw, 2.2rem);
  }

  /* ----- ABOUT info table ----- */
  #about .about-info-table .info-row {
    flex-direction: column;
    gap: 4px;
  }

  #about .about-info-table .info-row .ik {
    min-width: unset;
  }

  /* ----- PROBLEM cards: already 2-col via Bootstrap ----- */

  /* ----- OPPORTUNITY stats ----- */
  #problem .opp-stats-row .opp-card {
    padding: 20px 12px;
  }

  #problem .opp-stats-row .opp-card .oc-num {
    font-size: 1.8rem;
  }

  /* ----- SOLUTION BANNER ----- */
  #problem .solution-banner {
    padding: 32px 20px;
  }

  #problem .solution-banner .sb-quote {
    font-size: 1.15rem;
  }

  /* ----- SERVICES grid: 1 col ----- */
  #services .svc-grid .service-card {
    padding: 26px 20px;
  }

  /* Containers table: hide middle columns, show type + avail only */
  #services .containers-wrap .ct-table .ct-head,
  #services .containers-wrap .ct-table .ct-row {
    grid-template-columns: 2fr 1fr 80px;
  }

  /* hide "Use" column on mobile */
  #services .containers-wrap .ct-table .ct-head .ch:nth-child(3),
  #services .containers-wrap .ct-table .ct-row .cr:nth-child(3) {
    display: none;
  }

  #services .containers-wrap .ct-table .ct-head .ch,
  #services .containers-wrap .ct-table .ct-row .cr {
    padding: 12px 10px;
    font-size: 0.82rem;
  }

  /* ----- GOLDEN LINE specs: 2 cols ----- */
  #golden-line .gl-specs {
    grid-template-columns: 1fr 1fr;
  }

  #golden-line .route-hero .rh-port .rp-circle {
    width: 72px;
    height: 72px;
    font-size: 1.7rem;
  }

  /* ----- COMPARISON table: scrollable ----- */
  #comparison .cmp-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  #comparison .cmp-table-wrap .cmp-head,
  #comparison .cmp-table-wrap .cmp-row {
    grid-template-columns: 140px 100px 100px 120px;
    min-width: 460px;
  }

  #comparison .cmp-table-wrap .cmp-head .ch-cell,
  #comparison .cmp-table-wrap .cmp-row .cc {
    padding: 12px 10px;
    font-size: 0.76rem;
  }

  /* ----- WHY US highlight box ----- */
  #why-us .wu-highlight-box .wh-num {
    font-size: 2.2rem;
  }

  /* ----- HOW TO SHIP ----- */
  #how-to-ship .steps-timeline::before {
    right: 25px;
  }

  #how-to-ship .steps-timeline .step-item {
    gap: 14px;
  }

  #how-to-ship .steps-timeline .step-item .si-num {
    width: 52px;
    height: 52px;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  #how-to-ship .price-box {
    padding: 22px 18px;
  }

  /* ----- EXPANSION phases ----- */
  #expansion .exp-phases {
    grid-template-columns: 1fr;
  }

  /* ----- CONTACT ----- */
  #contact .cta-final-box {
    padding: 28px 18px;
  }

  #contact .cta-final-box .cfb-btns {
    flex-direction: column;
    align-items: center;
  }

  #contact .cta-final-box .cfb-btns .btn-solid,
  #contact .cta-final-box .cfb-btns .btn-outline {
    width: 100%;
    justify-content: center;
  }
}

/* ── XS: 575px and below ──────────────────────────────────── */
@media (max-width: 575px) {

  /* ----- HERO ----- */
  #hero .hero-swiper .swiper-slide .s-headline {
    font-size: clamp(1.85rem, 9vw, 2.6rem);
  }

  #hero .hero-swiper .swiper-slide .s-eyebrow span {
    font-size: 0.7rem;
    letter-spacing: 0.8px;
  }

  /* Pagination dots closer to bottom */
  #hero .swiper-pagination {
    bottom: 20px !important;
  }

  /* ----- NAVBAR height ----- */
  :root {
    --nav-h: 60px;
  }

  #navbar .nav-logo img {
    height: 36px;
  }

  /* ----- STATS: 2 per row full ----- */
  #stats-strip .strip-inner .stat-item {
    flex: 0 0 50%;
  }

  /* ----- SECTION TITLES ----- */
  .sec-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  /* ----- ABOUT map ----- */
  #about .about-map-col .map-wrap {
    aspect-ratio: 4/3;
  }

  /* ----- INFO ROW: badge wraps ----- */
  #about .about-info-table .info-row .iv .badge-pill {
    font-size: 0.68rem;
    padding: 3px 8px;
  }

  /* ----- GOLDEN LINE route ----- */
  #golden-line .route-hero {
    gap: 20px;
  }

  #golden-line .gl-specs {
    grid-template-columns: 1fr 1fr;
  }

  /* ----- COMPARISON scroll hint ----- */
  #comparison .cmp-table-wrap::before {
    content: '← scroll →';
    display: block;
    text-align: center;
    font-size: 0.7rem;
    color: rgba(0, 173, 239, 0.5);
    padding: 6px 0;
    letter-spacing: 1.5px;
  }

  #comparison .cmp-table-wrap .cmp-head,
  #comparison .cmp-table-wrap .cmp-row {
    grid-template-columns: 120px 88px 88px 110px;
  }

  /* ----- SERVICE cards ----- */
  #services .svc-grid .service-card .sc-icon-area {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin-bottom: 16px;
  }

  /* ----- WHY US cards ----- */
  #why-us .wu-card {
    padding: 20px 16px;
  }

  #why-us .wu-card .wc-num {
    font-size: 2rem;
    min-width: 38px;
  }

  /* ----- STEPS ----- */
  #how-to-ship .steps-timeline::before {
    display: none;
  }

  #how-to-ship .steps-timeline .step-item {
    background: rgba(232, 114, 42, 0.04);
    border: 1px solid rgba(232, 114, 42, 0.1);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 14px;
  }

  /* ----- FOOTER ----- */
  footer {
    padding: 28px 0;
  }

  footer .ft-inner .ft-tagline {
    font-size: 0.82rem;
  }

  footer .ft-inner .ft-brand {
    font-size: 0.75rem;
  }

  footer .ft-inner .ft-copy {
    font-size: 0.72rem;
  }
}

/* ── LTR (English) responsive overrides ───────────────────── */
/* Steps timeline direction flip for LTR on mobile */
@media (max-width: 575px) {
  body.ltr-mode #how-to-ship .steps-timeline::before {
    display: none;
  }

  body.ltr-mode #how-to-ship .steps-timeline .step-item {
    direction: ltr;
  }
}

@media (max-width: 767px) {
  body.ltr-mode #how-to-ship .steps-timeline::before {
    right: auto;
    left: 25px;
  }
}

@media (max-width: 991px) {
  body.ltr-mode #how-to-ship .steps-timeline::before {
    right: auto;
    left: 34px;
  }

  body.ltr-mode footer .ft-inner .ft-right {
    text-align: center;
  }
}