
:root {
  --navy-950: #041121;
  --navy-900: #071a33;
  --navy-800: #0b2a4e;
  --navy-700: #123e6c;
  --gold-500: #f6ba2f;
  --gold-300: #ffda74;
  --blue-500: #1768ff;
  --cyan-500: #08bce5;
  --green-500: #10b981;
  --coral-500: #ff6b4a;
  --ink: #0d1b2b;
  --muted: #5f6e7f;
  --surface: #f5f8fc;
  --white: #ffffff;
  --border-soft: rgba(8, 29, 54, 0.11);
  --shadow: 0 24px 70px rgba(4, 17, 33, 0.13);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --background: #ffffff;
  --foreground: #0d1b2b;
  --card: #ffffff;
  --card-foreground: #0d1b2b;
  --popover: #ffffff;
  --popover-foreground: #0d1b2b;
  --primary: #071a33;
  --primary-foreground: #ffffff;
  --secondary: #edf3fa;
  --secondary-foreground: #071a33;
  --muted-foreground: #5f6e7f;
  --accent: #f6ba2f;
  --accent-foreground: #071a33;
  --destructive: #dc2626;
  --border: #dbe4ef;
  --input: #dbe4ef;
  --ring: #1768ff;
  --radius: 0.875rem;
}

@theme inline {
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --color-card: var(--card);
  --color-card-foreground: var(--card-foreground);
  --color-popover: var(--popover);
  --color-popover-foreground: var(--popover-foreground);
  --color-primary: var(--primary);
  --color-primary-foreground: var(--primary-foreground);
  --color-secondary: var(--secondary);
  --color-secondary-foreground: var(--secondary-foreground);
  --color-muted: var(--secondary);
  --color-muted-foreground: var(--muted-foreground);
  --color-accent: var(--accent);
  --color-accent-foreground: var(--accent-foreground);
  --color-destructive: var(--destructive);
  --color-border: var(--border);
  --color-input: var(--input);
  --color-ring: var(--ring);
}

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

html {
  scroll-behavior: smooth;
  background: var(--navy-950);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

::selection {
  background: var(--gold-500);
  color: var(--navy-950);
}

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

.site-shell {
  min-height: 100vh;
  background: var(--white);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 45;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(4, 17, 33, 0.84), rgba(4, 17, 33, 0.58));
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-inner.site-container {
  width: min(1320px, calc(100% - 32px));
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: auto;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.25));
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.nav-item {
  position: relative;
  padding-block: 19px;
}

.nav-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 9px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  font-weight: 720;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% - 5px);
  left: 50%;
  width: 310px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(5, 22, 43, 0.98);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 13px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 650;
}

.nav-dropdown-copy {
  display: grid;
  gap: 3px;
}

.nav-dropdown-copy strong {
  color: var(--white);
  font-size: 0.79rem;
}

.nav-dropdown-copy small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.67rem;
  font-weight: 520;
}

.nav-dropdown a:hover {
  color: var(--navy-950);
  background: var(--gold-500);
}

.nav-dropdown a:hover .nav-dropdown-copy strong,
.nav-dropdown a:hover .nav-dropdown-copy small {
  color: var(--navy-950);
}

.header-cta,
.mobile-menu-trigger {
  flex: 0 0 auto;
}

.header-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border-radius: 13px;
  color: var(--navy-950);
  background: var(--gold-500);
  font-size: 0.74rem;
  font-weight: 820;
  box-shadow: 0 12px 30px rgba(246, 186, 47, 0.21);
  transition: transform 180ms ease, background 180ms ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  background: var(--gold-300);
}

.mobile-menu-trigger {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.mobile-sheet {
  width: min(88vw, 390px) !important;
  max-width: none !important;
  border-left: 1px solid rgba(255, 255, 255, 0.13) !important;
  color: var(--white) !important;
  background: linear-gradient(165deg, var(--navy-800), var(--navy-950) 68%) !important;
}

.mobile-sheet-header {
  padding: 24px 22px 14px !important;
}

.mobile-sheet .brand-logo {
  height: 76px;
}

.mobile-nav {
  padding: 10px 18px 24px;
  overflow-y: auto;
}

.mobile-nav-group > a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.91);
  font-size: 1rem;
  font-weight: 760;
}

