:root {
  --ink: #10252d;
  --muted: #5c6a70;
  --paper: #ffffff;
  --soft: #f4f7f6;
  --line: #dbe3e0;
  --brand: #0f2f3d;
  --brand-2: #b46f24;
  --accent: #b46f24;
  --accent-2: #f4ece3;
  --danger-free: #27b35f;
  --shadow: 0 18px 44px rgba(12, 38, 46, 0.11);
  --radius: 8px;
  --container: min(1120px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.search-open,
body.menu-open,
body.quote-preview-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.05em;
  height: 1.05em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 227, 224, 0.88);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.js-enabled .site-header {
  animation: headerDrop 0.86s cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 30px rgba(7, 27, 35, 0.08);
}

.topbar {
  background: var(--brand);
  color: #f3fbf8;
  font-size: 0.86rem;
}

.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar__links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar a,
.contact-methods a,
.contact-methods p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand img {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand--logo img {
  width: clamp(116px, 11vw, 158px);
  height: auto;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.02rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 2px;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #263a42;
  font-size: 0.95rem;
  font-weight: 700;
}

.primary-nav a {
  padding: 28px 0;
  position: relative;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button,
.icon-button {
  border: 0;
  cursor: pointer;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: var(--radius);
  background: var(--brand-2);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(180, 111, 36, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.icon-button:hover,
.service-card:hover {
  transform: translateY(-2px);
}

.button:hover {
  background: #93591d;
  box-shadow: 0 14px 30px rgba(180, 111, 36, 0.22);
}

.button--small {
  min-height: 42px;
  padding: 0 16px;
}

.button--light {
  background: #fff;
  color: var(--brand);
  box-shadow: none;
}

.button--light:hover {
  background: #eef5f2;
  box-shadow: none;
}

.button--whatsapp {
  background: var(--danger-free);
}

.button--whatsapp:hover {
  background: #218f50;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--brand);
  transition: transform 0.2s ease, background 0.2s ease;
}

.menu-button {
  display: none;
}

.hero {
  min-height: 760px;
  position: relative;
  display: grid;
  align-items: center;
  padding: 152px 0 118px;
  overflow: hidden;
  color: #fff;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
  transform-origin: center;
  animation:
    heroImageReveal 1.25s cubic-bezier(0.2, 0.85, 0.2, 1) both,
    heroDrift 18s ease-in-out 1.25s infinite alternate;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(6, 24, 31, 0.9) 0%, rgba(6, 24, 31, 0.72) 38%, rgba(6, 24, 31, 0.22) 76%),
    linear-gradient(180deg, rgba(6, 24, 31, 0.1) 0%, rgba(6, 24, 31, 0.45) 100%);
}

.js-enabled .hero__shade {
  animation: heroShadeReveal 1s ease both;
}

.hero__motion {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.62;
}

.js-enabled .hero__motion {
  animation: heroMotionReveal 0.9s ease 0.55s both;
}

.hero__motion span {
  position: absolute;
  left: -22%;
  width: 44%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 179, 107, 0.85), transparent);
  animation: cargoLine 7s linear infinite;
}

.hero__motion span:nth-child(1) {
  top: 30%;
}

.hero__motion span:nth-child(2) {
  top: 46%;
  animation-delay: -2.6s;
}

.hero__motion span:nth-child(3) {
  top: 63%;
  animation-delay: -4.8s;
}

.hero__status {
  position: absolute;
  right: max(28px, calc((100vw - 1120px) / 2));
  top: 68%;
  z-index: 2;
  width: 250px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(7, 27, 35, 0.58);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 42px rgba(7, 27, 35, 0.24);
  animation: floatPanel 4.8s ease-in-out infinite;
}

.hero__status strong,
.hero__status span {
  display: block;
}

.hero__status strong {
  font-size: 0.96rem;
}

.hero__status span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero__photo-card {
  position: absolute;
  right: max(28px, calc((100vw - 1120px) / 2));
  top: 30%;
  z-index: 3;
  width: min(330px, 28vw);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(7, 27, 35, 0.32);
  animation:
    photoCardReveal 0.9s cubic-bezier(0.2, 0.85, 0.2, 1) 1.05s both,
    photoFloat 5.8s ease-in-out 1.95s infinite;
}

.hero__photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.hero__transport-card {
  background: linear-gradient(135deg, #ffffff 0%, #f3f8f6 100%);
}

.hero__transport-card img {
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid rgba(15, 47, 61, 0.08);
}

.hero__photo-card div {
  padding: 16px 18px 18px;
  color: var(--ink);
}

.hero__photo-card strong,
.hero__photo-card span {
  display: block;
}

.hero__photo-card strong {
  font-size: 0.98rem;
}

.hero__photo-card span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 1;
  height: 92px;
  background: #fff;
  clip-path: ellipse(72% 78% at 50% 100%);
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 680px;
  margin-left: max(20px, calc((100vw - 1120px) / 2));
}

.js-enabled .hero .eyebrow,
.js-enabled .hero h1,
.js-enabled .hero__lead,
.js-enabled .hero__actions {
  opacity: 0;
  transform: translateY(24px);
  animation: heroTextLift 0.72s cubic-bezier(0.2, 0.85, 0.2, 1) both;
}

.js-enabled .hero .eyebrow {
  animation-delay: 0.45s;
}

.js-enabled .hero h1 {
  animation-delay: 0.62s;
}

.js-enabled .hero__lead {
  animation-delay: 0.84s;
}

.js-enabled .hero__actions {
  animation-delay: 1.04s;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f1b36b;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  max-width: 10ch;
  font-size: 7.4rem;
  font-weight: 900;
}

h2 {
  font-size: 3.25rem;
  color: var(--ink);
}

h3 {
  font-size: 1.2rem;
}

.hero__lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.section {
  padding: 96px 0;
  scroll-margin-top: 118px;
}

.intro {
  padding-top: 44px;
  padding-bottom: 68px;
  background: linear-gradient(180deg, #fff 0%, #fff 56%, #f6faf8 100%);
}

.intro__grid,
.coverage__grid,
.contact__grid,
.process__grid,
.trust__grid {
  display: grid;
  gap: 44px;
}

.intro__grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: start;
  gap: 58px;
}

.intro__side > p,
.section-heading p,
.contact__copy > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.intro__copy h2 {
  max-width: 620px;
}

.intro__side {
  display: grid;
  gap: 18px;
}

.intro__side > p {
  max-width: 620px;
}

.operation-tracker {
  min-height: 620px;
  display: grid;
  grid-template-rows: auto auto auto auto;
  gap: 18px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(199, 212, 216, 0.28);
  border-radius: var(--radius);
  color: #fff;
  background: #20353c;
  box-shadow: var(--shadow);
}

.motion__tracker {
  margin-top: 72px;
  scroll-margin-top: 132px;
}

.operation-tracker__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.operation-tracker__header p {
  margin: 0 0 6px;
  color: #f2b35d;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.operation-tracker__header h3 {
  color: #fff;
  font-size: 1.28rem;
}

.operation-tracker__progress {
  min-width: 68px;
  min-height: 48px;
  display: grid;
  place-items: center;
  padding: 0 12px;
  border-radius: var(--radius);
  color: #fff;
  background: #176967;
  font-size: 0.95rem;
  transition: background 0.25s ease, transform 0.25s ease;
}

.operation-map {
  position: relative;
  aspect-ratio: 1897 / 829;
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  background: #0d2730;
}

.operation-map__world {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}

.operation-map__location {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  transform: translate(-50%, -50%);
}

.operation-map__location--origin {
  left: 73%;
  top: 43%;
}

.operation-map__location--destination {
  left: 22.6%;
  top: 59.5%;
  flex-direction: row-reverse;
  text-align: right;
}

.operation-map__location strong,
.operation-map__location small {
  display: block;
}

.operation-map__location strong {
  font-size: 0.82rem;
  line-height: 1.1;
}

.operation-map__location small {
  margin-top: 2px;
  color: #d3e0e2;
  font-size: 0.68rem;
  font-weight: 700;
}

.operation-map__pin {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
  background: rgba(13, 39, 48, 0.88);
  box-shadow: 0 8px 22px rgba(3, 17, 22, 0.32);
  transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.operation-map__pin img,
.operation-map__document img,
.operation-map__plane img,
.operation-map__delivery img,
.operation-map__status img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

.operation-map__document,
.operation-map__delivery {
  position: absolute;
  z-index: 4;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(13, 39, 48, 0.9);
  box-shadow: 0 12px 26px rgba(3, 17, 22, 0.38);
  transition: opacity 0.35s ease, transform 0.5s ease;
}

.operation-map__document {
  left: 73%;
  top: 58%;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.operation-map__plane {
  position: absolute;
  left: 70%;
  top: 42%;
  z-index: 5;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: #138c84;
  box-shadow:
    0 0 0 10px rgba(19, 140, 132, 0.13),
    0 14px 28px rgba(3, 17, 22, 0.42);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.62);
  transition:
    left 1.4s cubic-bezier(0.22, 1, 0.36, 1),
    top 1.4s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease,
    transform 0.5s ease;
}

.operation-map__plane img {
  width: 28px;
  height: 28px;
  transform: rotate(-135deg);
  animation: operationPlaneFloat 1.7s ease-in-out infinite;
}

.operation-map__delivery {
  left: 25%;
  top: 67%;
  opacity: 0;
  transform: translate(-65%, -50%) scale(0.72);
}

.operation-map__status {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 6;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(13, 39, 48, 0.88);
  box-shadow: 0 12px 26px rgba(3, 17, 22, 0.3);
  backdrop-filter: blur(10px);
  font-size: 0.78rem;
  font-weight: 900;
  transform: translateX(-50%);
}

.operation-map__status img {
  width: 18px;
  height: 18px;
}

.operation-tracker[data-active-stage="0"] .operation-map__location--origin .operation-map__pin,
.operation-tracker[data-active-stage="3"] .operation-map__location--destination .operation-map__pin {
  background: #138c84;
  box-shadow:
    0 0 0 9px rgba(19, 140, 132, 0.16),
    0 0 26px rgba(32, 185, 177, 0.88);
  transform: scale(1.08);
  animation: operationPinPulse 1.8s ease-in-out infinite;
}

.operation-tracker[data-active-stage="1"] .operation-map__document,
.operation-tracker[data-active-stage="2"] .operation-map__document,
.operation-tracker[data-active-stage="3"] .operation-map__document {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72);
}

.operation-tracker[data-active-stage="1"] .operation-map__plane {
  left: 61%;
  top: 37%;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.operation-tracker[data-active-stage="2"] .operation-map__plane {
  left: 40%;
  top: 39%;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.operation-tracker[data-active-stage="3"] .operation-map__plane {
  left: 24%;
  top: 57%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72);
}

.operation-tracker[data-active-stage="3"] .operation-map__delivery {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  animation: operationDeliveryArrive 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.operation-tracker__description {
  min-height: 50px;
  margin: 0;
  color: #dce5e7;
  font-size: 0.92rem;
  line-height: 1.6;
}

.operation-tracker__tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.operation-tracker__tabs button {
  min-height: 46px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: #dce4e6;
  background: #405159;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.operation-tracker__tabs button:hover {
  color: #fff;
  background: #50636b;
  transform: translateY(-2px);
}

.operation-tracker__tabs button.is-active {
  color: #fff;
  background: #138c84;
}

.operation-tracker__tabs button:focus-visible {
  outline: 3px solid rgba(242, 179, 93, 0.55);
  outline-offset: 2px;
}

@keyframes operationPinPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 7px rgba(19, 140, 132, 0.11),
      0 0 20px rgba(32, 185, 177, 0.64);
  }

  50% {
    box-shadow:
      0 0 0 13px rgba(19, 140, 132, 0.2),
      0 0 30px rgba(32, 185, 177, 0.94);
  }
}

@keyframes operationPlaneFloat {
  0%,
  100% {
    transform: rotate(-135deg) translateY(0);
  }

  50% {
    transform: rotate(-135deg) translateY(-3px);
  }
}

@keyframes operationDeliveryArrive {
  from {
    opacity: 0;
    transform: translate(-88%, -50%) scale(0.82);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.readiness {
  background: #fff;
}

.readiness__grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 58px;
  align-items: center;
}

.readiness__media {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.readiness__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 27, 35, 0.02), rgba(7, 27, 35, 0.44)),
    linear-gradient(90deg, rgba(7, 27, 35, 0.36), transparent 58%);
}

.readiness__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.readiness__badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  min-width: 170px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(7, 27, 35, 0.72);
  backdrop-filter: blur(16px);
}

