/* ============================================
   Load Cargo — Design System
   ============================================ */
:root {
  --bg: #0b1220;
  --bg-2: #0f1828;
  --bg-3: #131e30;
  --ink: #0e1218;
  --ink-2: #1c2330;
  --muted: #5b6573;
  --muted-2: #8a93a1;
  --paper: #ffffff;
  --paper-2: #f6f7f9;
  --paper-3: #eef0f3;
  --line: rgba(255, 255, 255, 0.12);
  --line-2: rgba(255, 255, 255, 0.22);
  --line-dark: rgba(14, 18, 24, 0.08);
  --line-dark-2: rgba(14, 18, 24, 0.14);

  --red: #d62828;
  --red-2: #b3201f;
  --red-soft: rgba(214, 40, 40, 0.12);
  --red-glow: rgba(214, 40, 40, 0.32);

  --gold: #c7993d;
  --teal: #1e6f73;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 28px;

  --shadow-sm: 0 2px 8px rgba(14, 18, 24, 0.04), 0 1px 2px rgba(14, 18, 24, 0.06);
  --shadow: 0 18px 42px rgba(14, 18, 24, 0.08);
  --shadow-lg: 0 30px 80px rgba(14, 18, 24, 0.18);

  --container: 1240px;
  --pad-x: clamp(20px, 5vw, 64px);

  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  background: var(--red);
  color: #fff;
}

/* ============ Typography ============ */
h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Sora", "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 1.02;
  margin-bottom: 22px;
}

h1 em {
  font-style: normal;
  color: var(--red);
}

h2 {
  font-size: clamp(1.9rem, 3.6vw, 3.1rem);
  line-height: 1.08;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.3;
  margin-bottom: 10px;
}

h4 {
  font-family: "Sora", "Inter", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

p {
  overflow-wrap: break-word;
  color: var(--ink-2);
}

.hl {
  color: var(--red);
}

.hl-light {
  color: #ffd2a8;
}

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

.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 4px var(--red-soft);
  animation: pulse 2s infinite;
}

.eyebrow--on-dark {
  color: #ff9aa0;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px var(--red-soft);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(214, 40, 40, 0.18);
  }
}

/* ============ Top bar ============ */
.topbar {
  background: var(--bg);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  border-bottom: 1px solid var(--line);
}

.topbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 9px var(--pad-x);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 14px;
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  color: inherit;
  transition: color 160ms ease;
}

.topbar__item:hover {
  color: #fff;
}

.topbar__item svg {
  width: 14px;
  height: 14px;
  color: var(--red);
}

.topbar__sep {
  color: rgba(255, 255, 255, 0.32);
}

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  color: #fff;
  transition: background 200ms ease, box-shadow 200ms ease, color 200ms ease;
}

.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 8px 30px rgba(14, 18, 24, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  overflow: visible;
  text-decoration: none;
  line-height: 0;
}

.brand img {
  width: 200px;
  height: auto;
  max-width: 200px;
  object-fit: contain;
}

.brand__dark {
  display: none;
}

.site-header.is-scrolled .brand__light {
  display: none;
}

.site-header.is-scrolled .brand__dark {
  display: block;
}

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

.nav a {
  position: relative;
  padding: 10px 14px;
  font-size: 0.92rem;
  font-weight: 600;
  color: inherit;
  opacity: 0.86;
  text-decoration: none;
  border-radius: var(--r-sm);
  transition: opacity 160ms ease, background 160ms ease, color 160ms ease;
}

.nav a:hover,
.nav a.is-active {
  opacity: 1;
}

.nav a:not(.nav__cta).is-active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
  padding: 11px 18px;
  background: var(--red);
  color: #fff !important;
  border-radius: var(--r-sm);
  font-weight: 700;
  box-shadow: 0 6px 20px var(--red-glow);
  opacity: 1 !important;
}

.nav__cta:hover {
  background: var(--red-2);
  transform: translateY(-1px);
}