.mobile-nav-group > a:hover,
.mobile-nav-group > a.is-active {
  color: var(--navy-950);
  background: var(--gold-500);
}

.mobile-subnav {
  display: grid;
  padding: 4px 0 9px 19px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  margin-left: 13px;
}

.mobile-subnav a {
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.87rem;
}

.mobile-subnav a:hover {
  color: var(--gold-300);
}

.mobile-sheet-footer {
  margin-top: auto;
  padding: 18px 22px 28px;
}

.hero-carousel {
  position: relative;
  width: 100%;
  min-height: 78svh;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero-carousel-home {
  min-height: 100svh;
}

.hero-media,
.hero-scrim,
.hero-image {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.045);
  transition: opacity 1.5s ease, transform 7.5s ease;
}

.hero-image.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-scrim {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 17, 33, 0.83) 0%, rgba(4, 17, 33, 0.47) 49%, rgba(4, 17, 33, 0.16) 78%),
    linear-gradient(0deg, rgba(4, 17, 33, 0.62), transparent 45%),
    linear-gradient(180deg, rgba(4, 17, 33, 0.32), transparent 28%);
}

.hero-copy {
  z-index: 2;
  padding-top: 170px;
  padding-bottom: 135px;
}

.hero-copy h1 {
  width: min(900px, 92%);
  margin: 18px 0 19px;
  font-size: clamp(2.8rem, 6vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.061em;
  font-weight: 870;
  text-wrap: balance;
  text-shadow: 0 12px 44px rgba(0, 0, 0, 0.24);
}

.hero-carousel:not(.hero-carousel-home) .hero-copy h1 {
  max-width: 980px;
  font-size: clamp(2.7rem, 5.4vw, 5.7rem);
}

.hero-description {
  width: min(680px, 92%);
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.24rem);
  line-height: 1.7;
  text-wrap: balance;
}

.eyebrow,
.eyebrow-light {
  margin: 0;
  font-size: 0.73rem;
  line-height: 1.3;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  font-weight: 850;
}

.eyebrow {
  color: var(--blue-500);
}

.eyebrow-light {
  color: var(--gold-300);
}

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

.button {
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border: 0;
  border-radius: 14px;
  font-size: 0.88rem;
  font-weight: 820;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-gold {
  color: var(--navy-950);
  background: var(--gold-500);
  box-shadow: 0 15px 34px rgba(246, 186, 47, 0.22);
}

.button-gold:hover {
  background: var(--gold-300);
  box-shadow: 0 17px 38px rgba(246, 186, 47, 0.29);
}

.button-glass {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.27);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
}

.button-glass:hover {
  background: rgba(255, 255, 255, 0.16);
}

.button-navy {
  color: var(--white);
  background: var(--navy-800);
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 36px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-dot {
  width: 30px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.38);
  transition: width 200ms ease, background 200ms ease;
}

.hero-dot.is-active {
  width: 56px;
  background: var(--gold-500);
}

.hero-arrows {
  display: flex;
  gap: 8px;
}

.hero-arrows button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-arrows button:hover {
  color: var(--navy-950);
  background: var(--gold-500);
}

.next-cargo-section {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
}

.next-cargo-section > img,
.next-cargo-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.next-cargo-section > img {
  object-fit: cover;
}

.next-cargo-overlay {
  background: linear-gradient(90deg, rgba(4, 17, 33, 0.94), rgba(4, 17, 33, 0.69) 47%, rgba(4, 17, 33, 0.18));
}

.next-cargo-content {
  position: relative;
  z-index: 2;
  padding-block: 90px;
}