.readiness__badge span,
.readiness__badge strong {
  display: block;
}

.readiness__badge span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
}

.readiness__badge strong {
  margin-top: 3px;
  color: #f1b36b;
  font-size: 2rem;
  line-height: 1;
}

.readiness__content > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.checklist {
  display: grid;
  gap: 0;
  margin: 28px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.checklist li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.checklist li > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--brand-2);
  background: var(--accent-2);
  font-size: 0.8rem;
  font-weight: 900;
}

.checklist strong {
  display: block;
  font-size: 1.08rem;
}

.checklist p {
  margin: 7px 0 0;
  color: var(--muted);
}

.motion {
  background: #071b23;
  color: #fff;
  overflow: hidden;
}

.motion h2 {
  color: #fff;
}

.motion__grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 52px;
  align-items: center;
}

.motion__copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
}

.motion__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.motion__facts article {
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.motion__facts strong {
  display: block;
  color: #f1b36b;
  font-size: 2.2rem;
  line-height: 1;
}

.motion__facts span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.motion-video {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #0f2f3d;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.motion-video::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(7, 27, 35, 0.68), rgba(7, 27, 35, 0.16) 52%, rgba(7, 27, 35, 0.48)),
    linear-gradient(180deg, rgba(7, 27, 35, 0.04), rgba(7, 27, 35, 0.54));
  pointer-events: none;
}

.operation-scene {
  margin-top: 132px;
  min-height: 460px;
  display: block;
  overflow: visible;
  color: #fff;
  isolation: isolate;
}

.operation-scene::before {
  display: none;
}

.operation-scene__stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}