.nav__cta svg {
  width: 16px;
  height: 16px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: var(--r-sm);
  background: transparent;
  color: inherit;
  cursor: pointer;
}

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

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: min(80vh, 720px);
  display: grid;
  align-items: center;
  padding: clamp(60px, 8vw, 120px) 0 clamp(80px, 9vw, 140px);
  background: var(--bg);
  color: #fff;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(95deg, rgba(8, 12, 22, 0.94) 0%, rgba(8, 12, 22, 0.78) 45%, rgba(8, 12, 22, 0.45) 100%),
    linear-gradient(180deg, rgba(8, 12, 22, 0.2) 0%, rgba(8, 12, 22, 0.85) 100%),
    url("assets/hero-road.jpg") center / cover no-repeat;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 18% 50%, rgba(214, 40, 40, 0.16), transparent 60%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.hero__content {
  max-width: 820px;
}

.hero h1 {
  color: #fff;
}

.hero__lead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}

.hero__tags li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  font-size: 0.94rem;
}

.hero__tags svg {
  width: 16px;
  height: 16px;
  color: #6ee7a0;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 1;
}

.hero__scroll span {
  display: inline-block;
  width: 1px;
  height: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.7));
  animation: scrollDown 2.2s infinite ease-in-out;
}

@keyframes scrollDown {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

/* ============ Buttons ============ */
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease,
    box-shadow 160ms ease;
}

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

.button svg {
  width: 18px;
  height: 18px;
  flex: none;
}

.button--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 28px var(--red-glow);
}

.button--primary:hover {
  background: var(--red-2);
  box-shadow: 0 14px 36px var(--red-glow);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(8px);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.5);
}

.button--secondary {
  border-color: var(--line-dark-2);
  background: #fff;
  color: var(--ink);
}

.button--secondary:hover {
  border-color: var(--ink-2);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: var(--red);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: gap 160ms ease;
}

.link-arrow svg {
  width: 16px;
  height: 16px;
}

.link-arrow:hover {
  gap: 10px;
}

/* ============ Stats band ============ */
.stats {
  background: var(--paper);
  border-bottom: 1px solid var(--line-dark);
  position: relative;
  z-index: 2;
  margin-top: -40px;
}

.stats__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateY(0);
}

.stat {
  position: relative;
  padding: clamp(24px, 3vw, 36px) clamp(20px, 3vw, 36px);
}

.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: var(--line-dark);
}

.stat strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-family: "Sora", "Inter", sans-serif;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

/* ============ Generic section ============ */
.section {
  padding: clamp(72px, 9vw, 130px) 0;
}

.section > .section__head,
.section > .service-grid,
.section > .features-grid,
.section > .ethics-tabs,
.section > .faq-list,
.section > .location__inner,
.section > .operation__inner,
.section > .routes__inner {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

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

.section--dark {
  background: var(--bg);
  color: #fff;
}

.section--dark h2 {
  color: #fff;
}

.section__head {
  max-width: 760px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

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

.section__head--center .eyebrow {
  justify-content: center;
}

.section__sub {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.68;
  max-width: 64ch;
}

.section__head--center .section__sub {
  margin-left: auto;
  margin-right: auto;
}

.section__sub--on-dark {
  color: rgba(255, 255, 255, 0.72);
}

/* ============ Service grid ============ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--line-dark-2);
}

.service-card__media {
  overflow: hidden;
  background: #eceff1;
}

.service-card__media img {
  width: 100%;
  aspect-ratio: 1.4;
  object-fit: cover;
  transition: transform 700ms ease;
}

.service-card:hover .service-card__media img {
  transform: scale(1.05);
}

.service-card__body {
  display: flex;
  flex-direction: column;
  padding: 26px;
  flex: 1;
}

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: var(--r-sm);
  background: var(--red-soft);
  color: var(--red);
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
  flex: 1;
}

/* ============ FAQ ============ */
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--r-md);
  padding: clamp(22px, 3vw, 30px);
  box-shadow: var(--shadow-sm);
}

.faq-item h3 {
  margin-bottom: 10px;
}

.faq-item p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.68;
}

