:root {
  --red: #e5232a;
  --red-dark: #b9151d;
  --charcoal: #18191d;
  --ink: #2a2d33;
  --muted: #666e7a;
  --line: #e8eaee;
  --soft: #f5f6f8;
  --white: #ffffff;
  --accent-red: #e5232a;
  --shadow: 0 24px 80px rgba(24, 25, 29, 0.12);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

body.language-modal-open {
  overflow: hidden;
}

body.lang-zh {
  font-family: "PingFang SC", "Microsoft YaHei", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

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

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--charcoal);
  color: var(--white);
  padding: 10px 14px;
  transition: transform 180ms ease;
}

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

.language-modal[hidden] {
  display: none;
}

.language-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 24% 18%, rgba(229, 35, 42, 0.2), transparent 34%),
    radial-gradient(circle at 84% 82%, rgba(229, 35, 42, 0.22), transparent 36%),
    rgba(24, 25, 29, 0.58);
  padding: 24px;
  backdrop-filter: blur(16px);
}

.language-card {
  width: min(100%, 520px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  padding: 34px;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.28);
}

.language-card img {
  width: 66px;
  height: auto;
  margin-bottom: 18px;
}

.language-card h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 6vw, 3.1rem);
}

.language-card > p:not(.eyebrow) {
  color: var(--muted);
}

.language-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

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

section[id],
#process-title {
  scroll-margin-top: 96px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(232, 234, 238, 0.82);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(232, 234, 238, 0.94);
  border-radius: 18px;
  background:
    radial-gradient(circle at 70% 78%, rgba(229, 35, 42, 0.18), transparent 34%),
    linear-gradient(145deg, #ffffff 0%, #f6f7f9 100%);
  box-shadow:
    0 16px 34px rgba(24, 25, 29, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.brand-mark::after {
  position: absolute;
  right: -18px;
  bottom: 9px;
  width: 50px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--accent-red));
  content: "";
  transform: rotate(-28deg);
  opacity: 0.95;
}

.brand-mark img {
  position: relative;
  z-index: 1;
  width: 48px;
  height: auto;
  filter: drop-shadow(0 8px 10px rgba(24, 25, 29, 0.13));
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand strong {
  display: block;
  color: var(--charcoal);
  font-size: 1.05rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.3;
  white-space: nowrap;
}

.registration-number {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(229, 35, 42, 0.14);
  border-radius: 999px;
  background: rgba(229, 35, 42, 0.055);
  padding: 2px 8px;
  color: var(--red-dark);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.25;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--charcoal);
  font-size: 0.88rem;
  font-weight: 650;
}

.nav-menu a:not(.button) {
  position: relative;
  color: #30333a;
}

.nav-menu a:not(.button)::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-menu a:not(.button):hover::after,
.nav-menu a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 3px;
}

.language-switcher button {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 850;
}

.language-switcher button.is-active {
  background: var(--charcoal);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--charcoal);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 20px;
  font-weight: 750;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(229, 35, 42, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-dark);
}

.button-secondary {
  border-color: rgba(24, 25, 29, 0.16);
  background: var(--white);
  color: var(--charcoal);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(229, 35, 42, 0.42);
  box-shadow: 0 12px 28px rgba(24, 25, 29, 0.08);
}

.button-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.9rem;
}

.section-band {
  padding: 104px 0;
}

.section-tight {
  padding: 36px 0;
}

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

.section-muted {
  background: var(--soft);
}

.section-dark {
  background:
    radial-gradient(circle at top left, rgba(229, 35, 42, 0.26), transparent 34%),
    linear-gradient(135deg, #18191d 0%, #2b2b31 100%);
  color: var(--white);
}

.section-compliance {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(229, 35, 42, 0.16), transparent 32%),
    radial-gradient(circle at 90% 12%, rgba(229, 35, 42, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f5f6f8 100%);
}

.section-compliance::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(24, 25, 29, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 25, 29, 0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  pointer-events: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 122px);
  display: grid;
  align-items: center;
  padding: 64px 0 48px;
  background:
    linear-gradient(115deg, rgba(245, 246, 248, 0.86) 0%, rgba(255, 255, 255, 0.96) 42%, rgba(255, 241, 241, 0.9) 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(24, 25, 29, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 25, 29, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

.hero::after {
  position: absolute;
  right: -10vw;
  bottom: -22vw;
  width: 54vw;
  height: 54vw;
  border-radius: 50%;
  background: rgba(229, 35, 42, 0.08);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent-red);
  content: "";
}

.eyebrow-light {
  color: #ff6b70;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  color: var(--charcoal);
  font-size: clamp(2.45rem, 5.45vw, 4.85rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--charcoal);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--charcoal);
  font-size: 1.08rem;
  line-height: 1.25;
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 26px;
  color: #4b535f;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 520px;
  margin-top: 24px;
  color: #4f5660;
  font-weight: 650;
}

.hero-note span {
  width: 12px;
  height: 12px;
  border: 3px solid var(--accent-red);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(229, 35, 42, 0.16);
  flex: 0 0 auto;
}

.hero-note p {
  margin: 0;
}

.hero-visual {
  position: relative;
  min-height: 460px;
  border: 1px solid rgba(24, 25, 29, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.34)),
    radial-gradient(circle at 20% 24%, rgba(229, 35, 42, 0.18), transparent 26%),
    radial-gradient(circle at 85% 78%, rgba(229, 35, 42, 0.2), transparent 34%);
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  inset: -42%;
  z-index: 0;
  border-radius: 50%;
  background:
    conic-gradient(from 40deg, transparent 0 18%, rgba(229, 35, 42, 0.22) 22%, transparent 34% 58%, rgba(229, 35, 42, 0.2) 64%, transparent 74% 100%);
  content: "";
  animation: hero-orbit 14s linear infinite;
}

.hero-visual::after {
  position: absolute;
  left: -25%;
  top: 18%;
  z-index: 0;
  width: 150%;
  height: 84px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  content: "";
  opacity: 0.72;
  transform: rotate(-18deg);
  animation: hero-light-sweep 5.8s ease-in-out infinite;
}

.hero-logo-group {
  position: absolute;
  z-index: 2;
  right: max(18px, 5%);
  top: 34px;
  width: min(84%, 560px);
  height: 360px;
  animation: float-logo 5.8s ease-in-out infinite;
  pointer-events: none;
}

.hero-logo {
  position: absolute;
  right: -10px;
  top: 58px;
  z-index: 1;
  width: min(64%, 360px);
  filter: drop-shadow(0 28px 46px rgba(24, 25, 29, 0.16));
}

.hero-brand-lockup {
  position: absolute;
  left: 14px;
  top: 42px;
  z-index: 8;
  display: grid;
  gap: 6px;
  max-width: min(50%, 300px);
  transform: rotate(-1deg);
  filter: drop-shadow(0 18px 28px rgba(24, 25, 29, 0.12));
}

