:root {
  --green: #14802c;
  --green-2: #1db03d;
  --green-3: #0e5a1e;
  --green-glow: rgba(20, 128, 44, 0.45);
  --green-dim: rgba(20, 128, 44, 0.14);
  --black: #080908;
  --ink: #0d100d;
  --ink-2: #161b16;
  --paper: #f1f4ee;
  --paper-2: #e4eadc;
  --white: #f7f8f5;
  --muted: #8b9386;
  --muted-2: #5c6458;
  --line: rgba(247, 248, 245, 0.1);
  --line-d: rgba(8, 9, 8, 0.1);
  --font-d: "Syne", system-ui, sans-serif;
  --font: "Manrope", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --r: 2px;
  --header: 84px;
  --gutter: clamp(1.1rem, 3.2vw, 3.4rem);
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
  background: none;
  border: 0;
}

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

.wrap {
  width: min(1240px, calc(100% - 2 * var(--gutter)));
  margin-inline: auto;
}

.wrap-wide {
  width: min(1440px, calc(100% - 2 * var(--gutter)));
  margin-inline: auto;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-2);
  font-weight: 700;
}

.kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--green);
}

h1,
h2,
h3,
.display {
  font-family: var(--font-d);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

:focus-visible {
  outline: 2px solid var(--green-2);
  outline-offset: 3px;
}

.lead {
  color: rgba(247, 248, 245, 0.72);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  max-width: 42rem;
}

.section {
  padding: clamp(4.5rem, 9vw, 8.5rem) 0;
  position: relative;
}

.section-head {
  display: grid;
  gap: 1.15rem;
  margin-bottom: clamp(2.4rem, 5vw, 3.8rem);
  max-width: 46rem;
}

.section-head h2 {
  font-size: clamp(2.1rem, 5.2vw, 4.15rem);
}

/* —— Preloader —— */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--black);
  display: grid;
  place-items: center;
  transition: opacity 0.55s var(--ease), visibility 0.55s;
}

.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__mark {
  width: 72px;
  height: 72px;
}

.preloader__mark path {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  animation: draw 0.9s var(--ease) forwards;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

/* —— Header —— */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: var(--header);
  display: flex;
  align-items: center;
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
  transition: background 0.35s var(--ease), border-color 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}

.header.is-on {
  background: rgba(8, 9, 8, 0.78);
  border-bottom-color: var(--line);
  backdrop-filter: blur(16px) saturate(1.2);
}

.header__bar {
  width: min(1440px, calc(100% - 2 * var(--gutter)));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-width: 0;
  max-width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
  max-width: min(240px, 52vw);
}

.logo img,
.logo svg {
  display: block;
  height: 60px;
  width: auto;
  max-width: 100%;
}

.logo svg text {
  font-family: Syne, "Arial Black", Arial, sans-serif;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: 1.2rem;
}

.nav a {
  padding: 0.45rem 0.75rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(247, 248, 245, 0.78);
  transition: color 0.2s;
}

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

.header__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex: 0 1 auto;
  min-width: 0;
}

.lang {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.03);
}

.lang button {
  min-width: 42px;
  height: 30px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.lang button.is-active {
  background: var(--green);
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  height: 46px;
  padding: 0 1.2rem;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--r);
  transition: transform 0.25s var(--ease), background 0.2s, box-shadow 0.25s;
  box-shadow: 0 0 0 0 var(--green-glow);
}

.btn:hover {
  background: var(--green-2);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -12px var(--green-glow);
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--white);
  box-shadow: none;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn--dark {
  background: var(--ink);
}

.btn--dark:hover {
  background: #000;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--r);
}

.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #fff;
  position: relative;
}

.menu-btn span::before,
.menu-btn span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-btn span::before {
  top: -6px;
}

.menu-btn span::after {
  top: 6px;
}

.nav-mobile {
  position: fixed;
  inset: var(--header) 0 0;
  z-index: 39;
  background: rgba(8, 9, 8, 0.96);
  backdrop-filter: blur(18px);
  padding: 0.9rem max(var(--gutter), env(safe-area-inset-right, 0px)) max(1.4rem, env(safe-area-inset-bottom, 0px)) max(var(--gutter), env(safe-area-inset-left, 0px));
  display: none;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  max-height: calc(100dvh - var(--header));
  max-height: calc(100svh - var(--header));
}

.nav-mobile.is-open {
  display: flex !important;
}

