@font-face {
  font-family: "DIN Next LT Arabic";
  src: url("../fonts/DINNextLTArabic-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DIN Next LT Arabic";
  src: url("../fonts/DINNextLTArabic-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DIN Next LT Arabic";
  src: url("../Font/ArbFONTS-DINNextLTArabic-Bold-2.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --arctic: #f1f6f4;
  --mint: #d9e8e2;
  --noir: #172b36;
  --noir-deep: #0c1b23;
  --teal: #114c5a;
  --teal-light: #2b737c;
  --yellow: #ffc801;
  --saffron: #ff9932;
  --white: #ffffff;
  --ink-soft: #45606b;
  --shadow-soft:
    0 0 0 1px rgba(0, 0, 0, 0.06),
    0 1px 2px -1px rgba(0, 0, 0, 0.06),
    0 18px 42px rgba(9, 27, 35, 0.09);
  --shadow-dark: 0 0 0 1px rgba(255, 255, 255, 0.1);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 38px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 88px;
  --space-8: 120px;
  --container: 1240px;
  --ease: cubic-bezier(0.2, 0, 0, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--arctic);
  color: var(--noir);
  font-family: "DIN Next LT Arabic", sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}

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

button,
a {
  touch-action: manipulation;
}

button {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  overflow: visible;
  height: auto;
  font-weight: 700;
  line-height: 1.24;
  text-wrap: balance;
}

p,
li,
figcaption {
  text-wrap: pretty;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  right: 16px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: var(--yellow);
  color: var(--noir);
  font-weight: 700;
  transform: translateY(-160%);
  transition-property: transform;
  transition-duration: 180ms;
  transition-timing-function: var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section {
  padding-block: var(--space-8);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.eyebrow::before {
  width: 38px;
  height: 7px;
  background: currentColor;
  content: "";
}

.eyebrow-dark {
  color: var(--teal);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px 12px 18px;
  border: 0;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  box-shadow: var(--shadow-soft);
  transition-property: scale, color, background-color, box-shadow;
  transition-duration: 180ms;
  transition-timing-function: var(--ease);
}

.button:hover {
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.08),
    0 4px 10px rgba(0, 0, 0, 0.12),
    0 18px 42px rgba(9, 27, 35, 0.16);
}

.button:active,
.icon-action:active,
.menu-toggle:active {
  scale: 0.96;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  background: var(--yellow);
  color: var(--noir-deep);
}

.button-primary:hover {
  background: var(--saffron);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  box-shadow: var(--shadow-dark);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.button-light {
  background: var(--arctic);
  color: var(--noir);
}

.button-small {
  min-height: 44px;
  padding: 9px 16px 9px 14px;
  font-size: 15px;
}

.button-whatsapp {
  background: var(--teal);
  color: var(--white);
}

.button-whatsapp svg {
  fill: currentColor;
  stroke: none;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 16px;
  right: 0;
  left: 0;
  transition-property: top;
  transition-duration: 220ms;
  transition-timing-function: var(--ease);
}

.header-inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 8px 10px 8px 14px;
  border-radius: 24px;
  background: rgba(241, 246, 244, 0.93);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.05),
    0 12px 38px rgba(4, 21, 28, 0.14);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  top: 8px;
}

.brand {
  width: 178px;
  height: 54px;
  display: block;
  overflow: hidden;
  border-radius: 16px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  outline: 0;
  transform: scale(1.35);
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.primary-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #29414c;
  font-size: 15px;
  font-weight: 500;
  transition-property: color, transform;
  transition-duration: 180ms;
  transition-timing-function: var(--ease);
}

.primary-nav a:hover {
  color: var(--teal);
  transform: translateY(-2px);
}

.primary-nav > a[aria-current="page"],
.am-nav-more a[aria-current="page"] {
  color: var(--teal);
  font-weight: 700;
}

.am-nav-more {
  position: relative;
  color: #29414c;
}

.am-nav-more summary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  list-style: none;
  transition-property: color;
  transition-duration: 180ms;
  transition-timing-function: var(--ease);
}

.am-nav-more summary::-webkit-details-marker {
  display: none;
}

.am-nav-more summary::after {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
  transition-property: transform;
  transition-duration: 180ms;
  transition-timing-function: var(--ease);
}

.am-nav-more[open] summary,
.am-nav-more summary:hover {
  color: var(--teal);
}

.am-nav-more[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}

.am-nav-more__panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 50%;
  width: min(570px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10px;
  padding: 10px;
  border-radius: 22px;
  background: rgba(241, 246, 244, 0.99);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.06),
    0 22px 60px rgba(6, 24, 31, 0.2);
  transform: translateX(50%);
}

.am-nav-more__group {
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.68);
}