.hero-brand-lockup span,
.hero-brand-lockup strong {
  display: block;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-brand-lockup span {
  background: linear-gradient(180deg, #41454d 0%, #15171b 92%);
  background-clip: text;
  color: transparent;
  font-size: clamp(1.75rem, 4.3vw, 3.65rem);
  font-style: italic;
  font-weight: 950;
}

.hero-brand-lockup strong {
  color: var(--accent-red);
  font-size: clamp(0.86rem, 2vw, 1.35rem);
  font-style: italic;
  font-weight: 900;
  text-shadow: 0 1px 0 rgba(24, 25, 29, 0.22);
}

.hero-slogan {
  position: relative;
  z-index: 9;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: min(100%, 248px);
  overflow: hidden;
  margin-top: 4px;
  border: 1px solid rgba(229, 35, 42, 0.24);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 239, 240, 0.98)),
    #ffffff;
  color: var(--red-dark);
  padding: 8px 16px;
  font-size: clamp(0.68rem, 1.18vw, 0.9rem);
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 12px 26px rgba(185, 21, 29, 0.13);
}

.hero-slogan::before {
  display: none;
  content: none;
}

.hero-slogan::after {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: -1;
  width: min(100%, 278px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), rgba(229, 35, 42, 0));
  content: "";
  transform: translateY(calc(-50% + 22px));
}

.hero-brand-lockup::after {
  display: block;
  width: min(100%, 278px);
  height: 3px;
  margin-top: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), rgba(229, 35, 42, 0));
  content: "";
}

.route-map {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.route {
  position: absolute;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(229, 35, 42, 0.72), transparent);
  transform-origin: left;
}

.route-one {
  left: -8%;
  top: 26%;
  width: 82%;
  transform: rotate(-18deg);
}

.route-two {
  right: -14%;
  top: 54%;
  width: 92%;
  transform: rotate(16deg);
}

.route-three {
  left: 14%;
  bottom: 24%;
  width: 74%;
  background: linear-gradient(90deg, transparent, rgba(24, 25, 29, 0.38), transparent);
  transform: rotate(-8deg);
}

.pin {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(229, 35, 42, 0.12);
}

.pin-a {
  left: 10%;
  top: 48%;
}

.pin-b {
  right: 18%;
  top: 48%;
  background: var(--accent-red);
}

.pin-c {
  left: 34%;
  bottom: 26%;
}

.shipment-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 4px;
  min-width: 210px;
  border-radius: var(--radius);
  padding: 16px 18px;
  color: var(--white);
  box-shadow: 0 20px 46px rgba(24, 25, 29, 0.18);
}

.shipment-card span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.shipment-card strong {
  font-size: 1rem;
}

.card-red {
  left: 36px;
  bottom: 72px;
  background: var(--red);
}

.card-dark {
  right: 34px;
  bottom: 28px;
  background: var(--charcoal);
}

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

.stat-card,
.info-card,
.shipment-type-card,
.advantage-card,
.coverage-card,
.mini-card,
.future-card,
.contact-card,
.culture-list > div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.stat-card {
  min-height: 130px;
  padding: 24px;
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 1.5rem;
  line-height: 1.1;
}

.stat-card span {
  color: var(--muted);
  font-weight: 650;
}

.photo-proof {
  position: relative;
  overflow: hidden;
  padding-top: 46px;
  padding-bottom: 46px;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 62%, #f5f6f8 100%);
}

.photo-proof-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.photo-card {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  padding: 14px;
  box-shadow: 0 22px 60px rgba(24, 25, 29, 0.12);
  overflow: hidden;
}

.photo-card::after {
  position: absolute;
  inset: auto 24px 58px 24px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--accent-red), var(--charcoal));
  content: "";
}

.photo-card img {
  width: 100%;
  max-height: 330px;
  border-radius: 12px;
  object-fit: cover;
  object-position: top center;
}

.photo-card figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.photo-proof-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.photo-proof-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.photo-proof-list li {
  position: relative;
  border: 1px solid rgba(24, 25, 29, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  padding: 14px 16px 14px 46px;
  color: var(--charcoal);
  font-weight: 760;
  box-shadow: 0 12px 28px rgba(24, 25, 29, 0.06);
}

.photo-proof-list li::before {
  position: absolute;
  left: 16px;
  top: 17px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(229, 35, 42, 0.1);
  content: "";
}

.content-drawer {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  border: 1px solid rgba(24, 25, 29, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
    radial-gradient(circle at 100% 0%, rgba(229, 35, 42, 0.1), transparent 26%);
  box-shadow: 0 18px 48px rgba(24, 25, 29, 0.08);
  overflow: hidden;
}

.section-dark .content-drawer {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.content-drawer > summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 16px;
  align-items: center;
  min-height: 82px;
  padding: 20px 24px;
  color: var(--charcoal);
  cursor: pointer;
  list-style: none;
}

.content-drawer > summary::-webkit-details-marker {
  display: none;
}

.content-drawer > summary::after {
  display: grid;
  place-items: center;
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--white);
  content: "+";
  font-size: 1.1rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.content-drawer[open] > summary::after {
  background: var(--red);
  content: "-";
  transform: rotate(180deg);
}

.drawer-title {
  display: block;
  grid-column: 1;
  color: var(--charcoal);
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.25;
}

.drawer-caption {
  display: block;
  grid-column: 1;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.content-drawer .reveal {
  transform: none;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-dark .section-heading p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.section-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.72fr);
  gap: 44px;
  align-items: center;
  margin-bottom: 42px;
}

.section-showcase .section-heading {
  margin-bottom: 0;
}

.section-showcase-reverse {
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 0.98fr);
}

.section-showcase-reverse .section-heading {
  order: 2;
}

.section-showcase-reverse .motion-scene {
  order: 1;
}

#shipments .section-showcase,
#partners .section-showcase,
#faq .section-showcase,
#platform .platform-grid {
  grid-template-columns: 1fr;
  max-width: 920px;
  margin-bottom: 28px;
}

#shipments .motion-scene,
#partners .motion-scene,
#faq .motion-scene,
#platform .motion-scene {
  display: none;
}

.motion-scene {
  position: relative;
  min-height: 286px;
  border: 1px solid rgba(24, 25, 29, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.68)),
    radial-gradient(circle at 18% 22%, rgba(229, 35, 42, 0.18), transparent 28%),
    radial-gradient(circle at 86% 74%, rgba(229, 35, 42, 0.16), transparent 34%);
  box-shadow: 0 18px 52px rgba(24, 25, 29, 0.1);
  overflow: hidden;
  isolation: isolate;
}

.section-dark .motion-scene {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 50% 50%, rgba(229, 35, 42, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
  box-shadow: none;
}

.motion-scene * {
  animation-play-state: paused !important;
}

.motion-scene.is-active * {
  animation-play-state: running !important;
}

.scene-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(24, 25, 29, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 25, 29, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.75;
}

.scene-road {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 66px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(24, 25, 29, 0.1), rgba(229, 35, 42, 0.42), rgba(24, 25, 29, 0.1));
}

.scene-road::after {
  position: absolute;
  inset: -13px 0 auto;
  height: 1px;
  background: repeating-linear-gradient(90deg, transparent 0 18px, rgba(24, 25, 29, 0.24) 18px 34px);
  content: "";
}

