/* Meridian Forwarding — corporate freight / logistics */

:root {
  /* Brand palette */
  --bg-page: #f5f9fb;
  --bg-white: #ffffff;
  --bg-muted: #eef4f8;
  --bg-footer: #0f1f3d;
  --bg-footer-deep: #091729;
  --text: #0f1f3d;
  --text-secondary: #3d5266;
  --text-muted: #5c6b7a;
  --border: #d4e0e8;
  --border-strong: #a8bcc8;
  --navy: #0f1f3d;
  --navy-hover: #1a3a6b;
  --accent: #2a7fd4;
  --accent-hover: #1e6ab8;
  --accent-subtle: rgba(42, 127, 212, 0.14);
  --font-sans: "Source Sans 3", system-ui, sans-serif;
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --radius: 6px;
  --radius-sm: 4px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(1, 31, 61, 0.06);
  --shadow-md: 0 10px 40px rgba(1, 31, 61, 0.09);
  --shadow-card: 0 4px 24px rgba(1, 31, 61, 0.07);
  --shadow-card-hover: 0 20px 48px rgba(1, 31, 61, 0.11);
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --container-max: 1180px;
  --shadow-lg: 0 16px 48px rgba(1, 31, 61, 0.1);
  --shadow-xl: 0 24px 64px rgba(1, 31, 61, 0.12);
  --transition: 0.2s var(--ease);
  --transition-slow: 0.35s var(--ease-out);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg-page);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -35%, rgba(66, 176, 213, 0.11) 0%, transparent 52%),
    radial-gradient(ellipse 70% 45% at 100% 40%, rgba(1, 31, 61, 0.04) 0%, transparent 50%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(66, 176, 213, 0.28);
  color: var(--text);
}

a:focus-visible,
button:focus-visible,
.lang-btn:focus-visible,
.nav-toggle:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--navy-hover);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--accent);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 1000;
  padding: 12px 20px;
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(var(--container-max), calc(100% - 48px));
  margin-inline: auto;
}

/* Transport modes strip — reads “freight company” immediately */

.transport-strip {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #fafcfd 100%);
  border-bottom: 1px solid var(--border);
  box-shadow:
    inset 0 -1px 0 rgba(66, 176, 213, 0.22),
    0 4px 20px rgba(1, 31, 61, 0.04);
  color: var(--navy);
}

.transport-strip::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--navy-hover) 100%);
  opacity: 0.85;
  pointer-events: none;
}

.transport-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
  padding: 11px 0;
}

.transport-strip-label {
  flex: 1 0 100%;
  text-align: center;
  margin: 0;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (min-width: 720px) {
  .transport-strip-inner {
    justify-content: flex-start;
    gap: 10px 28px;
  }

  .transport-strip-label {
    flex: 0 0 auto;
    text-align: left;
    margin-right: 8px;
  }
}

.transport-strip-modes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.transport-strip-modes li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.transport-strip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--navy);
  background: linear-gradient(155deg, rgba(66, 176, 213, 0.2) 0%, rgba(1, 31, 61, 0.06) 100%);
  border: 1px solid rgba(66, 176, 213, 0.28);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.transport-strip-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent-hover);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 224, 232, 0.85);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--header-h);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 20px);
  margin-left: auto;
}

.lang-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.lang-select {
  appearance: none;
  -webkit-appearance: none;
  padding: 7px 28px 7px 11px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--navy);
  background: linear-gradient(180deg, #fff 0%, var(--bg-page) 100%);
  box-shadow: 0 1px 2px rgba(1, 31, 61, 0.05);
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.lang-select:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(66, 176, 213, 0.12);
}

.lang-switch::after {
  content: "";
  position: absolute;
  right: 9px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--text-muted);
  pointer-events: none;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1875rem;
  letter-spacing: -0.01em;
}

.logo-text {
  font-weight: 700;
}

.logo:hover {
  color: var(--text);
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}

.logo-mark .logo-svg {
  width: 36px;
  height: 36px;
  display: block;
  border-radius: 3px;
}

.logo--footer .logo-accent {
  color: rgba(255, 255, 255, 0.5);
}

.logo-accent {
  font-weight: 300;
  color: var(--text-muted);
  margin-left: 5px;
}

.logo--footer .logo-accent {
  color: rgba(255, 255, 255, 0.65);
}