.am-nav-more__group strong {
  display: block;
  margin-bottom: 5px;
  padding-inline: 10px;
  color: var(--teal);
  font-size: 12px;
}

.primary-nav .am-nav-more__group a {
  min-height: 40px;
  display: flex;
  align-items: center;
  padding-inline: 10px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.35;
  transition-property: color, background-color;
  transition-duration: 160ms;
  transition-timing-function: var(--ease);
}

.primary-nav .am-nav-more__group a:hover {
  background: var(--white);
  color: var(--teal);
  transform: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-action {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  color: var(--noir);
  box-shadow: var(--shadow-soft);
  transition-property: scale, color, background-color;
  transition-duration: 160ms;
  transition-timing-function: var(--ease);
}

.icon-action:hover {
  background: var(--mint);
  color: var(--teal);
}

.icon-action svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  padding: 10px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--noir);
  cursor: pointer;
  transition-property: scale, background-color;
  transition-duration: 160ms;
  transition-timing-function: var(--ease);
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  display: block;
  grid-area: 1 / 1;
  border-radius: 10px;
  background: var(--white);
  transition-property: transform, opacity, filter, scale;
  transition-duration: 260ms;
  transition-timing-function: var(--ease);
}

.menu-toggle span:first-child { transform: translateY(-6px); }
.menu-toggle span:last-child { transform: translateY(6px); }
.menu-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; scale: 0.25; filter: blur(4px); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: 920px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--noir-deep);
  color: var(--white);
}

.hero-picture,
.hero-background,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-picture {
  display: block;
}

.hero-background {
  object-fit: cover;
  object-position: center center;
  outline-color: rgba(255, 255, 255, 0.1);
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, transparent 0 42%, rgba(8, 25, 33, 0.38) 55%, rgba(8, 25, 33, 0.98) 78% 100%),
    linear-gradient(180deg, rgba(5, 19, 25, 0.45) 0, transparent 28%, transparent 65%, rgba(5, 19, 25, 0.92) 100%);
}

.hero-grid {
  position: relative;
  z-index: 4;
  display: grid;
  direction: ltr;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.88fr);
  padding-top: 74px;
  padding-bottom: 120px;
}

.hero-copy {
  grid-column: 2;
  max-width: 610px;
  direction: rtl;
}

.route-pill {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  padding: 8px 12px;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-dark);
  font-size: 14px;
}

.route-pill svg {
  width: 32px;
  fill: none;
  stroke: var(--yellow);
  stroke-width: 1.8;
}

.route-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255, 200, 1, 0.17);
}