.scene-hub {
  position: absolute;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(24, 25, 29, 0.12);
}

.scene-hub span {
  position: absolute;
  inset: -10px;
  border: 2px solid rgba(229, 35, 42, 0.22);
  border-radius: inherit;
  animation: hub-pulse 2.8s ease-out infinite;
}

.scene-hub strong {
  color: var(--charcoal);
  font-size: 0.82rem;
  letter-spacing: 0;
}

.hub-left {
  left: 32px;
  top: 34px;
}

.hub-right {
  right: 32px;
  top: 70px;
}

.scene-truck {
  position: absolute;
  left: -96px;
  bottom: 74px;
  width: 104px;
  height: 48px;
  animation: truck-drive 5.5s linear infinite;
}

.truck-box,
.truck-cab {
  position: absolute;
  bottom: 12px;
  display: block;
  border-radius: 6px 6px 3px 3px;
}

.truck-box {
  left: 0;
  width: 62px;
  height: 34px;
  background: var(--red);
}

.truck-cab {
  right: 4px;
  width: 38px;
  height: 28px;
  background: var(--charcoal);
}

.truck-wheel {
  position: absolute;
  bottom: 4px;
  width: 14px;
  height: 14px;
  border: 3px solid var(--charcoal);
  border-radius: 50%;
  background: var(--white);
  animation: wheel-spin 540ms linear infinite;
}

.wheel-left {
  left: 16px;
}

.wheel-right {
  right: 16px;
}

.scene-plane {
  position: absolute;
  left: -54px;
  top: 112px;
  width: 48px;
  height: 18px;
  background: var(--charcoal);
  clip-path: polygon(0 42%, 70% 42%, 70% 0, 100% 50%, 70% 100%, 70% 58%, 0 58%);
  opacity: 0.86;
  animation: plane-cross 6.4s ease-in-out infinite;
}

.scene-parcel {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background:
    linear-gradient(90deg, transparent 42%, rgba(255, 255, 255, 0.38) 42% 58%, transparent 58%),
    var(--accent-red);
  box-shadow: 0 12px 24px rgba(24, 25, 29, 0.1);
  animation: parcel-float 3s ease-in-out infinite;
}

.parcel-one {
  left: 27%;
  top: 40px;
}

.parcel-two {
  right: 24%;
  bottom: 116px;
  animation-delay: 700ms;
}

.scene-status {
  position: absolute;
  border-radius: 999px;
  background: var(--charcoal);
  color: var(--white);
  padding: 8px 12px;
  font-size: 0.76rem;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(24, 25, 29, 0.16);
  animation: status-pop 4.8s ease-in-out infinite;
}

.status-one {
  left: 26px;
  bottom: 28px;
}

.status-two {
  right: 30px;
  bottom: 24px;
  background: var(--red);
  animation-delay: 1.5s;
}

.scanner-frame {
  position: absolute;
  left: 34px;
  top: 44px;
  width: 46%;
  height: 170px;
  border: 2px solid rgba(229, 35, 42, 0.38);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
}

.scanner-line {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 22px;
  height: 3px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 22px rgba(229, 35, 42, 0.65);
  animation: scan-line 2.2s ease-in-out infinite;
}

.scan-parcel {
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: 72px;
  height: 60px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 44%, rgba(255, 255, 255, 0.35) 44% 56%, transparent 56%),
    linear-gradient(135deg, #f7c14b, #e0a21f);
  transform: translateX(-50%) rotate(-3deg);
  box-shadow: 0 18px 28px rgba(24, 25, 29, 0.12);
}

.dashboard-card {
  position: absolute;
  display: grid;
  gap: 10px;
  width: 152px;
  border-radius: 12px;
  background: var(--charcoal);
  color: var(--white);
  padding: 16px;
  box-shadow: 0 18px 34px rgba(24, 25, 29, 0.18);
}

.dashboard-card span,
.dashboard-card i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.dashboard-card span::after,
.dashboard-card i::after {
  display: block;
  width: 54%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent-red);
  content: "";
  transform-origin: left;
  animation: data-bar 2.6s ease-in-out infinite;
}

.dashboard-card i::after {
  width: 82%;
  background: var(--red);
  animation-delay: 540ms;
}

.dashboard-card strong {
  font-size: 0.86rem;
}

.dash-main {
  right: 34px;
  top: 38px;
}

.dash-side {
  right: 76px;
  bottom: 38px;
  background: var(--red);
}

.approval-stamp {
  position: absolute;
  left: 38%;
  bottom: 44px;
  border: 2px solid var(--red);
  border-radius: 10px;
  color: var(--red);
  padding: 8px 12px;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  transform: rotate(-10deg);
  animation: stamp-in 3.8s ease-in-out infinite;
}

.process-scene {
  min-height: 230px;
  margin-top: -12px;
}

.warehouse-roof {
  position: absolute;
  left: 38px;
  right: 38px;
  top: 38px;
  height: 54px;
  background: linear-gradient(135deg, var(--charcoal), #333742);
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.warehouse-shelf {
  position: absolute;
  left: 54px;
  right: 54px;
  height: 12px;
  border-radius: 999px;
  background: rgba(24, 25, 29, 0.16);
}

.shelf-top {
  top: 104px;
}

.shelf-bottom {
  top: 132px;
}

.belt {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 42px;
  height: 28px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.32) 0 16px, transparent 16px 30px),
    var(--charcoal);
  animation: belt-move 900ms linear infinite;
}

.belt-box {
  position: absolute;
  bottom: 72px;
  width: 38px;
  height: 34px;
  border-radius: 6px;
  background: var(--accent-red);
  box-shadow: 0 12px 22px rgba(24, 25, 29, 0.12);
  animation: box-sort 4.8s linear infinite;
}

.belt-box-one {
  left: 36px;
}

.belt-box-two {
  left: 36px;
  animation-delay: 1.6s;
}

.belt-box-three {
  left: 36px;
  animation-delay: 3.2s;
}

.sort-gate {
  position: absolute;
  right: 68px;
  bottom: 72px;
  width: 12px;
  height: 86px;
  border-radius: 999px;
  background: var(--red);
  transform-origin: bottom;
  animation: gate-swing 2.4s ease-in-out infinite;
}

.network-scene {
  min-height: 320px;
}

.network-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  animation: orbit-spin 10s linear infinite;
}

.orbit-one {
  inset: 40px 74px;
}

.orbit-two {
  inset: 76px 42px;
  animation-direction: reverse;
  animation-duration: 13s;
}

.network-node {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26);
}

.node-center {
  left: 50%;
  top: 50%;
  width: 88px;
  height: 88px;
  transform: translate(-50%, -50%);
}

.node-center img {
  width: 58px;
  height: auto;
}

.node-a,
.node-b,
.node-c,
.node-d {
  width: 22px;
  height: 22px;
  background: var(--accent-red);
  animation: node-pulse 2.4s ease-in-out infinite;
}