.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  display: block;
  padding: 10px 14px;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.nav-list a:hover {
  color: var(--navy);
  background: var(--bg-muted);
}

.nav-cta {
  margin-left: 8px;
  background: var(--accent) !important;
  color: #fff !important;
  border: 1px solid var(--accent);
  border-radius: 999px;
  box-shadow: 0 2px 12px rgba(66, 176, 213, 0.3);
  transition:
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.nav-cta:hover {
  background: var(--accent-hover) !important;
  color: #fff !important;
  border-color: var(--accent-hover);
}

@media (prefers-reduced-motion: no-preference) {
  .nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(66, 176, 213, 0.42);
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--text);
  border-radius: 1px;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-list {
    position: fixed;
    inset: var(--header-h) 16px auto 16px;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  }

  .nav-list.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-cta {
    margin-left: 0;
    text-align: center;
  }
}

/* Hero — integrated carrier / corporate maritime */

.hero.hero--carrier {
  position: relative;
  padding: clamp(40px, 8vw, 88px) 0 clamp(48px, 9vw, 96px);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hero.hero--carrier .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 70% at 85% 20%, rgba(66, 176, 213, 0.18) 0%, transparent 48%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(2, 58, 92, 0.55) 0%, transparent 45%),
    linear-gradient(165deg, #011f3d 0%, #023a5c 42%, #054a7a 72%, #023a5c 100%);
  pointer-events: none;
}

.hero.hero--carrier .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, transparent 45%, rgba(1, 17, 35, 0.42) 100%);
}

.hero.hero--carrier::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, black 0%, transparent 88%);
}

.hero-bg-glow {
  position: absolute;
  top: -30%;
  right: -20%;
  z-index: 2;
  width: min(75vw, 560px);
  height: 130%;
  background: radial-gradient(ellipse at center, rgba(66, 176, 213, 0.28) 0%, transparent 58%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-title-block {
  border-left: 4px solid var(--accent);
  padding: 0.35rem 0 0.35rem 1.25rem;
  margin: 0 0 1.35rem;
  box-shadow: -1px 0 0 rgba(125, 211, 237, 0.35);
}

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-transform: none;
  color: #fff;
  text-wrap: balance;
}

.hero-title-line1 {
  display: block;
  color: rgba(255, 255, 255, 0.96);
}

.hero-title-line2 {
  display: block;
  margin-top: 0.2em;
  color: #9ddfef;
  font-weight: 600;
  text-shadow: 0 0 40px rgba(66, 176, 213, 0.35);
}

.hero.hero--carrier .hero-lead {
  margin: 0 0 1.85rem;
  max-width: 38rem;
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 400;
}

.eyebrow--on-dark {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1rem;
}

.hero-actions {
  margin-bottom: 0;
}

.btn--hero.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 0.9375rem;
  padding: 14px 28px;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn--hero.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
}

.btn--hero-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.btn--hero-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-aside {
    max-width: 22rem;
    margin-inline: auto;
    width: 100%;
  }
}

/* Full-bleed photography band */

.media-band {
  position: relative;
  min-height: min(320px, 42vw);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-block: 1px solid var(--border);
}

.media-band-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.media-band-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1);
  will-change: transform;
}

@media (prefers-reduced-motion: no-preference) {
  .media-band-img {
    animation: media-band-drift 36s ease-in-out infinite alternate;
  }

  @keyframes media-band-drift {
    0% {
      transform: scale(1) translate(0, 0);
    }
    100% {
      transform: scale(1.07) translate(-1.2%, -0.8%);
    }
  }
}

.media-band-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(1, 31, 61, 0.12) 0%, transparent 22%, transparent 78%, rgba(1, 31, 61, 0.35) 100%),
    linear-gradient(
      105deg,
      rgba(1, 31, 61, 0.92) 0%,
      rgba(1, 31, 61, 0.55) 46%,
      rgba(1, 31, 61, 0.28) 100%
    );
}

.media-band-scrim::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.media-band-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 17rem);
  gap: clamp(24px, 5vw, 48px);
  align-items: end;
  padding: clamp(44px, 8vw, 72px) 0;
}