.nav-mobile a {
  font-family: var(--font-d);
  font-size: clamp(1.15rem, 4.6vw, 1.7rem);
  letter-spacing: -0.04em;
  padding: 0.48rem 0;
  border-bottom: 1px solid var(--line);
  flex: 0 0 auto;
}

/* —— Hero —— */
.hero {
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: calc(var(--header) + 2.2rem) 0 2.4rem;
  position: relative;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  filter: saturate(0.72) contrast(1.08);
  animation: ken 22s linear alternate infinite;
}

@keyframes ken {
  to {
    transform: scale(1.14) translate3d(-1.5%, -1%, 0);
  }
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 9, 8, 0.92) 0%, rgba(8, 9, 8, 0.62) 42%, rgba(8, 9, 8, 0.28) 100%),
    linear-gradient(180deg, rgba(8, 9, 8, 0.35) 0%, rgba(8, 9, 8, 0.15) 40%, rgba(8, 9, 8, 0.88) 100%),
    radial-gradient(60% 50% at 80% 20%, rgba(20, 128, 44, 0.22), transparent 60%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 70%, transparent);
  opacity: 0.35;
  pointer-events: none;
}

.hero__content {
  width: min(1440px, calc(100% - 2 * var(--gutter)));
  margin-inline: auto;
  display: grid;
  gap: 1.6rem;
  padding-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(3rem, 8.4vw, 7.4rem);
  max-width: 14ch;
}

.hero h1 em {
  font-style: italic;
  color: var(--green-2);
  font-weight: 700;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.4rem;
}

.hero__about {
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  width: min(100%, 52rem);
  color: var(--muted);
  font-size: clamp(0.88rem, 1.6vw, 0.98rem);
  line-height: 1.7;
  max-width: 52ch;
}

.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: 2rem;
  writing-mode: vertical-rl;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--muted);
}

.hero__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(var(--green), transparent);
  margin: 10px auto 0;
}

/* —— Marquee —— */
.strip {
  border-block: 1px solid var(--line);
  background: var(--ink);
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.95rem 0;
}

.strip__label {
  flex: 0 0 auto;
  margin-left: var(--gutter);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--green-2);
}

.strip__track {
  display: flex;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  font-weight: 600;
  color: rgba(247, 248, 245, 0.78);
}

.strip__track span {
  padding-right: 2.8rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* —— Services —— */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.svc {
  position: relative;
  min-height: 420px;
  padding: 1.35rem 1.2rem 1.2rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.4s var(--ease), border-color 0.3s, background 0.3s;
}

.svc::before {
  content: "";
  position: absolute;
  inset: auto -20% -30% -20%;
  height: 55%;
  background: radial-gradient(circle at 50% 0, var(--green-glow), transparent 62%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}

.svc:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 128, 44, 0.55);
}

.svc:hover::before {
  opacity: 1;
}

.svc__icon {
  width: 42px;
  height: 42px;
  color: var(--green-2);
  margin-bottom: 1.6rem;
}

.svc__icon svg {
  width: 100%;
  height: 100%;
}

.svc__tag {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.svc h3 {
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
}

.svc p {
  color: rgba(247, 248, 245, 0.68);
  font-size: 0.92rem;
}

.svc__more {
  margin-top: auto;
  padding-top: 1.2rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-2);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* —— Modes —— */
.modes {
  background:
    radial-gradient(50% 40% at 0% 0%, rgba(20, 128, 44, 0.12), transparent 60%),
    var(--ink);
}

.mode-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.6rem;
}

.mode-tabs button {
  height: 42px;
  padding: 0 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.84rem;
  color: rgba(247, 248, 245, 0.7);
}

.mode-tabs button.is-active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.mode-panel {
  display: none;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.4rem;
  align-items: stretch;
}

.mode-panel.is-active {
  display: grid;
  animation: fadeup 0.5s var(--ease);
}

@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
}

.mode-copy {
  border: 1px solid var(--line);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  background: rgba(8, 9, 8, 0.35);
}

.mode-copy h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0.2rem 0 1rem;
}

.mode-copy > p {
  color: rgba(247, 248, 245, 0.72);
  margin-bottom: 1.3rem;
}

.mode-copy ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.mode-copy li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: rgba(247, 248, 245, 0.88);
}

.mode-copy li::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-top: 0.28rem;
  flex: 0 0 auto;
  background: url("../img/logo-mark.svg") center / contain no-repeat;
  filter: none;
}