.node-a {
  left: 16%;
  top: 22%;
}

.node-b {
  right: 18%;
  top: 26%;
  background: var(--red);
  animation-delay: 500ms;
}

.node-c {
  left: 20%;
  bottom: 24%;
  background: var(--red);
  animation-delay: 1s;
}

.node-d {
  right: 18%;
  bottom: 22%;
  animation-delay: 1.5s;
}

.data-packet {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-red);
  box-shadow: 0 0 18px rgba(229, 35, 42, 0.72);
}

.packet-one {
  left: 18%;
  top: 48%;
  animation: packet-slide-one 4s ease-in-out infinite;
}

.packet-two {
  right: 18%;
  top: 48%;
  background: var(--red);
  animation: packet-slide-two 4.4s ease-in-out infinite;
}

.contact-section .section-heading {
  margin-bottom: 28px;
}

.contact-scene {
  min-height: 236px;
}

.map-panel {
  position: absolute;
  inset: 24px;
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.42)),
    linear-gradient(135deg, rgba(24, 25, 29, 0.06) 25%, transparent 25% 50%, rgba(24, 25, 29, 0.05) 50% 75%, transparent 75%);
  background-size: auto, 64px 64px;
  overflow: hidden;
}

.map-route {
  position: absolute;
  height: 3px;
  border-radius: 999px;
  background: rgba(229, 35, 42, 0.5);
  transform-origin: left;
}

.map-route-one {
  left: 8%;
  top: 34%;
  width: 72%;
  transform: rotate(18deg);
}

.map-route-two {
  left: 18%;
  top: 68%;
  width: 66%;
  background: rgba(24, 25, 29, 0.28);
  transform: rotate(-18deg);
}

.map-route-three {
  left: 52%;
  top: 14%;
  width: 42%;
  background: rgba(229, 35, 42, 0.72);
  transform: rotate(92deg);
}

.map-pin-main {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 22px;
  height: 22px;
  border: 5px solid var(--white);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(229, 35, 42, 0.45);
  animation: location-pulse 2s ease-out infinite;
}

.map-van {
  position: absolute;
  left: 6%;
  bottom: 26%;
  width: 46px;
  height: 24px;
  border-radius: 6px 10px 5px 5px;
  background: var(--charcoal);
  animation: van-route 4.8s ease-in-out infinite;
}

.map-van::before {
  position: absolute;
  left: 5px;
  bottom: -6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 26px 0 0 var(--red);
  content: "";
}

.compliance-grid,
.compliance-docs {
  position: relative;
  z-index: 1;
}

.compliance-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.68fr);
  gap: 52px;
  align-items: center;
  margin-bottom: 38px;
}

.compliance-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.trust-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-badge-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(229, 35, 42, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--charcoal);
  padding: 0 14px;
  font-size: 0.84rem;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(24, 25, 29, 0.06);
}

.compliance-scene {
  min-height: 330px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.58)),
    radial-gradient(circle at 24% 20%, rgba(229, 35, 42, 0.18), transparent 30%),
    radial-gradient(circle at 78% 78%, rgba(229, 35, 42, 0.2), transparent 32%);
}

.compliance-document {
  position: absolute;
  left: 42px;
  top: 44px;
  width: 152px;
  height: 204px;
  border: 2px solid rgba(24, 25, 29, 0.12);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 20px 44px rgba(24, 25, 29, 0.12);
  transform: rotate(-4deg);
}

.compliance-document::before {
  position: absolute;
  right: 0;
  top: 0;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, rgba(232, 234, 238, 0.1) 50%, #e8eaee 51%);
  content: "";
}

.compliance-document span {
  position: absolute;
  left: 22px;
  right: 22px;
  height: 8px;
  border-radius: 999px;
  background: rgba(24, 25, 29, 0.12);
  overflow: hidden;
}

.compliance-document span::after {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: var(--red);
  content: "";
  transform-origin: left;
  animation: data-bar 2.2s ease-in-out infinite;
}

.compliance-document span:nth-child(1) {
  top: 70px;
}

.compliance-document span:nth-child(2) {
  top: 104px;
}

.compliance-document span:nth-child(2)::after {
  width: 48%;
  background: var(--accent-red);
  animation-delay: 360ms;
}

.compliance-document span:nth-child(3) {
  top: 138px;
}

.compliance-document span:nth-child(3)::after {
  width: 86%;
  animation-delay: 700ms;
}

.compliance-stamp {
  position: absolute;
  left: 164px;
  top: 174px;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 4px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-weight: 950;
  transform: rotate(-12deg);
  animation: stamp-in 3.4s ease-in-out infinite;
}

.compliance-route {
  position: absolute;
  right: 44px;
  top: 68px;
  width: 46%;
  height: 154px;
  border: 3px solid rgba(229, 35, 42, 0.28);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 80px 0 0;
}

.compliance-route::after {
  position: absolute;
  right: -8px;
  bottom: -10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-red);
  box-shadow: 0 0 0 10px rgba(229, 35, 42, 0.18);
  content: "";
}

.compliance-cargo {
  position: absolute;
  width: 44px;
  height: 36px;
  border-radius: 7px;
  background:
    linear-gradient(90deg, transparent 44%, rgba(255, 255, 255, 0.34) 44% 56%, transparent 56%),
    var(--accent-red);
  box-shadow: 0 14px 24px rgba(24, 25, 29, 0.12);
}

.cargo-a {
  right: 34%;
  top: 88px;
  animation: compliance-cargo-one 4s ease-in-out infinite;
}

.cargo-b {
  right: 74px;
  bottom: 74px;
  background:
    linear-gradient(90deg, transparent 44%, rgba(255, 255, 255, 0.24) 44% 56%, transparent 56%),
    var(--red);
  animation: compliance-cargo-two 4.8s ease-in-out infinite;
}

.compliance-check {
  position: absolute;
  right: 62px;
  top: 58px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--charcoal);
  box-shadow: 0 18px 36px rgba(24, 25, 29, 0.18);
  animation: node-pulse 2.8s ease-in-out infinite;
}

.compliance-check::before {
  position: absolute;
  left: 17px;
  top: 18px;
  width: 22px;
  height: 12px;
  border-left: 4px solid var(--white);
  border-bottom: 4px solid var(--white);
  content: "";
  transform: rotate(-45deg);
}

.compliance-docs {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 20px;
}

.document-drawer .compliance-docs {
  padding: 0 18px 18px;
}

.certificate-card,
.partner-profile-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 0.58fr);
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  padding: 18px;
  box-shadow: 0 20px 54px rgba(24, 25, 29, 0.1);
}

.doc-preview,
.profile-preview {
  min-height: 360px;
  border-radius: var(--radius);
  background: #f0f1f4;
  overflow: hidden;
}

.doc-preview img,
.profile-preview img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: top center;
}

.doc-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: 4px 4px 4px 0;
}

.doc-label {
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.doc-content h3 {
  font-size: 1.28rem;
}

.doc-content p {
  color: var(--muted);
}

.certificate-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin: 4px 0 20px;
}