.operation-scene__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  animation: photoDrift 12s ease-in-out infinite alternate;
}

.operation-scene__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 76% 18%, rgba(241, 179, 107, 0.1), transparent 30%),
    linear-gradient(90deg, rgba(7, 27, 35, 0.78), rgba(7, 27, 35, 0.16) 58%, rgba(7, 27, 35, 0.42)),
    linear-gradient(180deg, rgba(7, 27, 35, 0.02), rgba(7, 27, 35, 0.58));
  pointer-events: none;
}

.operation-scene__body {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  display: grid;
  gap: 18px;
  padding: 0;
}

.operation-scene__summary {
  max-width: 560px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(7, 27, 35, 0.76);
  backdrop-filter: blur(16px);
}

.operation-scene__summary span {
  display: block;
  color: #f1b36b;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.operation-scene__summary strong {
  display: block;
  margin-top: 8px;
  font-size: 1.48rem;
  line-height: 1.08;
}

.operation-scene__summary p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  line-height: 1.35;
}

.operation-scene__status {
  position: absolute;
  top: -120px;
  right: 18px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(360px, calc(100% - 36px));
}

.operation-scene__status article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}

.operation-scene__status .icon {
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 50%;
  color: var(--accent);
  background: var(--accent-2);
  stroke-width: 1.7;
}

.operation-scene__status span,
.operation-scene__status strong {
  display: block;
}

.operation-scene__status span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.operation-scene__status strong {
  margin-top: 3px;
  color: var(--brand);
  font-size: 1.18rem;
  font-weight: 900;
}

.motion-video__hud {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.motion-video__hud span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(7, 27, 35, 0.62);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

@keyframes photoDrift {
  from {
    transform: scale(1.02);
  }

  to {
    transform: scale(1.08) translate3d(-1.8%, -1.2%, 0);
  }
}

.section-heading {
  max-width: 740px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading--left {
  margin: 0;
  text-align: left;
}

.service-grid {
  display: flex;
  align-items: stretch;
  gap: 18px;
  overflow-x: auto;
  padding: 8px 2px 30px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.service-grid::-webkit-scrollbar {
  display: none;
}

.service-carousel {
  position: relative;
}

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--brand);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(22, 56, 64, 0.14);
  transform: translateY(-50%);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.carousel-button .icon {
  width: 20px;
  height: 20px;
  stroke-width: 2.4;
}

.carousel-button:hover {
  transform: translateY(-50%) scale(1.04);
  border-color: var(--brand);
  color: #fff;
  background: var(--brand);
}

.carousel-button--prev {
  left: 10px;
}

.carousel-button--prev .icon {
  transform: rotate(180deg);
}

.carousel-button--next {
  right: 10px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 12px;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #cbd7d4;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, width 0.2s ease;
}

.carousel-dots button.is-active {
  width: 24px;
  border-radius: 999px;
  background: var(--brand);
}

.service-card {
  min-height: 320px;
  flex: 0 0 calc((100% - 36px) / 3);
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  border-color: rgba(180, 111, 36, 0.42);
  box-shadow: 0 16px 30px rgba(22, 56, 64, 0.08);
}

.service-card__icon {
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  color: var(--brand-2);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card p {
  color: var(--muted);
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--brand-2);
  font-weight: 900;
}

.use-cases {
  background: linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}

.use-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.use-case-card {
  position: relative;
  display: flex;
  min-height: 320px;
  flex-direction: column;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 42px rgba(18, 48, 56, 0.06);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.use-case-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-2), var(--brand));
  transform: scaleX(0.22);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.use-case-card:hover {
  border-color: rgba(180, 111, 36, 0.44);
  box-shadow: 0 22px 46px rgba(18, 48, 56, 0.1);
  transform: translateY(-4px);
}

.use-case-card:hover::before {
  transform: scaleX(1);
}

.use-case-card__tag {
  width: fit-content;
  margin-bottom: 22px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--brand);
  background: rgba(14, 136, 124, 0.1);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.use-case-card h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

.use-case-card p {
  color: var(--muted);
}

.use-case-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--brand-2);
  font-weight: 900;
}

.process {
  background: var(--soft);
}

.process__grid {
  grid-template-columns: 0.84fr 1.16fr;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(22, 56, 64, 0.04);
  transform-style: preserve-3d;
  will-change: transform;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.timeline article::before {
  position: absolute;
  inset: -1px auto -1px -1px;
  width: 5px;
  content: "";
  border-radius: var(--radius) 0 0 var(--radius);
  background: var(--accent);
  opacity: 0;
  transform: scaleY(0.3);
  transform-origin: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.timeline article::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at var(--tilt-x, 50%) var(--tilt-y, 50%), rgba(180, 111, 36, 0.12), transparent 34%),
    linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.72), transparent 58%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.timeline article > * {
  position: relative;
  z-index: 1;
}