@media (max-width: 820px) {
  .media-band-content {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .media-band-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .media-band-stat {
    flex: 1 1 calc(50% - 5px);
    min-width: 140px;
  }
}

.media-band-copy {
  max-width: 38rem;
}

.media-band-eyebrow {
  margin: 0 0 10px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(125, 211, 237, 0.95);
}

.media-band-stats {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 400px) {
  .media-band-stats {
    flex-direction: column;
  }

  .media-band-stat {
    flex: 1 1 auto;
    min-width: 0;
  }
}

.media-band-stat {
  margin: 0;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.media-band-stat-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.media-band-title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.15rem);
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.02em;
  text-transform: none;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
  text-wrap: balance;
}

.media-band-sub {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero.hero--carrier .hero-actions {
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 2px 12px rgba(66, 176, 213, 0.28);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
}

@media (prefers-reduced-motion: no-preference) {
  .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(66, 176, 213, 0.38);
  }

  .btn-primary:active {
    transform: translateY(0);
  }
}

.btn-ghost {
  background: var(--bg-white);
  color: var(--navy);
  border-color: var(--border-strong);
}

.btn-ghost:hover {
  background: var(--bg-muted);
  border-color: var(--text-muted);
  color: var(--navy);
}

.btn-block {
  width: 100%;
}

/* Hero panel — live shipment card */

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.panel-card {
  padding: 22px 24px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.panel-card--dim {
  background: var(--bg-muted);
}

.panel-card--hero {
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--accent);
}