.certificate-facts div {
  border: 1px solid rgba(24, 25, 29, 0.08);
  border-radius: var(--radius);
  background: var(--soft);
  padding: 10px;
}

.certificate-facts dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.certificate-facts dd {
  margin: 2px 0 0;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 800;
}

.partner-points {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.partner-points li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-weight: 650;
}

.partner-points li::before {
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(229, 35, 42, 0.1);
  content: "";
}

.doc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.shipment-section {
  position: relative;
  overflow: hidden;
  padding-top: 78px;
  padding-bottom: 78px;
  background:
    radial-gradient(circle at 12% 16%, rgba(229, 35, 42, 0.15), transparent 30%),
    radial-gradient(circle at 88% 72%, rgba(229, 35, 42, 0.12), transparent 34%),
    linear-gradient(180deg, #f7f8fa 0%, #ffffff 100%);
}

.shipment-type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.shipment-type-card {
  min-height: 230px;
  padding: 26px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.shipment-type-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 35, 42, 0.34);
  box-shadow: 0 18px 42px rgba(24, 25, 29, 0.08);
}

.shipment-scene {
  min-height: 300px;
}

.shipment-lane {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 70px;
  height: 42px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.34) 0 20px, transparent 20px 38px),
    var(--charcoal);
  animation: belt-move 900ms linear infinite;
}

.shipment-gate {
  position: absolute;
  right: 68px;
  bottom: 70px;
  width: 86px;
  height: 96px;
  border: 3px solid rgba(229, 35, 42, 0.32);
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
}

.shipment-gate::after {
  position: absolute;
  left: 50%;
  top: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 10px rgba(229, 35, 42, 0.1);
  content: "";
  transform: translateX(-50%);
  animation: node-pulse 2.8s ease-in-out infinite;
}

.shipment-cube {
  position: absolute;
  left: 28px;
  bottom: 116px;
  width: 42px;
  height: 38px;
  border-radius: 7px;
  background:
    linear-gradient(90deg, transparent 44%, rgba(255, 255, 255, 0.34) 44% 56%, transparent 56%),
    var(--accent-red);
  box-shadow: 0 14px 26px rgba(24, 25, 29, 0.14);
  animation: shipment-cube-move 5.4s linear infinite;
}

.cube-two {
  background:
    linear-gradient(90deg, transparent 44%, rgba(255, 255, 255, 0.26) 44% 56%, transparent 56%),
    var(--red);
  animation-delay: 1.8s;
}

.cube-three {
  background:
    linear-gradient(90deg, transparent 44%, rgba(255, 255, 255, 0.22) 44% 56%, transparent 56%),
    var(--charcoal);
  animation-delay: 3.6s;
}

.shipment-pill {
  position: absolute;
  border-radius: 999px;
  background: var(--white);
  color: var(--charcoal);
  padding: 8px 12px;
  font-size: 0.76rem;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(24, 25, 29, 0.12);
  animation: status-pop 4s ease-in-out infinite;
}

.pill-one {
  left: 32px;
  top: 42px;
}

.pill-two {
  right: 38px;
  top: 58px;
  color: var(--red);
  animation-delay: 900ms;
}

.pill-three {
  left: 38%;
  bottom: 28px;
  background: var(--charcoal);
  color: var(--white);
  animation-delay: 1.8s;
}

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

.coverage-card {
  min-height: 230px;
}

.route-table-wrap {
  margin: 0;
  border-top: 1px solid var(--line);
  background: var(--white);
  overflow-x: auto;
}

.coverage-table {
  width: 100%;
  min-width: 840px;
  border-collapse: collapse;
}

.coverage-table caption {
  padding: 20px 22px 0;
  color: var(--charcoal);
  font-weight: 850;
  text-align: left;
}

.coverage-table th,
.coverage-table td {
  border-bottom: 1px solid var(--line);
  padding: 18px 20px;
  text-align: left;
  vertical-align: top;
}

.coverage-table thead th {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.coverage-table tbody th {
  width: 18%;
  color: var(--charcoal);
  font-weight: 850;
}

.coverage-table tbody td {
  color: var(--muted);
  font-size: 0.94rem;
}

.coverage-table tbody tr:last-child th,
.coverage-table tbody tr:last-child td {
  border-bottom: 0;
}

.coverage-table tbody tr:hover {
  background: #fff8f8;
}

.route-coverage-scene {
  min-height: 318px;
}

.route-ring {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--charcoal);
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(24, 25, 29, 0.13);
}

.route-ring::before {
  position: absolute;
  inset: -12px;
  border: 2px solid rgba(229, 35, 42, 0.2);
  border-radius: inherit;
  content: "";
  animation: hub-pulse 3s ease-out infinite;
}

.ring-asia {
  left: 38px;
  top: 58px;
  width: 88px;
  height: 88px;
}

.ring-africa {
  right: 62px;
  top: 86px;
  width: 76px;
  height: 76px;
  background: var(--red);
  color: var(--white);
}

.ring-global {
  left: 46%;
  bottom: 46px;
  width: 82px;
  height: 82px;
  background: var(--charcoal);
  color: var(--white);
}

.coverage-line {
  position: absolute;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(229, 35, 42, 0.55), transparent);
  transform-origin: left;
}

.coverage-line-one {
  left: 112px;
  top: 106px;
  width: 54%;
  transform: rotate(6deg);
}

.coverage-line-two {
  right: 92px;
  top: 156px;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(229, 35, 42, 0.72), transparent);
  transform: rotate(137deg);
}

.coverage-line-three {
  left: 86px;
  bottom: 80px;
  width: 62%;
  background: linear-gradient(90deg, transparent, rgba(24, 25, 29, 0.34), transparent);
  transform: rotate(-12deg);
}

.coverage-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--accent-red);
  box-shadow: 0 0 0 8px rgba(229, 35, 42, 0.16);
  animation: route-dot 3.8s ease-in-out infinite;
}

.dot-one {
  left: 36%;
  top: 94px;
}

.dot-two {
  right: 32%;
  top: 142px;
  background: var(--red);
  animation-delay: 700ms;
}

.dot-three {
  left: 52%;
  bottom: 92px;
  background: var(--charcoal);
  animation-delay: 1.4s;
}

.platform-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.7fr);
  gap: 48px;
  align-items: center;
}

.platform-grid .section-heading {
  margin-bottom: 0;
}

.platform-scene {
  min-height: 318px;
}