.mode-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.mode-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.05);
}

.mode-media__meta {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: linear-gradient(transparent, rgba(8, 9, 8, 0.92));
  padding: 3rem 1.1rem 1.1rem;
  gap: 0.6rem;
}

.mode-media__meta small {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.mode-media__meta b {
  font-family: var(--font-d);
  font-size: 0.95rem;
  letter-spacing: -0.03em;
}

/* —— Compare —— */
.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

th,
td {
  text-align: left;
  padding: 1.05rem 1.15rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.02);
}

td:first-child {
  font-family: var(--font-d);
  font-weight: 700;
  letter-spacing: -0.03em;
}

tr:last-child td {
  border-bottom: 0;
}

tr:hover td {
  background: rgba(20, 128, 44, 0.07);
}

/* —— Network —— */
.network-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.2rem;
}

.hub {
  min-height: 100%;
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(20, 128, 44, 0.25), transparent 50%),
    #0b0f0b;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.4rem;
}

.hub small {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--green-2);
}

.hub strong {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.05em;
}

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

.lanes {
  display: grid;
  gap: 0.7rem;
}

.lane {
  border: 1px solid var(--line);
  padding: 1.2rem 1.25rem;
  display: grid;
  gap: 0.35rem;
  transition: border-color 0.25s, transform 0.25s var(--ease);
}

.lane:hover {
  border-color: rgba(20, 128, 44, 0.5);
  transform: translateX(4px);
}

.lane h3 {
  font-size: 1.2rem;
}

.lane p {
  color: rgba(247, 248, 245, 0.68);
  font-size: 0.94rem;
}

/* —— About —— */
.about {
  background: var(--paper);
  color: var(--ink);
}

.about .kicker {
  color: var(--green-3);
}

.about .kicker::before {
  background: var(--green);
}

.about .lead,
.about p {
  color: var(--muted-2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.4rem;
  align-items: center;
}

.about-copy h2 {
  margin: 0.8rem 0 1.2rem;
  font-size: clamp(2.1rem, 4.6vw, 3.8rem);
}

.about-copy p + p {
  margin-top: 0.9rem;
}

.checks {
  list-style: none;
  margin-top: 1.6rem;
  display: grid;
  gap: 0.65rem;
}

.checks li {
  display: flex;
  gap: 0.7rem;
  font-weight: 700;
  color: var(--white);
}

.checks li::before {
  content: "";
  width: 16px;
  height: 16px;
  margin-top: 0.2rem;
  background: url("../img/logo-mark.svg") center / contain no-repeat;
  flex: 0 0 auto;
}

.about-fig {
  aspect-ratio: 4 / 5;
  background: var(--ink);
  color: var(--white);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.about-fig img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: grayscale(0.3) contrast(1.1);
}

.about-fig span {
  position: relative;
  font-family: var(--font-d);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  text-align: center;
  max-width: 10ch;
  font-style: italic;
  padding: 1rem;
}

/* —— Process —— */
.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.7rem;
}

.step {
  border-top: 2px solid var(--green);
  padding: 1.2rem 0.2rem 0;
  min-height: 220px;
}

.step b {
  font-family: var(--font-d);
  font-size: 1.7rem;
  color: var(--green-2);
  letter-spacing: -0.05em;
}

.step h3 {
  font-size: 1.25rem;
  margin: 0.55rem 0 0.55rem;
}

.step p {
  color: rgba(247, 248, 245, 0.68);
  font-size: 0.92rem;
}

/* —— Quote —— */
.quote-sec {
  background:
    radial-gradient(50% 60% at 100% 0%, rgba(20, 128, 44, 0.16), transparent 55%),
    var(--ink-2);
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 2rem;
  align-items: start;
}

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  border: 1px solid var(--line);
  padding: clamp(1.1rem, 2.4vw, 1.6rem);
  background: rgba(8, 9, 8, 0.4);
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  height: 48px;
  padding: 0 0.85rem;
  background: #161b16;
  color: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  color-scheme: dark;
}

.field select option {
  background: #161b16;
  color: #f7f8f5;
}

.field textarea {
  height: 120px;
  padding: 0.8rem 0.85rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
  background: rgba(20, 128, 44, 0.06);
}