.timeline article:hover {
  border-color: rgba(180, 111, 36, 0.42);
  box-shadow: 0 20px 44px rgba(22, 56, 64, 0.1);
  transform: translateY(-3px);
}

.timeline article:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.timeline article:hover::after {
  opacity: 1;
}

.timeline article:hover span {
  color: #fff;
  background: var(--brand-2);
  box-shadow: 0 0 0 7px rgba(180, 111, 36, 0.1);
}

.js-enabled .timeline article.reveal.is-visible:hover {
  transform: translateY(-3px);
}

.timeline span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-2);
  color: var(--brand-2);
  font-weight: 900;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.timeline p {
  margin: 8px 0 0;
  color: var(--muted);
}

.coverage {
  overflow: hidden;
  padding: 22px 0;
  background: linear-gradient(180deg, #fff 0%, #f8fbfa 100%);
  color: var(--ink);
}

.coverage__grid {
  grid-template-columns: minmax(380px, 0.46fr) minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  padding: 22px 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(11, 37, 45, 0.06);
}

.coverage__copy .eyebrow {
  margin-bottom: 6px;
}

.coverage h2 {
  color: var(--ink);
  max-width: 560px;
  font-size: clamp(1.18rem, 1.9vw, 1.62rem);
  line-height: 1.05;
}

.coverage-marquee {
  position: relative;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.coverage-list {
  width: max-content;
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  pointer-events: none;
  animation: coverageMarquee 30s linear infinite;
}

.coverage-list span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7faf9;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(11, 37, 45, 0.04);
}

.trust__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust article {
  padding-top: 24px;
  border-top: 3px solid var(--accent);
}

.trust strong {
  display: block;
  font-size: 1.18rem;
}

.trust p {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 26px rgba(12, 38, 46, 0.06);
}

.faq-list summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--brand-2);
  background: var(--accent-2);
  font-size: 1.05rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: -4px 20px 20px;
  color: var(--muted);
}

.faq-page-main {
  min-height: 100vh;
  padding: 164px 0 88px;
  background: var(--soft);
}

.faq-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 70px;
  align-items: end;
  padding-bottom: 54px;
  border-bottom: 1px solid var(--line);
}

.faq-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.faq-breadcrumb span {
  color: #98a5aa;
}

.faq-page-hero h1 {
  max-width: 11ch;
  color: var(--ink);
  font-size: clamp(3.25rem, 7vw, 5.8rem);
}

.faq-page-hero__copy > p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.faq-page-hero__aside {
  padding-left: 28px;
  border-left: 2px solid var(--accent);
}

.faq-page-hero__aside strong,
.faq-page-hero__aside span {
  display: block;
}

.faq-page-hero__aside strong {
  font-size: 1.1rem;
}

.faq-page-hero__aside span {
  margin-top: 8px;
  color: var(--muted);
}

.faq-page-hero__aside a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--brand-2);
  font-weight: 900;
}

.faq-workspace {
  padding-top: 46px;
}

.faq-tools {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.faq-search {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(12, 38, 46, 0.06);
}

.faq-search:focus-within {
  border-color: var(--brand-2);
  box-shadow: 0 0 0 4px rgba(180, 111, 36, 0.1);
}

.faq-search .icon {
  width: 22px;
  height: 22px;
  color: var(--brand-2);
}

.faq-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  caret-color: var(--brand-2);
}

.faq-search input::placeholder {
  color: #7a888d;
}

.faq-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.faq-filter button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #45575e;
  background: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.faq-filter button:hover,
.faq-filter button.is-active {
  border-color: var(--brand);
  color: #fff;
  background: var(--brand);
}

.faq-filter button:focus-visible {
  outline: 3px solid rgba(180, 111, 36, 0.25);
  outline-offset: 2px;
}

.faq-results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}

.faq-results-bar h2 {
  font-size: 1.45rem;
}

.faq-results-bar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.faq-page-list details[hidden] {
  display: none;
}

.faq-page-list summary {
  align-items: flex-start;
  padding: 22px 24px;
}

.faq-page-list summary > span {
  display: grid;
  gap: 5px;
}

.faq-page-list summary small {
  color: var(--brand-2);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.faq-page-list summary strong {
  font-size: 1.02rem;
}

.faq-page-list details[open] {
  border-color: rgba(180, 111, 36, 0.42);
  box-shadow: 0 16px 34px rgba(12, 38, 46, 0.09);
}

.faq-empty {
  padding: 42px 24px;
  border: 1px dashed #b8c5c1;
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
  background: #fff;
}

.faq-contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin-top: 56px;
  padding: 34px 38px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--brand);
}

.about-page-hero h1 {
  max-width: 13ch;
  font-size: clamp(3.2rem, 6vw, 5.3rem);
}

.about-story {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 62px;
  align-items: center;
  padding: 72px 0 12px;
}

.about-story__media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-story__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(7, 27, 35, 0.72));
}

.about-story__caption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 1;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(7, 27, 35, 0.74);
  backdrop-filter: blur(14px);
}

.about-story__caption span,
.about-story__caption strong {
  display: block;
}

.about-story__caption span {
  color: #f2b35d;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-story__caption strong {
  margin-top: 5px;
}

.about-story__copy h2 {
  margin-top: 10px;
}

.about-story__copy > p:not(.eyebrow) {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.04rem;
}

.about-workspace {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 28px 38px;
  margin-top: 88px;
  padding: 46px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--brand);
}

.about-workspace__heading {
  grid-column: 1 / -1;
  max-width: 760px;
}

.about-workspace__heading h2 {
  color: #fff;
}

.about-tabs {
  display: grid;
  align-content: start;
  gap: 10px;
}

.about-tabs button {
  min-height: 66px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: #d7e0e3;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.about-tabs button:hover,
.about-tabs button.is-active {
  border-color: rgba(242, 179, 93, 0.62);
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(4px);
}

.about-tabs button:focus-visible {
  outline: 3px solid rgba(242, 179, 93, 0.48);
  outline-offset: 2px;
}

.about-panel {
  min-height: 222px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 34px;
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  box-shadow: 0 18px 42px rgba(4, 20, 26, 0.2);
  animation: aboutPanelIn 0.35s ease both;
}

.about-panel[hidden] {
  display: none;
}

.about-panel__number {
  min-width: 54px;
  min-height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--brand-2);
  background: var(--accent-2);
  font-weight: 900;
}