.platform-screen {
  position: absolute;
  left: 38px;
  right: 38px;
  top: 46px;
  height: 180px;
  border: 1px solid rgba(24, 25, 29, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 52px rgba(24, 25, 29, 0.12);
}

.platform-screen::before {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 20px;
  height: 12px;
  border-radius: 999px;
  background: rgba(24, 25, 29, 0.1);
  content: "";
}

.platform-screen span {
  position: absolute;
  left: 20px;
  height: 12px;
  border-radius: 999px;
  background: rgba(229, 35, 42, 0.12);
  overflow: hidden;
}

.platform-screen span::after {
  display: block;
  width: 70%;
  height: 100%;
  border-radius: inherit;
  background: var(--red);
  content: "";
  animation: platform-bar 3s ease-in-out infinite;
}

.platform-screen span:nth-child(1) {
  top: 64px;
  width: 72%;
}

.platform-screen span:nth-child(2) {
  top: 104px;
  width: 58%;
}

.platform-screen span:nth-child(2)::after {
  background: var(--accent-red);
  animation-delay: 600ms;
}

.platform-screen span:nth-child(3) {
  top: 144px;
  width: 82%;
}

.platform-screen span:nth-child(3)::after {
  background: var(--charcoal);
  animation-delay: 1.1s;
}

.platform-node {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 10px rgba(229, 35, 42, 0.12);
  animation: platform-node 3s ease-in-out infinite;
}

.platform-node-one {
  left: 60px;
  bottom: 42px;
}

.platform-node-two {
  left: 48%;
  bottom: 66px;
  background: var(--accent-red);
  animation-delay: 700ms;
}

.platform-node-three {
  right: 70px;
  bottom: 42px;
  background: var(--charcoal);
  animation-delay: 1.4s;
}

.platform-pulse {
  position: absolute;
  left: 50%;
  bottom: 74px;
  width: 170px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  transform: translateX(-50%);
  animation: platform-pulse 2.8s ease-in-out infinite;
}

.platform-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.platform-drawer .platform-content {
  margin-top: 0;
  padding: 0 24px;
}

.mini-heading {
  margin-bottom: 18px;
}

.mini-heading h3 {
  margin-bottom: 6px;
  font-size: 1.28rem;
}

.mini-heading p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.mini-card {
  min-height: 220px;
}

.future-panel {
  margin-top: 46px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 10% 0%, rgba(229, 35, 42, 0.12), transparent 26%),
    linear-gradient(135deg, #ffffff, #f7f8fa);
  padding: 30px;
  box-shadow: 0 18px 52px rgba(24, 25, 29, 0.08);
}

.platform-drawer .future-panel {
  margin: 24px;
}

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

.future-card {
  min-height: 220px;
}

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

.info-card,
.shipment-type-card,
.advantage-card,
.coverage-card,
.mini-card,
.future-card {
  min-height: 250px;
  padding: 26px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.info-card:hover,
.shipment-type-card:hover,
.advantage-card:hover,
.coverage-card:hover,
.mini-card:hover,
.future-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 35, 42, 0.34);
  box-shadow: 0 18px 42px rgba(24, 25, 29, 0.08);
}

.icon-box {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border-radius: var(--radius);
  background: rgba(229, 35, 42, 0.08);
  color: var(--red);
}

.icon-box svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-card p,
.shipment-type-card p,
.advantage-card p,
.coverage-card p,
.mini-card p,
.future-card p,
.culture-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.advantage-card {
  position: relative;
  overflow: hidden;
}

.advantage-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--accent-red));
  content: "";
}

.advantage-card.is-highlight {
  grid-column: span 2;
  border-color: rgba(229, 35, 42, 0.34);
  background:
    radial-gradient(circle at 88% 18%, rgba(229, 35, 42, 0.2), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #fff7f7 100%);
  box-shadow: 0 22px 56px rgba(229, 35, 42, 0.12);
}

.advantage-card.is-highlight .icon-box {
  background: var(--red);
  color: var(--white);
}

.advantage-card.is-highlight h3 {
  font-size: 1.34rem;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: 56px;
  align-items: start;
}

.process-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  counter-reset: process;
  list-style: none;
}

.process-list li {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  min-height: 124px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 22px;
}

.process-list li::before {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--charcoal);
  color: var(--white);
  counter-increment: process;
  content: counter(process, decimal-leading-zero);
  font-weight: 850;
}

.process-list h3 {
  margin-bottom: 6px;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.operations-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(229, 35, 42, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f5f6f8 100%);
}

.operations-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: 48px;
  align-items: center;
}

.operations-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.operations-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 8px 12px;
  color: var(--charcoal);
  font-size: 0.86rem;
  font-weight: 850;
  box-shadow: 0 10px 26px rgba(24, 25, 29, 0.06);
}

.process-video-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  padding: 14px;
  box-shadow: 0 22px 60px rgba(24, 25, 29, 0.12);
}

.process-video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: var(--charcoal);
  aspect-ratio: 16 / 9;
}

.process-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card-footer {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px 2px;
  color: var(--charcoal);
  font-weight: 850;
}

.video-card-footer a {
  color: var(--red);
  text-decoration: none;
}

.video-card-footer a:hover,
.video-card-footer a:focus-visible {
  text-decoration: underline;
}

.partner-grid {
  display: grid;
  gap: 18px;
}

.partner-group {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 0.68fr);
  gap: 24px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
    radial-gradient(circle at 0% 0%, rgba(229, 35, 42, 0.12), transparent 34%);
  padding: 22px;
}

.partner-group-copy h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.18rem;
}

.partner-group-copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.partner-tag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 14px;
}

.partner-card {
  display: grid;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 124px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--charcoal);
  padding: 14px;
  font-weight: 780;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.partner-card:hover {
  transform: translateY(-3px);
  border-color: rgba(237, 31, 36, 0.26);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.partner-logo-card {
  margin: 0;
}

.partner-logo-card img {
  display: block;
  width: 100%;
  max-height: 72px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.partner-logo-card figcaption {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: 56px;
  align-items: start;
}

.about-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.company-profile-card {
  display: grid;
  grid-template-columns: minmax(132px, 0.34fr) minmax(0, 0.66fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 249, 250, 0.98)),
    radial-gradient(circle at 0% 0%, rgba(237, 31, 36, 0.08), transparent 34%);
  padding: 16px;
  box-shadow: 0 18px 44px rgba(24, 25, 29, 0.08);
}

.company-profile-preview {
  min-height: 172px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--charcoal);
}

.company-profile-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-profile-content {
  display: grid;
  align-content: center;
  gap: 12px;
}

.company-profile-content .profile-label {
  margin: 0;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.company-profile-content h3 {
  margin: 0;
  color: var(--charcoal);
  font-size: 1.25rem;
}

.company-profile-content .profile-description {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.profile-actions .button {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.9rem;
}

.culture-list {
  display: grid;
  gap: 16px;
}

.culture-list > div {
  padding: 24px;
}

.culture-list span {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(229, 35, 42, 0.2);
  color: #825600;
  padding: 5px 10px;
  font-size: 0.78rem;
  font-weight: 800;
}

.culture-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--charcoal);
  font-size: 1.05rem;
}

.faq-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(229, 35, 42, 0.14), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f5f6f8 100%);
}

.faq-scene {
  min-height: 300px;
}