.form-note {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-msg {
  grid-column: 1 / -1;
  display: none;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(20, 128, 44, 0.45);
  background: var(--green-dim);
  color: #d8f5de;
  font-weight: 700;
}

.form-msg.is-on {
  display: block;
}

.form-msg.is-err {
  border-color: #8a3030;
  background: rgba(138, 48, 48, 0.15);
  color: #f3c7c7;
}

.track {
  border: 1px solid var(--line);
  padding: 1.3rem 1.25rem;
  display: grid;
  gap: 0.7rem;
}

.track h3 {
  font-size: 1.35rem;
}

.track p {
  color: rgba(247, 248, 245, 0.68);
  font-size: 0.92rem;
}

.track__row {
  display: flex;
  gap: 0.5rem;
}

.track input {
  flex: 1;
  height: 46px;
  padding: 0 0.9rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  outline: none;
}

.track input:focus {
  border-color: var(--green);
}

.track__out {
  display: none;
  font-size: 0.9rem;
  color: var(--green-2);
}

.track__out.is-on {
  display: block;
}

/* —— FAQ —— */
.faq-list {
  display: grid;
  gap: 0.55rem;
  max-width: 860px;
}

details {
  border: 1px solid var(--line);
  padding: 0 1.15rem;
  background: rgba(255, 255, 255, 0.015);
}

details[open] {
  border-color: rgba(20, 128, 44, 0.45);
}

summary {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 0;
  font-family: var(--font-d);
  font-size: 1.12rem;
  letter-spacing: -0.03em;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--green-2);
  font-size: 1.3rem;
  line-height: 1;
}

details[open] summary::after {
  content: "–";
}

details p {
  padding: 0 0 1.15rem;
  color: rgba(247, 248, 245, 0.7);
  max-width: 62ch;
}

/* —— Footer —— */
.footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0 1.4rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 1.6rem;
  padding-bottom: 2.4rem;
}

.footer .logo img {
  height: 48px;
  margin-bottom: 1rem;
}

.footer__tag {
  font-family: var(--font-d);
  font-style: italic;
  font-size: 1.25rem;
  max-width: 14ch;
}

.footer h4 {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.footer a,
.footer p {
  display: block;
  color: rgba(247, 248, 245, 0.75);
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
  white-space: pre-line;
}

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

.footer__bot {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer__bot nav {
  display: flex;
  gap: 1rem;
}

/* —— WhatsApp —— */
.wa {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 35;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px -10px var(--green-glow);
  transition: transform 0.25s var(--ease);
}

.wa:hover {
  transform: scale(1.06);
}

.wa svg {
  width: 28px;
  height: 28px;
  display: block;
}

/* —— Reveal —— */
.reveal {
  opacity: 1;
  transform: none;
}

/* —— Responsive —— */
@media (max-width: 1100px) {
  .nav,
  .header .btn {
    display: none;
  }

  .menu-btn {
    display: grid;
  }

  .header__bar {
    gap: 0.7rem;
  }

  .logo svg,
  .logo img {
    height: 44px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .svc:nth-child(n) {
    min-height: 320px;
  }

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

  .network-grid,
  .quote-grid,
  .about-grid,
  .mode-panel.is-active {
    grid-template-columns: 1fr;
  }

  .mode-media {
    min-height: 320px;
  }
}

@media (max-width: 860px) {
  :root {
    --header: 70px;
    --gutter: clamp(0.85rem, 4vw, 1.6rem);
  }

  .logo svg,
  .logo img {
    height: 38px;
  }

  .logo {
    max-width: min(168px, 42vw);
  }

  .header__actions {
    gap: 0.4rem;
  }

  .lang {
    padding: 2px;
  }

  .lang button {
    min-width: 34px;
    height: 28px;
    font-size: 0.68rem;
  }

  .menu-btn {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 100svh;
    align-items: center;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 12vw, 3.6rem);
  }

  .hero__about {
    max-width: none;
  }

  .hero__scroll {
    display: none;
  }

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

  .svc {
    min-height: 0;
  }

  .svc__icon {
    margin-bottom: 1.2rem;
  }

  form {
    grid-template-columns: 1fr;
  }

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

  .step {
    min-height: 0;
    padding-bottom: 0.6rem;
  }
}

@media (max-width: 430px) {
  .logo {
    max-width: min(140px, 40vw);
  }

  .logo svg,
  .logo img {
    height: 32px;
  }

  .lang button {
    min-width: 30px;
    height: 26px;
  }

  .menu-btn {
    width: 38px;
    height: 38px;
  }
}

@media (max-height: 540px) {
  :root {
    --header: 56px;
  }

  .logo svg,
  .logo img {
    height: 28px;
  }

  .nav-mobile a {
    font-size: 1.08rem;
    padding: 0.28rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  html.js .reveal,
  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__media img {
    transform: none;
  }
}

/* —— Multi-page + motion —— */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  z-index: 50;
  background: var(--green-2);
}

.nav a,
.nav__btn {
  padding: 0.45rem 0.75rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(247, 248, 245, 0.78);
  transition: color 0.2s;
}

.nav a:hover,
.nav a.is-on,
.nav__btn:hover {
  color: #fff;
}

.drop {
  position: relative;
  z-index: 6;
}

.drop__menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  padding: 14px 0.45rem 0.45rem;
  background: transparent;
  border: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s var(--ease), visibility 0.18s var(--ease), transform 0.18s var(--ease);
  z-index: 8;
}

.drop__menu::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 12, 10, 0.97);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 24px 50px -24px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(16px);
  z-index: -1;
}