.about-panel h3 {
  font-size: 1.45rem;
}

.about-panel p {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.about-principles {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
  align-items: start;
  padding: 88px 0 28px;
}

.about-principles__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.about-principles article {
  min-height: 220px;
  padding: 24px;
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 32px rgba(12, 38, 46, 0.07);
}

.about-principles article > span {
  color: var(--brand-2);
  font-size: 0.78rem;
  font-weight: 900;
}

.about-principles h3 {
  margin-top: 34px;
  font-size: 1.12rem;
}

.about-principles article p {
  margin-top: 10px;
  color: var(--muted);
}

@keyframes aboutPanelIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-contact-band h2 {
  color: #fff;
  font-size: 1.8rem;
}

.faq-contact-band p {
  max-width: 680px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.faq-contact-band .button {
  white-space: nowrap;
}

.quote-prep {
  padding: 72px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.quote-prep__grid {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 42px;
  align-items: start;
}

.quote-prep__copy h2 {
  max-width: 12ch;
  color: var(--ink);
  font-size: clamp(2.35rem, 5vw, 4.2rem);
}

.quote-prep__copy p:not(.eyebrow) {
  max-width: 44ch;
  color: var(--muted);
}

.quote-prep__items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.quote-prep__items article {
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  border-right: 1px solid var(--line);
  transition: background 0.2s ease, transform 0.2s ease;
}

.quote-prep__items article:last-child {
  border-right: 0;
}

.quote-prep__items article:hover {
  background: #fff7ee;
}

.quote-prep__items span {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--brand-2);
  background: rgba(180, 111, 36, 0.1);
  font-size: 0.82rem;
  font-weight: 900;
}

.quote-prep__items strong {
  color: var(--ink);
  font-size: 1rem;
}

.quote-prep__items p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.contact {
  background: var(--soft);
}

.contact__grid {
  grid-template-columns: 0.86fr 1.14fr;
  align-items: start;
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.contact-methods a,
.contact-methods p {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-routing {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-routing__header {
  display: grid;
  gap: 8px;
  padding: 4px 4px 10px;
}

.contact-routing__header h3 {
  max-width: 18ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.contact-route {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px 14px;
  align-items: center;
  min-height: 104px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--ink);
  background: #f8fbfa;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.contact-route:hover,
.contact-route:focus-visible {
  border-color: rgba(180, 111, 36, 0.48);
  background: #fff7ee;
  transform: translateY(-2px);
}

.contact-route span {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--brand-2);
  background: rgba(180, 111, 36, 0.12);
  font-size: 0.82rem;
  font-weight: 900;
}

.contact-route strong,
.contact-route small {
  grid-column: 2;
}

.contact-route strong {
  align-self: end;
  font-size: 1.04rem;
}

.contact-route small {
  align-self: start;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.45;
}

.contact-route .icon {
  grid-column: 3;
  grid-row: 1 / span 2;
}

.contact-route--primary {
  color: #fff;
  border-color: transparent;
  background: var(--ink);
}

.contact-route--primary small {
  color: rgba(255, 255, 255, 0.72);
}

.contact-route--primary span {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.quote-page-main {
  background: var(--soft);
}

.quote-page-hero {
  padding: 78px 0 44px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(7, 27, 35, 0.96), rgba(15, 60, 66, 0.82)),
    url("assets/hero-port-containers.jpg") center / cover;
}

.quote-page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.55fr);
  gap: 44px;
  align-items: end;
}

.quote-page-hero h1 {
  max-width: 11ch;
  margin: 14px 0 18px;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.quote-page-hero p:not(.eyebrow) {
  max-width: 56ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.7;
}

.quote-page-hero .faq-breadcrumb,
.quote-page-hero .faq-breadcrumb a,
.quote-page-hero .faq-breadcrumb span {
  color: rgba(255, 255, 255, 0.78);
}

.quote-page-card {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.quote-page-card strong {
  color: var(--brand-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-page-card span {
  font-size: 2rem;
  font-weight: 900;
}

.quote-workspace {
  padding: 42px 0 76px;
}

.quote-workspace__grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.48fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.quote-sidebar {
  position: sticky;
  top: 124px;
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 42px rgba(10, 37, 45, 0.08);
}

.quote-sidebar h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.quote-wizard {
  align-content: start;
}

.quote-wizard__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.quote-wizard__top div {
  display: grid;
  gap: 4px;
}

.quote-wizard__top strong {
  color: var(--ink);
  font-size: 1.12rem;
}

.quote-wizard__top span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.quote-wizard__top > span {
  flex: 0 0 auto;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--brand-2);
  background: rgba(180, 111, 36, 0.1);
}

.quote-wizard__progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #edf2f0;
}

.quote-wizard__progress span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  transition: width 0.35s ease;
}

.quote-wizard__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.quote-wizard__steps button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #5c6c72;
  background: #f6faf8;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.quote-wizard__steps button:hover:not(:disabled),
.quote-wizard__steps button.is-active {
  border-color: rgba(180, 111, 36, 0.52);
  color: var(--ink);
  background: #fff7ee;
  transform: translateY(-1px);
}

.quote-wizard__steps button:disabled {
  cursor: default;
  opacity: 0.52;
}

.quote-wizard__panel {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
  animation: wizardPanelIn 0.28s ease both;
}

.quote-wizard__panel.is-active {
  display: grid;
  gap: 18px;
}

.quote-wizard__panel legend {
  padding: 0;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 900;
}

.quote-wizard__panel p {
  max-width: 52ch;
  margin: -6px 0 0;
  color: var(--muted);
}

.quote-wizard__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.quote-wizard__summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.quote-wizard__summary div {
  display: grid;
  gap: 5px;
  min-height: 74px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbfa;
}

.quote-wizard__summary span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-wizard__summary strong {
  color: var(--ink);
  overflow-wrap: anywhere;
}

.quote-wizard__actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 6px;
}

.quote-wizard__actions .button[hidden] {
  display: none;
}

@keyframes wizardPanelIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #30424a;
  font-size: 0.93rem;
  font-weight: 800;
}

.field-hint {
  margin-top: -2px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.45;
}

.contact-form__intro,
.contact-form__section {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.contact-form__section {
  margin-top: 4px;
}

.contact-form__intro strong,
.contact-form__section strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.contact-form__intro span,
.contact-form__section span {
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  caret-color: var(--brand-2);
  background: #fff;
  outline: none;
}

.contact-form input,
.contact-form textarea {
  cursor: default;
}

.contact-form select {
  cursor: pointer;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border-color: rgba(180, 111, 36, 0.42);
  background: #fbfdfc;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--brand-2);
  box-shadow: 0 0 0 4px rgba(180, 111, 36, 0.12);
}

.contact-form__wide,
.form-status {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 22px;
  margin: -4px 0 0;
  color: var(--brand-2);
  font-weight: 800;
}

.site-footer {
  padding: 52px 0 104px;
  color: rgba(255, 255, 255, 0.86);
  background: #071b23;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) repeat(3, minmax(150px, 0.7fr));
  gap: 34px;
  align-items: start;
}

.site-footer__brand {
  display: grid;
  gap: 18px;
}

.site-footer__brand p {
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.brand--footer small {
  color: rgba(255, 255, 255, 0.68);
}

.brand--footer.brand--logo {
  align-items: center;
}

.brand--footer.brand--logo img {
  width: clamp(128px, 12vw, 168px);
  padding: 8px 10px;
  border-radius: var(--radius);
  background: #fff;
}

.site-footer p {
  margin: 0;
}

.footer-column {
  display: grid;
  gap: 11px;
}

.footer-column strong {
  margin-bottom: 4px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
  line-height: 1.45;
}

.footer-column a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-column a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-column--contact a:first-of-type {
  color: #fff;
  font-size: 1.04rem;
}

.footer-trust {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 8px;
}

.footer-trust span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
}

.footer-legal p {
  margin: 0;
}

.footer-legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 800;
}

.footer-legal a {
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #fff;
}

.legal-main {
  padding: 170px 0 92px;
  background:
    linear-gradient(180deg, rgba(231, 239, 232, 0.68), rgba(255, 255, 255, 0.96) 280px),
    #fff;
}

.legal-hero {
  max-width: 820px;
  margin-bottom: 38px;
}

.legal-hero h1 {
  max-width: 12ch;
  color: var(--ink);
  font-size: 5.2rem;
}

.legal-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.1rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 38px;
  align-items: start;
}

.legal-sidebar,
.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 36px rgba(12, 38, 46, 0.08);
}