.hero h1 {
  max-width: 690px;
  margin-bottom: 24px;
  font-size: clamp(52px, 5.1vw, 80px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.hero h1 em {
  display: block;
  color: var(--yellow);
  font-style: normal;
}

.hero-lead {
  max-width: 570px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.65;
}

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

.hero-tape {
  position: absolute;
  z-index: 2;
  bottom: 104px;
  left: 51.5%;
  width: clamp(170px, 16vw, 238px);
  height: 52%;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(23, 43, 54, 0.25) 0 2px, transparent 2px 48%, rgba(23, 43, 54, 0.22) 48% 52%, transparent 52% calc(100% - 2px), rgba(23, 43, 54, 0.24) calc(100% - 2px)),
    repeating-linear-gradient(180deg, transparent 0 74px, rgba(23, 43, 54, 0.26) 74px 76px),
    linear-gradient(180deg, rgba(255, 216, 46, 0.42), rgba(255, 200, 1, 0.74) 54%, rgba(236, 169, 0, 0.82));
  opacity: 0.72;
  mix-blend-mode: soft-light;
  clip-path: polygon(46% 0, 54% 0, 97% 100%, 3% 100%);
  transform: translateX(-50%) skewX(-2deg);
  transform-origin: 50% 100%;
  mask-image: linear-gradient(180deg, transparent 0, #000 14%, #000 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 14%, #000 100%);
}

.hero-tape span {
  display: none;
}

.contact-strip {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(12, 27, 35, 0.96);
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.contact-strip-inner {
  min-height: 104px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 34px;
}

.contact-label {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.contact-label span {
  color: var(--yellow);
  font-size: 13px;
}

.contact-label strong {
  font-size: 17px;
}

.contact-numbers {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 25px;
  font-weight: 700;
}

.contact-numbers a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition-property: color;
  transition-duration: 160ms;
  transition-timing-function: var(--ease);
}

.contact-numbers a:hover {
  color: var(--yellow);
}

.contact-code {
  padding-inline-start: 28px;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.38);
  direction: ltr;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

/* Route */
.route-section {
  position: relative;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(17, 76, 90, 0.06) 50%, transparent 50.2%),
    var(--arctic);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.6fr);
  align-items: end;
  gap: 64px;
  margin-bottom: 50px;
}

.section-heading h2,
.service-copy h2,
.details-copy h2,
.process-heading h2,
.carton-copy h2,
.faq-intro h2,
.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(40px, 4.3vw, 66px);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.section-heading > p {
  max-width: 470px;
  margin-bottom: 5px;
  color: var(--ink-soft);
}

.route-visual {
  position: relative;
  min-height: 600px;
  margin-block: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--noir);
  box-shadow: var(--shadow-soft);
}

.route-visual > img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  outline: 1px solid rgba(0, 0, 0, 0.1);
}

.route-overlay-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 22px 26px;
  border-radius: 22px;
  background: rgba(10, 28, 36, 0.88);
  color: var(--white);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.route-place {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.route-place span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.route-place strong {
  font-size: 30px;
}

.route-progress {
  position: relative;
  height: 8px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
}

.route-progress::before,
.route-progress::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 200, 1, 0.2);
  content: "";
  transform: translateY(-50%);
}

.route-progress::before { right: 1px; }
.route-progress::after { left: 1px; }

.route-progress i {
  position: absolute;
  inset: 0;
  display: block;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: right center;
  transition-property: transform;
  transition-duration: 900ms;
  transition-timing-function: var(--ease);
}

.route-visual.is-visible .route-progress i {
  transform: scaleX(1);
}

/* Service */
.service-section {
  position: relative;
  overflow: hidden;
  background: var(--noir);
  color: var(--white);
}

.service-section::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(17, 76, 90, 0.8), transparent 34%),
    repeating-linear-gradient(90deg, transparent 0 95px, rgba(255, 255, 255, 0.02) 95px 96px);
  content: "";
}

.service-grid {
  position: relative;
  display: grid;
  direction: ltr;
  grid-template-columns: minmax(0, 1.14fr) minmax(380px, 0.86fr);
  align-items: center;
  gap: 76px;
}

.service-media,
.service-copy {
  direction: rtl;
}

.service-media {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-dark);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  outline-color: rgba(255, 255, 255, 0.1);
}

.media-index {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(12, 27, 35, 0.86);
  color: var(--white);
  font-size: 12px;
  box-shadow: var(--shadow-dark);
}

.service-copy h2 {
  margin-bottom: 30px;
  font-size: clamp(40px, 4.2vw, 62px);
}

.service-copy > p:not(.eyebrow) {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.68);
}

.service-facts {
  margin: 0;
}

.service-facts div {
  min-height: 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.service-facts dt {
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
}

.service-facts dd {
  margin: 0;
  color: var(--yellow);
  font-weight: 700;
}

/* Details */
.details-section {
  position: relative;
  overflow: hidden;
  background: var(--mint);
}

.details-section::after {
  position: absolute;
  bottom: -90px;
  left: -70px;
  width: 360px;
  height: 160px;
  background: var(--yellow);
  content: "";
  clip-path: polygon(0 28%, 100% 0, 92% 75%, 5% 100%);
  transform: rotate(8deg);
}

.details-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1.15fr);
  align-items: center;
  gap: 92px;
}

.details-copy h2 {
  margin-bottom: 26px;
  font-size: clamp(42px, 4.4vw, 64px);
}