.faq-card-motion {
  position: absolute;
  width: 190px;
  border: 1px solid rgba(24, 25, 29, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  padding: 18px;
  box-shadow: 0 18px 40px rgba(24, 25, 29, 0.12);
}

.faq-card-motion span,
.faq-card-motion i {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: rgba(24, 25, 29, 0.12);
  overflow: hidden;
}

.faq-card-motion span + span {
  width: 68%;
  margin-top: 12px;
}

.faq-card-motion i {
  width: 48px;
  margin-top: 18px;
  background: var(--red);
  animation: data-bar 2.8s ease-in-out infinite;
}

.faq-card-one {
  left: 42px;
  top: 50px;
  transform: rotate(-4deg);
  animation: faq-card-float 4.4s ease-in-out infinite;
}

.faq-card-two {
  right: 42px;
  bottom: 54px;
  transform: rotate(5deg);
  animation: faq-card-float 4.8s ease-in-out infinite reverse;
}

.faq-check-motion {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--charcoal);
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 40px rgba(24, 25, 29, 0.18);
  animation: node-pulse 3s ease-in-out infinite;
}

.faq-check-motion::before {
  position: absolute;
  left: 23px;
  top: 25px;
  width: 28px;
  height: 15px;
  border-left: 5px solid var(--white);
  border-bottom: 5px solid var(--white);
  content: "";
  transform: rotate(-45deg);
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 980px;
}

.faq-more-drawer {
  margin-top: 4px;
}

.faq-more-list {
  display: grid;
  gap: 14px;
  padding: 0 18px 18px;
}

.faq-more-list .faq-item {
  box-shadow: none;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(24, 25, 29, 0.06);
  overflow: hidden;
}

.faq-item.is-highlight {
  border-color: rgba(229, 35, 42, 0.34);
  background:
    radial-gradient(circle at 100% 0%, rgba(229, 35, 42, 0.14), transparent 22%),
    #ffffff;
}

.faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 16px;
  align-items: center;
  min-height: 74px;
  padding: 22px 24px;
  color: var(--charcoal);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 850;
  list-style: none;
}

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

.faq-item summary i {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(229, 35, 42, 0.1);
}

.faq-item summary i::before,
.faq-item summary i::after {
  position: absolute;
  left: 8px;
  top: 13px;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--red);
  content: "";
  transition: transform 180ms ease;
}

.faq-item summary i::after {
  transform: rotate(90deg);
}

.faq-item[open] summary i::after {
  transform: rotate(0deg);
}

.faq-item p {
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 0 24px 24px;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.7fr);
  gap: 48px;
  align-items: start;
}

.contact-side {
  display: grid;
  gap: 18px;
}

.contact-card {
  display: grid;
  gap: 20px;
  padding: 30px;
  font-style: normal;
  box-shadow: 0 20px 58px rgba(24, 25, 29, 0.08);
}

.contact-card img {
  width: 72px;
  height: auto;
}

.contact-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-card p {
  margin: 0;
  color: var(--charcoal);
  font-weight: 650;
}

.contact-card a:hover,
.contact-card a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--red);
}

.map-link {
  display: inline-flex;
  width: fit-content;
  border-bottom: 2px solid var(--accent-red);
  color: var(--charcoal);
  font-weight: 800;
}

.map-embed {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  padding: 10px;
  box-shadow: 0 18px 52px rgba(24, 25, 29, 0.08);
  overflow: hidden;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 12px;
  background: var(--soft);
}

.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.78);
  padding: 58px 0 96px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr;
  gap: 48px;
}

.footer-brand strong {
  color: var(--white);
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.64);
}

.footer-brand .registration-number {
  border-color: rgba(229, 35, 42, 0.24);
  background: rgba(229, 35, 42, 0.12);
  color: #ff6b70;
}

.site-footer p {
  max-width: 440px;
  margin: 18px 0 0;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 0.95rem;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
}

.footer-bottom {
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

.floating-track {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: min(calc(100% - 32px), 430px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(24, 25, 29, 0.94), rgba(47, 49, 57, 0.94)),
    radial-gradient(circle at 100% 0%, rgba(229, 35, 42, 0.24), transparent 32%);
  color: var(--white);
  padding: 10px 10px 10px 18px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.floating-track div {
  min-width: 0;
}

.floating-track strong {
  display: block;
  line-height: 1.2;
}

.floating-track span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.85rem;
}

.floating-track .button {
  flex: 0 0 auto;
  box-shadow: none;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal-ready .reveal {
  opacity: 1;
  transform: translateY(18px);
  transition: transform 580ms ease;
}

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

@keyframes float-logo {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes hero-orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes hero-light-sweep {
  0%,
  100% {
    transform: translateY(-130px) rotate(-18deg);
  }
  50% {
    transform: translateY(280px) rotate(-18deg);
  }
}

@keyframes slogan-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(229, 35, 42, 0.24);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(229, 35, 42, 0);
  }
}

@keyframes hub-pulse {
  0% {
    opacity: 0.85;
    transform: scale(0.82);
  }
  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

@keyframes truck-drive {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(520px);
  }
}

@keyframes wheel-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes plane-cross {
  0% {
    opacity: 0;
    transform: translateX(0) translateY(16px);
  }
  12%,
  78% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    transform: translateX(520px) translateY(-96px);
  }
}

@keyframes parcel-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(4deg);
  }
}

@keyframes status-pop {
  0%,
  100% {
    opacity: 0.76;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-7px);
  }
}

@keyframes scan-line {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(104px);
  }
}

@keyframes data-bar {
  0%,
  100% {
    transform: scaleX(0.34);
  }
  50% {
    transform: scaleX(1);
  }
}

@keyframes stamp-in {
  0%,
  100% {
    opacity: 0.6;
    transform: rotate(-10deg) scale(0.92);
  }
  48%,
  64% {
    opacity: 1;
    transform: rotate(-10deg) scale(1);
  }
}

@keyframes belt-move {
  to {
    background-position: 30px 0;
  }
}

@keyframes box-sort {
  0% {
    opacity: 0;
    transform: translateX(0) translateY(0) rotate(0deg);
  }
  10%,
  82% {
    opacity: 1;
  }
  66% {
    transform: translateX(250px) translateY(0) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateX(310px) translateY(-46px) rotate(12deg);
  }
}

@keyframes shipment-cube-move {
  0% {
    opacity: 0;
    transform: translateX(0) translateY(0) rotate(0deg);
  }
  10%,
  84% {
    opacity: 1;
  }
  64% {
    transform: translateX(250px) translateY(0) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateX(330px) translateY(-54px) rotate(12deg);
  }
}

@keyframes gate-swing {
  0%,
  100% {
    transform: rotate(0deg);
  }
  54% {
    transform: rotate(-18deg);
  }
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes node-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(229, 35, 42, 0.34);
  }
  50% {
    transform: scale(1.24);
    box-shadow: 0 0 0 14px rgba(229, 35, 42, 0);
  }
}

@keyframes packet-slide-one {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(138px, -46px);
  }
}

@keyframes packet-slide-two {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-142px, 48px);
  }
}

@keyframes location-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(229, 35, 42, 0.45);
  }
  100% {
    box-shadow: 0 0 0 24px rgba(229, 35, 42, 0);
  }
}

@keyframes van-route {
  0% {
    transform: translate(0, 0) rotate(-8deg);
  }
  48% {
    transform: translate(210px, -54px) rotate(-8deg);
  }
  100% {
    transform: translate(330px, -16px) rotate(8deg);
  }
}