.hero.hero--carrier .panel-card--hero:not(.panel-card--dim) {
  background: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow:
    0 20px 56px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.hero.hero--carrier .panel-card--hero.panel-card--dim {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 3px solid rgba(125, 211, 237, 0.75);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.hero.hero--carrier .panel-card--hero.panel-card--dim .panel-small {
  color: rgba(255, 255, 255, 0.5);
}

.hero.hero--carrier .panel-card--hero.panel-card--dim .panel-strong {
  color: #fff;
}

.panel-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.panel-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.panel-badge {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 2px;
  border: 1px solid var(--border);
  background: var(--bg-page);
  color: var(--text-secondary);
}

.panel-route {
  margin: 0 0 14px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
}

.panel-bar {
  height: 5px;
  background: var(--bg-muted);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 10px;
  border: 1px solid var(--border);
}

.panel-bar-fill {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
}

.panel-meta {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.panel-small {
  margin: 0 0 4px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.panel-strong {
  margin: 0;
  font-weight: 600;
  color: var(--text-secondary);
}

/* Sections */

.section {
  padding: clamp(56px, 9vw, 96px) 0;
}

.section-services {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
}

.section-services--accent {
  border-top: 4px solid var(--accent);
  background-color: var(--bg-white);
  background-image: radial-gradient(circle at 1px 1px, rgba(1, 31, 61, 0.045) 1px, transparent 0);
  background-size: 32px 32px;
}

.section .eyebrow:not(.eyebrow--on-dark) {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.section .eyebrow:not(.eyebrow--on-dark)::before {
  content: "";
  width: 2rem;
  height: 3px;
  background: var(--accent);
  flex-shrink: 0;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 40px;
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head--center .eyebrow {
  justify-content: center;
}

.section-head--center .eyebrow::before {
  display: none;
}

.section-title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.25;
  color: var(--text);
  text-wrap: balance;
}

.section-desc {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.0625rem;
}

.section-head--center .section-desc {
  margin-top: 12px;
}

.section-desc--narrow {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2.5vw, 26px);
}

@media (max-width: 700px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, var(--bg-page) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition:
    border-color var(--transition),
    box-shadow var(--transition-slow),
    transform var(--transition-slow);
}

.card:hover {
  border-color: rgba(66, 176, 213, 0.45);
  box-shadow: var(--shadow-card-hover);
}

@media (prefers-reduced-motion: no-preference) {
  .card:hover {
    transform: translateY(-4px);
  }
}

.card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #1a222c;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(185deg, transparent 42%, rgba(1, 31, 61, 0.55) 100%);
  opacity: 0;
  transition: opacity var(--transition-slow);
  pointer-events: none;
}

.card:hover .card-media::after {
  opacity: 1;
}

.card-index {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 7px 11px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  background: rgba(1, 31, 61, 0.82);
  border: 1px solid rgba(125, 211, 237, 0.45);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s var(--ease);
}

@media (prefers-reduced-motion: no-preference) {
  .card:hover .card-media img {
    transform: scale(1.03);
  }
}

.card-body {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  padding: 10px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(66, 176, 213, 0.12) 0%, rgba(1, 31, 61, 0.04) 100%);
  border: 1px solid rgba(66, 176, 213, 0.22);
  color: var(--navy);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.card:hover .card-icon {
  border-color: rgba(66, 176, 213, 0.45);
  box-shadow: 0 0 0 1px rgba(66, 176, 213, 0.12);
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

.card-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
}

.card-text {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Why */

.section-why {
  background: var(--bg-page);
  border-bottom: 1px solid var(--border);
}

.why-copy-surface {
  position: relative;
  padding: clamp(22px, 3vw, 32px);
  padding-top: calc(clamp(22px, 3vw, 32px) + 3px);
  background: linear-gradient(165deg, #fff 0%, #f8fbfd 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.why-copy-surface::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(125, 211, 237, 0.65) 55%, rgba(66, 176, 213, 0.2) 100%);
  pointer-events: none;
}

.why-copy-surface .section-title {
  margin-bottom: 12px;
}

.why-copy-surface .checklist {
  margin-top: 20px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

@media (max-width: 800px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.checklist {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  border: 1px solid var(--border-strong);
  background: var(--bg-white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8l3 3 7-7' stroke='%2342b0d5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.why-photo {
  position: relative;
  margin: 0 0 20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.why-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(15, 27, 42, 0.45) 100%);
  pointer-events: none;
}

.why-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  vertical-align: middle;
}

.why-panel {
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.quote {
  position: relative;
  margin: 0;
  padding: 28px 28px 28px 32px;
  background: linear-gradient(145deg, #fff 0%, #f5fafc 100%);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.quote::before {
  content: "\201C";
  position: absolute;
  top: 12px;
  left: 14px;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.18;
  pointer-events: none;
}

.quote p {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 500;
}

.quote footer {
  position: relative;
  z-index: 1;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-family: var(--font-sans);
}

.quote cite {
  font-style: normal;
  color: var(--text-muted);
}

/* Process */

.section-process {
  background-color: var(--bg-muted);
  background-image: radial-gradient(circle at 1px 1px, rgba(1, 31, 61, 0.035) 1px, transparent 0);
  background-size: 28px 28px;
  border-block: 1px solid var(--border);
}

.section-process .section-head--center {
  margin-bottom: clamp(36px, 6vw, 52px);
}

.steps-board {
  position: relative;
  padding-top: 4px;
}

@media (min-width: 901px) {
  .steps-board::before {
    content: "";
    position: absolute;
    top: 36px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(66, 176, 213, 0.35) 12%,
      rgba(66, 176, 213, 0.35) 88%,
      transparent 100%
    );
    z-index: 0;
    pointer-events: none;
  }
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step {
  position: relative;
  padding: 24px 22px 24px 24px;
  background: linear-gradient(180deg, #fff 0%, #fafcfd 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-card);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.step:hover {
  border-color: rgba(66, 176, 213, 0.35);
  box-shadow: var(--shadow-md);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 12px;
  padding: 0 6px;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(145deg, var(--accent) 0%, var(--navy-hover) 100%);
  border-radius: 999px;
  box-shadow:
    0 2px 10px rgba(66, 176, 213, 0.35),
    0 0 0 5px var(--bg-white);
  position: relative;
  z-index: 2;
}

.step-title {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.step-text {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* CTA / Form — split dispatch desk + paperwork */

.section-cta {
  padding: 0;
  border-bottom: 1px solid var(--border);
}

.section-cta--split {
  overflow: hidden;
}

.cta-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: min(560px, 85vh);
}

.cta-split-aside {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #011f3d 0%, #023a5c 55%, #034a7a 100%);
  color: #fff;
  padding: clamp(40px, 7vw, 80px) clamp(24px, 5vw, 56px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-split-aside::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: linear-gradient(165deg, #000 0%, transparent 72%);
  mask-image: linear-gradient(165deg, #000 0%, transparent 72%);
  pointer-events: none;
  opacity: 0.85;
}

.cta-split-aside-inner {
  position: relative;
  z-index: 1;
  max-width: 26rem;
  width: 100%;
}

.cta-split-title {
  color: #fff;
}

.cta-split-desc {
  color: rgba(255, 255, 255, 0.78);
}

.eyebrow--cta {
  color: rgba(125, 211, 237, 0.95);
  margin-bottom: 0.85rem;
}

.eyebrow--cta::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 3px;
  background: var(--accent);
  margin-right: 0.65rem;
  vertical-align: middle;
}

.cta-contact--light {
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.72);
}

.cta-contact--light p {
  margin: 0 0 10px;
}

.cta-contact--light strong {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.cta-contact--light a {
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 1px;
}

.cta-contact--light a:hover {
  color: #7dd3ed;
  border-bottom-color: rgba(125, 211, 237, 0.9);
}

.cta-split-main {
  background: linear-gradient(180deg, #fff 0%, #f7fafc 55%, #fff 100%);
  padding: clamp(40px, 7vw, 80px) clamp(24px, 5vw, 56px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.cta-split-main .quote-form-shell {
  max-width: 28rem;
  width: 100%;
}

@media (max-width: 900px) {
  .cta-split {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .cta-split-aside {
    justify-content: center;
    border-right: none;
    border-bottom: 3px solid var(--accent);
  }

  .cta-split-main {
    justify-content: center;
    padding-bottom: clamp(56px, 10vw, 96px);
  }
}

.quote-form-shell {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(1, 31, 61, 0.1);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  background: var(--bg-white);
}

.quote-form-head {
  padding: 22px 24px 20px;
  background: linear-gradient(118deg, #011f3d 0%, #023a5c 38%, #034a7a 92%);
  border-bottom: 1px solid rgba(125, 211, 237, 0.28);
  position: relative;
}

.quote-form-head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125, 211, 237, 0.5), transparent);
  opacity: 0.7;
  pointer-events: none;
}

.quote-form-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
}

.quote-form-lead {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.76);
}

.quote-form {
  padding: 28px;
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.quote-form--inset {
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.form-row {
  margin-bottom: 18px;
}

.form-row--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 500px) {
  .form-row--half {
    grid-template-columns: 1fr;
  }
}

.quote-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 1px 2px rgba(1, 31, 61, 0.04) inset;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow:
    0 0 0 3px rgba(66, 176, 213, 0.2),
    0 1px 2px rgba(1, 31, 61, 0.04) inset;
}

.quote-form textarea {
  resize: vertical;
  min-height: 96px;
}

.form-note {
  margin: 14px 0 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Footer */

.site-footer {
  position: relative;
  padding: 48px 0 24px;
  background: linear-gradient(180deg, var(--bg-footer-deep) 0%, var(--bg-footer) 28%, var(--bg-footer) 100%);
  color: rgba(255, 255, 255, 0.85);
  border-top: 4px solid var(--accent);
  box-shadow: 0 -12px 40px rgba(1, 31, 61, 0.12);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125, 211, 237, 0.45), transparent);
  pointer-events: none;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
}

.site-footer a:hover {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 40px);
  padding-bottom: 40px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-tagline {
  margin: 14px 0 0;
  max-width: 22rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
}

.footer-heading {
  margin: 0 0 14px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  display: block;
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
}

.footer-links a:hover {
  color: #7dd3ed;
}

.footer-kv {
  margin: 0 0 10px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.footer-kv--muted {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.48);
}

.footer-col--reach .footer-kv a {
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  padding-bottom: 1px;
}

.footer-col--reach .footer-kv a:hover {
  color: #7dd3ed;
  border-bottom-color: rgba(125, 211, 237, 0.85);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px 32px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-photo-credit {
  margin: 14px 0 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.38);
}

.footer-photo-credit a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-photo-credit a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.site-footer .logo {
  color: #fff;
}

/* In-page anchors — align with sticky header */
main section[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

/* Hero — subtle entrance (respects global reduced-motion rules) */
@media (prefers-reduced-motion: no-preference) {
  @keyframes hero-rise {
    from {
      opacity: 0;
      transform: translateY(14px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero.hero--carrier .hero-copy > * {
    animation: hero-rise 0.65s var(--ease-out) backwards;
  }

  .hero.hero--carrier .hero-copy > *:nth-child(1) {
    animation-delay: 0.04s;
  }

  .hero.hero--carrier .hero-copy > *:nth-child(2) {
    animation-delay: 0.1s;
  }

  .hero.hero--carrier .hero-copy > *:nth-child(3) {
    animation-delay: 0.16s;
  }

  .hero.hero--carrier .hero-copy > *:nth-child(4) {
    animation-delay: 0.22s;
  }

  .hero.hero--carrier .hero-aside {
    animation: hero-rise 0.75s var(--ease-out) 0.18s backwards;
  }
}