.next-cargo-content h2 {
  width: min(650px, 90%);
  margin: 14px 0;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.next-cargo-content > p:not(.eyebrow-light) {
  width: min(580px, 92%);
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.7;
}

.cargo-facts {
  width: min(720px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 30px 0 22px;
}

.cargo-facts span {
  min-height: 106px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-content: center;
  gap: 2px 7px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
}

.cargo-facts svg {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--gold-500);
}

.cargo-facts small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.cargo-facts strong {
  font-size: 0.92rem;
}

.section {
  padding-block: 110px;
}

.section-light {
  background: var(--white);
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading h2,
.tracking-layout h2,
.contact-layout h2,
.about-grid h2,
.detail-layout h2,
.cta-band h2,
.trust-layout h2 {
  margin: 12px 0 0;
  font-size: clamp(2.15rem, 4.5vw, 4.45rem);
  line-height: 1.02;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  align-items: end;
  gap: 70px;
}

.split-heading > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.centered-heading {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(4, 17, 33, 0.05);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  background: var(--blue-500);
  box-shadow: 0 13px 28px rgba(23, 104, 255, 0.22);
}

.service-tone-2 .service-icon { background: var(--coral-500); box-shadow: 0 13px 28px rgba(255, 107, 74, 0.22); }
.service-tone-3 .service-icon { background: var(--green-500); box-shadow: 0 13px 28px rgba(16, 185, 129, 0.22); }
.service-tone-4 .service-icon { color: var(--navy-950); background: var(--gold-500); box-shadow: 0 13px 28px rgba(246, 186, 47, 0.22); }

.service-card > span {
  margin: 25px 0 10px;
  color: #9aa8b8;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  font-weight: 850;
}

.service-card h3 {
  margin: 0;
  font-size: 1.3rem;
  letter-spacing: -0.025em;
}

.service-card p {
  margin: 13px 0 24px;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.7;
}

.service-card a {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-800);
  font-size: 0.87rem;
  font-weight: 820;
}

.process-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(23, 104, 255, 0.08), transparent 27%),
    linear-gradient(180deg, #f4f8fd, #ffffff);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-grid article {
  position: relative;
  padding: 26px 22px 28px;
  border: 1px solid rgba(9, 39, 74, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
}

.process-grid article::after {
  content: "";
  position: absolute;
  top: 48px;
  right: -15px;
  z-index: 2;
  width: 16px;
  height: 2px;
  background: var(--gold-500);
}

.process-grid article:last-child::after {
  display: none;
}

.process-grid article > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--blue-500);
  background: rgba(23, 104, 255, 0.1);
}

.process-grid article:nth-child(2) > span { color: var(--coral-500); background: rgba(255, 107, 74, 0.1); }
.process-grid article:nth-child(3) > span { color: var(--green-500); background: rgba(16, 185, 129, 0.1); }
.process-grid article:nth-child(4) > span { color: #a56b00; background: rgba(246, 186, 47, 0.16); }

.process-grid h3 {
  margin: 21px 0 8px;
  font-size: 1.06rem;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.65;
}

.trust-section,
.cta-band {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 12%, rgba(23, 104, 255, 0.32), transparent 31%),
    linear-gradient(135deg, var(--navy-800), var(--navy-950));
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: 42px 80px;
}

.trust-layout h2 {
  max-width: 730px;
}

.trust-points {
  display: grid;
  gap: 13px;
}

.trust-points span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 680;
}

.trust-points svg { color: var(--gold-500); }
.trust-layout .button { width: fit-content; }

.detail-layout {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: 42px;
  align-items: start;
}

.detail-icon {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-500), var(--cyan-500));
  box-shadow: 0 20px 42px rgba(23, 104, 255, 0.25);
}

.lead-text {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.78;
}

.detail-points {
  display: grid;
  gap: 11px;
  padding: 24px;
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  background: var(--surface);
}

.detail-points span {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  color: var(--navy-800);
  background: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
}

.detail-points svg { color: var(--green-500); flex: 0 0 auto; }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 80px;
  align-items: start;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.value-grid article {
  min-height: 220px;
  padding: 24px;
  border-radius: 20px;
  color: var(--white);
  background: var(--navy-800);
}

.value-grid article:nth-child(2) { background: var(--blue-500); }
.value-grid article:nth-child(3) { color: var(--navy-950); background: var(--gold-500); }
.value-grid article:nth-child(4) { background: var(--green-500); }