.legal-sidebar {
  position: sticky;
  top: 132px;
  display: grid;
  gap: 4px;
  padding: 12px;
}

.legal-sidebar a {
  padding: 12px;
  border-radius: var(--radius);
  color: var(--brand);
  font-weight: 900;
}

.legal-sidebar a:hover,
.legal-sidebar a.is-active {
  background: var(--accent-2);
  color: var(--brand-2);
}

.legal-card {
  padding: 42px;
}

.legal-card section + section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.legal-card h2 {
  font-size: 2rem;
}

.legal-card h3 {
  margin-top: 24px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card ul {
  padding-left: 1.2rem;
}

.legal-note {
  margin-top: 28px;
  padding: 18px;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--muted);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 25;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--danger-free);
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(11, 91, 47, 0.32);
  animation: whatsappPulse 2.8s ease-in-out infinite;
}

.mobile-action-bar {
  display: none;
}

.search-panel {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
}

.search-panel.is-open {
  display: block;
}

.search-panel__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 27, 35, 0.55);
}

.search-panel__dialog {
  position: absolute;
  top: 24px;
  left: 50%;
  width: min(720px, calc(100% - 32px));
  transform: translateX(-50%);
  padding: 26px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.search-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.search-panel__header h2 {
  font-size: 1.45rem;
}

.search-field {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.search-field input {
  width: 100%;
  border: 0;
  outline: 0;
}

.quick-links,
.search-results {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.quote-preview {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
}

.quote-preview.is-open {
  display: grid;
  place-items: center;
}

.quote-preview__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 27, 35, 0.68);
  backdrop-filter: blur(5px);
}

.quote-preview__dialog {
  position: relative;
  width: min(680px, calc(100% - 28px));
  max-height: min(820px, calc(100vh - 32px));
  overflow-y: auto;
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 28px 80px rgba(7, 27, 35, 0.28);
}

.quote-preview__header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.quote-preview__header h2 {
  margin: 4px 0 0;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.quote-preview__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 24px 0 0;
  border: 1px solid var(--line);
}

.quote-preview__item {
  min-width: 0;
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
}

.quote-preview__item:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.quote-preview__item--wide {
  grid-column: 1 / -1;
  border-right: 0 !important;
}

.quote-preview__item dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quote-preview__item dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.quote-preview__notice {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.quote-preview__actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 22px;
}

.quote-preview__edit {
  border: 1px solid var(--line);
}

.error-page {
  min-height: 100vh;
  color: #fff;
  background: #082630;
}

.error-page__main {
  width: min(100% - 32px, 1120px);
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 40px;
  margin: 0 auto;
  padding: 40px 0;
}

.error-page .brand img {
  filter: brightness(0) invert(1);
}

.error-page__content {
  max-width: 800px;
  align-self: center;
}

.error-page__content h1 {
  max-width: 760px;
  margin: 12px 0 22px;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.96;
}

.error-page__content > p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.error-page__route {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  gap: 16px;
  align-items: center;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.error-page__route i {
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.quick-links a,
.search-results a {
  padding: 10px 12px;
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--brand);
  font-weight: 800;
}

.search-results {
  display: grid;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageReveal {
  from {
    opacity: 0;
    transform: scale(1.08);
    filter: saturate(0.86) blur(2px);
  }
  to {
    opacity: 1;
    transform: scale(1.01) translateX(-0.6%);
    filter: saturate(1) blur(0);
  }
}

@keyframes heroShadeReveal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes heroMotionReveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 0.62;
    transform: translateY(0);
  }
}

@keyframes heroTextLift {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes photoCardReveal {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.01) translateX(-0.6%);
  }
  to {
    transform: scale(1.06) translateX(0.8%);
  }
}

@keyframes cargoLine {
  from {
    transform: translateX(0) rotate(-9deg);
  }
  to {
    transform: translateX(330%) rotate(-9deg);
  }
}

@keyframes floatPanel {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes photoFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(0.6deg);
  }
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 18px 40px rgba(11, 91, 47, 0.32);
  }
  50% {
    box-shadow: 0 18px 40px rgba(11, 91, 47, 0.32), 0 0 0 10px rgba(39, 179, 95, 0.12);
  }
}