.drop:hover .drop__menu,
.drop:focus-within .drop__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.drop:hover .nav__btn,
.drop:focus-within .nav__btn {
  color: #fff;
}

.drop__menu a {
  padding: 0.55rem 0.7rem;
  border-radius: 4px;
}

.drop__menu a:hover,
.drop__menu a.is-on {
  background: rgba(20, 128, 44, 0.18);
}

html[lang="en"] .t-ru,
html[lang="ru"] .t-en {
  display: none !important;
}

.svc--link {
  text-decoration: none;
  color: inherit;
}

.svc--photo {
  padding: 0;
  min-height: 0;
  background: #101410;
  overflow: hidden;
}

.svc--photo::before,
.svc--photo::after {
  display: none;
}

.svc--photo img {
  position: relative;
  inset: auto;
  display: block;
  width: 100%;
  height: 148px;
  object-fit: cover;
  z-index: 0;
  filter: saturate(0.88) contrast(1.04);
  transform: none;
  transition: transform 0.7s var(--ease);
}

.svc--photo:hover img {
  transform: scale(1.04);
  filter: saturate(0.95) contrast(1.06);
}

.svc__body {
  padding: 1.05rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #121812;
  border-top: 1px solid rgba(247, 248, 245, 0.06);
}

.svc--photo .svc__tag,
.svc--photo h3,
.svc--photo p,
.svc--photo .svc__more {
  margin-left: 0;
  margin-right: 0;
}

.svc--photo h3 {
  font-size: 1.18rem;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.svc--photo p {
  color: rgba(247, 248, 245, 0.78);
  font-size: 0.86rem;
  line-height: 1.45;
}

.page-hero {
  position: relative;
  min-height: 72svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  padding: calc(var(--header) + 3rem) 0 3.2rem;
  overflow: hidden;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: saturate(0.82) contrast(1.05);
  animation: ken 22s linear alternate infinite;
}

.page-hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 9, 8, 0.9) 0%, rgba(8, 9, 8, 0.42) 58%, rgba(8, 9, 8, 0.25) 100%),
    linear-gradient(180deg, rgba(8, 9, 8, 0.18), rgba(8, 9, 8, 0.84));
}

.page-hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 5.6rem);
  max-width: 14ch;
  margin: 0.35rem 0 1rem;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

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

.prose {
  display: grid;
  gap: 1rem;
  max-width: 46rem;
  color: rgba(247, 248, 245, 0.78);
  font-size: 1.05rem;
}

.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
  margin-top: 1.8rem;
}

.fact {
  border: 1px solid var(--line);
  padding: 1.05rem 1.1rem;
  min-height: 96px;
}

.fact b {
  display: block;
  font-family: var(--font-d);
  font-size: 1.2rem;
  letter-spacing: -0.04em;
  color: var(--green-2);
  margin-bottom: 0.3rem;
}

.fact span {
  color: var(--muted);
  font-size: 0.86rem;
}

.inc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.inc li {
  position: relative;
  padding-left: 1.15rem;
  color: rgba(247, 248, 245, 0.78);
}

.inc li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--green);
}