.value-grid h3 { margin: 22px 0 8px; font-size: 1.16rem; }
.value-grid p { margin: 0; color: inherit; opacity: 0.8; font-size: 0.88rem; line-height: 1.65; }

.search-field {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(4, 17, 33, 0.05);
}

.search-field svg { color: var(--blue-500); flex: 0 0 auto; }
.search-field input { border: 0 !important; box-shadow: none !important; background: transparent !important; }
.search-field-wide { width: min(430px, 100%); }

.article-grid,
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
}

.article-card,
.catalog-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(4, 17, 33, 0.06);
}

.article-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 16px;
  color: var(--white);
  background: var(--blue-500);
}

.article-icon.tone-2 { background: var(--coral-500); }
.article-icon.tone-3 { background: var(--green-500); }

.article-card > span,
.catalog-card > span {
  color: var(--blue-500);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 850;
}

.article-card h3,
.catalog-card h3 {
  margin: 10px 0;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.article-card p,
.catalog-card p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.7;
}

.text-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  color: var(--navy-800);
  background: transparent;
  font-weight: 800;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 34px;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.catalog-number {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 18px;
  color: var(--white);
  background: var(--navy-800);
  font-weight: 900;
}

.catalog-number.tone-2 { background: var(--blue-500); }
.catalog-number.tone-3 { background: var(--green-500); }
.catalog-number.tone-4 { color: var(--navy-950); background: var(--gold-500); }
.catalog-card .button { margin-top: auto; }
.empty-state { padding: 40px; border-radius: 18px; background: var(--surface); text-align: center; color: var(--muted); }

.tracking-section {
  background: linear-gradient(135deg, #f4f8fd, #ffffff);
}

.tracking-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(380px, 1.2fr);
  align-items: start;
  gap: 80px;
}

.tracking-layout > div:first-child > p:not(.eyebrow),
.contact-layout > div:first-child > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}

.tracking-card,
.contact-card {
  padding: 30px;
  border: 1px solid var(--border-soft);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.tracking-card > svg { color: var(--blue-500); margin-bottom: 20px; }
.tracking-card form,
.contact-card { display: grid; gap: 16px; }
.tracking-card label,
.contact-card label { display: grid; gap: 8px; color: var(--navy-800); font-size: 0.82rem; font-weight: 760; }
.tracking-card input,
.contact-card input,
.contact-card textarea { border-radius: 12px; background: #f8fafc; }

.tracking-result {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 18px;
  padding: 15px;
  border-radius: 14px;
  color: #075f48;
  background: #eafaf5;
}

.tracking-result svg { flex: 0 0 auto; }
.tracking-result p { margin: 4px 0 0; color: #2c6b5b; font-size: 0.82rem; line-height: 1.55; }

.contact-section { background: var(--surface); }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; }
.form-notice { margin: 0; padding: 13px; border-radius: 12px; color: #075f48; background: #eafaf5; font-size: 0.84rem; }

.contact-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-points span { display: flex; align-items: center; gap: 10px; color: var(--navy-800); font-weight: 700; }
.contact-points svg { color: var(--green-500); }

.cta-band {
  padding-block: 72px;
}

.cta-band > .site-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-band h2 { font-size: clamp(2rem, 4vw, 3.6rem); }

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(180px, 0.6fr));
  gap: 70px;
  padding-block: 80px 60px;
}

.footer-brand p {
  max-width: 430px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.7;
}

.footer-grid > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-grid h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
}

.footer-grid a:hover { color: var(--gold-300); }

.footer-brand .brand-logo {
  height: 112px;
  margin-bottom: 10px;
}

.footer-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.76rem;
}

