/*
 * ALAGEMS website, built from the Figma file (1440 px frames: Desktop - 2 = Home,
 * Frame 175 = About, Frame 178 = Contacts).
 *
 * Layout model (desktop, ≥ 1200 px):
 *  - Content sits in .container (1440 wide incl. 80 px gutters), so text lands where
 *    it is in Figma. Free-form positions are written as calc(X% / 14.4), which is
 *    X px at 1440 and scales proportionally down to 1200.
 *  - .deco holds the purely decorative layers (photos, silk, gold lines, glows) at
 *    their Figma coordinates in a 1440 stage centred on the page. It never creates
 *    a stacking context, so a layer can be lifted above content with z-index when
 *    Figma draws it on top.
 * Below 1200 px the .deco layers are hidden and sections switch to simple stacked
 * layouts with CSS backgrounds.
 */

:root {
  --green: #0e3b2e;
  --green-deep: #0d362a;
  --green-ink: #123e30;
  --gold: #f5c891;
  --gold-soft: #f6cb97;
  --gold-line: #e2b277;
  --gold-dark: #bf9153;
  --gold-glow: #eed7b1;
  --peach: #f7d3a8;
  --cream: #fff8e6;
  --error: #ffab99;
  --success: #c4ecd0;
  --gold-gradient: linear-gradient(90deg, #c09053 0%, #f4d39e 34.615%, #e7c087 89.904%);
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 15px rgba(255, 255, 255, 0.1);
  --gutter: 80px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: #fff;
  background: var(--green);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: none; }
a { color: inherit; }
h1, h2, h3, p, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button, input { font: inherit; }

.container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

.page { position: relative; overflow-x: clip; }

/* ---------- Decorative stage ---------- */

.deco {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 1440px;
  margin-left: -720px;
  pointer-events: none;
  user-select: none;
}
.deco > * { position: absolute; }
.deco .clip { overflow: hidden; }
.deco .silk { display: flex; align-items: center; justify-content: center; }
.deco .silk img { flex: none; }

/* On screens wider than the 1440 frame, full-width backgrounds stretch to the edges. */
@media (min-width: 1441px) {
  .deco .bleed { left: calc(720px - 50vw) !important; width: 100vw !important; object-fit: cover; }
}

.sparkle { position: absolute; width: 15px; height: 15px; }

/* ---------- Glass and gold helpers ---------- */

.glass {
  background: var(--glass-bg);
  border: 1px solid var(--gold-line);
  -webkit-backdrop-filter: blur(7.5px);
  backdrop-filter: blur(7.5px);
  box-shadow: var(--glass-shadow);
}

/* ---------- Buttons ---------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
  transition: filter .2s, box-shadow .2s;
}
.btn:hover { filter: brightness(1.08); }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.btn .arrow { position: absolute; }

/* la:arrow-up, turned to point north-east as in Figma (-135deg, flipped). */
.arrow-ne { transform: rotate(-135deg) scaleY(-1); }

.btn-header {
  width: 302px; height: 50px;
  margin-top: 2px;
  padding-left: 14px;
  font-size: 20px; font-weight: 600;
  color: var(--peach);
  background: linear-gradient(90deg, var(--green) 51.923%, rgba(14, 59, 46, 0.2));
  -webkit-backdrop-filter: blur(7.5px);
  backdrop-filter: blur(7.5px);
  box-shadow: var(--glass-shadow);
}
.btn-header--glass {
  color: var(--gold);
  background: linear-gradient(90deg, rgba(245, 200, 145, 0.5), rgba(245, 200, 145, 0.15));
  border: 1px solid var(--gold-line);
  padding-left: 13px;
}
.btn-header .arrow {
  left: 249.5px; top: 11.5px; width: 26.3px; height: 26.3px;
  transform: rotate(-135deg) scaleY(-1);
}
.btn-header--glass .arrow { left: 248.5px; top: 10.5px; }

.btn-green {
  width: 302px; height: 50px;
  padding-left: 17px;
  font-size: 20px; font-weight: 600;
  color: var(--gold);
  background: linear-gradient(90deg, var(--green), rgba(14, 59, 46, 0.5));
  border: 1px solid var(--gold-line);
  -webkit-backdrop-filter: blur(7.5px);
  backdrop-filter: blur(7.5px);
  box-shadow: 0 8px 15px rgba(14, 59, 46, 0.1);
}
.btn-green .arrow {
  left: 260.5px; top: 10.5px; width: 26.3px; height: 26.3px;
  transform: rotate(-135deg) scaleY(-1);
}

.btn-gold {
  width: 318px; height: 63px;
  padding-left: 20px;
  font-size: 24px; font-weight: 600;
  color: var(--green);
  background: var(--gold);
  border: 1px solid var(--gold-line);
  box-shadow: var(--glass-shadow);
}
.btn-gold .arrow {
  left: 266.7px; top: 12.7px; width: 37px; height: 37px;
  transform: rotate(-135deg) scaleY(-1);
}

/* ---------- Header ---------- */

.site-header {
  position: absolute; top: 0; left: 0; right: 0;
  z-index: 20;
}
.site-header .container {
  display: flex;
  align-items: flex-start;
  padding-top: 32px;
}
.logo { flex: none; display: block; width: 194px; height: 34px; }
.logo img { width: 194px; height: 34px; }

.main-nav {
  display: flex;
  gap: 63px;
  margin: 10px 0 0 calc(168% / 12.8);
}
.main-nav a {
  position: relative;
  font-size: 16px; font-weight: 500; line-height: 22px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.page-home .main-nav { gap: 65px; }
.page-home .main-nav a { font-weight: 400; }
.site-header--light .main-nav a { color: var(--green); }
.main-nav a::after {
  content: "";
  position: absolute; left: 50%; top: 28px;
  width: 22.5px; height: 1px; margin-left: -11.25px;
  background: currentColor;
  opacity: 0; transition: opacity .2s;
}
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { opacity: 1; }

.lang-switch {
  display: flex; gap: 4px;
  margin: 11px 24px 0 auto;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
}
.lang-switch a {
  padding: 2px 5px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid transparent;
}
.lang-switch a.active { color: var(--gold); border-color: rgba(226, 178, 119, 0.6); }
.site-header--light .lang-switch a { color: rgba(14, 59, 46, 0.55); }
.site-header--light .lang-switch a.active { color: var(--green); border-color: rgba(14, 59, 46, 0.4); }

.site-header .btn-header { margin-right: -4px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px; padding: 0;
  margin-left: 12px;
  background: none;
  border: 1px solid rgba(226, 178, 119, 0.6);
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 20px; height: 1.5px; margin: 0 auto;
  background: var(--gold);
  position: relative;
}
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.site-header--light .nav-toggle { border-color: rgba(14, 59, 46, 0.4); }
.site-header--light .nav-toggle span,
.site-header--light .nav-toggle span::before,
.site-header--light .nav-toggle span::after { background: var(--green); }

/* =====================================================================
   HOME
   ===================================================================== */

/* ---------- Hero (0–900) ---------- */

.hero { position: relative; height: 900px; background: var(--green); }
.hero-floor { background: linear-gradient(90deg, var(--green), #17362d); }
.hero-map { opacity: 0.65; object-fit: cover; }

/* No stacking context here: the silk layers sit between the title and the widgets. */
.hero-inner { z-index: auto; height: 100%; }

.hero-title {
  position: absolute;
  right: calc(748% / 14.4);
  top: 171px;
  z-index: 2;
  font-size: min(64px, 4.444vw);
  font-weight: 683;
  line-height: 65px;
  text-transform: uppercase;
  text-align: right;
  white-space: nowrap;
  background: linear-gradient(85.56deg, #fff 92.559%, rgba(255, 255, 255, 0) 99.243%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero-title span { display: block; }
.hero-title .gold {
  background: linear-gradient(85.56deg, #f6cc99 93.172%, rgba(246, 204, 153, 0) 99.243%);
  -webkit-background-clip: text; background-clip: text;
}

.hero-lead {
  position: absolute;
  right: calc(780% / 14.4);
  top: 380px;
  z-index: 1;
  font-size: 20px; line-height: 25px;
  text-align: right;
  white-space: nowrap;
}

.hero-cta {
  position: absolute;
  left: calc(50% - 142px);
  top: 550px;
  z-index: 4;
  width: 289px; height: 134px;
  padding: 32px 6px 0 0;
  font-size: 32px; font-weight: 500; line-height: 30px;
  text-align: center;
  color: var(--gold);
  text-decoration: none;
  background:
    url("../img/home/cta-ellipse-inner.svg") 9px 6px / 271px 121px no-repeat,
    url("../img/home/cta-ellipse-outer.svg") 0 0 / 289px 134px no-repeat;
  border-radius: 50%;
  transition: filter .2s;
}
.hero-cta:hover { filter: brightness(1.12); }

/* Calendar, clocks and exchange rates. Origin = Figma (1046, 102). */
.widgets {
  position: absolute;
  right: calc(36.5% / 14.4);
  top: 102px;
  z-index: 4;
  width: 357.5px; height: 485px;
  font-family: "Inter", "Manrope", sans-serif;
}
.widget {
  position: absolute;
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--gold-line);
  -webkit-backdrop-filter: blur(7.5px);
  backdrop-filter: blur(7.5px);
  box-shadow: var(--glass-shadow);
}
.widget > * { position: absolute; }

.calendar {
  left: 121px; top: 0;
  width: 193px; height: 80px;
  overflow: visible;
  font-family: "Manrope", sans-serif;
}
.cal-month { left: 14px; top: 6px; font-size: 20px; font-weight: 700; text-transform: uppercase; }
.cal-day {
  right: 14px; top: 6px;
  font-size: 20px; font-weight: 700;
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.85);
}
.cal-daytype { right: 14px; top: 26px; font-size: 8px; font-weight: 700; }
.cal-band { left: -5px; top: 43px; width: 201px; height: 8px; background: rgba(245, 200, 145, 0.2); }
.cal-week {
  left: 4px; top: 39px;
  display: grid;
  grid-template-columns: repeat(7, 26.1px);
  text-align: center;
}
.cal-week span { font-size: 10px; font-weight: 500; line-height: 14px; }
.cal-week b { font-size: 16px; font-weight: 700; line-height: 22px; margin-top: 1px; }
.cal-week b.weekend { background: linear-gradient(var(--gold), var(--gold)) center / 100% 18px no-repeat; }

.clock { width: 174.48px; height: 72.323px; background: transparent; border: 0; box-shadow: none; }
.clock::before {
  content: ""; position: absolute; inset: 0;
  background: var(--glass-bg);
  border: 1px solid var(--gold-line);
  box-shadow: var(--glass-shadow);
}
.clock-city { left: 14px; top: 12px; font-size: 10px; line-height: 12px; text-transform: uppercase; white-space: nowrap; }
.clock-time { left: 13px; top: 33px; font-size: 32px; line-height: 39px; }
.clock-tz { right: 8px; top: 52px; font-size: 12px; line-height: 15px; white-space: nowrap; }
.clock-line {
  left: 116.5px; top: -13px; width: 1px; height: 118.5px;
  background: url("../img/home/clock-line.svg") center / 100% 100% no-repeat;
}
.clock-dot {
  left: 112px; width: 10px; height: 10px;
  background: url("../img/home/clock-dot.svg") center / 18px 18px no-repeat;
}
.clock-dot::before {
  content: ""; position: absolute; left: -7px; top: -7px; width: 24px; height: 24px;
  background:
    url("../img/home/clock-dot-glow.svg") center / 24px 24px no-repeat,
    url("../img/home/clock-dot-glow.svg") center / 24px 24px no-repeat;
}

.rate { top: 413.08px; height: 71.419px; background: none; border: 0; box-shadow: none; }
.rate-eur::before {
  content: ""; position: absolute; left: 0; top: -2px; width: 81.37px; height: 72.31px;
  background: var(--glass-bg);
  border: 1px solid var(--gold-line);
  box-shadow: var(--glass-shadow);
}
.rate-eur { left: 184.4px; width: 84.076px; }
.rate-usd { left: 275.7px; width: 81.364px; }
.rate-art { pointer-events: none; }
.rate-eur .rate-art { left: -26.4px; top: -14.8px; width: 86.44px; height: 86.44px; }
.rate-usd .rate-art { left: -14px; top: -18px; width: 222px; height: 121px; }
.rate-pair { left: 9px; top: 5px; font-size: 12px; line-height: 15px; white-space: nowrap; }
.rate-value { left: 5px; top: 43px; font-size: 24px; font-weight: 600; line-height: 29px; }

/* Advantages row (697–870) */
.advantages {
  position: absolute;
  left: calc(78% / 14.4);
  right: calc(75% / 14.4);
  top: 697px;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 231fr) minmax(0, 246fr) minmax(0, 357fr) minmax(0, 253fr) minmax(0, 200fr);
}
.glass-icon {
  display: grid; place-items: center;
  width: 56px; height: 56px;
  background: var(--glass-bg);
  border: 1px solid var(--gold-line);
  -webkit-backdrop-filter: blur(7.5px);
  backdrop-filter: blur(7.5px);
  box-shadow: var(--glass-shadow);
}
.advantage p {
  margin-top: 20px;
  font-size: 22px; line-height: 24px;
  white-space: nowrap;
}
.advantage:nth-child(-n+3) p { margin-left: -2px; }
.advantage:last-child p { margin-top: 18px; }
.advantage p::first-line { font-size: 24px; font-weight: 500; color: var(--gold); }
.advantage b { font-weight: 700; text-transform: uppercase; }

/* ---------- Solutions (900–1408) ---------- */

.solutions { position: relative; height: 508px; background: var(--gold); color: var(--green-ink); }
.solutions-inner { padding-top: 68px; }
.solutions-text { max-width: min(845px, calc(100vw - 573px)); }
.solutions h2 {
  max-width: 837px;
  font-size: 54px; font-weight: 800; line-height: 57px;
  text-transform: uppercase;
}
.solutions p {
  margin: 22px 0 63px;
  font-size: 29px; font-weight: 300; line-height: 30px;
  color: #103c2f;
}
.solutions-image {
  position: absolute;
  right: -1px; top: 0;
  z-index: 1;
  width: 453px; height: 509px;
  object-fit: cover;
}

/* ---------- Key facts (1408–1903) + services (1903–2848) ---------- */

.dark-band { position: relative; background: var(--green); }

.facts { height: 495px; padding-top: 72px; }
.facts-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fact {
  position: relative;
  height: 351px;
  padding: 24px 20px 0 28px;
  border: 1px solid var(--gold-line);
  background: linear-gradient(to left, rgba(245, 201, 147, 0.5), rgba(245, 201, 147, 0));
  -webkit-backdrop-filter: blur(7.5px);
  backdrop-filter: blur(7.5px);
  box-shadow: var(--glass-shadow);
}
.fact:nth-child(2) { padding-left: 30px; }
.fact:nth-child(3) { padding-left: 37px; }
.fact-icon {
  display: grid; place-items: center;
  width: 55px; height: 56px;
  background: var(--gold);
  box-shadow: 0 0 7px var(--gold);
}
.fact p {
  margin-top: 19px;
  max-width: 352px;
  font-size: 24px; line-height: 28px;
}
.fact p .light { font-weight: 300; }
.fact p b { font-weight: 600; }
.fact-figure {
  position: absolute;
  left: 0; right: 0; bottom: 20px;
  display: flex;
  padding-left: inherit;
  font-size: 24px; font-weight: 600; line-height: 42px;
  color: var(--gold-soft);
  white-space: nowrap;
}
.fact:first-child .fact-figure { font-size: 20px; }
.fact-figure strong { font-size: 40px; font-weight: 600; margin-right: 0.25em; }
.fact-figure::after {
  content: "";
  flex: 1;
  height: 2px;
  margin: 34px 38px 0 18px;
  background: #f4c790;
}

.services { position: relative; height: 945px; }
.services-head { padding-top: 62px; height: 289px; }
.services-title {
  margin-left: -3px;
  font-size: 74px; font-weight: 800; line-height: 57px;
  letter-spacing: 3.7px;
  text-transform: uppercase;
  white-space: nowrap;
}
.services-head .btn-gold { position: absolute; right: 79px; top: 62px; }
.services-lead {
  max-width: 923px;
  margin-top: 38px;
  font-size: 30px; font-weight: 300; line-height: 30px;
}

.service-strip {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-left: max(0px, calc(50vw - 720px));
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  cursor: grab;
}
.service-strip::-webkit-scrollbar { display: none; }
.service-strip.dragging { cursor: grabbing; scroll-snap-type: none; }
.service-strip.dragging .service-card { pointer-events: none; }
.service-card {
  position: relative;
  flex: 0 0 302px;
  height: 524px;
  overflow: hidden;
  scroll-snap-align: start;
  text-decoration: none;
  color: #fff;
}
.service-card > img:first-child {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.service-card:hover > img:first-child { transform: scale(1.04); }
.service-card::before {
  content: ""; position: absolute; left: 0; right: 0; top: 1px; height: 37.2%;
  background: linear-gradient(180deg, #0b2d23, rgba(13, 55, 43, 0));
}
.service-card::after {
  content: ""; position: absolute; inset: 0;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.service-card h3 {
  position: absolute; left: 0; right: 2px; bottom: 0;
  display: flex; align-items: center;
  height: 97px;
  padding: 0 12px 0 16px;
  font-size: 28px; font-weight: 500; line-height: 28px;
  background: rgba(8, 31, 24, 0.1);
  border: 1px solid var(--gold-line);
  -webkit-backdrop-filter: blur(7.5px);
  backdrop-filter: blur(7.5px);
  box-shadow: var(--glass-shadow);
}
.service-card h3.long { height: 113px; }
.service-card .corner {
  position: absolute; right: 13px; top: 11px;
  width: 40px; height: 40px;
  background: rgba(8, 35, 27, 0.7);
}
.service-card .corner img {
  position: absolute; left: 1.25px; top: 1.25px;
  width: 37.5px; height: 37.5px;
  transform: rotate(45deg) scaleX(-1);
}

/* ---------- How we work (2848–3694) ---------- */

.process { position: relative; height: 846px; color: var(--green); }
.process-inner { height: 100%; overflow: hidden; }
.process-rule {
  position: absolute; left: calc(46% / 14.4); top: 38px;
  width: 2px; height: 504px;
  background: url("../img/home/process-rule.svg") center / 100% 100% no-repeat;
}
.process-kicker {
  position: absolute; left: calc(83% / 14.4); top: 38px;
  font-size: 29px; font-weight: 700; line-height: 72px;
  letter-spacing: 0.58px;
  background: linear-gradient(87.92deg, #fef0c0 78.759%, rgba(254, 240, 192, 0) 118.43%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.process-title {
  position: absolute; left: calc(77% / 14.4); top: 94px;
  width: 410px;
  font-size: 64px; font-weight: 700; line-height: 63px;
  letter-spacing: 2.56px;
  text-transform: uppercase;
  background: linear-gradient(252.4deg, rgba(254, 240, 192, 0) 6.276%, #fef0c0 49.057%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
/* The arc is stretched horizontally only, so the circles stay on it at any width. */
.process-arc {
  position: absolute;
  left: calc(223.5% / 14.4); top: 363.4px;
  width: calc(1007% / 14.4); height: 503px;
}
.process-map { position: absolute; inset: 0; }
.step { position: absolute; inset: 0; pointer-events: none; }
.step > * { pointer-events: auto; }
.step-text {
  position: absolute;
  left: calc(var(--tx) * 1% / 14.4);
  top: var(--ty);
  width: 236px;
  transform: translateX(-50%);
  text-align: center;
}
.step h3 { max-width: 202px; margin: 0 auto 10px; font-size: 32px; font-weight: 600; line-height: 28px; }
.step p { font-size: 20px; font-weight: 300; line-height: 20px; }
.step-text--lead { width: 205px; }
.step-text--lead h3 { max-width: none; margin-bottom: 14px; font-size: 36px; line-height: 20px; }
.step-text--last { width: 202px; }
.step-text--last h3 { margin-bottom: 6px; }
.step:nth-child(3) h3 { margin-bottom: 9px; }
.step:nth-child(2) p { margin: 0 -8px; }
.step-num {
  position: absolute;
  left: calc(var(--cx) * 1% / 14.4 - 40.665px);
  top: calc(var(--cy) - 40.665px);
  display: grid; place-items: center;
  width: 81.33px; height: 81.33px;
  font-size: 48px; font-weight: 700; line-height: 1;
  color: var(--green);
  background: url("../img/home/step-circle.svg") center / 100% 100% no-repeat;
}

/* ---------- Partners (3694–3994) + request (3994–4824) ---------- */

.request-band { position: relative; background: var(--green); }
.request-photo { object-fit: cover; }
.request-shade { background: linear-gradient(to left, var(--green), rgba(14, 59, 46, 0) 97.115%); }
.request-vignette { background: radial-gradient(57.75% 45% at 50% 50%, rgba(14, 59, 46, 0), var(--green)); }

.partners { position: relative; height: 300px; padding-top: 96px; }
.partners-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18.1px 19.31px;
  padding-left: 78px;
  padding-right: 78px;
}
.partner {
  display: flex;
  height: 90.5px;
  padding: 7.24px 6.03px 6.03px 7.24px;
  background: var(--gold-gradient);
}
.partner img {
  position: relative;
  max-width: 100%;
  height: auto;
  margin: auto;
}
.partner-box {
  display: flex;
  flex: 1; min-width: 0;
  background: #fff;
}

.request { position: relative; height: 821px; }
.request-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 700px;
  align-items: start;
  padding-top: 70px;
}
.request-intro { padding: 110px 20px 0 3px; }
.request-intro h2 {
  font-size: 40px; font-weight: 700; line-height: 47px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--gold);
}
.gold-rule {
  position: relative;
  width: 402px; max-width: 100%; height: 2px;
  margin: 28.5px 0 27.5px;
  background: linear-gradient(90deg, #fef6da, #f5ddaf);
}
.gold-rule .sparkle { top: -6.5px; }
.request-intro h3 {
  font-size: 36px; font-weight: 500; line-height: 72px;
  letter-spacing: 0.72px;
  color: #fffcf2;
}
.request-intro p {
  max-width: 495px;
  font-size: 26px; line-height: 26px;
  letter-spacing: 0.52px;
  color: #fffcf2;
}

/* ---------- Lead form (home and contacts) ---------- */

.lead-form-wrap { position: relative; }
.lead-form {
  position: relative;
  width: 700px; max-width: 100%;
  min-height: 630px;
  padding: 60px 45px 37px 46px;
  border: 3px solid var(--gold-dark);
}
.lead-form::before {
  content: "";
  position: absolute; inset: -3px;
  border: 3px solid var(--gold-glow);
  filter: blur(3.5px);
  pointer-events: none;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 277px);
  column-gap: 49px;
  row-gap: 21.67px;
}
.field { position: relative; min-width: 0; }
.field label {
  display: block;
  font-size: 24px; font-weight: 500; line-height: 47px;
  letter-spacing: 0.72px;
  white-space: nowrap;
}
.input-wrap { position: relative; }
.input-wrap img {
  position: absolute; top: 50%; left: 7px;
  z-index: 1;
  transform: translateY(-50%);
  pointer-events: none;
}
.field:nth-child(even) .input-wrap img { left: 9px; }
.field input {
  width: 100%; height: 47px;
  padding: 0 10px 0 40px;
  font-size: 19px; font-weight: 300;
  letter-spacing: 0.57px;
  color: #fff;
  background: var(--glass-bg);
  border: 1px solid var(--gold-line);
  border-radius: 0;
  -webkit-backdrop-filter: blur(7.5px);
  backdrop-filter: blur(7.5px);
  box-shadow: var(--glass-shadow);
}
.field:nth-child(even) input { padding-left: 45px; }
.field[data-field="cargo_type"] input, .field[data-field="delivery_address"] input { font-size: 18px; letter-spacing: 0; }
.field[data-field="pickup_location"] input { letter-spacing: 0.38px; }
.field input::placeholder { color: #fff; opacity: 1; }
.field input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), var(--glass-shadow); }
.field.has-error input { border-color: var(--error); }
.field-error {
  position: absolute; left: 0; right: 0; top: 100%;
  margin-top: 2px;
  font-size: 13px; line-height: 16px;
  color: var(--error);
}

.submit-btn {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  width: 603px; max-width: 100%; height: 52px;
  margin-top: 34px;
  padding: 0 60px;
  font-size: 32px; font-weight: 500;
  letter-spacing: 0.96px;
  color: var(--green);
  background: var(--gold-gradient);
  border: 0;
  cursor: pointer;
  transition: filter .2s;
}
.submit-btn:hover { filter: brightness(1.06); }
.submit-btn .arrow { position: absolute; right: 12px; top: 0.5px; width: 51px; height: 51px; transform: rotate(90deg); }
.submit-btn[disabled] { opacity: 0.7; cursor: wait; }
.form-status {
  min-height: 20px;
  margin-top: 8px;
  font-size: 15px; line-height: 20px;
}
.form-status:empty { display: none; }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--error); }
.form-sparkle { position: absolute; pointer-events: none; }
.form-sparkle--1 { right: -9px; bottom: 19px; width: 23px; height: 23px; }
.form-sparkle--2 { right: -8px; bottom: 7px; width: 18px; height: 18px; }
.privacy-note {
  margin-top: 11px;
  font-size: 20px; font-weight: 300; line-height: 47px;
  letter-spacing: 0.6px;
}

/* =====================================================================
   CONTACTS
   ===================================================================== */

.contacts-hero { position: relative; height: 600px; background: #0d1a16; }
.contacts-hero-shade { background: linear-gradient(90deg, rgba(10, 42, 33, 0.8), rgba(10, 42, 33, 0)); }
.contacts-hero h1 {
  padding-top: 189px;
  font-size: 80px; font-weight: 700; line-height: 78px;
  text-transform: uppercase;
  color: var(--cream);
}
.contacts-hero p {
  max-width: 552px;
  margin-top: 45px;
  font-family: "Inter", sans-serif;
  font-size: 24px; line-height: 26px;
  color: var(--gold);
}

.contacts-section { position: relative; height: 899px; background: var(--green); }
.contacts-shade { background: linear-gradient(270deg, rgba(13, 54, 42, 0.57) 7.778%, rgba(13, 54, 42, 0.95) 38.857%); }
.contacts-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 700px;
  align-items: start;
}
.contacts-info { padding-top: 107px; margin-left: -1px; }
.contacts-info h2 {
  font-size: 56px; font-weight: 400; line-height: 56px;
  text-transform: uppercase;
  color: var(--cream);
}
.contact-list {
  display: grid;
  grid-template-rows: 119px 123px 123px auto;
  margin-top: 72px;
}
.contact-item { position: relative; padding-left: 41px; }
.contact-item img { position: absolute; left: 0; top: 0; }
.contact-item:first-child img { left: 4px; }
.contact-item:nth-child(2) img { top: -3px; }
.contact-item:nth-child(3) img { top: -1px; }
.contact-item:nth-child(4) img { top: -1px; }
.contact-item h3 {
  font-family: "Inter", sans-serif;
  font-size: 16px; font-weight: 400; line-height: 26px;
  color: var(--gold);
}
.contact-item p {
  font-size: 20px; font-weight: 300; line-height: 24px;
  letter-spacing: 0.6px;
}
.contact-item:first-child p, .contact-item--hours p { font-size: 19px; letter-spacing: 0.38px; }
.contact-item--hours p { margin-top: 5px; letter-spacing: 0.57px; }
.contact-item a { text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }
.contacts-inner .lead-form-wrap { margin: 106px 0 0 -3px; }

/* =====================================================================
   ABOUT
   ===================================================================== */

body.page-about {
  color: var(--green);
  background: linear-gradient(270deg, var(--peach) 0%, rgba(247, 211, 168, 0) 62.019%), #fff;
}

.about-hero { position: relative; height: 867px; }
.about-hero-fade { background: linear-gradient(to left, rgba(246, 206, 157, 0) 35.577%, #f6ce9d); }
.about-title {
  max-width: 800px;
  padding-top: 186px;
  font-size: 50px; font-weight: 400; line-height: 50px;
  letter-spacing: 1.5px;
  color: #000;
}
.about-title span {
  display: block;
  font-size: 64px; font-weight: 600; line-height: 60px;
  letter-spacing: 1.92px;
  color: var(--green);
}
.about-columns {
  position: absolute;
  left: 0; right: 0; top: 590px;
  font-size: 20px; line-height: 21px;
  color: #000;
}
.about-columns li { position: absolute; top: 64px; }
.about-columns li:nth-child(1) { left: calc(81% / 14.4); width: calc(343% / 14.4); }
.about-columns li:nth-child(2) { left: calc(503% / 14.4); width: calc(424% / 14.4); text-align: center; }
.about-columns li:nth-child(3) { left: calc(945% / 14.4); width: calc(414% / 14.4); text-align: right; }
.about-columns li + li::before {
  content: "";
  position: absolute; top: 15px;
  width: 2px; height: 96px; margin-left: -0.5px;
  background: var(--green);
}
.about-columns li:nth-child(2)::before { left: calc(-33% / 4.24); }
.about-columns li:nth-child(3)::before { left: calc(25% / 4.14); }
.about-columns .marker {
  position: absolute; top: -64px;
  display: grid; place-items: center;
  width: 40px; height: 40px;
  font-size: 20px; font-weight: 500;
  background: url("../img/about/marker-ring.svg") center / 100% 100% no-repeat;
}
.about-columns li:nth-child(1) .marker { left: calc(130% / 3.43); }
.about-columns li:nth-child(2) .marker { left: calc(199% / 4.24); }
.about-columns li:nth-child(3) .marker { left: calc(228% / 4.14); }
.about-columns .light { font-weight: 300; }
.about-columns li:nth-child(3) p { font-weight: 400; }
.about-columns b { font-weight: 600; color: var(--green); }

/* Main advantage (867–1425) */
.advantage-split { position: relative; height: 558px; }
.advantage-tint { background: rgba(14, 59, 46, 0.85); }
.advantage-panel { background: var(--cream); }
.advantage-inner { height: 100%; }
.advantage-text { position: absolute; left: calc(81% / 14.4); top: 68px; width: calc(413% / 14.4); height: 490px; }
.advantage-text h2 {
  font-size: 44px; font-weight: 600; line-height: 44px;
  letter-spacing: 1.32px;
  text-transform: uppercase;
  color: #000;
}
.advantage-lead { margin-top: 44px; font-size: 20px; font-weight: 500; line-height: 21px; color: var(--green); }
.advantage-note {
  position: absolute; top: 374px; left: 0;
  width: calc(310 / 413 * 100%);
  font-size: 16px; font-weight: 300; line-height: 16px;
  color: #000;
}
.advantage-note::before {
  content: "";
  position: absolute; left: 0; top: -17.75px;
  width: calc(431 / 310 * 100%); height: 1px;
  background: url("../img/about/advantage-rule.svg") center / 100% 100% no-repeat;
}
.advantage-photo {
  position: absolute; left: calc(512% / 14.4); top: 41px;
  width: 254px; height: 479px;
  object-fit: cover;
}
.integrated { position: absolute; left: calc(888% / 14.4); top: 68px; width: calc(470% / 14.4); color: #fff; }
.integrated h3 { font-size: 24px; font-weight: 600; line-height: 23px; color: var(--gold); }
.integrated ul { width: 447px; max-width: 100%; margin-top: 22px; }
.integrated li {
  position: relative;
  display: flex; align-items: center;
  height: 80px;
  padding-left: 71px;
  font-size: 19px; font-weight: 500; line-height: 21px;
  white-space: nowrap;
}
.integrated li + li { border-top: 1px solid #fff; }
.integrated li img { position: absolute; left: 21px; top: 50%; width: 33px; height: 33px; margin-top: -16.5px; }
.integrated li:nth-child(2) { height: 74px; line-height: 19px; }
.integrated li:nth-child(3) { height: 62px; }
.integrated li:nth-child(4) { height: 71px; }
.integrated li:nth-child(5) { height: 74px; }

/* Stats, key points and partners (1425–2850) */
.about-band { position: relative; background: var(--green); }

.stats { height: 292px; padding-top: 43px; }
.stats-bar {
  position: relative;
  height: 200px;
  background: var(--gold-gradient);
  color: #000;
}
.stats-bar li {
  position: absolute; top: 66px;
  left: calc(var(--x) * 1% / 12.8);
  transform: translateX(-50%);
  text-align: center;
  white-space: nowrap;
}
.stats-bar strong { display: block; font-size: 40px; font-weight: 800; line-height: 21px; }
.stats-bar span { display: block; margin-top: 21px; font-size: 16px; line-height: 15px; }
.stats-bar li:first-child span { margin-top: 15px; }

.key-points { height: 533px; padding-top: 6px; }
.points-grid {
  position: relative;
  height: 454px;
  background: url("../img/about/cards-map.jpg") center / cover no-repeat;
}
.gutter { position: absolute; background: var(--green); }
.gutter--v { left: 48.52%; top: -6px; bottom: -14px; width: 2.73%; }
.gutter--left { left: -3px; width: calc(48.52% + 4px); height: 32px; }
.gutter--right { left: calc(51.25% - 3px); right: -4px; height: 32px; }
.point {
  position: absolute;
  top: var(--y); left: 0;
  width: 48.52%; height: var(--h);
  padding: 0 20px 0 23px;
}
.point--right { left: 51.25%; width: 48.52%; padding-left: 24px; }
.point h3 {
  position: relative;
  display: flex; align-items: flex-start;
  height: var(--hh, 61px);
  margin: 0 -20px 0 -23px;
  padding: 14px 20px 0 23px;
  font-size: 32px; font-weight: 700; line-height: 30px;
  letter-spacing: 0.32px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid var(--gold-line);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  box-shadow: -8px -8px 15px rgba(95, 91, 91, 0.1);
}
.point--right h3 { margin-left: -24px; padding-left: 24px; }
.point h3.t30 { font-size: 30px; letter-spacing: 0.3px; }
.point h3.t28 { font-size: 28px; letter-spacing: 0.28px; }
.point h3.tight { padding-top: 18px; line-height: 25px; }
.point p {
  position: absolute; top: var(--by); left: inherit;
  max-width: min(528px, calc(100% - 43px));
  font-size: 20px; font-weight: 500; line-height: 21px;
}
.point p { left: 23px; }
.point--right p { left: 24px; }
.point p.wide { max-width: 553px; }

.network { height: 600px; color: #fff; }
.network-title {
  max-width: 923px;
  font-size: 30px; font-weight: 600; line-height: 32px;
  color: var(--cream);
}
.network-title span { color: var(--gold); }
.network-list {
  position: relative;
  height: 400px;
  margin-top: 66px;
}
.network-list li {
  position: absolute; top: 0;
  width: 237px;
  text-align: center;
  font-size: 24px; line-height: 23px;
}
.network-list li:nth-child(1) { left: calc(107% / 12.8); }
.network-list li:nth-child(2) { left: calc(383% / 12.8); }
.network-list li:nth-child(3) { left: calc(659% / 12.8); }
.network-list li:nth-child(4) { left: calc(937% / 12.8); }
.network-list .ring {
  display: block;
  width: 237px; height: 237px;
  margin-bottom: 31px;
  background: url("../img/about/partner-circle.svg") center / 100% 100% no-repeat;
}

/* Call to action (2850–3354) */
.about-cta { position: relative; height: 504px; color: var(--green); }
.about-cta-truck { object-fit: cover; }
.about-cta-fade { background: linear-gradient(270deg, rgba(248, 215, 175, 0) 0%, #f8d7af 75.694%); }
.about-cta .container { padding-top: 84px; }
.about-cta h2 {
  margin-left: 1px;
  font-size: 48px; font-weight: 600; line-height: 44px;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  color: #000;
}
.about-cta-text {
  max-width: 517px;
  margin: 27px 0 0 1px;
  font-size: 24px; line-height: 24px;
  letter-spacing: 0.72px;
}
.about-cta-text b { font-weight: 600; }
.btn-fade {
  width: 603px; height: 52px;
  margin: 98px 0 0 1px;
  padding-left: 41px;
  font-size: 32px; font-weight: 500;
  letter-spacing: 0.96px;
  color: #f4d9b8;
  background: linear-gradient(90deg, var(--green) 63.942%, rgba(14, 59, 46, 0) 89.904%);
}
.btn-fade .arrow { left: 437px; top: 0.5px; width: 51px; height: 51px; transform: rotate(90deg); }
.about-cta-contacts {
  display: flex; gap: 0;
  margin: 11px 0 0 1px;
  font-size: 20px; line-height: 24px;
  letter-spacing: 0.6px;
}
.about-cta-contacts > span:first-child { width: 304px; }
.about-cta-contacts a { text-decoration: none; }
.about-cta-contacts a:hover { text-decoration: underline; }

/* =====================================================================
   FOOTER
   ===================================================================== */

.site-footer {
  position: relative;
  height: 400px;
  color: #000;
  background: linear-gradient(90deg, #fef5e1, #e9c28a 47.257%);
}
.site-footer .container { padding: 38px 78px 0 77px; height: 100%; }
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  height: 269px;
  border-bottom: 1px solid var(--green-deep);
  margin-right: 5px;
}
.footer-kicker { font-size: 16px; font-weight: 300; line-height: 22px; }
.footer-title {
  max-width: 394px;
  margin-top: 10px;
  font-size: 44px; font-weight: 400; line-height: 42px;
  color: var(--green-deep);
}
.footer-text { max-width: 327px; margin-top: 29px; font-size: 16px; font-weight: 300; line-height: 22px; }
.footer-side { display: flex; flex-direction: column; align-items: flex-end; margin-right: -5px; }
.footer-contacts {
  margin-top: 67px;
  text-align: right;
  font-size: 20px; font-weight: 300; line-height: 24px;
  letter-spacing: 0.6px;
  color: var(--green-deep);
}
.footer-contacts a { text-decoration: none; }
.footer-contacts a:hover { text-decoration: underline; }
.subscribe-form {
  position: relative;
  display: flex;
  width: 349px; height: 52px;
  margin-top: 32px;
  background: var(--green-deep);
}
.subscribe-form input {
  flex: 1; min-width: 0;
  padding: 0 60px 0 23px;
  font-size: 20px; font-weight: 300;
  letter-spacing: 0.6px;
  color: #fff;
  background: transparent;
  border: 0;
}
.subscribe-form input::placeholder { color: #e9c28a; opacity: 1; }
.subscribe-form button {
  position: absolute; right: 23px; top: 8px;
  width: 36px; height: 36px; padding: 0;
  background: none; border: 0; cursor: pointer;
}
.subscribe-form button img { width: 36px; height: 36px; transform: rotate(90deg); }
.subscribe-status { min-height: 18px; margin-top: 6px; font-size: 14px; text-align: right; color: var(--green-deep); }

.footer-bottom {
  display: flex;
  align-items: flex-start;
  margin-right: 5px;
  padding-top: 22px;
}
.footer-logo { flex: none; display: block; width: 155px; height: 28px; }
.footer-logo img { width: 155px; height: 28px; }
.footer-nav { display: flex; gap: 63px; margin: 7px 0 0 calc(253% / 12.85); }
.footer-nav a, .copyright {
  font-size: 16px; font-weight: 500; line-height: 22px;
  text-decoration: none;
  white-space: nowrap;
}
.footer-nav a:hover { text-decoration: underline; }
.copyright { display: flex; align-items: center; gap: 4px; margin: 7px 0 0 auto; }
.copyright img { width: 16px; height: 16px; }

/* About: bottom bar only, on the call-to-action background. */
.site-footer--compact { height: 80px; background: none; color: #000; }
.site-footer--compact .container { padding: 0 80px; }
.site-footer--compact .footer-bottom { border-top: 1px solid var(--green-deep); padding-top: 22px; }
.site-footer--compact .footer-nav { margin-left: calc(253% / 12.8); }
.site-footer--compact .copyright { margin-right: 0; }
.site-footer--compact .footer-bottom { margin-right: 0; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */

@media (max-width: 1199px) {
  :root { --gutter: 40px; }

  .deco { display: none; }

  .main-nav { gap: 32px; margin-left: 40px; }
  .btn-header { display: none; }
  .lang-switch { margin-right: 0; }

  /* Home hero */
  .hero {
    height: auto;
    padding: 150px 0 60px;
    background:
      linear-gradient(180deg, rgba(14, 59, 46, 0.2) 0%, rgba(14, 59, 46, 0.75) 45%, var(--green) 75%),
      url("../img/home/hero-hangar.jpg") center top / auto 640px no-repeat,
      var(--green);
  }
  .hero-inner { display: flex; flex-direction: column; }
  .hero-title, .hero-lead, .hero-cta, .advantages { position: static; }
  .hero-title { font-size: 56px; line-height: 58px; text-align: left; white-space: normal; background: none; color: #fff; }
  .hero-title .gold { background: none; color: #f6cc99; }
  .hero-lead { margin-top: 20px; text-align: left; white-space: normal; max-width: 560px; }
  .hero-lead br { display: none; }
  .hero-cta { margin: 40px 0 0; align-self: center; }
  .widgets { display: none; }
  .advantages { margin-top: 56px; grid-template-columns: repeat(3, 1fr); gap: 40px 24px; }
  .advantage p { white-space: normal; }

  .solutions { height: auto; display: flex; flex-direction: column; }
  .solutions-inner { padding: 60px var(--gutter); }
  .solutions-text { max-width: none; }
  .solutions h2 { font-size: 42px; line-height: 46px; }
  .solutions p { font-size: 24px; line-height: 28px; margin-bottom: 40px; }
  .solutions-image { position: static; width: 100%; height: 360px; }

  .facts { height: auto; padding: 64px 0; }
  .facts-list { grid-template-columns: 1fr; max-width: 640px; }
  .fact { height: 300px; }

  .services { height: auto; padding-bottom: 80px; }
  .services-head { height: auto; padding-top: 0; padding-bottom: 40px; }
  .services-title { font-size: 56px; line-height: 60px; }
  .services-head .btn-gold { position: static; margin-top: 28px; }
  .services-lead { font-size: 24px; line-height: 28px; margin-top: 24px; }
  .service-strip { padding-left: var(--gutter); scroll-padding-left: var(--gutter); }

  .process {
    height: auto;
    padding: 64px 0 72px;
    background: linear-gradient(rgba(246, 223, 180, 0.55), rgba(246, 223, 180, 0.55)), url("../img/home/process-globe.jpg") center / cover;
  }
  .process-rule, .process-arc { display: none; }
  .process-kicker, .process-title, .process-map { position: static; }
  .process-kicker { line-height: 40px; }
  .process-kicker { background: none; color: var(--green); }
  .process-title { width: auto; background: none; color: var(--green); }
  .process-map { margin-top: 40px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 24px; counter-reset: none; }
  .step { position: relative; inset: auto; display: flex; gap: 16px; align-items: flex-start; }
  .step-text, .step-text--lead, .step-text--last { position: static; transform: none; width: auto; text-align: left; order: 2; }
  .step h3, .step-text--lead h3 { max-width: none; margin: 0 0 8px; font-size: 28px; line-height: 30px; }
  .step-num { position: static; flex: none; width: 64px; height: 64px; font-size: 36px; order: 1; }

  .partners { height: auto; padding: 64px 0 40px; }
  .partners-list { grid-template-columns: repeat(4, 1fr); padding: 0 var(--gutter); }

  .request-band {
    background:
      linear-gradient(90deg, var(--green) 0%, rgba(14, 59, 46, 0.82) 100%),
      url("../img/home/request-plane.jpg") center / cover,
      var(--green);
  }
  .request { height: auto; padding-bottom: 80px; }
  .request-inner { grid-template-columns: minmax(0, 1fr); padding-top: 24px; gap: 48px; }
  .request-intro { padding: 0; }
  .lead-form-wrap { max-width: 700px; }

  .contacts-hero { height: auto; min-height: 480px; padding-bottom: 60px;
    background: linear-gradient(90deg, rgba(10, 42, 33, 0.85), rgba(10, 42, 33, 0.35)), url("../img/contacts/hero-office.jpg") center / cover; }
  .contacts-hero h1 { padding-top: 160px; font-size: 64px; }
  .contacts-section { height: auto; padding-bottom: 80px;
    background: linear-gradient(rgba(13, 54, 42, 0.9), rgba(13, 54, 42, 0.9)), url("../img/contacts/map-bg.jpg") center / cover; }
  .contacts-inner { grid-template-columns: minmax(0, 1fr); }
  .contacts-info { padding-top: 64px; }
  .contact-list { grid-template-rows: none; gap: 32px; margin-top: 40px; }
  .contacts-inner .lead-form-wrap { margin: 56px 0 0; }

  .about-hero { height: auto; padding-bottom: 64px;
    background: linear-gradient(90deg, #f6ce9d 20%, rgba(246, 206, 157, 0.55)), url("../img/about/hero-ship.jpg") center / cover; }
  .about-title { padding-top: 150px; font-size: 40px; line-height: 44px; }
  .about-title span { font-size: 52px; line-height: 56px; }
  .about-columns { position: static; margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .about-columns li { position: relative; top: auto; left: auto !important; width: auto !important; padding-top: 56px; }
  .about-columns li + li::before { display: none; }
  .about-columns .marker { top: 0; left: 0 !important; margin: 0 !important; }
  .about-columns li:nth-child(2) .marker { left: 50% !important; margin-left: -20px !important; }
  .about-columns li:nth-child(3) .marker { left: auto !important; right: 0; }

  .advantage-split { height: auto; background: var(--green); }
  .advantage-inner { display: grid; grid-template-columns: minmax(0, 1fr) 254px; gap: 32px; padding-top: 56px; padding-bottom: 56px;
    background: var(--cream); max-width: none; }
  .advantage-text, .advantage-photo, .integrated { position: static; width: auto; height: auto; }
  .advantage-note { position: static; width: auto; margin-top: 40px; }
  .integrated { grid-column: 1 / -1; margin: 24px calc(-1 * var(--gutter)) -56px; padding: 48px var(--gutter);
    background: linear-gradient(rgba(14, 59, 46, 0.85), rgba(14, 59, 46, 0.85)), url("../img/about/advantage-bg.jpg") center / cover; }

  .stats { height: auto; padding: 56px 0; }
  .stats-bar { height: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px 16px; padding: 40px 24px; }
  .stats-bar li { position: static; transform: none; white-space: normal; }
  .stats-bar strong { white-space: nowrap; }
  .integrated ul { width: auto; }
  .integrated li, .integrated li:nth-child(n) { height: auto; min-height: 64px; padding-top: 12px; padding-bottom: 12px; white-space: normal; }
  .stats-bar li:first-child span { margin-top: 21px; }

  .key-points { height: auto; padding-bottom: 56px; }
  .points-grid { height: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; background: none; }
  .gutter { display: none; }
  .point, .point--right { position: relative; top: auto; left: auto; width: auto; height: auto; min-height: 200px; padding-bottom: 24px;
    background: url("../img/about/cards-map.jpg") center / cover; }
  .point p, .point--right p { position: static; margin-top: 24px; padding-right: 0; }

  .network { height: auto; padding-bottom: 72px; }
  .network-list { height: auto; margin-top: 48px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .network-list li { position: static; width: auto; font-size: 20px; }
  .network-list .ring { width: 100%; max-width: 200px; height: auto; aspect-ratio: 1; margin: 0 auto 20px; }

  .about-cta { height: auto; padding-bottom: 64px;
    background: linear-gradient(270deg, rgba(248, 215, 175, 0.55) 0%, #f8d7af 60%), url("../img/about/cta-truck.jpg") right center / cover; }
  .about-cta .container { padding-top: 64px; }
  .btn-fade { width: min(603px, 100%); margin-top: 48px; }
  .btn-fade .arrow { left: auto; right: 24px; }
  .about-cta-contacts { flex-wrap: wrap; gap: 8px 32px; }
  .about-cta-contacts > span:first-child { width: auto; }
  body.page-about .site-footer--compact { background: #f8d7af; }

  .site-footer { height: auto; }
  .site-footer .container { padding: 40px var(--gutter) 32px; }
  .footer-top { height: auto; padding-bottom: 40px; margin-right: 0; grid-template-columns: 1fr; gap: 32px; }
  .footer-side { align-items: flex-start; margin-right: 0; }
  .footer-contacts { margin-top: 0; text-align: left; }
  .subscribe-form { max-width: 100%; margin-top: 20px; }
  .subscribe-status { text-align: left; }
  .footer-bottom { flex-wrap: wrap; gap: 20px 40px; }
  .footer-nav, .site-footer--compact .footer-nav { margin-left: 0; gap: 32px; flex-wrap: wrap; }
  .copyright { margin-left: 0; }
  .site-footer--compact { height: auto; }
  .site-footer--compact .container { padding: 0 var(--gutter) 32px; }
}

@media (max-width: 899px) {
  .main-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    margin: 0;
    padding: 12px var(--gutter) 20px;
    background: var(--green);
  }
  .site-header--light .main-nav { background: #fbe7cf; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 0; }
  .main-nav a::after { display: none; }
  .nav-toggle { display: block; }
  .site-header .container { align-items: center; padding-top: 24px; }
  .lang-switch { margin-top: 0; }
}

@media (max-width: 767px) {
  :root { --gutter: 20px; }

  .logo, .logo img { width: 150px; height: 26px; }

  .hero { padding-top: 120px; background-size: auto, auto 520px, auto; }
  .hero-title { font-size: 34px; line-height: 38px; }
  .hero-lead { font-size: 17px; line-height: 23px; }
  .hero-cta { transform: scale(0.85); margin-top: 24px; }
  .advantages { grid-template-columns: 1fr; gap: 28px; }
  .advantage { display: grid; grid-template-columns: 56px 1fr; gap: 16px; align-items: start; }
  .advantage p { margin: 0 !important; font-size: 18px; line-height: 22px; }
  .advantage p::first-line { font-size: 20px; }

  .solutions-inner { padding: 48px var(--gutter); }
  .solutions h2 { font-size: 30px; line-height: 34px; }
  .solutions p { font-size: 19px; line-height: 25px; }
  .solutions-image { height: 260px; }
  .btn-green, .btn-gold { width: 100%; max-width: 318px; }
  .btn-green .arrow, .btn-gold .arrow { left: auto; right: 16px; }

  .fact { height: auto; min-height: 280px; padding-bottom: 80px; }
  .fact p { font-size: 20px; line-height: 25px; }

  .services-title { font-size: 40px; line-height: 44px; letter-spacing: 1.5px; white-space: normal; }
  .services-lead { font-size: 20px; line-height: 25px; }
  .service-card { flex-basis: 260px; height: 450px; }
  .service-card h3 { font-size: 24px; line-height: 26px; }

  .process-kicker { font-size: 22px; }
  .process-title { font-size: 42px; line-height: 44px; }
  .process-map { grid-template-columns: 1fr; }
  .step h3, .step-text--lead h3 { font-size: 24px; line-height: 26px; }
  .step p { font-size: 17px; }

  .partners-list { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .partner { height: 80px; }

  .request-intro h2 { font-size: 28px; line-height: 34px; }
  .request-intro h3 { font-size: 26px; line-height: 48px; }
  .request-intro p { font-size: 19px; line-height: 24px; }
  .lead-form { min-height: 0; padding: 28px 18px 24px; }
  .form-grid { grid-template-columns: 1fr; row-gap: 18px; }
  .field label { font-size: 19px; line-height: 36px; }
  .field:nth-child(even) .input-wrap img { left: 7px; }
  .field:nth-child(even) input { padding-left: 40px; }
  .submit-btn { font-size: 22px; margin-top: 30px; padding: 0 52px 0 12px; white-space: nowrap; }
  .submit-btn .arrow { width: 40px; height: 40px; top: 6px; }
  .privacy-note { font-size: 16px; line-height: 22px; margin-top: 16px; }

  .contacts-hero { min-height: 400px; }
  .contacts-hero h1 { padding-top: 130px; font-size: 44px; line-height: 48px; }
  .contacts-hero p { margin-top: 24px; font-size: 19px; line-height: 24px; }
  .contacts-hero p br { display: none; }
  .contacts-info h2 { font-size: 36px; line-height: 40px; }

  .about-title { padding-top: 120px; font-size: 28px; line-height: 32px; letter-spacing: 0.5px; }
  .about-title span { font-size: 38px; line-height: 42px; }
  .about-columns { grid-template-columns: 1fr; }
  .about-columns li, .about-columns li:nth-child(n) { text-align: left; }
  .about-columns li:nth-child(n) .marker { left: 0 !important; right: auto; margin-left: 0 !important; }
  .about-columns br { display: none; }
  .advantage-inner { grid-template-columns: minmax(0, 1fr); }
  .about-title br { display: none; }
  .advantage-photo { width: 100%; height: 320px; }
  .advantage-text h2 { font-size: 32px; line-height: 34px; }
  .integrated li { font-size: 17px; padding-left: 56px; }
  .integrated li img { left: 8px; }
  .integrated h3 br, .integrated li br { display: none; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stats-bar strong { font-size: 30px; }
  .points-grid { grid-template-columns: 1fr; }
  .point h3, .point h3.t30, .point h3.t28 { height: auto; padding-bottom: 14px; font-size: 24px; line-height: 28px; }
  .network-title { font-size: 22px; line-height: 27px; }
  .network-title br { display: none; }
  .network-list { grid-template-columns: 1fr 1fr; }
  .network-list li { font-size: 18px; line-height: 22px; }
  .about-cta h2 { font-size: 32px; line-height: 36px; }
  .about-cta-text { font-size: 19px; line-height: 24px; }
  .btn-fade { font-size: 24px; padding-left: 24px; background: linear-gradient(90deg, var(--green) 70%, rgba(14, 59, 46, 0.4)); }
  .about-cta-contacts { font-size: 17px; }

  .footer-title { font-size: 34px; line-height: 36px; }
  .footer-contacts { font-size: 17px; }
  .subscribe-form { width: 100%; }
}
