/* KAZLOGIST.KZ — публичная часть. Токены по макету от 07.09.2026: светлый фон,
   тёмно-зелёный #0B1F1A, акцент #1F8A66, засечки Playfair для заголовков разделов. */
:root {
  --bg: #F5F8F9; --bg-2: #EEF3F4; --white: #FFFFFF;
  --ink: #0B1512; --ink-2: #1F2B27; --mute: #5F6E69; --mute-2: #8A9893; --line: #DCE4E1;
  --green: #1F8A66; --green-2: #146A4E; --mint: #8FF0CF; --mint-2: #BFF3E4;
  --dark: #0B1F1A; --dark-2: #12312A; --dark-3: #163A32;
  --r: 22px; --r-sm: 14px;
  --wrap: 1360px; --pad: clamp(16px, 4vw, 56px);
  --sans: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --ease: cubic-bezier(.2,.7,.2,1);
}
* { box-sizing: border-box }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100% }
body { margin: 0; font: 16px/1.55 var(--sans); color: var(--ink); background: var(--bg); overflow-x: hidden }
img { display: block; max-width: 100% }
a { color: inherit; text-decoration: none }
h1, h2, h3 { margin: 0; font-weight: 500; letter-spacing: -.01em }
p { margin: 0 }
.wrap { width: min(var(--wrap), 100% - var(--pad) * 2); margin-inline: auto }
.skip { position: absolute; left: -999px }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0 }