.svc-next {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.svc-next a {
  border: 1px solid var(--line);
  padding: 1.15rem 1.2rem;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: border-color 0.3s, transform 0.35s var(--ease);
}

.svc-next a:hover {
  border-color: rgba(20, 128, 44, 0.5);
  transform: translateY(-4px);
}

.svc-next small {
  display: block;
  color: var(--green-2);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.svc-next b {
  font-family: var(--font-d);
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}

.svc-next p {
  margin-top: 0.35rem;
  color: rgba(247, 248, 245, 0.62);
  font-size: 0.9rem;
}

.card {
  border: 1px solid var(--line);
  padding: 1.4rem 1.3rem;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.4s var(--ease), border-color 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 128, 44, 0.5);
}

.card h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }
.card p, .card li { color: rgba(247, 248, 245, 0.72); }
.card ul { list-style: none; display: grid; gap: 0.45rem; margin-top: 0.85rem; }
.card li { padding-left: 1.2rem; position: relative; }
.card li::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  left: 0;
  top: 0.4rem;
  background: url("../img/logo-mark.svg") center / contain no-repeat;
}

.docs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.doc {
  border-top: 2px solid var(--green);
  padding: 1rem 0.1rem 0;
}

.doc b {
  display: block;
  font-family: var(--font-d);
  margin-bottom: 0.35rem;
}

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

.page-cta {
  margin-top: 2.4rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

html.js .anim {
  opacity: 0;
  transform: translateY(56px);
  transition: opacity 0.95s var(--ease), transform 0.95s var(--ease);
}

html.js .anim.in {
  opacity: 1;
  transform: none;
}

html.js .anim-left {
  transform: translateX(-64px);
}
html.js .anim-right {
  transform: translateX(64px);
}
html.js .anim-left.in,
html.js .anim-right.in {
  transform: none;
}

html.js .anim-photo {
  clip-path: inset(16% 10% 16% 10%);
  transform: scale(1.08);
  transition: clip-path 1.15s var(--ease), transform 1.35s var(--ease);
}
html.js .anim-photo.in {
  clip-path: inset(0);
  transform: none;
}

.page-hero .wrap > * {
  animation: rise 0.95s var(--ease) both;
}
.page-hero .crumbs { animation-delay: 0.05s; }
.page-hero .kicker { animation-delay: 0.12s; }
.page-hero h1 { animation-delay: 0.2s; }
.page-hero .lead { animation-delay: 0.32s; }
.page-hero .page-cta { animation-delay: 0.42s; }

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--gutter);
  right: var(--gutter);
  height: 1px;
  background: linear-gradient(90deg, var(--green), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s var(--ease);
}
.section.in::before {
  transform: scaleX(1);
}

.section--tint {
  background:
    radial-gradient(80% 70% at 0% 50%, rgba(20, 128, 44, 0.12), transparent 55%),
    #0b0e0b;
}

.split-media {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: min(78vh, 820px);
  background: #0a0d0a;
}
.split-media--rev {
  grid-template-columns: 0.85fr 1.15fr;
}
.split-media--rev .split-media__img {
  order: 2;
}
.split-media__img {
  overflow: hidden;
  min-height: 420px;
  position: relative;
}
.split-media__img img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.06);
}
.split-media.in .split-media__img img {
  animation: ken 22s linear alternate infinite;
}
.split-media__copy {
  padding: clamp(1.8rem, 5vw, 4.4rem) clamp(1.4rem, 4vw, 3.4rem);
  display: grid;
  align-content: center;
  gap: 1.1rem;
}
.split-media__copy h2 {
  font-size: clamp(1.8rem, 3.6vw, 3rem);
}
.split-media__copy p {
  color: rgba(247, 248, 245, 0.74);
  max-width: 38rem;
}

.photo-band {
  position: relative;
  min-height: 68vh;
  overflow: hidden;
  isolation: isolate;
}
.photo-band img {
  width: 100%;
  height: 68vh;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.05);
}
.photo-band.in img {
  animation: ken 24s linear alternate infinite;
}
.photo-band__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 9, 8, 0.08), rgba(8, 9, 8, 0.55) 80%);
  z-index: 1;
}
.photo-band figcaption {
  position: absolute;
  z-index: 2;
  left: var(--gutter);
  bottom: 2rem;
  right: var(--gutter);
  font-family: var(--font-d);
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  letter-spacing: -0.04em;
  max-width: 18ch;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 0.55rem;
  padding: 0 var(--gutter) clamp(3rem, 6vw, 5rem);
}
.photo-grid figure {
  overflow: hidden;
  min-height: 240px;
  position: relative;
}
.photo-grid figure:first-child {
  grid-row: span 2;
  min-height: 500px;
}
.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
  filter: saturate(0.88) contrast(1.04);
  transition: transform 0.8s var(--ease);
}
.photo-grid figure:hover img {
  transform: scale(1.06);
}