@keyframes compliance-cargo-one {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(112px, 58px) rotate(5deg);
  }
}

@keyframes compliance-cargo-two {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-136px, -28px) rotate(-4deg);
  }
}

@keyframes route-dot {
  0%,
  100% {
    opacity: 0.75;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.22);
  }
}

@keyframes platform-bar {
  0%,
  100% {
    transform: scaleX(0.28);
  }
  50% {
    transform: scaleX(1);
  }
}

@keyframes platform-node {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes platform-pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: translateX(-50%) scaleX(0.4);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
  }
}

@keyframes faq-card-float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -12px;
  }
}

@media (max-width: 1020px) {
  .hero-grid,
  .photo-proof-grid,
  .process-layout,
  .operations-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .compliance-grid,
  .compliance-docs,
  .platform-grid,
  .platform-content {
    grid-template-columns: 1fr;
  }

  .certificate-card,
  .partner-profile-card {
    grid-template-columns: minmax(180px, 0.36fr) minmax(0, 0.64fr);
  }

  .section-showcase,
  .section-showcase-reverse {
    grid-template-columns: 1fr;
  }

  .section-showcase-reverse .section-heading,
  .section-showcase-reverse .motion-scene {
    order: initial;
  }

  .hero {
    min-height: 0;
  }

  .hero-visual {
    min-height: 460px;
  }

  .stat-grid,
  .card-grid,
  .partner-grid,
  .coverage-grid,
  .shipment-type-grid,
  .future-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-grid,
  .partner-group {
    grid-template-columns: 1fr;
  }

  .advantage-card.is-highlight {
    grid-column: span 2;
  }

  .process-scene,
  .contact-scene,
  .route-coverage-scene,
  .shipment-scene,
  .platform-scene {
    max-width: 520px;
  }

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

@media (max-width: 1080px) {
  .navbar {
    min-height: 74px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-menu {
    position: fixed;
    inset: 74px 0 auto 0;
    display: grid;
    gap: 0;
    max-height: calc(100vh - 74px);
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    padding: 12px 16px 24px;
    box-shadow: 0 28px 60px rgba(24, 25, 29, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .language-switcher {
    width: fit-content;
    margin: 8px 0;
  }

  .nav-open .nav-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .nav-menu .button {
    margin-top: 8px;
  }

  .nav-menu a:not(.button)::after {
    display: none;
  }

  .section-band {
    padding: 76px 0;
  }

  .hero {
    padding-top: 64px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .hero-visual {
    min-height: 390px;
    border-radius: 18px;
  }

  .motion-scene {
    min-height: 254px;
  }

  .network-scene {
    min-height: 280px;
  }

  .hero-logo-group {
    top: 44px;
    right: 18px;
    width: min(88%, 500px);
    height: 330px;
  }

  .hero-logo {
    right: -10px;
    top: 58px;
    width: min(64%, 340px);
  }

  .hero-brand-lockup {
    left: 8px;
    top: 28px;
    max-width: min(54%, 270px);
  }

  .shipment-card {
    min-width: 180px;
    padding: 14px;
  }

  .card-red {
    left: 18px;
    bottom: 58px;
  }

  .card-dark {
    right: 18px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 52px;
    height: 52px;
    border-radius: 15px;
  }

  .brand-mark img {
    width: 41px;
  }

  .brand small {
    white-space: normal;
  }

  .registration-number {
    font-size: 0.58rem;
    white-space: normal;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .stat-grid,
  .card-grid,
  .partner-grid,
  .coverage-grid,
  .shipment-type-grid,
  .mini-card-grid,
  .future-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .language-card {
    padding: 26px;
  }

  .language-actions {
    display: grid;
  }

  .certificate-card,
  .partner-profile-card,
  .company-profile-card {
    grid-template-columns: 1fr;
  }

  .company-profile-preview {
    min-height: 240px;
  }

  .doc-preview,
  .profile-preview {
    min-height: 320px;
  }

  .photo-card img {
    max-height: 360px;
  }

  .route-table-wrap {
    border-radius: 14px;
  }

  .certificate-facts {
    grid-template-columns: 1fr;
  }

  .doc-actions {
    width: 100%;
  }

  .video-card-footer {
    display: grid;
  }

  .advantage-card.is-highlight {
    grid-column: auto;
  }

  .compliance-scene {
    min-height: 260px;
  }

  .compliance-document {
    left: 24px;
    top: 34px;
    width: 130px;
    height: 176px;
  }

  .compliance-stamp {
    left: 128px;
    top: 152px;
  }

  .compliance-route {
    right: 24px;
    width: 44%;
  }

  .info-card,
  .shipment-type-card,
  .advantage-card,
  .coverage-card,
  .mini-card,
  .future-card {
    min-height: 0;
  }

  .platform-scene,
  .route-coverage-scene {
    min-height: 250px;
  }

  .ring-asia {
    left: 22px;
    top: 46px;
  }

  .ring-africa {
    right: 24px;
    top: 72px;
  }

  .ring-global {
    left: 38%;
    bottom: 34px;
  }

  .platform-screen {
    left: 24px;
    right: 24px;
  }

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

  .motion-scene {
    min-height: 226px;
    border-radius: 14px;
  }

  .scanner-frame {
    left: 20px;
    width: 48%;
  }

  .dashboard-card {
    width: 132px;
    padding: 14px;
  }

  .dash-main {
    right: 18px;
  }

  .dash-side {
    right: 38px;
  }

  .scene-hub {
    width: 58px;
    height: 58px;
  }

  .hub-left {
    left: 18px;
  }

  .hub-right {
    right: 18px;
  }

  .network-scene {
    min-height: 240px;
  }

  .orbit-one {
    inset: 38px 48px;
  }

  .orbit-two {
    inset: 62px 28px;
  }

  .partner-card {
    min-height: 112px;
  }

  .partner-tag-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .floating-track {
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: grid;
    width: auto;
    border-radius: 16px;
    transform: none;
  }

  .hero-visual {
    min-height: 330px;
  }

  .hero-logo-group {
    right: 10px;
    top: 24px;
    width: calc(100% - 24px);
    height: 276px;
  }

  .hero-logo {
    right: -10px;
    top: 54px;
    width: min(72%, 270px);
  }

  .hero-brand-lockup {
    left: 4px;
    top: 6px;
    max-width: 68%;
  }

  .hero-slogan {
    max-width: 180px;
    padding: 7px 12px;
    font-size: 0.58rem;
  }

  .hero-slogan::before {
    display: none;
  }

  .shipment-card {
    width: calc(50% - 18px);
    min-width: 0;
    max-width: none;
    padding: 12px 10px;
  }

  .shipment-card span {
    font-size: 0.62rem;
  }

  .shipment-card strong {
    font-size: 0.78rem;
  }

  .card-red {
    left: 12px;
    bottom: 38px;
  }

  .card-dark {
    right: 12px;
    bottom: 22px;
  }
}

@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;
  }
}