.details-copy > p:not(.eyebrow) {
  max-width: 550px;
  margin-bottom: 30px;
  color: #35515d;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-weight: 700;
  box-shadow: 0 2px 0 var(--teal);
  transition-property: gap, color, box-shadow;
  transition-duration: 180ms;
  transition-timing-function: var(--ease);
}

.text-link:hover {
  gap: 16px;
  color: var(--noir);
  box-shadow: 0 2px 0 var(--yellow);
}

.waybill {
  position: relative;
  overflow: hidden;
  padding: 10px;
  border-radius: 30px;
  background: var(--arctic);
  box-shadow: var(--shadow-soft);
}

.waybill::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 12px;
  background: var(--yellow);
  content: "";
}

.waybill-head,
.waybill-row,
.waybill-barcode {
  margin-inline: 12px;
}

.waybill-head {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-inline: 18px;
  border-radius: 18px 18px 8px 8px;
  background: var(--noir);
  color: var(--white);
}

.waybill-head strong {
  font-size: 22px;
}

.waybill-head span {
  color: var(--yellow);
  direction: ltr;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.waybill-row {
  min-height: 82px;
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  border-bottom: 1px dashed rgba(23, 43, 54, 0.2);
}

.waybill-row span {
  color: var(--teal);
  direction: ltr;
  font-size: 13px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.waybill-row p {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.waybill-barcode {
  height: 58px;
  margin-top: 16px;
  border-radius: 8px 8px 16px 16px;
  background: repeating-linear-gradient(90deg, var(--noir) 0 2px, transparent 2px 5px, var(--noir) 5px 9px, transparent 9px 13px);
  opacity: 0.78;
}

/* Process */
.process-section {
  background: var(--noir-deep);
  color: var(--white);
}

.process-heading {
  max-width: 760px;
  margin-bottom: 64px;
}

.process-heading h2 {
  font-size: clamp(44px, 4.6vw, 66px);
}

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

.process-item {
  min-height: 148px;
  display: grid;
  grid-template-columns: 90px 1fr 48px;
  align-items: center;
  gap: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  transition-property: background-color, padding-inline;
  transition-duration: 220ms;
  transition-timing-function: var(--ease);
}

.process-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.process-item:hover {
  padding-inline: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.step-number {
  color: var(--yellow);
  direction: ltr;
  font-size: 15px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.process-item h3 {
  margin-bottom: 8px;
  font-size: 30px;
}

.process-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.56);
}

.step-mark {
  font-size: 34px;
  font-weight: 400;
  text-align: center;
}

/* Carton */
.carton-section {
  background:
    linear-gradient(90deg, rgba(17, 76, 90, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(17, 76, 90, 0.035) 1px, transparent 1px),
    var(--arctic);
  background-size: 48px 48px;
}

.carton-grid {
  position: relative;
  min-height: 670px;
}

.carton-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--noir);
  box-shadow: var(--shadow-soft);
}

.carton-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 25, 33, 0.96) 0, rgba(8, 25, 33, 0.74) 34%, transparent 65%);
  content: "";
}

.carton-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  outline-color: rgba(255, 255, 255, 0.1);
}

.carton-copy {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: min(46%, 560px);
  padding: 94px 0 60px 60px;
  color: var(--white);
}

.carton-copy .eyebrow-dark {
  color: var(--yellow);
}

.carton-copy h2 {
  margin-bottom: 26px;
}

.carton-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.66);
}

.carton-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.carton-specs span {
  padding: 8px 11px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  box-shadow: var(--shadow-dark);
}

.carton-stamp {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 30px;
  width: 104px;
  height: 104px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--noir);
  text-align: center;
  transform: rotate(-8deg);
}

.carton-stamp span {
  direction: ltr;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.carton-stamp strong {
  direction: ltr;
  font-size: 28px;
  line-height: 1;
}

/* FAQ */
.faq-section {
  background: var(--teal);
  color: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(520px, 1.3fr);
  align-items: start;
  gap: 92px;
}

.faq-intro {
  position: sticky;
  top: 126px;
}

.faq-intro h2 {
  margin-bottom: 26px;
  font-size: clamp(40px, 4vw, 60px);
}

.faq-intro > p:last-child {
  color: rgba(255, 255, 255, 0.64);
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.faq-list details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.faq-list summary {
  min-height: 94px;
  display: grid;
  grid-template-columns: 1fr 44px;
  align-items: center;
  gap: 22px;
  cursor: pointer;
  font-size: 22px;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary i {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow-dark);
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--yellow);
  content: "";
  transform: translate(-50%, -50%);
  transition-property: transform, opacity;
  transition-duration: 220ms;
  transition-timing-function: var(--ease);
}

.faq-list summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary i::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg) scale(0.25);
}