/* ============ Features grid ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature {
  position: relative;
  padding: 30px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.feature:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--line-2);
  transform: translateY(-3px);
}

.feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: var(--r-sm);
  background: var(--red-soft);
  color: #ff9aa0;
}

.feature__icon svg {
  width: 22px;
  height: 22px;
}

.feature h3 {
  color: #fff;
  margin-bottom: 8px;
}

.feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* ============ Operation ============ */
.operation__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 90px);
}

.timeline {
  display: grid;
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--line-dark);
}

.timeline li:first-child {
  border-top: 0;
  padding-top: 0;
}

.timeline__step {
  font-family: "Sora", "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.02em;
}

.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.operation__visual {
  position: relative;
}

.operation__visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 14 / 9;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
}

.operation__badge {
  position: absolute;
  left: -18px;
  bottom: -22px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--r-md);
  box-shadow: var(--shadow);
  max-width: 280px;
}

.operation__badge svg {
  width: 28px;
  height: 28px;
  color: var(--red);
  flex: none;
}

.operation__badge strong {
  display: block;
  font-size: 0.94rem;
  color: var(--ink);
}

.operation__badge span {
  font-size: 0.84rem;
  color: var(--muted);
}

/* ============ Routes ============ */
.routes__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 80px);
}

.routes__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.routes__list li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--ink-2);
}

.routes__list svg {
  width: 16px;
  height: 16px;
  color: var(--red);
}

.routes__map {
  display: grid;
  align-items: center;
  justify-items: center;
  padding: clamp(24px, 4vw, 44px);
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(214, 40, 40, 0.08), transparent 60%),
    #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--r-md);
  min-height: 360px;
  box-shadow: var(--shadow-sm);
}

.routes__map img {
  width: min(100%, 520px);
}

/* ============ Ethics tabs ============ */
.ethics-tabs {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 22px;
}

.tab-list {
  display: grid;
  gap: 8px;
  align-content: start;
}

.tab {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font-weight: 700;
  text-align: left;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.tab svg {
  width: 18px;
  height: 18px;
  flex: none;
}

.tab:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.tab.is-active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 8px 24px var(--red-glow);
}

.tab-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.04);
}

.tab-panel[hidden] {
  display: none;
}

.tab-panel__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.tab-panel__body {
  display: grid;
  align-content: center;
  padding: clamp(28px, 4vw, 52px);
}

.tab-panel__body h3 {
  color: #fff;
}

.tab-panel__body p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
  line-height: 1.65;
}

/* ============ CTA banner ============ */
.cta-banner {
  background: linear-gradient(135deg, var(--red) 0%, #a8181b 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 80% at 90% 50%, rgba(255, 255, 255, 0.12), transparent 60%),
    radial-gradient(40% 60% at 0% 0%, rgba(255, 255, 255, 0.08), transparent 60%);
  pointer-events: none;
}

.cta-banner__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(50px, 7vw, 90px) var(--pad-x);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  align-items: center;
  gap: clamp(28px, 5vw, 60px);
}

.cta-banner h2 {
  color: #fff;
  margin: 0;
  max-width: 760px;
}

.cta-banner .eyebrow {
  color: rgba(255, 255, 255, 0.86);
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-banner .button--primary {
  background: #fff;
  color: var(--red-2);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.cta-banner .button--primary:hover {
  background: #fff;
  color: var(--red);
}

.cta-banner .button--ghost {
  border-color: rgba(255, 255, 255, 0.5);
}

/* ============ Quote section ============ */
.quote {
  background: var(--paper-2);
  padding: clamp(72px, 9vw, 130px) 0;
}

.quote__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1.05fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}

.quote__contacts {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}

.quote__contacts li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  color: var(--ink-2);
  font-size: 0.96rem;
}

.quote__contacts strong {
  display: block;
  font-family: "Sora", "Inter", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}

.quote__contacts a {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
}

.quote__contacts a:hover {
  text-decoration: underline;
}

.quote__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--r-sm);
  color: var(--red);
}

.quote__icon svg {
  width: 20px;
  height: 20px;
}

.quote-form {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-lg);
}

.quote-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.quote-form__full {
  grid-column: 1 / -1;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line-dark-2);
  border-radius: var(--r-sm);
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #99a1ad;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px var(--red-soft);
}

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

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.form-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.form-note svg {
  width: 16px;
  height: 16px;
  color: var(--red);
}