/* ---- типографика */
.kicker { font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--green); font-weight: 600; margin-bottom: 14px }
.kicker--light { color: var(--mint) }
.kicker--line { display: flex; align-items: center; gap: 14px; color: var(--mute) }
.kicker--line::after { content: ""; width: 92px; height: 1px; background: var(--line-2, #B9C6C1) }
.h2 { font-size: clamp(30px, 4vw, 52px); line-height: 1.08; letter-spacing: -.02em; font-weight: 500 }
.h2.serif, .serif { font-family: var(--serif); font-weight: 400 }
.sec-h { display: grid; gap: 22px; margin-bottom: 30px; align-items: end }
.sec-h p { color: var(--mute); font-size: 15px; max-width: 42ch; margin-bottom: 10px }
.link { display: inline-flex; align-items: center; gap: 10px; font-weight: 500 }
@media (min-width: 900px) { .sec-h { grid-template-columns: 1.2fr 1fr } .sec-h__r { text-align: right } .sec-h__r p { margin-left: auto } }

/* ---- кнопки */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 14px; padding: 14px 20px 14px 24px; border-radius: 999px;
       font-weight: 500; font-size: 15px; border: 1px solid transparent; transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s; cursor: pointer; font-family: inherit }
.btn:hover { transform: translateY(-2px) }
.btn--dark { background: var(--dark); color: #fff; box-shadow: 0 14px 30px -14px rgba(11,31,26,.65) }
.btn--dark:hover { background: var(--dark-2) }
.btn--light { background: #fff; color: var(--dark); border-color: #fff }
.btn--ghost { background: transparent; color: var(--dark); border-color: rgba(11,31,26,.25) }
.btn--ghost:hover { background: rgba(11,31,26,.04) }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35) }
.btn--ghost-light:hover { background: rgba(255,255,255,.06) }
.btn--lg { padding: 18px 22px 18px 30px; font-size: 16px }
.btn--wide { width: 100% }
.btn__arr { width: 18px; height: 10px; position: relative; flex: none }
.btn__arr::before { content: ""; position: absolute; left: 0; top: 50%; width: 16px; height: 1.5px; background: currentColor; transform: translateY(-50%) }
.btn__arr::after { content: ""; position: absolute; right: 0; top: 50%; width: 7px; height: 7px; border: solid currentColor; border-width: 1.5px 1.5px 0 0; transform: translateY(-50%) rotate(45deg) }
.btn--dark .btn__arr { color: var(--mint) }
.circ { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(11,31,26,.25); display: grid; place-items: center; flex: none; position: relative; transition: background .3s, border-color .3s }
.circ::after { content: ""; width: 8px; height: 8px; border: solid currentColor; border-width: 1.5px 1.5px 0 0; transform: rotate(45deg) translate(-1px, 1px) }
a:hover > .circ, a:hover .circ { background: var(--dark); color: #fff; border-color: var(--dark) }
.play { display: inline-flex; align-items: center; gap: 14px; font-size: 14px; color: var(--ink-2); line-height: 1.3 }
.play__btn { width: 56px; height: 56px; border-radius: 50%; border: 1px solid rgba(11,31,26,.3); background: rgba(255,255,255,.65); backdrop-filter: blur(6px); display: grid; place-items: center; flex: none; transition: transform .35s var(--ease) }
.play__btn::after { content: ""; border-left: 12px solid currentColor; border-top: 7px solid transparent; border-bottom: 7px solid transparent; margin-left: 4px }
.play:hover .play__btn { transform: scale(1.06) }
.play--light { color: #fff } .play--light .play__btn { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.08) }

/* ---- иконки (inline SVG через mask, один цвет) */
.ic { display: inline-block; width: 24px; height: 24px; background: currentColor; -webkit-mask: var(--m) center/contain no-repeat; mask: var(--m) center/contain no-repeat; flex: none }
.ic-phone { --m: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6'%3E%3Cpath d='M5 4h3l2 5-2.5 1.5a11 11 0 0 0 6 6L15 14l5 2v3a2 2 0 0 1-2 2A16 16 0 0 1 3 6a2 2 0 0 1 2-2z'/%3E%3C/svg%3E") }
.ic-mail  { --m: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='M3 7l9 6 9-6'/%3E%3C/svg%3E") }
.ic-pin   { --m: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6'%3E%3Cpath d='M12 21s7-6.3 7-11a7 7 0 1 0-14 0c0 4.7 7 11 7 11z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E") }
.ic-wa    { --m: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M12 2a10 10 0 0 0-8.6 15.1L2 22l5-1.3A10 10 0 1 0 12 2zm0 1.8a8.2 8.2 0 1 1-4.2 15.3l-.3-.2-3 .8.8-2.9-.2-.3A8.2 8.2 0 0 1 12 3.8zm-3 4.4c-.2 0-.5.1-.7.3-.3.3-1 1-1 2.4s1 2.8 1.2 3c.1.2 2 3.2 5 4.4 2.5 1 3 .8 3.5.7.5-.1 1.7-.7 2-1.4.2-.7.2-1.3.1-1.4l-.5-.3-1.9-.9c-.3-.1-.5-.2-.7.2l-1 1.2c-.2.2-.3.2-.6.1-.3-.2-1.2-.5-2.3-1.5-.9-.8-1.5-1.7-1.6-2-.2-.3 0-.5.1-.6l.4-.5.3-.5v-.5l-.9-2.1c-.2-.6-.5-.5-.7-.5h-.6z'/%3E%3C/svg%3E") }
.ic-tg    { --m: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M21.5 3.5 2.8 10.7c-1.3.5-1.3 1.2-.2 1.5l4.8 1.5 11.1-7c.5-.3 1-.1.6.2l-9 8.1-.3 4.9c.5 0 .7-.2 1-.5l2.3-2.3 4.9 3.6c.9.5 1.5.2 1.8-.8l3.2-15.2c.3-1.3-.5-1.9-1.5-1.4z'/%3E%3C/svg%3E") }
.ic-ig    { --m: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6'%3E%3Crect x='3' y='3' width='18' height='18' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.5' cy='6.5' r='1' fill='%23000'/%3E%3C/svg%3E") }
.ic-plane { --m: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5'%3E%3Cpath d='M2 16l20-10-6 15-3-6-6-3z'/%3E%3C/svg%3E") }
.ic-box   { --m: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5'%3E%3Cpath d='M12 3l8 4.5v9L12 21l-8-4.5v-9z'/%3E%3Cpath d='M4 7.5l8 4.5 8-4.5M12 12v9'/%3E%3C/svg%3E") }
.ic-doc   { --m: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5'%3E%3Cpath d='M6 3h8l4 4v14H6z'/%3E%3Cpath d='M14 3v4h4M9 12h6M9 16h6'/%3E%3C/svg%3E") }
.ic-house { --m: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5'%3E%3Cpath d='M3 10l9-6 9 6v10H3z'/%3E%3Cpath d='M9 20v-6h6v6'/%3E%3C/svg%3E") }
.ic-user  { --m: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 21c0-4 3.6-6 8-6s8 2 8 6'/%3E%3C/svg%3E") }
.ic-users { --m: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5'%3E%3Ccircle cx='9' cy='8' r='3.5'/%3E%3Ccircle cx='17' cy='9' r='2.5'/%3E%3Cpath d='M2 20c0-3.5 3-5.5 7-5.5s7 2 7 5.5M15 15c3 0 6 1.5 6 4.5'/%3E%3C/svg%3E") }
.ic-shield{ --m: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5'%3E%3Cpath d='M12 3l8 3v6c0 5-3.5 8-8 9-4.5-1-8-4-8-9V6z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E") }
.ic-bolt  { --m: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5'%3E%3Cpath d='M13 2L4 14h7l-1 8 9-12h-7z'/%3E%3C/svg%3E") }
.ic-globe { --m: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18M12 3c3 3 3 15 0 18M12 3c-3 3-3 15 0 18'/%3E%3C/svg%3E") }

/* ---- шапка */
.hdr { position: sticky; top: 0; z-index: 50; background: rgba(245,248,249,.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid transparent; transition: border-color .3s }
.hdr.is-scrolled { border-color: var(--line) }
.hdr__in { display: flex; align-items: center; gap: 24px; min-height: 84px }
.logo { display: flex; align-items: center; gap: 12px }
.logo img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover }
.logo__t { display: flex; flex-direction: column; line-height: 1.05 }
.logo__t b { font-size: 18px; letter-spacing: .04em; font-weight: 700 }
.logo__t small { font-size: 9px; letter-spacing: .3em; text-transform: uppercase; color: var(--mute); margin-top: 4px }
.logo--light .logo__t b { color: #fff } .logo--light .logo__t small { color: rgba(255,255,255,.55) }
.nav { display: none; gap: 30px; margin-left: 40px; font-size: 14px; font-weight: 500 }
.nav a { position: relative; padding: 6px 0 }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease) }
.nav a:hover::after, .nav a.is-on::after { transform: scaleX(1) }
.hdr__r { margin-left: auto; display: flex; align-items: center; gap: 14px }
.lang { display: flex; gap: 12px; font-size: 12px; font-weight: 600; letter-spacing: .08em }
.lang a { color: var(--mute-2); padding: 12px 4px } .lang a.is-on { color: var(--ink) }
.hdr__cta { display: none; padding: 12px 8px 12px 22px }
.hdr__cta .btn__arr { width: 34px; height: 34px; border-radius: 50%; background: var(--mint); color: var(--dark) }
.hdr__cta .btn__arr::before { left: 9px; width: 14px } .hdr__cta .btn__arr::after { right: 10px }
.burger { width: 52px; height: 52px; border-radius: 50%; border: 0; background: var(--dark); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4.5px; cursor: pointer; padding: 0; position: relative; z-index: 51 }
.burger span { display: block; width: 20px; height: 1.6px; background: #fff; transition: transform .3s, opacity .3s }
.burger.is-on { background: #fff } .burger.is-on span { background: var(--dark) }
.burger.is-on span:first-child { transform: translateY(6px) rotate(45deg) } .burger.is-on span:nth-child(2) { opacity: 0 } .burger.is-on span:last-child { transform: translateY(-6px) rotate(-45deg) }
@media (min-width: 1100px) { .nav { display: flex } .hdr__cta { display: inline-flex } .burger { background: transparent } .burger span { background: var(--ink) } .lang a { padding: 12px 2px } }
@media (max-width: 1099px) { .hdr__in { min-height: 72px; gap: 10px } .logo img { width: 40px; height: 40px } .logo__t b { font-size: 16px } .logo__t small { font-size: 7.5px; letter-spacing: .22em } .lang a:not(.is-on) { display: none } .lang a.is-on { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line); border-radius: 999px; padding: 0 14px 0 16px; height: 44px; background: #fff; font-size: 13px } .lang__chev { width: 7px; height: 7px; border: solid currentColor; border-width: 0 1.5px 1.5px 0; transform: rotate(45deg) translateY(-2px); opacity: .6 } .burger { width: 48px; height: 48px } }
.lang__chev { display: none } @media (max-width: 1099px) { .lang__chev { display: inline-block } }
.menu { position: fixed; inset: 0; z-index: 49; background: var(--dark); color: #fff; padding-top: 96px; clip-path: circle(0 at calc(100% - 44px) 36px); pointer-events: none; transition: clip-path .6s var(--ease); overflow: auto }
.menu::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 10%, rgba(143,240,207,.14), transparent 45%), radial-gradient(rgba(255,255,255,.06) 1px, transparent 1.5px) 0 0/22px 22px; pointer-events: none }
.menu.is-on { clip-path: circle(150% at calc(100% - 44px) 36px); pointer-events: auto }
.menu__in { position: relative; width: min(520px, 100% - 48px); margin: 0 auto; display: flex; flex-direction: column; gap: 0; padding-bottom: 40px }
.menu__a { font-family: var(--serif); font-size: 34px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: space-between; opacity: 0; transform: translateY(14px); transition: opacity .5s var(--ease), transform .5s var(--ease) }
.menu__a::after { content: ""; width: 9px; height: 9px; border: solid rgba(255,255,255,.4); border-width: 1.5px 1.5px 0 0; transform: rotate(45deg) }
.menu.is-on .menu__a { opacity: 1; transform: none } .menu.is-on .menu__a:nth-child(1) { transition-delay: .15s } .menu.is-on .menu__a:nth-child(2) { transition-delay: .2s } .menu.is-on .menu__a:nth-child(3) { transition-delay: .25s } .menu.is-on .menu__a:nth-child(4) { transition-delay: .3s } .menu.is-on .menu__a:nth-child(5) { transition-delay: .35s } .menu.is-on .menu__a:nth-child(6) { transition-delay: .4s } .menu.is-on .menu__a:nth-child(7) { transition-delay: .45s } .menu.is-on .menu__a:nth-child(8) { transition-delay: .5s }
.menu__a.is-on { color: var(--mint) }
.menu__langs { display: flex; gap: 24px; margin: 26px 0 18px; font-weight: 600; letter-spacing: .12em; font-size: 14px } .menu__langs a { color: rgba(255,255,255,.45) } .menu__langs a.is-on { color: #fff }
.menu .btn--dark { background: #fff; color: var(--dark) } .menu .btn--dark .btn__arr { color: var(--dark) }
.menu__tel { margin-top: 26px; font-size: 20px; font-weight: 500 } .menu__mail { color: rgba(255,255,255,.7); margin-top: 6px }
.menu__soc { margin-top: 20px } .menu__tag { margin-top: 30px; font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: rgba(255,255,255,.45); padding-top: 16px; border-top: 1px solid rgba(255,255,255,.15); width: fit-content }
body.menu-open .hdr { background: transparent; backdrop-filter: none; border-color: transparent } body.menu-open .hdr .logo__t b { color: #fff } body.menu-open .hdr .logo__t small { color: rgba(255,255,255,.55) } body.menu-open .hdr .lang, body.menu-open .hdr__cta, body.menu-open .nav { opacity: 0; pointer-events: none }

/* ---- hero */
.hero { position: relative; overflow: hidden; padding-top: 30px }
.hero__bg { position: absolute; inset: 0; z-index: 0 }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 60% }
.hero__bg::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(245,248,249,.98) 0%, rgba(245,248,249,.9) 36%, rgba(245,248,249,.3) 60%, rgba(245,248,249,0) 80%), linear-gradient(0deg, rgba(245,248,249,.85) 0, rgba(245,248,249,0) 22%) }
.hero__bg::after { content: ""; position: absolute; inset: auto 0 0; height: 200px; background: linear-gradient(180deg, rgba(245,248,249,0), var(--bg)) }
.hero__stripe { position: absolute; top: -10%; height: 130%; width: 12vw; max-width: 180px; background: rgba(255,255,255,.28); backdrop-filter: blur(2px); transform: skewX(-24deg); pointer-events: none }
.hero__stripe--1 { left: 46% } .hero__stripe--2 { left: 62%; width: 7vw; opacity: .7 }
.hero__in { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr); gap: 20px; min-height: min(72vh, 640px); align-content: start }
.hero__txt { padding-top: 40px; max-width: 760px }
.hero__h1 { font-size: clamp(54px, 7.3vw, 106px); line-height: .94; letter-spacing: -.035em; font-weight: 500; margin: 8px 0 26px; display: flex; flex-direction: column }
.hero__l2 { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--green); letter-spacing: -.02em }
.hero__p { font-size: clamp(16px, 1.4vw, 19px); color: var(--ink-2); max-width: 46ch; margin-bottom: 30px; line-height: 1.5 }
.hero__act { display: flex; align-items: center; gap: 22px; flex-wrap: wrap }
.hero__side { display: flex; position: absolute; right: 0; top: 0; flex-direction: column; align-items: center; gap: 10px; width: 110px }
.hero__side::before { content: ""; width: 1px; height: 46px; background: rgba(11,31,26,.35) }
.hero__plane { width: 18px; height: 18px; background: var(--dark); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 16v-2l-8-5V3.5a1.5 1.5 0 0 0-3 0V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5z'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 16v-2l-8-5V3.5a1.5 1.5 0 0 0-3 0V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5z'/%3E%3C/svg%3E") center/contain no-repeat }
.hero__people { font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-2); line-height: 1.7; border-left: 1px solid rgba(11,31,26,.3); padding-left: 10px; align-self: flex-end; width: 92px }
.hero__people-d { display: none }
.hero__points { display: none }
.hero__partners { display: none }
.hero__stats { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, auto); justify-content: space-between; gap: 12px; margin-top: 0; padding: 22px 0 0; background: var(--bg); box-shadow: 0 0 0 100vmax var(--bg); clip-path: inset(0 -100vmax) }
.stat b { display: block; font-size: clamp(22px, 6vw, 34px); letter-spacing: -.02em; font-weight: 500; line-height: 1 }
.stat span { display: block; font-size: clamp(10px, 2.8vw, 13px); color: var(--mute); margin-top: 6px; max-width: 14ch; line-height: 1.3 }
.stat--light b { color: #fff } .stat--light span { color: rgba(255,255,255,.65) }
.hero__foot { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: flex-end; margin-top: 30px; padding-bottom: 40px; background: var(--bg); box-shadow: 0 0 0 100vmax var(--bg); clip-path: inset(0 -100vmax) }
.hero__tag { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--mute); max-width: 18ch; line-height: 1.7; padding-top: 12px; border-top: 1px solid var(--ink) }
.scroll { display: grid; place-items: center; width: 84px; height: 84px; border-radius: 50%; border: 1px solid rgba(11,31,26,.3); position: relative; font-size: 18px }
.scroll span { position: absolute; inset: 0; font-size: 8px; letter-spacing: .3em; text-transform: uppercase; color: var(--mute); animation: spin 14s linear infinite; display: grid; place-items: center; transform-origin: center }
.scroll i { font-style: normal; animation: bob 1.8s ease-in-out infinite }
@keyframes spin { to { transform: rotate(360deg) } }
@keyframes bob { 0%,100% { transform: translateY(-3px) } 50% { transform: translateY(3px) } }
@media (min-width: 900px) {
  .hero { padding-top: 10px }
  .hero__in { grid-template-columns: minmax(0, 760px) 1fr; min-height: 520px }
  .hero__txt { padding-top: 46px }
  .hero__side { position: static; flex-direction: row; align-items: flex-start; gap: 14px; padding-top: 74px; margin-left: 4vw; width: auto }
  .hero__side::before { display: none }
  .hero__plane { width: 22px; height: 22px; transform: rotate(90deg) }
  .hero__people { font-size: 11px; letter-spacing: .3em; line-height: 2; max-width: 14ch; padding-left: 16px; width: auto; align-self: auto }
  .hero__people-d { display: inline } .hero__people-m { display: none }
  .hero__points { display: block; position: absolute; right: 0; top: 60px; margin: 0; padding: 0 0 0 18px; list-style: none; border-left: 1px solid rgba(11,31,26,.2) }
  .hero__points li { display: flex; gap: 12px; font-size: 12px; color: var(--ink-2); margin-bottom: 18px; align-items: baseline; max-width: 150px; line-height: 1.35 }
  .hero__points b { font-weight: 500; color: var(--mute) }
  .hero__partners { display: flex; align-items: center; gap: 18px; position: absolute; right: 0; bottom: 0; background: rgba(245,248,249,.94); backdrop-filter: blur(10px); padding: 18px 22px 18px 26px; border-radius: 26px 0 0 0; font-size: 13px; line-height: 1.35 }
  .hero__partners > .ic { width: 52px; height: 52px; color: var(--green) }
  .hero__partners small { color: var(--mute) }
  .hero__thumbs { display: flex } .hero__thumbs img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid var(--bg); margin-left: -8px }
  .hero__stats { justify-content: start; gap: 0; margin-top: 4px; padding: 20px 0 26px; background: none; box-shadow: none; clip-path: none; border-top: 0 }
  .hero__stats::before { content: ""; position: absolute; left: 0; top: 0; width: 900px; height: 1px; background: rgba(11,31,26,.12) }
  .hero__stats .stat { padding: 0 34px; border-right: 1px solid rgba(11,31,26,.14) }
  .hero__stats .stat:first-child { padding-left: 0 } .hero__stats .stat:last-child { border: 0 }
  .hero__stats .stat b { font-size: 34px } .hero__stats .stat span { font-size: 13px; max-width: 18ch }
  .hero__foot { display: none }
  .hero__bg::after { height: 120px; background: linear-gradient(180deg, rgba(245,248,249,0), rgba(245,248,249,.9) 70%, var(--bg)) }
  .hero__partners { bottom: -110px }
}
@media (max-width: 899px) {
  .hero__bg img { object-position: 62% 100% }
  .hero__bg::before { background: none }
  .hero__bg::after { height: 40px; background: linear-gradient(180deg, rgba(245,248,249,0), rgba(245,248,249,.6)) }
  .hero__bg img { position: absolute; left: 0; right: 0; bottom: 0; top: auto; height: 66%; object-position: 50% 35%; -webkit-mask: linear-gradient(180deg, transparent 0, #000 26%); mask: linear-gradient(180deg, transparent 0, #000 26%) }
  .hero__in { min-height: 175vw; max-height: 1000px; padding-bottom: 0; position: relative }
  .hero__txt { padding-top: 34px }
  .hero__h1 { font-size: clamp(50px, 14.5vw, 64px); margin-bottom: 18px }
  .hero__p { font-size: 15px; margin-bottom: 22px }
  .hero__act { flex-direction: column; align-items: flex-start; gap: 14px }
  .hero__act .btn { padding: 17px 26px 17px 30px }
  .hero__act .play > span:last-child { max-width: 12ch }
  .hero__foot { margin-top: 0; padding-top: 30px }
  .hero__stripe { display: block; top: 28%; height: 60%; width: 16vw; left: 30% } .hero__stripe--2 { left: 58%; width: 9vw }
}

/* ---- сеть */
.net { background: var(--dark); color: #fff; padding: clamp(48px, 7vw, 96px) 0; position: relative; overflow: hidden }
.net__in { display: grid; gap: 30px; align-items: center }
.net__txt p { color: rgba(255,255,255,.7); margin: 18px 0 26px; max-width: 46ch; font-size: 15px }
.net__map { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 16/10; background: #071410 }
.net__map img { width: 100%; height: 100%; object-fit: cover; opacity: .9 }
.net__svg { position: absolute; inset: 0; width: 100%; height: 100% }
.net__svg .arc { fill: none; stroke: var(--mint); stroke-width: 1.4; stroke-dasharray: 6 8; opacity: .8; animation: dash 6s linear infinite }
.net__svg .dot { fill: var(--mint) } .net__svg .hub { fill: #fff; stroke: var(--mint); stroke-width: 6; stroke-opacity: .35 }
.net__svg .lbl { fill: #fff; font: 500 12px var(--sans); paint-order: stroke; stroke: rgba(7,20,16,.7); stroke-width: 4px }
.net__svg .pulse { fill: none; stroke: var(--mint); stroke-width: 1; opacity: .6; animation: pulse 2.8s ease-out infinite }
@keyframes dash { to { stroke-dashoffset: -140 } }
@keyframes pulse { 0% { r: 6; opacity: .8 } 100% { r: 26; opacity: 0 } }
.net__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px }
@media (min-width: 900px) { .net__in { grid-template-columns: 1fr 1.4fr; grid-template-areas: "txt map" "stats map" } .net__txt { grid-area: txt } .net__map { grid-area: map; aspect-ratio: 16/11 } .net__stats { grid-area: stats } }

/* ---- услуги */
.svc { padding: clamp(48px, 7vw, 96px) 0 }
.svc__grid { display: grid; gap: 16px }
.svc__card { display: flex; flex-direction: column; background: #fff; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); transition: transform .45s var(--ease), box-shadow .45s var(--ease) }
.svc__card:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -30px rgba(11,31,26,.35) }
.svc__img { position: relative; aspect-ratio: 16/10; overflow: hidden }
.svc__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease) }
.svc__card:hover .svc__img img { transform: scale(1.05) }
.svc__n { position: absolute; left: 14px; top: 12px; font-size: 11px; letter-spacing: .2em; color: #fff; background: rgba(11,31,26,.45); backdrop-filter: blur(6px); padding: 5px 9px; border-radius: 8px; font-weight: 500 }
.svc__body { padding: 18px 20px 20px; display: grid; gap: 8px; position: relative; grid-template-columns: minmax(0, 1fr); grid-template-areas: "ic" "t" "p" "c" }
.svc__body > .ic { grid-area: ic; color: var(--green); margin-bottom: 4px }
.svc__body b { grid-area: t; font-size: 18px; font-weight: 600 }
.svc__body p { grid-area: p; color: var(--mute); font-size: 14px; min-width: 0; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden }
.svc__body .circ { grid-area: c; justify-self: end; margin-top: 4px }
@media (min-width: 700px) { .svc__grid { grid-template-columns: repeat(2, 1fr) } }
@media (min-width: 1100px) { .svc__grid { grid-template-columns: repeat(4, 1fr) } .svc__card:nth-child(5) { grid-column: span 4; flex-direction: row } .svc__card:nth-child(5) .svc__img { width: 42%; aspect-ratio: auto } .svc__card:nth-child(5) .svc__body { flex: 1; align-content: center } }

/* ---- перевозки */
.ships { padding: 0 0 clamp(48px, 7vw, 96px) }
.ships__grid { display: grid; gap: 18px }
.ship { display: flex; flex-direction: column; background: #fff; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); transition: transform .45s var(--ease), box-shadow .45s var(--ease) }
.ship:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -30px rgba(11,31,26,.35) }
.ship__img { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--bg-2) }
.ship__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease) }
.ship:hover .ship__img img { transform: scale(1.05) }
.ship__ph, .ship__date { position: absolute; bottom: 12px; font-size: 11px; font-weight: 600; padding: 6px 10px; border-radius: 999px; backdrop-filter: blur(6px) }
.ship__ph { left: 12px; color: #fff; background: rgba(11,31,26,.5) }
.ship__date { right: 12px; color: var(--dark); background: rgba(255,255,255,.9) }
.ship__body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 6px }
.ship__route { display: flex; align-items: center; gap: 10px; font-size: clamp(18px, 1.5vw, 24px); letter-spacing: .04em; font-weight: 600; line-height: 1.1; flex-wrap: wrap }
.ship__arr { width: 34px; height: 12px; position: relative; flex: none; color: var(--green) }
.ship__arr::before { content: ""; position: absolute; left: 0; right: 4px; top: 50%; height: 1.5px; background: currentColor }
.ship__arr::after { content: ""; position: absolute; right: 2px; top: 50%; width: 8px; height: 8px; border: solid currentColor; border-width: 1.5px 1.5px 0 0; transform: translateY(-50%) rotate(45deg) }
.ship__countries { font-size: 12px; color: var(--mute-2); letter-spacing: .04em }
.ship__cargo { font-size: 15px; color: var(--ink-2); margin-top: 6px }
.ship__meta { display: flex; gap: 8px; flex-wrap: wrap; font-size: 13px; color: var(--mute) }
.ship__meta span::after { content: "•"; margin-left: 8px; color: var(--line) } .ship__meta span:last-child::after { content: "" }
.ship__more { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; font-weight: 500; font-size: 14px }
@media (min-width: 760px) { .ships__grid { grid-template-columns: repeat(2, 1fr) } }
@media (min-width: 1100px) { .ships__grid { grid-template-columns: repeat(4, 1fr) } .home .ships__grid { grid-template-columns: repeat(2, 1fr) } }

/* ---- почему мы */
.why { padding: clamp(48px, 7vw, 96px) 0; background: var(--bg-2) }
.why__list { display: grid; gap: 0; margin-top: 30px }
.why__it { display: flex; gap: 18px; padding: 22px 0; border-top: 1px solid var(--line); align-items: flex-start }
.ico { width: 52px; height: 52px; border-radius: 50%; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; flex: none }
.ico .ic { width: 24px; height: 24px; color: var(--green) } .ico--dark .ic { color: var(--ink) }
.why__it b { display: block; font-size: 17px; font-weight: 600; margin-bottom: 4px } .why__it span { color: var(--mute); font-size: 14px }
@media (min-width: 900px) { .why__list { grid-template-columns: repeat(2, 1fr); gap: 0 60px } }

/* ---- миссия */
.mission { background: var(--dark); color: #fff; padding: clamp(48px, 7vw, 96px) 0; overflow: hidden }
.mission__in { display: grid; gap: 28px; align-items: center }
.mission__txt p { color: rgba(255,255,255,.7); margin: 16px 0 28px; max-width: 46ch }
.mission__img { border-radius: var(--r); overflow: hidden; aspect-ratio: 4/5 }
.mission__img img { width: 100%; height: 100%; object-fit: cover }
.mission__q { margin: 0; padding: 26px 0 0; position: relative; max-width: 46ch }
.mission__q .q { position: absolute; left: 0; top: -14px; font-family: var(--serif); font-size: 64px; color: var(--mint); line-height: 1; font-style: normal }
.mission__q p { font-size: 16px; line-height: 1.6; color: rgba(255,255,255,.9); margin: 18px 0 12px }
.mission__q footer { color: rgba(255,255,255,.55); font-size: 13px }
@media (min-width: 900px) { .mission__in { grid-template-columns: 1fr 1fr; grid-template-areas: "txt img" "q img" } .mission__txt { grid-area: txt } .mission__img { grid-area: img; aspect-ratio: 4/5; max-height: 640px } .mission__q { grid-area: q } }

/* ---- видео */
.video { padding: 0 0 clamp(48px, 7vw, 96px); background: var(--dark) }
.video__card { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 3/4; color: #fff }
.video__card img { width: 100%; height: 100%; object-fit: cover }
.video__card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,20,16,.7), rgba(7,20,16,0) 50%) }
.video__txt { position: absolute; inset: 0; z-index: 1; padding: 30px; display: flex; flex-direction: column; gap: 18px }
.video__txt .h2 { max-width: 12ch; font-size: clamp(30px, 3.4vw, 46px) }
.video__txt .play { margin-top: auto }
@media (min-width: 900px) { .video__card { aspect-ratio: 21/9 } .video__txt { padding: 50px } }

/* ---- партнёры */
.pt { padding: clamp(48px, 7vw, 96px) 0; text-align: left }
.pt__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 6px 0 26px }
.pt__it { background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); min-height: 84px; display: grid; place-items: center; padding: 16px; font-weight: 600; letter-spacing: .06em; color: var(--ink-2); filter: grayscale(1); transition: filter .3s, transform .3s }
.pt__it:hover { filter: none; transform: translateY(-2px) }
.pt__it img { max-height: 44px; width: auto; object-fit: contain }
@media (min-width: 900px) { .pt__grid { grid-template-columns: repeat(6, 1fr) } }

/* ---- шаги */
.steps { padding: clamp(48px, 7vw, 96px) 0; background: var(--bg-2) }
.steps__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; position: relative }
.steps__list li { display: grid; grid-template-columns: 30px 56px 1fr; gap: 14px; align-items: start; padding: 20px 0; position: relative }
.steps__list li::before { content: ""; position: absolute; left: 57px; top: 76px; bottom: -20px; width: 1px; background: var(--line) }
.steps__list li:last-child::before { display: none }
.steps__n { font-size: 12px; color: var(--mute-2); padding-top: 18px; letter-spacing: .1em }
.steps__list .ico { width: 56px; height: 56px }
.steps__list b { display: block; font-size: 17px; font-weight: 600; padding-top: 14px } .steps__list span:not(.steps__n) { color: var(--mute); font-size: 14px }
@media (min-width: 900px) { .steps__list { grid-template-columns: repeat(4, 1fr); gap: 24px } .steps__list li { grid-template-columns: 1fr; padding: 0 } .steps__list li::before { display: none } .steps__n { padding: 0 0 8px } }

/* ---- статьи */
.arts { padding: clamp(48px, 7vw, 96px) 0 }
.arts__grid { display: grid; gap: 18px }
.art { display: flex; flex-direction: column; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 14px 14px 22px; transition: transform .4s var(--ease) }
.art:hover { transform: translateY(-4px) }
.art__img { aspect-ratio: 16/10; border-radius: 12px; overflow: hidden } .art__img img { width: 100%; height: 100%; object-fit: cover }
.art__date { font-size: 12px; color: var(--mute-2) } .art b { font-size: 18px; font-weight: 600; line-height: 1.3 } .art p { color: var(--mute); font-size: 14px }
@media (min-width: 900px) { .arts__grid { grid-template-columns: repeat(3, 1fr) } }

/* ---- горизонты */
.horizon { position: relative; aspect-ratio: 16/10; max-height: 560px; overflow: hidden; background: var(--dark) }
.horizon img { width: 100%; height: 100%; object-fit: cover }
.horizon .kicker { position: absolute; left: var(--pad); top: 40px; z-index: 1; margin: 0; max-width: 16ch; line-height: 2 }
.horizon::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,20,16,.6), rgba(7,20,16,0) 45%); z-index: 1 }
@media (min-width: 900px) { .horizon { aspect-ratio: 21/9 } }

/* ---- CTA + форма */
.cta-band { background: var(--mint-2); padding: clamp(48px, 7vw, 96px) 0 }
.cta-band__in { display: grid; gap: 30px }
.cta-band__txt p { color: var(--ink-2); margin: 16px 0 26px; max-width: 40ch }
.cta-band__act { display: flex; gap: 12px; flex-wrap: wrap }
.qform { background: #fff; border-radius: var(--r); padding: 26px; display: grid; gap: 12px; box-shadow: 0 30px 60px -40px rgba(11,31,26,.4) }
.qform h3 { font-family: var(--serif); font-size: 26px; margin-bottom: 4px }
.qform__row { display: grid; gap: 12px } @media (min-width: 560px) { .qform__row { grid-template-columns: 1fr 1fr } }
.qform input, .qform textarea { width: 100%; font: inherit; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--bg); color: var(--ink); outline: none; transition: border-color .2s }
.qform input:focus, .qform textarea:focus { border-color: var(--green) }
.qform textarea { resize: vertical }
.qform__consent { display: flex; gap: 10px; align-items: flex-start; font-size: 12.5px; color: var(--mute) } .qform__consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--green) }
.qform__note { font-size: 12.5px; color: var(--mute) }
.qform__msg { padding: 12px 14px; border-radius: 10px; font-size: 14px; background: #E7F7EE; color: #146A4E } .qform__msg.is-err { background: #FCEBE7; color: #B3361C }
@media (min-width: 900px) { .cta-band__in { grid-template-columns: 1fr 1fr; align-items: center } }

/* ---- подвал */
.ftr { background: var(--dark); color: #fff; padding: clamp(40px, 6vw, 72px) 0 30px }
.ftr__top { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.1) }
.ftr__langs { display: flex; gap: 18px; font-size: 12px; letter-spacing: .1em; font-weight: 600 } .ftr__langs a { color: rgba(255,255,255,.45) } .ftr__langs a.is-on { color: #fff }
.ftr__top .btn { margin-left: auto }
.ftr__grid { display: grid; gap: 28px; padding: 30px 0 }
.ftr__contacts { display: grid; gap: 14px; font-size: 15px } .ftr__contacts a, .ftr__contacts span { display: flex; align-items: center; gap: 12px } .ftr__contacts .ic { color: var(--mint); width: 20px; height: 20px }
.ftr__soc { display: flex; gap: 10px; margin-top: 6px } .ftr__soc a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center } .ftr__soc .ic { color: #fff }
.ftr__nav { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; font-size: 14px; color: rgba(255,255,255,.75) }
.ftr__legal { font-size: 13px; color: rgba(255,255,255,.55); display: grid; gap: 8px; align-content: start }
.ftr__bot { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; color: rgba(255,255,255,.5) }
.ftr__tag { letter-spacing: .25em; text-transform: uppercase; font-size: 10px }
.totop { margin-left: auto; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); display: grid; place-items: center; color: #fff; font-size: 18px }
@media (min-width: 900px) { .ftr__grid { grid-template-columns: 1.2fr 1fr 1fr } }

/* ---- плавающий WhatsApp, лайтбокс */
.wa-fab { position: fixed; right: 18px; bottom: 18px; z-index: 40; width: 58px; height: 58px; border-radius: 50%; background: #25D366; display: grid; place-items: center; box-shadow: 0 12px 30px -10px rgba(37,211,102,.7); transition: transform .3s var(--ease) }
.wa-fab .ic { color: #fff; width: 30px; height: 30px } .wa-fab:hover { transform: scale(1.06) }
.lightbox[hidden] { display: none }
.lightbox { position: fixed; inset: 0; z-index: 60; background: rgba(7,20,16,.94); display: grid; place-items: center }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 10px }
.lightbox__x, .lightbox__nav { position: absolute; background: rgba(255,255,255,.1); color: #fff; border: 0; width: 48px; height: 48px; border-radius: 50%; font-size: 26px; cursor: pointer }
.lightbox__x { right: 18px; top: 18px } .lightbox__prev { left: 12px; top: 50% } .lightbox__next { right: 12px; top: 50% }
.lightbox__n { position: absolute; bottom: 18px; color: rgba(255,255,255,.7); font-size: 13px }

/* ---- внутренние страницы */
.page { padding: clamp(36px, 5vw, 72px) 0 }
.page__h { max-width: 820px; margin-bottom: 30px } .page__h .h2 { font-size: clamp(34px, 5vw, 64px) } .page__h p { color: var(--mute); margin-top: 14px; font-size: 17px; max-width: 60ch }
.crumbs { font-size: 12px; color: var(--mute-2); margin-bottom: 18px; display: flex; gap: 8px; flex-wrap: wrap } .crumbs a:hover { color: var(--ink) }
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px }
.chip { padding: 9px 14px; border-radius: 999px; border: 1px solid var(--line); background: #fff; font-size: 13px; font-weight: 500; color: var(--ink-2) }
.chip.is-on { background: var(--dark); color: #fff; border-color: var(--dark) }
.filters__sel { padding: 9px 14px; border-radius: 999px; border: 1px solid var(--line); background: #fff; font: inherit; font-size: 13px }
.more { display: flex; justify-content: center; margin-top: 30px }
.prose { max-width: 72ch; font-size: 17px; line-height: 1.7; color: var(--ink-2) } .prose p { margin: 0 0 1.1em } .prose h2 { font-family: var(--serif); font-size: 30px; margin: 1.4em 0 .5em } .prose h3 { font-size: 21px; margin: 1.2em 0 .4em } .prose ul { padding-left: 1.2em } .prose img { border-radius: 14px; margin: 1em 0 }
.detail { display: grid; gap: 30px } @media (min-width: 900px) { .detail { grid-template-columns: 1.3fr 1fr; align-items: start } }
.gal { display: grid; gap: 10px; grid-template-columns: repeat(2, 1fr) } .gal a { border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; display: block } .gal a:first-child { grid-column: 1 / -1; aspect-ratio: 16/10 } .gal img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease) } .gal a:hover img { transform: scale(1.04) }
.spec { display: grid; gap: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 8px 22px }
.spec div { display: flex; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 15px } .spec div:last-child { border: 0 } .spec span { color: var(--mute) } .spec b { font-weight: 600; text-align: right }
.route-big { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; font-size: clamp(30px, 5vw, 56px); font-weight: 600; letter-spacing: .02em; line-height: 1; margin: 6px 0 10px } .route-big .ship__arr { width: 56px; height: 16px }
.contact-grid { display: grid; gap: 24px } @media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.2fr } }
.contact-list { display: grid; gap: 16px; font-size: 17px } .contact-list a, .contact-list span { display: flex; gap: 14px; align-items: center } .contact-list .ic { color: var(--green) }
.map-frame { border-radius: var(--r); overflow: hidden; aspect-ratio: 4/3; background: var(--bg-2) } .map-frame iframe { width: 100%; height: 100%; border: 0 }
.svc-list { display: grid; gap: 18px } @media (min-width: 900px) { .svc-list { grid-template-columns: repeat(3, 1fr) } }
.p404 { text-align: center; padding: 100px 0 } .p404 .h2 { font-size: 80px }

/* ---- появление при прокрутке (лёгкие анимации; полная проработка блоков — отдельным этапом) */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0ms) }
.reveal.in { opacity: 1; transform: none }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none } .scroll span, .scroll i, .net__svg .arc, .net__svg .pulse { animation: none } }

/* ---- экран 2 (десктоп по макету 07.09): карта слева, услуги в панели, тёмная видео-карточка справа; ниже — перевозки, почему, миссия */
@media (min-width: 1100px) {
  .s2 { display: grid; grid-template-columns: 300px minmax(0, 1fr) 280px; grid-template-areas: "net svc video" "ships ships ships" "why why why" "mission mission mission"; gap: 0 22px; width: min(var(--wrap), 100% - var(--pad) * 2); margin: 0 auto; padding-top: 30px }
  .s2 > section > .wrap { width: auto }
  .s2 .net { grid-area: net; background: transparent; color: var(--ink); padding: 0; display: flex; flex-direction: column }
  .s2 .net__in { display: flex; flex-direction: column; gap: 22px; height: 100% }
  .s2 .net__map { order: -1; aspect-ratio: 3/4; border-radius: var(--r); flex: 1 }
  .s2 .net__txt p { color: var(--mute); margin: 12px 0 18px } .s2 .net__txt .h2 { font-size: 30px } .s2 .net__txt .kicker { color: var(--green) }
  .s2 .net__txt .btn--ghost-light { color: var(--dark); border-color: rgba(11,31,26,.25) }
  .s2 .net__stats { display: none }
  .s2 .svc { grid-area: svc; padding: 26px; background: #fff; border-radius: var(--r); border: 1px solid var(--line) }
  .s2 .svc .sec-h { margin-bottom: 22px } .s2 .svc .h2 { font-size: 34px; font-family: var(--sans) }
  .s2 .svc__grid { grid-template-columns: repeat(4, 1fr); gap: 12px }
  .s2 .svc__card { border-radius: 16px; background: var(--bg) } .s2 .svc__card:nth-child(5) { flex-direction: row } .s2 .svc__card:nth-child(5) .svc__img { width: 30%; aspect-ratio: auto }
  .s2 .svc { align-self: start }
  .s2 .svc__body { padding: 14px 14px 16px } .s2 .svc__body b { font-size: 15px } .s2 .svc__body p { font-size: 12.5px; -webkit-line-clamp: 4 } .s2 .svc__body .circ { width: 36px; height: 36px }
  .s2 .video { grid-area: video; padding: 0; background: transparent }
  .s2 .video__card { aspect-ratio: auto; height: 100%; min-height: 560px } .s2 .video__card img { position: absolute; inset: 0; height: 100% } .s2 .video__txt { padding: 30px } .s2 .video__txt .h2 { font-size: 15px; letter-spacing: .22em; text-transform: uppercase; font-family: var(--sans); line-height: 1.8; max-width: none } .s2 .video__txt .kicker { display: none }
  .s2 .ships { grid-area: ships; padding-top: clamp(48px, 7vw, 96px) } .s2 .ships__grid { grid-template-columns: repeat(4, 1fr) }
  .s2 .why { grid-area: why; background: transparent; padding-bottom: 20px }
  .s2 .mission { grid-area: mission; border-radius: var(--r); padding: 60px 50px; margin-top: 30px }
}

/* ---- футер как карточка на мобилке (референс) */
.ftr__plane { display: none }
@media (max-width: 899px) {
  .ftr { border-radius: 26px 26px 0 0; padding-top: 44px }
  .ftr__top { flex-direction: column; align-items: flex-start; gap: 26px; border: 0; padding-bottom: 10px }
  .ftr__top .btn { margin-left: 0; width: 100%; justify-content: space-between; padding: 18px 22px 18px 26px }
  .ftr__grid { padding: 10px 0 20px; gap: 26px }
  .ftr__nav { display: none }
  .ftr__legal { position: relative; padding-right: 60px; font-size: 14px }
  .ftr__plane { display: block; position: absolute; right: 6px; top: 0; width: 26px; height: 26px; background: rgba(255,255,255,.7); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 16v-2l-8-5V3.5a1.5 1.5 0 0 0-3 0V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5z'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 16v-2l-8-5V3.5a1.5 1.5 0 0 0-3 0V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5z'/%3E%3C/svg%3E") center/contain no-repeat }
  .ftr__bot { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 18px }
  .ftr__tag { order: 3; grid-column: 1 / -1; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.15); width: fit-content; font-size: 11px; line-height: 1.8 }
  .totop { margin: 0 }
}

/* ---- сплэш-прелодер главной (2.5 с): маршрут-дуга, самолёт по дуге, эмблема с кольцами, слово, прогресс. Затем уходит вверх. */
.splash { position: fixed; inset: 0; z-index: 100; background: var(--dark); color: #fff; overflow: hidden; display: grid; place-items: center; transition: clip-path .7s cubic-bezier(.7,0,.2,1); clip-path: inset(0 0 0 0) }
.splash.is-out { clip-path: inset(0 0 100% 0) }
.splash.is-gone { display: none }
body.has-splash.splash-lock { overflow: hidden }
.splash__grid { position: absolute; inset: 0; background: radial-gradient(rgba(143,240,207,.16) 1px, transparent 1.4px) 0 0/26px 26px; -webkit-mask: radial-gradient(ellipse at center, #000 20%, transparent 75%); mask: radial-gradient(ellipse at center, #000 20%, transparent 75%); opacity: 0; animation: sp-fade .9s .1s forwards }
.splash__route { position: absolute; inset: 0; width: 100%; height: 100% }
.splash__arc { fill: none; stroke: var(--mint); stroke-width: 1.5; stroke-dasharray: 7 9; opacity: .75; stroke-dashoffset: 1600; animation: sp-arc 1.7s .25s cubic-bezier(.4,0,.2,1) forwards }
.splash__pt { fill: var(--mint); opacity: 0; animation: sp-fade .3s .35s forwards } .splash__pt--2 { animation-delay: 1.75s }
.splash__plane { opacity: 0; animation: sp-plane 1.7s .25s linear forwards; filter: drop-shadow(0 0 6px rgba(143,240,207,.9)) }
.splash__logo { position: relative; width: clamp(120px, 26vw, 168px); aspect-ratio: 1; display: grid; place-items: center; opacity: 0; transform: scale(.6); filter: blur(10px); animation: sp-logo 1s .5s cubic-bezier(.2,.8,.2,1) forwards }
.splash__logo img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; -webkit-mask: radial-gradient(circle, #000 60%, transparent 71%); mask: radial-gradient(circle, #000 60%, transparent 71%) }
.splash__ring { position: absolute; inset: -6px; border-radius: 50%; border: 1px solid rgba(143,240,207,.7); opacity: 0; animation: sp-ring 1.6s 1.1s ease-out forwards } .splash__ring--2 { animation-delay: 1.5s }
.splash__word { position: absolute; top: calc(50% + clamp(70px, 15vw, 100px)); text-align: center; display: grid; gap: 8px }
.splash__word b { font-size: clamp(22px, 5vw, 30px); letter-spacing: .12em; font-weight: 700; opacity: 0; transform: translateY(10px); animation: sp-up .7s 1.1s var(--ease) forwards }
.splash__word small { font-size: 10px; letter-spacing: .42em; text-transform: uppercase; color: var(--mint); opacity: 0; animation: sp-track .9s 1.4s var(--ease) forwards }
.splash__tag { position: absolute; left: var(--pad); bottom: 34px; font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: rgba(255,255,255,.45); opacity: 0; animation: sp-fade .6s 1.3s forwards }
.splash__bar { position: absolute; left: 0; bottom: 0; height: 2px; width: 100%; background: var(--mint); transform-origin: left; transform: scaleX(0); animation: sp-bar 2.4s .1s linear forwards }
@keyframes sp-fade { to { opacity: 1 } }
@keyframes sp-arc { to { stroke-dashoffset: 0 } }
@keyframes sp-plane { 0% { opacity: 0 } 8% { opacity: 1 } 90% { opacity: 1 } 100% { opacity: 0 } }
@keyframes sp-logo { to { opacity: 1; transform: none; filter: blur(0) } }
@keyframes sp-ring { 0% { opacity: .9; transform: scale(1) } 100% { opacity: 0; transform: scale(1.9) } }
@keyframes sp-up { to { opacity: 1; transform: none } }
@keyframes sp-track { 0% { opacity: 0; letter-spacing: .9em } 100% { opacity: 1; letter-spacing: .42em } }
@keyframes sp-bar { to { transform: scaleX(1) } }
@media (prefers-reduced-motion: reduce) { .splash { display: none } }

/* ---- хиро «Взлёт + Маршруты мира»: посадка из сплэша, буквы взлетают, курсив штрихом, веер маршрутов с самолётиками, tilt мышью, параллакс на скролле */
.hero__bg { transform-style: preserve-3d; will-change: transform }
.hero.tilt .hero__bg { transform: perspective(1400px) rotateX(var(--ry, 0deg)) rotateY(var(--rx, 0deg)) scale(1.04); transition: transform .25s ease-out }
.hero.tilt .hero__bg picture { transform: translate3d(calc(var(--mx, 0) * -8px), calc(var(--my, 0) * -5px), 0); transition: transform .25s ease-out; display: block; height: 100% }
.hero.tilt .hero__fly, .hero.tilt .hero__flyplane, .hero.tilt .hero__mark, .hero.tilt .hero__mini { --lift: 1 }
.hero.tilt .hero__fly { transform: translate3d(calc(var(--mx, 0) * 18px), calc(var(--my, 0) * 12px), 0); transition: transform .25s ease-out }
.hero__dots { position: absolute; inset: 0; background: radial-gradient(rgba(11,31,26,.55) 1px, transparent 1.5px) 0 0/18px 18px; opacity: 0; transition: opacity 1.4s var(--ease) .3s; -webkit-mask: radial-gradient(ellipse 60% 70% at var(--dx, 72%) var(--dy, 60%), #000 0, transparent 100%); mask: radial-gradient(ellipse 60% 70% at var(--dx, 72%) var(--dy, 60%), #000 0, transparent 100%); pointer-events: none }
.hero.is-in .hero__dots { opacity: .35 } .hero.lite .hero__dots { display: none }
.hero__fly { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; overflow: visible }
.hero__fly-arc { fill: none; stroke: var(--green); stroke-width: 1.5; stroke-dasharray: 6 8; opacity: .85 }
.hero__fly-draw { fill: none; stroke: #fff; stroke-width: 12; stroke-dasharray: 1; stroke-dashoffset: 1 }
.hero__routes path { fill: none; stroke: var(--dark); stroke-width: 1.1; stroke-dasharray: 4 7; opacity: .55 }
.hero__routes-draw path { fill: none; stroke: #fff; stroke-width: 10; stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 1.6s cubic-bezier(.5,0,.3,1); transition-delay: var(--d, 0s) }
.hero.routes-on .hero__routes-draw path { stroke-dashoffset: 0 }
.hero__routes-pts circle { fill: #fff; stroke: var(--dark); stroke-width: 1.5; opacity: 0; transition: opacity .5s; transition-delay: calc(var(--d, 0s) + 1.5s) } .hero.routes-on .hero__routes-pts circle { opacity: .9 }
.hero__routes-pts text { font: 500 10px var(--sans); letter-spacing: .12em; text-transform: uppercase; fill: var(--dark); opacity: 0; transition: opacity .5s; transition-delay: calc(var(--d, 0s) + 1.6s); paint-order: stroke; stroke: rgba(245,248,249,.85); stroke-width: 3px } .hero.routes-on .hero__routes-pts text { opacity: .8 }
.hero__flyplane, .hero__mini { position: absolute; left: 0; top: 0; background: var(--dark); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 16v-2l-8-5V3.5a1.5 1.5 0 0 0-3 0V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5z'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 16v-2l-8-5V3.5a1.5 1.5 0 0 0-3 0V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5z'/%3E%3C/svg%3E") center/contain no-repeat; opacity: 0; z-index: 2; pointer-events: none }
.hero__flyplane { width: 28px; height: 28px; margin: -14px 0 0 -14px; filter: drop-shadow(0 4px 10px rgba(11,31,26,.45)); transition: opacity .4s }
.hero__mini { width: 13px; height: 13px; margin: -6.5px 0 0 -6.5px; filter: drop-shadow(0 2px 4px rgba(11,31,26,.4)) }
.hero__mark { position: absolute; width: 14px; height: 14px; margin: -7px 0 0 -7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 3px rgba(11,31,26,.6), 0 0 18px rgba(143,240,207,.9); opacity: 0; transform: scale(.3); transition: opacity .4s, transform .5s var(--ease); z-index: 2 }
.hero__mark i { position: absolute; inset: -4px; border-radius: 50%; border: 1.5px solid var(--mint); opacity: 0 }
.hero__mark.on { opacity: 1; transform: none } .hero__mark.on i { animation: mark-pulse 2.4s ease-out infinite } .hero__mark.on i:last-child { animation-delay: 1.2s }
@keyframes mark-pulse { 0% { transform: scale(1); opacity: .9 } 100% { transform: scale(3.2); opacity: 0 } }
/* заголовок: буквы взлетают снизу с поворотом (типографский взлёт), курсив — штрих */
.hero .w { display: inline-block; overflow: hidden; padding: 0 .04em .14em 0; margin-bottom: -.14em; vertical-align: top }
.hero .c { display: inline-block; opacity: 0; transform: translateY(105%) rotate(6deg); transform-origin: 0 100%; transition: opacity .5s var(--ease), transform .9s cubic-bezier(.2,.8,.2,1); transition-delay: calc(var(--j, 0) * 28ms) }
.hero.is-in .c { opacity: 1; transform: none }
.hero__l2 { position: relative; display: inline-block }
.hero__l2.is-svg { color: transparent }
.hero__l2 svg { position: absolute; left: 0; top: 0; overflow: visible; pointer-events: none }
.hero__l2 svg text { font: inherit; fill: var(--green); fill-opacity: 0; stroke: var(--green); stroke-width: 1.2px; stroke-dasharray: 1; stroke-dashoffset: 1; transition: fill-opacity .9s var(--ease) 2.1s }
.hero.is-in .hero__l2 svg text { animation: l2-draw 2s .9s cubic-bezier(.5,0,.3,1) forwards; fill-opacity: 1 }
@keyframes l2-draw { to { stroke-dashoffset: 0 } }
.hero .kicker, .hero__p, .hero__act, .hero__side, .hero__points, .hero__partners { opacity: 0; transform: translateY(14px); transition: opacity .8s var(--ease), transform .8s var(--ease) }
.hero.is-in .kicker { opacity: 1; transform: none; transition-delay: .1s } .hero.is-in .hero__p { opacity: 1; transform: none; transition-delay: 1s } .hero.is-in .hero__act { opacity: 1; transform: none; transition-delay: 1.2s }
.hero.is-in .hero__side, .hero.is-in .hero__points { opacity: 1; transform: none; transition-delay: 1.3s } .hero.is-in .hero__partners { opacity: 1; transform: none; transition-delay: 2s }
.hero__thumbs img { opacity: 0; transform: translate(40px, -20px) rotate(20deg) scale(.6); transition: opacity .6s var(--ease), transform .8s cubic-bezier(.2,.8,.2,1) } .hero__thumbs img:nth-child(2) { transition-delay: .15s } .hero__thumbs img:nth-child(3) { transition-delay: .3s }
.hero.is-in .hero__thumbs img { opacity: 1; transform: none; transition-delay: calc(2.3s + var(--k, 0s)) } .hero.is-in .hero__thumbs img:nth-child(2) { --k: .18s } .hero.is-in .hero__thumbs img:nth-child(3) { --k: .36s }
.hero .reveal { transition-delay: .3s }
/* параллакс при скролле: фото медленнее текста, полосы плывут по диагонали */
@supports (animation-timeline: scroll()) {
  .hero__bg picture img { animation: hero-par linear both; animation-timeline: scroll(root); animation-range: 0 100vh }
  .hero__stripe { animation: hero-stripe linear both; animation-timeline: scroll(root); animation-range: 0 100vh }
  .hero__stripe--2 { animation-name: hero-stripe2 }
  @keyframes hero-par { to { transform: translateY(22%) scale(1.06) } }
  @keyframes hero-stripe { to { transform: skewX(-24deg) translateX(-30vw) } }
  @keyframes hero-stripe2 { to { transform: skewX(-24deg) translateX(-14vw) } }
}
@media (prefers-reduced-motion: reduce) { .hero .c, .hero .kicker, .hero__p, .hero__act, .hero__side, .hero__points, .hero__partners, .hero__thumbs img { opacity: 1; transform: none; filter: none; transition: none } .hero__fly, .hero__flyplane, .hero__mini, .hero__mark, .hero__dots { display: none } .hero__l2.is-svg { color: var(--green) } .hero__l2 svg { display: none } }