@keyframes coverageMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes introPhotoMove {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.6%, -1%, 0);
  }
}

@keyframes introScan {
  from {
    background-position: -60% 0, 0 0;
  }
  to {
    background-position: 160% 0, 0 54px;
  }
}

@media (max-width: 980px) {
  .topbar__inner {
    justify-content: center;
  }

  .topbar__links {
    display: none;
  }

  .primary-nav {
    position: fixed;
    inset: 116px 0 auto;
    display: none;
    padding: 18px 20px 24px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 36px rgba(11, 37, 45, 0.12);
  }

  .menu-open .primary-nav {
    display: grid;
    gap: 4px;
  }

  .primary-nav a {
    padding: 14px 0;
  }

  .primary-nav a::after {
    display: none;
  }

  .menu-button {
    display: inline-grid;
  }

  .nav-actions .button--small {
    display: none;
  }

  .hero {
    min-height: 720px;
    padding-top: 140px;
  }

  .process__grid,
  .coverage__grid,
  .motion__grid,
  .readiness__grid,
  .legal-layout,
  .trust__grid,
  .contact__grid,
  .quote-workspace__grid,
  .quote-page-hero__grid,
  .quote-prep__grid,
  .intro__grid {
    grid-template-columns: 1fr;
  }

  .quote-sidebar {
    position: static;
  }

  .quote-page-hero h1 {
    max-width: 13ch;
  }

  .quote-prep__copy h2 {
    max-width: 620px;
  }

  .quote-prep__items {
    grid-template-columns: repeat(4, minmax(145px, 1fr));
  }

  .quote-prep__items article {
    min-height: 178px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .quote-prep__items article:nth-child(2n) {
    border-right: 1px solid var(--line);
  }

  .quote-prep__items article:last-child {
    border-right: 0;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__brand,
  .footer-trust {
    grid-column: 1 / -1;
  }

  .hero__status {
    display: none;
  }

  .hero__photo-card {
    position: relative;
    right: auto;
    top: auto;
    width: min(420px, var(--container));
    margin: 38px auto 0;
  }

  .coverage {
    padding: 18px 0 20px;
  }

  .coverage__grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px 16px 16px;
  }

  .coverage h2 {
    max-width: 620px;
    font-size: clamp(1.25rem, 5.8vw, 1.72rem);
  }

  .section {
    padding: 76px 0;
    scroll-margin-top: 110px;
  }

  .section.intro {
    padding-top: 56px;
    padding-bottom: 62px;
  }

  .service-grid {
    gap: 16px;
  }

  .service-card {
    flex-basis: min(360px, 86vw);
    min-height: 260px;
  }

  .use-cases__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .carousel-button--prev {
    left: -6px;
  }

  .carousel-button--next {
    right: -6px;
  }

  .motion__facts {
    max-width: 620px;
  }

  .readiness__media {
    min-height: 360px;
  }

  .legal-sidebar {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-story,
  .about-principles {
    grid-template-columns: 1fr;
  }

  .about-story__media {
    min-height: 440px;
  }

  .about-workspace {
    grid-template-columns: 1fr;
  }

  .about-workspace__heading {
    grid-column: auto;
  }

  .about-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-tabs button {
    text-align: center;
  }

  .about-tabs button:hover,
  .about-tabs button.is-active {
    transform: translateY(-2px);
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 28px, 1120px);
  }

  .nav-shell {
    min-height: 70px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .brand small {
    max-width: 150px;
  }

  .hero {
    min-height: auto;
    padding: 132px 0 44px;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(6, 24, 31, 0.88) 0%, rgba(6, 24, 31, 0.7) 100%),
      linear-gradient(180deg, rgba(6, 24, 31, 0.08) 0%, rgba(6, 24, 31, 0.5) 100%);
  }

  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero__actions {
    width: 100%;
    display: grid;
  }

  .operation-tracker {
    min-height: 0;
    grid-template-rows: auto auto auto auto;
    gap: 14px;
    padding: 18px;
  }

  .operation-tracker__description {
    min-height: 78px;
  }

  .operation-tracker__tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .operation-tracker__tabs button {
    min-height: 44px;
  }

  .motion__tracker {
    margin-top: 48px;
  }

  .operation-map__location > span:last-child {
    display: none;
  }

  .operation-map__pin {
    width: 28px;
    height: 28px;
  }

  .operation-map__pin img {
    width: 17px;
    height: 17px;
  }

  .operation-map__document,
  .operation-map__delivery {
    width: 34px;
    height: 34px;
  }

  .operation-map__document img,
  .operation-map__delivery img {
    width: 17px;
    height: 17px;
  }

  .operation-map__plane {
    width: 38px;
    height: 38px;
    box-shadow:
      0 0 0 6px rgba(19, 140, 132, 0.13),
      0 10px 20px rgba(3, 17, 22, 0.38);
  }

  .operation-map__plane img {
    width: 21px;
    height: 21px;
  }

  .operation-map__status {
    min-height: 30px;
    bottom: 6px;
    gap: 6px;
    padding: 0 9px;
    font-size: 0.62rem;
  }

  .operation-map__status img {
    width: 14px;
    height: 14px;
  }

  .about-page-hero h1 {
    font-size: 3.15rem;
  }

  .about-story {
    gap: 32px;
    padding-top: 50px;
  }

  .about-story__media {
    min-height: 340px;
  }

  .about-workspace {
    margin-top: 60px;
    padding: 28px 22px;
  }

  .contact-routing {
    padding: 16px;
  }

  .contact-route {
    min-height: 96px;
    padding: 15px;
  }

  .quote-page-hero {
    padding: 44px 0 32px;
  }

  .quote-page-hero h1 {
    max-width: 11ch;
    font-size: 3.35rem;
  }

  .quote-page-card {
    padding: 18px;
  }

  .quote-workspace {
    padding: 28px 0 56px;
  }

  .quote-sidebar {
    padding: 20px;
  }

  .about-tabs {
    grid-template-columns: 1fr;
  }

  .about-tabs button {
    min-height: 54px;
    text-align: left;
  }

  .about-panel {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 26px 22px;
  }

  .about-principles {
    gap: 30px;
    padding-top: 60px;
  }

  .about-principles__grid {
    grid-template-columns: 1fr;
  }

  .about-principles article {
    min-height: 0;
  }

  .about-principles h3 {
    margin-top: 18px;
  }

  .footer-legal {
    display: grid;
    gap: 16px;
    text-align: left;
  }

  .footer-legal nav {
    display: grid;
    gap: 12px;
  }

  .legal-main {
    padding: 132px 0 64px;
  }

  .legal-hero h1 {
    max-width: none;
    font-size: 3.2rem;
  }

  .legal-sidebar {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .quick-links a,
  .search-results a {
    width: 100%;
  }

  .coverage-list span {
    width: auto;
  }

  .use-cases__grid {
    grid-template-columns: 1fr;
  }

  .use-case-card {
    min-height: 250px;
  }

  .motion__facts {
    grid-template-columns: 1fr;
  }

  .readiness__grid {
    gap: 30px;
  }

  .faq-page-main {
    padding-top: 142px;
  }

  .faq-page-hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-page-hero__aside {
    max-width: 520px;
  }

  .faq-contact-band {
    grid-template-columns: 1fr;
  }

  .faq-contact-band .button {
    width: fit-content;
  }

  .readiness__media {
    min-height: 300px;
  }

  .readiness__badge {
    left: 14px;
    bottom: 14px;
  }

  .checklist li {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .faq-list summary {
    min-height: auto;
    padding: 16px;
  }

  .faq-list p {
    margin: -2px 16px 18px;
  }

  .faq-page-main {
    padding: 126px 0 60px;
  }

  .faq-page-hero {
    padding-bottom: 38px;
  }

  .faq-page-hero h1 {
    font-size: 3.3rem;
  }

  .faq-page-hero__aside {
    padding-left: 18px;
  }

  .faq-workspace {
    padding-top: 32px;
  }

  .faq-results-bar {
    align-items: flex-start;
  }

  .faq-page-list summary {
    padding: 18px 16px;
  }

  .faq-contact-band {
    margin-top: 38px;
    padding: 28px 22px;
  }

  .faq-contact-band .button {
    width: 100%;
  }

  .operation-scene__image {
    object-position: 48% center;
  }

  .operation-scene {
    margin-top: 142px;
    min-height: 520px;
  }

  .operation-scene__stage {
    min-height: 0;
  }

  .operation-scene__status {
    left: 14px;
    right: 14px;
    top: -124px;
    width: auto;
  }

  .operation-scene__status article {
    padding: 10px;
  }

  .operation-scene__body {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 0;
  }

  .operation-scene__summary {
    max-width: none;
  }

  .operation-scene__summary strong {
    font-size: 1.32rem;
  }

  .operation-scene__summary p {
    display: block;
  }

  .motion-video__hud {
    grid-template-columns: 1fr;
  }

  .carousel-button {
    display: none;
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 16px;
  }

  .quote-prep {
    padding: 58px 0;
  }

  .quote-prep__items {
    grid-template-columns: 1fr;
  }

  .quote-prep__items article,
  .quote-prep__items article:nth-child(2n) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quote-prep__items article:last-child {
    border-bottom: 0;
  }

  .quote-wizard__top {
    display: grid;
  }

  .quote-wizard__top > span {
    width: fit-content;
  }

  .quote-wizard__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-wizard__steps button {
    min-height: 46px;
  }

  .quote-wizard__grid,
  .quote-wizard__summary {
    grid-template-columns: 1fr;
  }

  .quote-wizard__actions {
    display: grid;
  }

  .quote-wizard__actions .button {
    width: 100%;
  }

  .contact-form input,
  .contact-form select {
    min-height: 52px;
    font-size: 16px;
  }

  .contact-form textarea {
    min-height: 150px;
    font-size: 16px;
  }

  .contact-form .button {
    width: 100%;
    min-height: 54px;
  }

  .contact-methods a,
  .contact-methods p {
    min-height: 44px;
    overflow-wrap: anywhere;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-action-bar {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 14px;
    z-index: 40;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 6px;
    border: 1px solid rgba(10, 37, 45, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 30px rgba(10, 37, 45, 0.16);
    backdrop-filter: blur(18px);
  }

  .mobile-action-bar a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 18px;
    color: var(--ink);
    background: rgba(8, 38, 48, 0.08);
    font-size: 0.92rem;
    font-weight: 900;
    letter-spacing: 0;
    box-shadow: inset 0 0 0 1px rgba(8, 38, 48, 0.04);
  }

  .mobile-action-bar a:first-child {
    color: #fff;
    background: #24b85f;
    box-shadow: 0 8px 18px rgba(36, 184, 95, 0.22);
  }

  .mobile-action-bar a:last-child {
    color: #fff;
    background: #082630;
  }

  .mobile-action-bar .icon {
    width: 18px;
    height: 18px;
  }

  .site-footer {
    padding-bottom: 124px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__brand,
  .footer-trust {
    grid-column: auto;
  }

  .footer-column {
    gap: 10px;
  }

  .quote-preview {
    align-items: end;
  }

  .quote-preview__dialog {
    width: 100%;
    max-height: 90vh;
    padding: 22px 16px;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .quote-preview__list {
    grid-template-columns: 1fr;
  }

  .quote-preview__item,
  .quote-preview__item:nth-child(odd) {
    border-right: 0;
  }

  .quote-preview__actions {
    display: grid;
  }

  .quote-preview__actions .button {
    width: 100%;
  }

  .error-page__main {
    padding: 24px 0;
  }

  .error-page__content h1 {
    font-size: 3.25rem;
  }

  .error-page__actions {
    display: grid;
  }

  .error-page__route {
    grid-template-columns: auto 1fr auto;
  }

  .error-page__route span:nth-of-type(2),
  .error-page__route i:nth-of-type(2) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js-enabled .reveal {
    opacity: 1;
    transform: none;
  }

  .js-enabled .site-header,
  .hero__image,
  .js-enabled .hero__shade,
  .js-enabled .hero__motion,
  .hero__photo-card,
  .js-enabled .hero .eyebrow,
  .js-enabled .hero h1,
  .js-enabled .hero__lead,
  .js-enabled .hero__actions {
    animation: none !important;
    opacity: 1;
    transform: none;
    filter: none;
  }

  .js-enabled .hero__motion {
    opacity: 0.62;
  }

  .coverage-list {
    animation: none !important;
    transform: none;
  }

  .operation-map__plane img,
  .operation-map__delivery,
  .operation-map__pin {
    animation: none !important;
  }
}