@media (max-width: 1100px) {
  .split-media,
  .split-media--rev {
    grid-template-columns: 1fr;
  }
  .split-media--rev .split-media__img { order: 0; }
  .photo-grid {
    grid-template-columns: 1fr 1fr;
  }
  .photo-grid figure:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 320px;
  }
}

@media (max-width: 700px) {
  .photo-grid { grid-template-columns: 1fr; padding-inline: var(--gutter); }
  .photo-band, .photo-band img { min-height: 48vh; height: 48vh; }
}

.hero h1 span,
.hero h1 em,
.hero .lead,
.hero__cta,
.hero__about {
  display: inline-block;
  animation: rise 0.9s var(--ease) both;
}

.hero .lead, .hero__cta, .hero__about { display: block; }
.hero h1 em { animation-delay: 0.12s; }
.hero .lead { animation-delay: 0.18s; }
.hero__cta { animation-delay: 0.26s; }
.hero__about { animation-delay: 0.34s; }

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

.wa { animation: pulse 2.8s var(--ease) infinite; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 12px 30px -10px var(--green-glow); }
  50% { box-shadow: 0 12px 38px 0 rgba(20, 128, 44, 0.45); }
}

@media (max-width: 1100px) {
  .two, .three, .docs, .facts, .svc-next { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html.js .anim { opacity: 1; transform: none; }
  html.js .anim-photo { clip-path: none; transform: none; }
}

.ind-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}

.why-grid {
  grid-template-columns: repeat(3, 1fr);
}

.ind {
  border: 1px solid var(--line);
  padding: 1.1rem 1rem;
  min-height: 92px;
  display: flex;
  align-items: flex-end;
  font-family: var(--font-d);
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  transition: border-color 0.3s, transform 0.35s var(--ease), background 0.3s;
}

.ind:hover,
.why-grid .card:hover {
  border-color: rgba(20, 128, 44, 0.55);
  transform: translateY(-4px);
}

.step {
  transition: transform 0.35s var(--ease), border-color 0.3s;
}

.step:hover {
  transform: translateY(-6px);
}

/* —— Page scene loader —— */
.preloader { display: none !important; }

.scene-load {
  position: fixed;
  inset: 0;
  z-index: 90;
  background:
    radial-gradient(50% 40% at 50% 40%, rgba(20, 128, 44, 0.16), transparent 70%),
    #070907;
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}

.scene-load.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.scene {
  display: none;
  width: min(420px, 86vw);
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}

body[data-page="home"] .scene--home,
body[data-page="ocean"] .scene--ocean,
body[data-page="air"] .scene--air,
body[data-page="land"] .scene--land,
body[data-page="clearance"] .scene--clear,
body[data-page="warehouse"] .scene--wh,
body[data-page="network"] .scene--net,
body[data-page="about"] .scene--about,
body[data-page="quote"] .scene--quote {
  display: flex;
}

.scene-load.is-jump .scene {
  display: none !important;
}

.scene-load.is-jump .scene.is-go {
  display: flex !important;
}

.scene-load__label {
  font-family: var(--font-d);
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  color: rgba(247, 248, 245, 0.82);
}

.scene-stage {
  position: relative;
  width: 220px;
  height: 180px;
  display: grid;
  place-items: center;
}

.scene-stage--wide {
  width: min(420px, 86vw);
}

.scene-stage::before {
  content: "";
  position: absolute;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 128, 44, 0.32), transparent 68%);
  pointer-events: none;
}

.scene-icon {
  position: relative;
  z-index: 1;
  width: 7.25rem;
  height: 7.25rem;
  color: #1db03d;
  filter: drop-shadow(0 14px 28px rgba(20, 128, 44, 0.45));
}

.scene-icon--lg {
  width: 8.4rem;
  height: 8.4rem;
}

.scene-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.scene-waves,
.scene-road,
.scene-trail {
  position: absolute;
  pointer-events: none;
}