.faq-list details p {
  max-width: 680px;
  margin-bottom: 28px;
  padding-left: 70px;
  color: rgba(255, 255, 255, 0.7);
}

/* Final CTA */
.final-cta {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--noir);
  color: var(--white);
}

.final-cta > img,
.final-cta-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.final-cta > img {
  object-fit: cover;
  object-position: center;
  outline-color: rgba(255, 255, 255, 0.1);
}

.final-cta-overlay {
  background:
    linear-gradient(90deg, transparent 0 38%, rgba(8, 25, 33, 0.58) 52%, rgba(8, 25, 33, 0.98) 72% 100%),
    linear-gradient(180deg, rgba(23, 43, 54, 0.2), transparent 18% 74%, var(--noir) 100%);
}

.final-cta-content {
  position: relative;
  z-index: 2;
}

.final-cta-content > * {
  max-width: 600px;
}

.final-cta h2 {
  margin-bottom: 26px;
}

.final-cta-content > p:not(.eyebrow) {
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 19px;
}

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

.final-actions .button-light {
  gap: 14px;
}

/* Footer */
.site-footer {
  padding-top: 78px;
  background: var(--arctic);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 0.75fr);
  gap: 66px;
  padding-bottom: 68px;
}

.footer-brand img {
  width: 130px;
  height: 94px;
  margin-bottom: 22px;
  object-fit: cover;
  object-position: 50% 38%;
  outline: 0;
}

.footer-brand p {
  max-width: 330px;
  color: var(--ink-soft);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-column h2 {
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 17px;
}

.footer-column a,
.footer-column span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  color: #4a626c;
  font-size: 15px;
}

.footer-column a {
  transition-property: color, transform;
  transition-duration: 160ms;
  transition-timing-function: var(--ease);
}

.footer-column a:hover {
  color: var(--teal);
  transform: translateX(-4px);
}

.footer-contact {
  align-items: flex-start;
  text-align: right;
}

.footer-contact > * {
  width: auto;
  margin-right: 0;
  margin-left: auto;
}

.footer-phone {
  min-height: 0;
  display: inline-block;
  direction: ltr;
  unicode-bidi: isolate;
  text-align: right;
}

.footer-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(23, 43, 54, 0.12);
  color: #61757d;
  font-size: 13px;
}

.footer-bottom i {
  color: var(--saffron);
  font-style: normal;
}

.innox-credit {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #61757d;
  transition-property: color, opacity;
  transition-duration: 180ms;
  transition-timing-function: var(--ease);
}

.innox-credit img {
  width: 82px;
  height: auto;
  outline: 0;
}

.innox-credit:hover {
  color: var(--teal);
  opacity: 0.82;
}

/* Scroll reveals */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition-property: opacity, transform;
  transition-duration: 420ms;
  transition-timing-function: var(--ease);
}

.js .image-reveal {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(4px);
  clip-path: inset(0 0 0 18% round var(--radius-xl));
  transition-property: opacity, transform, filter, clip-path;
  transition-duration: 420ms;
  transition-timing-function: var(--ease);
}

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

.js .image-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  clip-path: inset(0 0 0 0 round var(--radius-xl));
}

.stagger-item {
  opacity: 0;
  transform: translateY(14px);
  animation: enter-item 440ms var(--ease) forwards;
}

.stagger-item:nth-child(1) { animation-delay: 80ms; }
.stagger-item:nth-child(2) { animation-delay: 160ms; }
.stagger-item:nth-child(3) { animation-delay: 240ms; }
.stagger-item:nth-child(4) { animation-delay: 320ms; }
.stagger-item:nth-child(5) { animation-delay: 400ms; }

@keyframes enter-item {
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 1101px) {
  .final-cta > img { object-position: center 10%; }
}