/* ============ Location ============ */
.location {
  background: linear-gradient(180deg, #fff 0%, var(--paper-2) 100%);
}

.location__inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.location__copy {
  max-width: 520px;
}

.location__details {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.location__detail {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid var(--line-dark);
  color: var(--ink-2);
}

.location__detail:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.location__detail strong {
  display: block;
  font-family: "Sora", "Inter", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}

.location__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.location__map {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-dark);
  background: #dfe4e9;
  box-shadow: var(--shadow-lg);
}

.location__map::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  z-index: 1;
}

.location__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
  filter: saturate(0.95) contrast(1.02);
}

/* ============ Footer ============ */
.footer {
  background: var(--bg);
  color: rgba(255, 255, 255, 0.72);
}

.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) var(--pad-x) clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
}

.footer__brand img {
  width: 220px;
  height: auto;
  max-width: 100%;
  margin-bottom: 18px;
}

.footer__brand p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.94rem;
  max-width: 42ch;
}

.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.footer__badges svg {
  width: 14px;
  height: 14px;
  color: #ff9aa0;
}

.footer__col h4 {
  color: rgba(255, 255, 255, 0.5);
}

.footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer__col a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  text-decoration: none;
  transition: color 160ms ease;
}

.footer__col a:hover {
  color: #fff;
}

.footer__bar {
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 20px var(--pad-x);
  max-width: var(--container);
  margin: 0 auto;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__bar a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-weight: 600;
}

/* ============ Floating WhatsApp ============ */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.42);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: ring 2.4s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.05);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
}

@keyframes ring {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* ============ Reveal animations ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ============ Responsive ============ */
@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .operation__inner,
  .routes__inner,
  .location__inner,
  .quote__inner,
  .cta-banner__inner {
    grid-template-columns: 1fr;
  }

  .location__copy {
    max-width: none;
  }

  .cta-banner__inner {
    text-align: left;
  }

  .ethics-tabs {
    grid-template-columns: 1fr;
  }

  .tab-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .tab {
    flex-direction: column;
    text-align: center;
    gap: 6px;
    padding: 12px;
    min-height: 64px;
    font-size: 0.85rem;
  }

  .tab-panel {
    grid-template-columns: 1fr;
  }

  .tab-panel__media img {
    min-height: 260px;
  }

  .stats__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat + .stat:nth-child(3)::before,
  .stat + .stat:nth-child(2)::before,
  .stat + .stat:nth-child(4)::before {
    display: none;
  }

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

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .brand img {
    width: 164px;
    max-width: 164px;
  }

  .topbar__inner {
    justify-content: center;
    text-align: center;
  }

  .site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.98);
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    position: fixed;
    inset: 70px 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(11, 18, 32, 0.98);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 14px;
    box-shadow: var(--shadow-lg);
    color: #fff;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    color: #fff;
    padding: 14px;
    border-radius: var(--r-sm);
  }

  .nav a:not(.nav__cta):hover {
    background: rgba(255, 255, 255, 0.07);
  }

  .nav__cta {
    justify-content: center;
    margin: 6px 0 0;
  }

  .hero {
    min-height: 78vh;
  }

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

  .button {
    width: 100%;
  }

  .stats {
    margin-top: -28px;
  }

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

  .stat {
    text-align: center;
  }

  .service-grid,
  .features-grid,
  .routes__list,
  .faq-list,
  .quote-form__grid {
    grid-template-columns: 1fr;
  }

  .operation__badge {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 16px;
    max-width: none;
  }

  .location__map,
  .location__map iframe {
    min-height: 340px;
  }

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

  .cta-banner__inner {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__brand {
    grid-column: auto;
  }

  .footer__bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 480px) {
  .topbar {
    font-size: 0.78rem;
  }

  .topbar__sep {
    display: none;
  }

  .topbar__inner {
    gap: 4px 12px;
  }

  .hero__scroll {
    display: none;
  }

  .quote-form {
    padding: 18px;
  }

  .location__map,
  .location__map iframe {
    min-height: 300px;
  }
}