@media (max-width: 1120px) {
  .desktop-nav,
  .header-cta { display: none; }
  .mobile-menu-trigger { display: grid; margin-left: auto; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid article:nth-child(2)::after { display: none; }
  .detail-layout { grid-template-columns: 86px minmax(0, 1fr); }
  .detail-points { grid-column: 2; }
  .about-grid { gap: 44px; }
  .tracking-layout,
  .contact-layout { gap: 44px; }
}

@media (max-width: 820px) {
  .site-container { width: min(100% - 32px, 1180px); }
  .header-inner { min-height: 72px; }
  .header-inner.site-container { width: min(100% - 24px, 1180px); }
  .site-header .brand-logo { height: 58px; }
  .hero-carousel { min-height: 82svh; }
  .hero-carousel-home { min-height: 100svh; }
  .hero-copy { padding-top: 130px; padding-bottom: 125px; }
  .hero-copy h1,
  .hero-carousel:not(.hero-carousel-home) .hero-copy h1 { width: 100%; font-size: clamp(2.55rem, 11vw, 4.7rem); }
  .hero-description { width: 100%; }
  .hero-scrim { background: linear-gradient(90deg, rgba(4,17,33,.78), rgba(4,17,33,.28)), linear-gradient(0deg, rgba(4,17,33,.78), transparent 65%); }
  .hero-arrows { display: none; }
  .next-cargo-section { min-height: 720px; align-items: flex-end; }
  .next-cargo-overlay { background: linear-gradient(0deg, rgba(4, 17, 33, 0.96), rgba(4, 17, 33, 0.42) 78%, rgba(4, 17, 33, 0.2)); }
  .next-cargo-content { padding-block: 84px 60px; }
  .cargo-facts { grid-template-columns: 1fr; max-width: 520px; }
  .cargo-facts span { min-height: 82px; }
  .section { padding-block: 82px; }
  .split-heading { grid-template-columns: 1fr; gap: 20px; }
  .trust-layout { grid-template-columns: 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; }
  .article-grid,
  .catalog-grid { grid-template-columns: 1fr; }
  .catalog-toolbar { align-items: stretch; flex-direction: column; }
  .filter-pills { justify-content: flex-start; }
  .tracking-layout,
  .contact-layout { grid-template-columns: 1fr; }
  .cta-band > .site-container { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .site-container { width: min(100% - 24px, 1180px); }
  .site-header .brand-logo { height: 54px; }
  .hero-copy { padding-bottom: 112px; }
  .hero-copy h1,
  .hero-carousel:not(.hero-carousel-home) .hero-copy h1 { font-size: clamp(2.35rem, 12.5vw, 3.6rem); line-height: 0.98; }
  .hero-description { font-size: 0.96rem; line-height: 1.6; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-controls { bottom: 24px; }
  .hero-dot { width: 23px; }
  .hero-dot.is-active { width: 42px; }
  .next-cargo-content h2 { width: 100%; font-size: 2.55rem; }
  .service-grid,
  .process-grid,
  .value-grid { grid-template-columns: 1fr; }
  .process-grid article::after { display: none; }
  .service-card { min-height: 300px; }
  .detail-layout { grid-template-columns: 1fr; gap: 24px; }
  .detail-points { grid-column: 1; }
  .form-row { grid-template-columns: 1fr; }
  .tracking-card,
  .contact-card { padding: 22px; border-radius: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 18px; }
}

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

/* Éléments propres à la version PHP/MySQL */
.php-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(3, 12, 24, 0.68);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 220ms ease;
}

.php-mobile-overlay.is-open { opacity: 1; }

.php-mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 71;
  width: min(88vw, 390px);
  display: flex;
  flex-direction: column;
  color: #fff;
  background: linear-gradient(165deg, var(--navy-800), var(--navy-950) 68%);
  box-shadow: -25px 0 80px rgba(0, 0, 0, 0.35);
  transform: translateX(105%);
  transition: transform 300ms cubic-bezier(.2,.7,.2,1);
}

.php-mobile-menu.is-open { transform: translateX(0); }
.php-mobile-head { display:flex;align-items:center;justify-content:space-between;gap:18px;padding:22px;border-bottom:1px solid rgba(255,255,255,.12) }
.php-mobile-head > button { width:42px;height:42px;border:1px solid rgba(255,255,255,.17);border-radius:13px;color:#fff;background:rgba(255,255,255,.08);font-size:1.6rem }
.php-mobile-menu .mobile-nav { overflow-y:auto;flex:1 }
.menu-open { overflow: hidden; }

.whatsapp-float { position:fixed;right:22px;bottom:22px;z-index:35;width:55px;height:55px;display:grid;place-items:center;border:4px solid #fff;border-radius:50%;color:#fff;background:#19b96b;box-shadow:0 15px 35px rgba(0,0,0,.2);font-size:.76rem;font-weight:900 }
.cms-section { padding-block:80px;background:var(--section-bg,#fff);color:var(--section-color,#0d1b2b) }
.cms-block-grid { display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:20px }
.cms-block { grid-column:span 12;padding:24px;border-radius:20px }
.cms-block-image img,.cms-block-video video { width:100%;max-height:650px;object-fit:cover;border-radius:20px }
.cms-block h2 { margin:0;font-size:clamp(2rem,4vw,4rem);letter-spacing:-.05em }
.cms-block h3 { margin:0 0 10px;font-size:1.5rem }
.cms-block p { margin:0;line-height:1.75 }

.public-grid { display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px }
.public-card { overflow:hidden;border:1px solid var(--border-soft);border-radius:22px;background:#fff;box-shadow:0 16px 45px rgba(4,17,33,.07) }
.public-card-media { aspect-ratio:16/10;overflow:hidden;background:linear-gradient(135deg,#dfeafb,#f4f8fd) }
.public-card-media img { width:100%;height:100%;object-fit:cover;transition:transform .5s ease }
.public-card:hover .public-card-media img { transform:scale(1.045) }
.public-card-body { padding:23px }
.public-card-tag { display:inline-flex;padding:6px 9px;border-radius:8px;color:#fff;background:var(--blue-500);font-size:.68rem;letter-spacing:.1em;text-transform:uppercase;font-weight:850 }
.public-card h2,.public-card h3 { margin:14px 0 8px;font-size:1.25rem;letter-spacing:-.025em }
.public-card p { margin:0 0 20px;color:var(--muted);line-height:1.65;font-size:.9rem }
.public-toolbar { display:flex;align-items:center;justify-content:space-between;gap:20px;margin-bottom:32px }
.public-search { flex:1;display:flex;gap:10px }
.public-search input,.public-search select { min-height:50px;border:1px solid var(--border);border-radius:13px;padding:0 14px;background:#fff }
.public-search input { flex:1 }
.public-search button { border:0 }
.content-detail { padding-block:110px;background:#fff }
.detail-article { width:min(880px,calc(100% - 36px));margin:auto }
.detail-article > img { width:100%;max-height:560px;object-fit:cover;border-radius:26px;margin-bottom:36px }
.detail-article h1 { margin:14px 0;font-size:clamp(2.5rem,6vw,5rem);line-height:1;letter-spacing:-.055em }
.detail-article .prose { color:#33475c;font-size:1.04rem;line-height:1.85 }
.detail-gallery { display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:15px;margin-top:35px }
.detail-gallery img,.detail-gallery video { width:100%;border-radius:18px }
.notice-public { margin:20px 0;padding:15px 17px;border-radius:14px }
.notice-public.success { color:#075f48;background:#eafaf5 }
.notice-public.error { color:#9d1b1b;background:#fff0f0 }
.timeline { display:grid;gap:0;margin-top:25px }
.timeline-event { position:relative;padding:0 0 28px 34px;border-left:2px solid #dce8f4 }
.timeline-event::before { content:"";position:absolute;left:-7px;top:2px;width:12px;height:12px;border-radius:50%;background:var(--gold-500);box-shadow:0 0 0 5px #fff }
.timeline-event h3 { margin:0 0 6px;font-size:1rem }
.timeline-event p { margin:0;color:var(--muted);font-size:.88rem }

@media(max-width:900px){.public-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.public-toolbar{align-items:stretch;flex-direction:column}.public-search{width:100%}}
@media(max-width:600px){.public-grid{grid-template-columns:1fr}.public-search{flex-direction:column}.detail-gallery{grid-template-columns:1fr}.whatsapp-float{right:14px;bottom:14px}}