@media (min-width: 901px) {
  .final-cta > img {
    right: auto;
    left: 0;
    width: 72%;
    object-position: 28% top;
    outline: 0;
    -webkit-mask-image: linear-gradient(90deg, #000 0 58%, rgba(0, 0, 0, 0.82) 70%, rgba(0, 0, 0, 0.28) 88%, transparent 100%);
    mask-image: linear-gradient(90deg, #000 0 58%, rgba(0, 0, 0, 0.82) 70%, rgba(0, 0, 0, 0.28) 88%, transparent 100%);
  }
}

@media (max-width: 1100px) {
  :root { --space-8: 96px; }
  .header-inner { grid-template-columns: 160px 1fr auto; gap: 16px; }
  .brand { width: 152px; }
  .primary-nav { gap: 18px; }
  .hero-grid { grid-template-columns: minmax(0, 0.75fr) minmax(430px, 1fr); }
  .hero h1 { font-size: clamp(48px, 6.3vw, 68px); }
  .service-grid { gap: 48px; grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr); }
  .details-grid { gap: 58px; }
  .faq-grid { gap: 56px; }
  .footer-grid { gap: 38px; }
}

@media (max-width: 900px) {
  .container { width: min(calc(100% - 36px), var(--container)); }
  .site-header { top: 10px; }
  .header-inner { grid-template-columns: 1fr auto; }
  .brand { width: 170px; }
  .menu-toggle { display: grid; }
  .header-actions { display: none; }
  .primary-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    left: 18px;
    max-height: calc(100vh - 96px);
    display: grid;
    gap: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 10px;
    border-radius: 20px;
    background: rgba(241, 246, 244, 0.98);
    box-shadow: 0 22px 60px rgba(6, 24, 31, 0.22);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition-property: opacity, transform;
    transition-duration: 220ms;
    transition-timing-function: var(--ease);
  }
  .primary-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .primary-nav a { padding-inline: 14px; border-bottom: 1px solid rgba(23, 43, 54, 0.09); }
  .primary-nav a:last-child { border-bottom: 0; }
  .am-nav-more summary {
    width: 100%;
    justify-content: space-between;
    padding-inline: 14px;
    border-bottom: 1px solid rgba(23, 43, 54, 0.09);
  }
  .am-nav-more__panel {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 6px 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }
  .am-nav-more__group { padding: 7px; }
  .primary-nav .am-nav-more__group a { padding-inline: 12px; }
  .hero { min-height: 930px; justify-content: flex-end; }
  .hero-background { object-position: 38% center; }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 22, 29, 0.2) 0 30%, rgba(7, 22, 29, 0.78) 60%, rgba(7, 22, 29, 0.98) 83% 100%),
      linear-gradient(90deg, transparent, rgba(7, 22, 29, 0.25));
  }
  .hero-grid { display: block; padding-top: 410px; padding-bottom: 146px; }
  .hero-copy { max-width: 680px; }
  .hero-tape { display: none; }
  .contact-strip-inner { grid-template-columns: 1fr auto; gap: 20px; }
  .contact-code { display: none; }
  .section-heading { grid-template-columns: 1fr; align-items: start; gap: 22px; }
  .route-visual, .route-visual > img { min-height: 520px; height: 520px; }
  .route-overlay-card { grid-template-columns: 1fr; gap: 15px; }
  .route-progress { order: 2; }
  .route-end { order: 3; align-items: flex-end; }
  .service-grid { grid-template-columns: 1fr; gap: 50px; }
  .service-media { min-height: 480px; }
  .service-media img { height: 100%; }
  .details-grid { grid-template-columns: 1fr; gap: 50px; }
  .waybill { max-width: 680px; }
  .carton-grid { min-height: auto; display: flex; flex-direction: column; gap: 34px; }
  .carton-copy { position: relative; top: auto; left: auto; order: 1; width: auto; padding: 0; color: var(--noir); }
  .carton-copy .eyebrow-dark { color: var(--teal); }
  .carton-copy > p:not(.eyebrow) { color: var(--ink-soft); }
  .carton-specs span { background: var(--white); color: var(--teal); box-shadow: var(--shadow-soft); }
  .carton-media { position: relative; order: 2; min-height: 540px; }
  .carton-media::after { display: none; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-intro { position: static; }
  .final-cta { min-height: 760px; align-items: flex-end; }
  .final-cta > img { object-position: 40% center; }
  .final-cta-overlay { background: linear-gradient(180deg, transparent 0 36%, rgba(8, 25, 33, 0.7) 61%, rgba(8, 25, 33, 0.98) 100%); }
  .final-cta-content { padding-bottom: 66px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (min-width: 621px) and (max-width: 900px) {
  .hero { min-height: 1250px; }
  .hero-background { object-position: center top; }
  .hero-grid { padding-top: 760px; }
}

@media (max-width: 620px) {
  :root {
    --space-7: 64px;
    --space-8: 76px;
    --radius-xl: 26px;
  }
  body { font-size: 16px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 62px; padding: 6px 8px; border-radius: 18px; }
  .brand { width: 145px; height: 48px; border-radius: 12px; }
  .hero { min-height: 920px; }
  .hero-picture { top: 70px; height: calc(100% - 70px); }
  .hero-background { height: 58%; object-fit: cover; object-position: center top; }
  .hero-overlay {
    background:
      linear-gradient(180deg, transparent 0 30%, rgba(7, 22, 29, 0.78) 54%, var(--noir-deep) 61% 100%),
      linear-gradient(90deg, transparent, rgba(7, 22, 29, 0.14));
  }
  .hero-grid { padding-top: 350px; padding-bottom: 154px; }
  .route-pill { margin-bottom: 18px; }
  .hero .eyebrow { margin-bottom: 14px; }
  .hero h1 { margin-bottom: 18px; font-size: clamp(44px, 13vw, 58px); letter-spacing: -0.045em; }
  .hero-lead { margin-bottom: 24px; font-size: 17px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; min-height: 54px; }
  .contact-strip-inner { min-height: 110px; grid-template-columns: 1fr; gap: 4px; padding-block: 12px; }
  .contact-label strong { font-size: 14px; }
  .contact-numbers { justify-content: flex-end; gap: 10px; font-size: 19px; }
  .section-heading h2,
  .service-copy h2,
  .details-copy h2,
  .process-heading h2,
  .carton-copy h2,
  .faq-intro h2,
  .final-cta h2 { font-size: clamp(38px, 11.6vw, 50px); }
  .route-visual, .route-visual > img { min-height: 520px; height: 520px; }
  .route-visual > img { object-position: 54% center; }
  .route-overlay-card { right: 12px; bottom: 12px; left: 12px; padding: 18px; border-radius: 18px; }
  .route-place strong { font-size: 25px; }
  .service-media { min-height: 0; aspect-ratio: 16 / 11; }
  .service-media img { height: 100%; object-position: center; }
  .service-facts div { min-height: 58px; }
  .waybill-head { min-height: 66px; }
  .waybill-head strong { font-size: 18px; }
  .waybill-row { min-height: 70px; grid-template-columns: 42px 1fr; }
  .waybill-row p { font-size: 16px; }
  .process-heading { margin-bottom: 42px; }
  .process-item { min-height: 160px; grid-template-columns: 44px 1fr; gap: 18px; }
  .process-item h3 { font-size: 24px; }
  .step-mark { display: none; }
  .carton-media { min-height: 0; aspect-ratio: 16 / 10; }
  .carton-media img { object-position: center; }
  .carton-stamp { right: 18px; bottom: 18px; width: 82px; height: 82px; }
  .carton-stamp strong { font-size: 22px; }
  .faq-list summary { min-height: 86px; grid-template-columns: 1fr 40px; font-size: 18px; line-height: 1.45; }
  .faq-list summary i { width: 40px; height: 40px; }
  .faq-list details p { padding-left: 0; }
  .final-cta { min-height: 780px; }
  .final-cta > img { height: 57%; object-position: 31% center; }
  .final-cta-overlay { background: linear-gradient(180deg, transparent 0 27%, rgba(8, 25, 33, 0.78) 51%, var(--noir-deep) 61% 100%); }
  .final-cta-content { padding-bottom: 54px; }
  .final-actions { display: grid; grid-template-columns: 1fr; }
  .site-footer { padding-top: 62px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column:first-of-type { grid-column: 1 / -1; }
  .footer-bottom { min-height: 120px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 4px; padding-block: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .image-reveal, .stagger-item {
    opacity: 1;
    transform: none;
    filter: none;
    clip-path: none;
  }
  .route-progress i { transform: scaleX(1); }
}