.scene-waves {
  left: -10%;
  right: -10%;
  bottom: 22%;
  height: 18px;
  background:
    radial-gradient(circle at 12px 18px, transparent 10px, #14802C 11px, #14802C 13px, transparent 14px);
  background-size: 36px 18px;
  opacity: 0.7;
  animation: waveShift 1.1s linear infinite;
}

.scene-road {
  left: 6%;
  right: 6%;
  bottom: 28%;
  height: 3px;
  background: repeating-linear-gradient(90deg, rgba(247, 248, 245, 0.55) 0 18px, transparent 18px 32px);
  animation: roadRun 0.45s linear infinite;
}

.scene-trail {
  left: 8%;
  width: 58%;
  top: 54%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(29, 176, 61, 0.7) 0 7px, transparent 7px 14px);
  transform: rotate(-14deg);
  transform-origin: left center;
  animation: trailRun 0.4s linear infinite;
}

.ship-move {
  animation: shipSail 1.45s var(--ease) both;
}
@keyframes shipSail {
  from { transform: translate(-58%, 10px); opacity: 0; }
  18% { opacity: 1; }
  to { transform: translate(6%, 0); opacity: 1; }
}
@keyframes waveShift {
  from { background-position: 0 0; }
  to { background-position: -36px 0; }
}

.plane-move {
  animation: planeFly 1.4s var(--ease) both;
}
@keyframes planeFly {
  from { transform: translate(-62%, 36px) rotate(68deg); opacity: 0; }
  18% { opacity: 1; }
  to { transform: translate(22%, -28px) rotate(78deg); opacity: 1; }
}
@keyframes trailRun {
  from { background-position: 0 0; }
  to { background-position: -22px 0; }
}

.truck-move {
  animation: truckGo 1.4s var(--ease) both;
}
@keyframes truckGo {
  from { transform: translateX(-62%); opacity: 0; }
  18% { opacity: 1; }
  to { transform: translateX(8%); opacity: 1; }
}
@keyframes roadRun {
  from { background-position: 0 0; }
  to { background-position: -32px 0; }
}

.stamp {
  animation: stampHit 1.15s var(--ease) both;
}
@keyframes stampHit {
  0% { transform: translate(12px, -56px) rotate(-16deg) scale(1.15); opacity: 0; }
  55% { transform: translate(0, 0) rotate(-4deg) scale(1); opacity: 1; }
  70% { transform: translate(0, 6px) rotate(0deg) scale(0.96); }
  100% { transform: translate(0, 0) rotate(-2deg) scale(1); }
}

.icon-pop {
  animation: iconPop 0.85s var(--ease) both;
}
@keyframes iconPop {
  from { transform: scale(0.55) translateY(16px); opacity: 0; }
  to { transform: none; opacity: 1; }
}

.globe-spin {
  animation: globeIn 1.2s var(--ease) both;
}
@keyframes globeIn {
  from { transform: rotate(-18deg) scale(0.7); opacity: 0; }
  to { transform: none; opacity: 1; }
}

@media (max-width: 1100px) {
  .ind-grid, .why-grid, .three, .facts, .svc-next { grid-template-columns: 1fr 1fr; }
  .inc { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .ind-grid, .why-grid, .three, .facts, .svc-next { grid-template-columns: 1fr; }
}

html.skip-load .scene-load {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body.is-loading {
  overflow: hidden;
}

.home-quote-note {
  color: var(--muted);
  max-width: 42ch;
  margin-top: 1rem;
}

.hero__scroll {
  animation: scrollTip 1.8s ease-in-out infinite;
}
@keyframes scrollTip {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50% { transform: translateY(8px); opacity: 1; }
}

.btn {
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -40%;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transform: skewX(-18deg);
  animation: shine 3.6s var(--ease) infinite;
  pointer-events: none;
}
@keyframes shine {
  0% { left: -40%; }
  60%, 100% { left: 140%; }
}

details p {
  animation: faqOpen 0.35s var(--ease) both;
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

.svc__more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 0.6rem;
  transition: gap 0.3s var(--ease), color 0.3s;
}
.svc--link:hover .svc__more {
  gap: 0.7rem;
  color: var(--green-2);
}

@media (prefers-reduced-motion: reduce) {
  .ship-move, .plane-move, .truck-move, .stamp, .icon-pop, .globe-spin,
  .scene-waves, .scene-road, .scene-trail,
  .hero__scroll, .btn::after, details p, .hero__media img, .page-hero img,
  .split-media img, .photo-band img {
    animation: none !important;
  }
}
