/* =============================================
   PickPack.kz — Cinematic style like mvplogistics.eu
   ============================================= */

:root {
  --green:   #2F8F79;
  --green-d: #237360;
  --green-l: #5bb8a4;
  --dark:    #080c18;
  --dark-2:  #0d1117;
  --dark-3:  #141924;
  --dark-4:  #1c2333;
  --light:   #f0f4f8;
  --muted:   #8494a8;
  --border:  rgba(255,255,255,0.08);
  --font:    'Barlow', -apple-system, sans-serif;
  --heading: 'Barlow Condensed', 'Barlow', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: auto;
  font-size: 16px;
  scrollbar-gutter: stable;
}
body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 48px; }
.section-pad { padding: 120px 0; }

/* =============================================
   PRELOADER
   ============================================= */
.preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--dark);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 60px;
  pointer-events: all;
}

/* Center: logo + tag */
.preloader__center {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 24px;
  position: relative;
}
/* Subtle glow behind logo */
.preloader__center::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(34,197,94,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.preloader__logo-img {
  width: clamp(180px, 30vw, 300px); height: auto;
  opacity: 0; transform: translateY(20px);
  position: relative; z-index: 1;
  will-change: transform, opacity;
}
.preloader__tag {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.45em;
  text-transform: uppercase; color: var(--muted);
  opacity: 0; position: relative; z-index: 1;
}

/* Bottom: line + counter */
.preloader__bottom {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding-top: 20px;
}
.preloader__line-wrap {
  flex: 1;
  height: 2px;
  margin-right: 32px;
  overflow: hidden;
  border-radius: 2px;
  background: transparent;
}
.preloader__line { height: 100%; background: var(--green); width: 0; }
.preloader__counter {
  font-family: var(--heading); font-size: 1rem; font-weight: 800;
  letter-spacing: 0.1em; color: var(--muted);
  white-space: nowrap; min-width: 52px; text-align: right;
}

/* =============================================
   PAGE TRANSITION
   ============================================= */
.transition-plug {
  position: fixed; inset: 0; z-index: 900;
  background: var(--dark);
  transform: translateY(-105%);
  pointer-events: none;
}
.transition-plug__inner {
  position: absolute; left: 0; top: 0; width: 100%; height: 0;
  background: #1a2740;
}

/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 500;
  transform: translateY(-110%);
  background: transparent;
  padding: 22px 0;
  transition: padding 0.4s;
}
.header.scrolled {
  padding: 14px 0;
}
.header__inner {
  max-width: 1240px; margin: 0 auto; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.header__logo {
  display: flex; align-items: center;
  flex-shrink: 0;
}
.header__logo-img {
  height: 30px; width: auto;
  display: block;
  /* "pick" is white in our logo.svg, "pack" is teal — looks great on dark bg */
}
.footer__logo-img {
  height: 26px; width: auto;
  display: block;
  opacity: 0.8;
}
/* Nav pill container */
.header__nav {
  display: flex; gap: 0;
  background: rgba(240, 244, 248, 0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 6px 8px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Nav links inside pill */
.nav-link {
  position: relative;
  display: inline-block;
  padding: 7px 18px;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border-radius: 100px;
  transition: color 0.3s, background 0.3s;
}
.nav-link:hover {
  color: white;
  background: rgba(255,255,255,0.08);
}
.nav-link.active {
  color: white;
  background: rgba(255,255,255,0.1);
}

.header__right { display: flex; align-items: center; gap: 12px; }
.header__cta {
  position: relative; overflow: hidden;
  background: var(--green); color: white;
  padding: 10px 24px; border-radius: 100px;
  font-weight: 700; font-size: 0.88rem;
  border: 1.5px solid var(--green);
  transition: box-shadow 0.3s;
  z-index: 0;
}
.header__cta::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--green-d);
  border-radius: inherit;
  transform: translateX(-101%);
  transition: transform 0.45s var(--ease-out);
  z-index: -1;
}
.header__cta:hover::before { transform: translateX(0); }
.header__cta:hover { box-shadow: 0 4px 16px rgba(47,143,121,0.35); }

button.header__login {
  font-family: inherit;
  cursor: pointer;
  background: transparent;
}
.header__login {
  position: relative; overflow: hidden;
  padding: 9px 22px; border-radius: 100px;
  font-weight: 600; font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  border: 1.5px solid rgba(255,255,255,0.16);
  transition: color 0.3s, border-color 0.3s;
  z-index: 0;
}
.header__login::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.07);
  border-radius: inherit;
  transform: translateX(-101%);
  transition: transform 0.45s var(--ease-out);
  z-index: -1;
}
.header__login:hover::before { transform: translateX(0); }
.header__login:hover { color: white; border-color: rgba(255,255,255,0.35); }
.header__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 1px solid var(--border);
  padding: 9px 11px; border-radius: 8px; cursor: pointer;
}
.header__burger span { width: 20px; height: 2px; background: white; display: block; transition: all 0.3s; border-radius: 2px; }
.header__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.open span:nth-child(2) { opacity: 0; }
.header__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mob-nav {
  display: none; position: fixed; top: 72px; left: 0; width: 100%; z-index: 490;
  background: rgba(8,12,24,0.98); backdrop-filter: blur(24px);
  flex-direction: column; border-bottom: 1px solid var(--border);
}
.mob-nav nav { display: flex; flex-direction: column; padding: 20px 32px 36px; gap: 4px; }
.mob-nav a { padding: 14px 0; font-size: 1.1rem; font-weight: 500; color: var(--muted); border-bottom: 1px solid var(--border); transition: color 0.2s; }
.mob-nav a:hover, .mob-nav a:last-child { color: var(--green); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative; width: 100%;
  height: 100vh;        /* fallback */
  height: 100svh;       /* modern: excludes mobile browser chrome */
  min-height: 680px;
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.08); }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(8,12,24,0.92) 35%, rgba(8,12,24,0.55) 100%),
              linear-gradient(to top, rgba(8,12,24,0.8) 0%, transparent 50%);
}

.hero__particles {
  position: absolute;
  top: 106px;
  left: 0; right: 0;
  width: 100%;
  height: 180px;
  z-index: 2;
  pointer-events: none;
  display: block;
}
.hero__brand-v {
  position: absolute; right: 48px; top: 50%; transform: translateY(-50%) rotate(90deg);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.4em;
  color: rgba(255,255,255,0.2); white-space: nowrap; z-index: 2;
  transform-origin: center center;
}

/* Hero content */
.hero__content {
  position: relative; z-index: 3;
  padding: 100px 48px 90px;
  max-width: 900px;
  /* 100px top padding so content doesn't overlap with header */
}
.hero__tag {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 24px;
  /* Hidden initially — GSAP reveals during intro */
  opacity: 0; transform: translateY(16px);
}
.hero__title {
  font-family: var(--heading); font-weight: 900;
  font-size: clamp(2.8rem, 5.5vw, 6rem);
  line-height: 0.95; letter-spacing: -0.02em; text-transform: uppercase;
  color: white; margin-bottom: 36px;
}
.hero__title em { font-style: italic; color: var(--green); }

/* Split line animation — initial CSS state (hidden BEFORE GSAP runs) */
.split-line { display: block; overflow: hidden; }
.split-inner { display: block; transform: translateY(105%); will-change: transform; }

/* Separator line */
.hero__sep {
  height: 1px; background: var(--green); width: 0;
  margin-bottom: 40px; will-change: width;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; opacity: 0; will-change: opacity; }

/* ============================================
   BUTTONS — sweep fill effect (newscatcherapi style)
   ============================================ */

/* Filled CTA — sweeps darker shade on hover */
.btn-main {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: white;
  padding: 15px 36px; border-radius: 100px;
  font-weight: 700; font-size: 0.95rem; font-family: var(--font);
  border: 1.5px solid var(--green); cursor: pointer;
  box-shadow: 0 4px 20px rgba(47,143,121,0.28);
  transition: box-shadow 0.3s;
  z-index: 0;
}
.btn-main::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--green-d);
  border-radius: inherit;
  transform: translateX(-101%);
  transition: transform 0.5s var(--ease-out);
  z-index: -1;
}
.btn-main:hover::before { transform: translateX(0); }
.btn-main:hover { box-shadow: 0 8px 32px rgba(47,143,121,0.38); }

/* Ghost button — outline sweeps to semi-fill on hover */
.btn-ghost {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,0.65);
  padding: 15px 36px; border-radius: 100px;
  font-weight: 600; font-size: 0.95rem;
  border: 1.5px solid rgba(255,255,255,0.18);
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
  z-index: 0;
}
.btn-ghost::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.06);
  border-radius: inherit;
  transform: translateX(-101%);
  transition: transform 0.5s var(--ease-out);
  z-index: -1;
}
.btn-ghost:hover::before { transform: translateX(0); }
.btn-ghost:hover { color: white; border-color: rgba(255,255,255,0.35); }

/* ---- Hero Slider (service card) ---- */
.hero-slider {
  position: absolute; right: 0; bottom: 0; z-index: 10;
  width: 340px; transform: translateX(110%);
  background: rgba(13,17,23,0.88);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid var(--border); border-top: 1px solid var(--border);
}
.hslide { padding: 36px 40px 40px; }
.hslide__num { font-family: var(--heading); font-size: 0.85rem; font-weight: 800; letter-spacing: 0.15em; color: var(--muted); margin-bottom: 20px; }
.hslide__sep, .hslide__total { color: rgba(255,255,255,0.2); }
.hslide__line { height: 2px !important; background: var(--border) !important; margin: 0 0 24px !important; border-radius: 0 !important; }
.hslide__line .swiper-pagination-progressbar-fill { background: var(--green) !important; }
.hslide__title { font-family: var(--heading); font-size: 1.3rem; font-weight: 800; text-transform: uppercase; line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 16px; }
.hslide__desc { color: var(--muted); font-size: 0.88rem; line-height: 1.65; margin-bottom: 28px; }
.hslide__link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green); color: white; font-size: 1.1rem;
  transition: background 0.2s, transform 0.2s;
}
.hslide__link:hover { background: var(--green-d); transform: scale(1.1); }

/* Swiper override for progress */
.swiper-pagination-progressbar { background: var(--border) !important; }
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill { background: var(--green) !important; }

/* Scroll indicator */
.hero__scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 4; color: rgba(255,255,255,0.3);
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; opacity: 0;
}
.hero__scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--green), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { transform: scaleY(1); opacity: 1; } 50% { transform: scaleY(0.4); opacity: 0.4; } }

/* =============================================
   MARQUEE
   ============================================= */
.marquee-wrap { overflow: hidden; background: var(--dark-3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 14px 0; }
.marquee-track { display: flex; align-items: center; width: max-content; animation: marqueeRoll 28s linear infinite; }
.marquee-track span { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.22em; color: var(--muted); padding: 0 20px; white-space: nowrap; }
.marquee-track b { color: var(--green); }
@keyframes marqueeRoll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* =============================================
   SECTION TYPOGRAPHY
   ============================================= */
.tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--green);
  margin-bottom: 20px;
}
.tag.light { color: #86efac; }

.section-title {
  font-family: var(--heading); font-weight: 900;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.95; letter-spacing: -0.02em; text-transform: uppercase;
  margin-bottom: 48px;
}
.section-title.light { color: white; }

/* Split animation (used for section titles) */
.split-title .split-line { display: block; overflow: hidden; }
.split-title .split-inner { display: block; transform: translateY(105%); }

/* =============================================
   ABOUT TEASER
   ============================================= */
/* =============================================
   ABOUT TEASER — mvplogistics style, from depth
   ============================================= */
.about-teaser {
  position: relative;
  background: var(--dark);
  padding: 48px 48px 160px;
  overflow: hidden;
}
.at-scene {
  position: relative;
  z-index: 1;
}
.at-card {
  position: relative;
  background: var(--dark-3);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 24px 60px rgba(0,0,0,0.4);
  transform: scale(0.82) translateY(60px);
  opacity: 0;
  transform-origin: center bottom;
}
.at-card-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 32px 48px 0;
}
.at-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
}
.at-brand {
  font-family: var(--heading); font-size: 0.78rem; font-weight: 900;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted);
}
.at-card-body {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
  padding: 56px 48px 48px;
}
.at-card-left { display: flex; flex-direction: column; gap: 32px; }
.at-title {
  font-family: var(--heading); font-size: clamp(2.4rem, 4vw, 4.2rem);
  font-weight: 900; text-transform: uppercase; line-height: 1.0;
  letter-spacing: -0.01em; color: white;
}
.at-features {
  display: flex; flex-direction: column; gap: 12px;
  list-style: none; padding: 0; margin: 0;
}
.at-features li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.55);
  border-bottom: 1px solid var(--border); padding-bottom: 12px;
}
.at-feat-icon { color: var(--green); font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }
.at-card-right > p {
  color: var(--muted); font-size: 0.95rem; line-height: 1.75;
  margin-bottom: 36px;
}
.at-metrics {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  margin-bottom: 36px;
}
.at-metric {
  background: var(--dark-4);
  padding: 24px 28px;
  display: flex; flex-direction: column; gap: 6px;
}
.m-num {
  font-family: var(--heading); font-size: 2.4rem; font-weight: 900;
  color: var(--green); line-height: 1;
}
.m-num sup { font-size: 1.1rem; }
.m-lbl { font-size: 0.8rem; color: var(--muted); line-height: 1.4; }

/* "Подробнее о нас" button — white outlined rectangle (like mvplogistics) */
.btn-about-more {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center;
  padding: 18px 40px;
  border: 1.5px solid rgba(255,255,255,0.85);
  border-radius: 4px;
  font-family: var(--heading); font-size: 0.85rem;
  font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: white;
  transition: color 0.4s, border-color 0.4s;
  z-index: 0;
}
.btn-about-more::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--green);
  transform: translateX(-101%);
  transition: transform 0.5s var(--ease-out);
  z-index: -1;
}
.btn-about-more:hover::before { transform: translateX(0); }
.btn-about-more:hover { color: white; border-color: var(--green); }

/* Marquee — full-width strip at bottom of card, below button */
.at-marquee-wrap {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.at-marquee-track {
  display: inline-flex; align-items: center; gap: 48px;
  animation: atMarquee 28s linear infinite;
  will-change: transform;
  padding: 22px 0;
}
.at-marquee-text {
  font-family: 'Barlow Condensed', var(--heading);
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.1);
  line-height: 1;
  white-space: nowrap;
}
.at-marquee-dot {
  font-family: var(--heading);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 400;
  color: var(--green);
  opacity: 0.25;
  flex-shrink: 0;
}
@keyframes atMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* link-arrow kept for other uses */
.link-arrow { color: var(--green); font-weight: 700; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 8px; transition: gap 0.3s; }
.link-arrow:hover { gap: 16px; }

/* Vanta FOG container — canvas is forced absolute via JS */
#vanta-fog {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden; pointer-events: none;
}

/* =============================================
   SERVICES — cubic split, alternating green/dark
   ============================================= */
.services-mvp {
  position: relative;
  background: var(--dark);
  /* NO overflow:hidden — it kills position:sticky on child cards */
}

.svc-layout {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: start;
}

/* ── Left: sticky, square image cube matching right cards ── */
.svc-left {
  position: sticky;
  top: calc(50vh - 21vw + 25px);
  height: calc(42vw - 50px);
  max-height: calc(100vh - 80px);
  padding: 0 10px 0 40px;
  align-self: flex-start;
}

.svc-img-wrap {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 20px; overflow: hidden;
  background: #060c18;
}

/* Scattered dot background — SVG tile with random dot placement */
.services-mvp::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320'%3E%3Ccircle cx='14' cy='23' r='1' fill='%232f8f79' opacity='.5'/%3E%3Ccircle cx='52' cy='9' r='1.2' fill='%232f8f79' opacity='.35'/%3E%3Ccircle cx='91' cy='38' r='0.9' fill='%232f8f79' opacity='.55'/%3E%3Ccircle cx='137' cy='14' r='1.1' fill='%232f8f79' opacity='.4'/%3E%3Ccircle cx='178' cy='31' r='1' fill='%232f8f79' opacity='.45'/%3E%3Ccircle cx='223' cy='7' r='0.8' fill='%232f8f79' opacity='.5'/%3E%3Ccircle cx='268' cy='44' r='1.2' fill='%232f8f79' opacity='.35'/%3E%3Ccircle cx='305' cy='19' r='1' fill='%232f8f79' opacity='.5'/%3E%3Ccircle cx='7' cy='71' r='1.1' fill='%232f8f79' opacity='.4'/%3E%3Ccircle cx='38' cy='88' r='0.9' fill='%232f8f79' opacity='.5'/%3E%3Ccircle cx='79' cy='62' r='1' fill='%232f8f79' opacity='.45'/%3E%3Ccircle cx='118' cy='95' r='1.2' fill='%232f8f79' opacity='.35'/%3E%3Ccircle cx='163' cy='77' r='0.8' fill='%232f8f79' opacity='.55'/%3E%3Ccircle cx='201' cy='103' r='1' fill='%232f8f79' opacity='.4'/%3E%3Ccircle cx='247' cy='68' r='1.1' fill='%232f8f79' opacity='.5'/%3E%3Ccircle cx='289' cy='91' r='0.9' fill='%232f8f79' opacity='.35'/%3E%3Ccircle cx='316' cy='76' r='1' fill='%232f8f79' opacity='.45'/%3E%3Ccircle cx='22' cy='131' r='0.9' fill='%232f8f79' opacity='.5'/%3E%3Ccircle cx='61' cy='148' r='1.2' fill='%232f8f79' opacity='.4'/%3E%3Ccircle cx='104' cy='122' r='1' fill='%232f8f79' opacity='.5'/%3E%3Ccircle cx='149' cy='139' r='0.8' fill='%232f8f79' opacity='.45'/%3E%3Ccircle cx='188' cy='116' r='1.1' fill='%232f8f79' opacity='.35'/%3E%3Ccircle cx='234' cy='152' r='1' fill='%232f8f79' opacity='.55'/%3E%3Ccircle cx='272' cy='128' r='0.9' fill='%232f8f79' opacity='.4'/%3E%3Ccircle cx='310' cy='145' r='1.2' fill='%232f8f79' opacity='.5'/%3E%3Ccircle cx='9' cy='177' r='1' fill='%232f8f79' opacity='.45'/%3E%3Ccircle cx='47' cy='193' r='0.8' fill='%232f8f79' opacity='.5'/%3E%3Ccircle cx='88' cy='169' r='1.1' fill='%232f8f79' opacity='.35'/%3E%3Ccircle cx='131' cy='186' r='1' fill='%232f8f79' opacity='.5'/%3E%3Ccircle cx='172' cy='162' r='0.9' fill='%232f8f79' opacity='.45'/%3E%3Ccircle cx='216' cy='179' r='1.2' fill='%232f8f79' opacity='.4'/%3E%3Ccircle cx='258' cy='194' r='1' fill='%232f8f79' opacity='.55'/%3E%3Ccircle cx='297' cy='171' r='0.8' fill='%232f8f79' opacity='.35'/%3E%3Ccircle cx='33' cy='218' r='1.1' fill='%232f8f79' opacity='.5'/%3E%3Ccircle cx='74' cy='237' r='1' fill='%232f8f79' opacity='.4'/%3E%3Ccircle cx='115' cy='213' r='0.9' fill='%232f8f79' opacity='.5'/%3E%3Ccircle cx='157' cy='248' r='1.2' fill='%232f8f79' opacity='.35'/%3E%3Ccircle cx='199' cy='224' r='1' fill='%232f8f79' opacity='.5'/%3E%3Ccircle cx='241' cy='241' r='0.8' fill='%232f8f79' opacity='.45'/%3E%3Ccircle cx='283' cy='217' r='1.1' fill='%232f8f79' opacity='.4'/%3E%3Ccircle cx='318' cy='233' r='1' fill='%232f8f79' opacity='.55'/%3E%3Ccircle cx='18' cy='268' r='0.9' fill='%232f8f79' opacity='.5'/%3E%3Ccircle cx='59' cy='284' r='1' fill='%232f8f79' opacity='.35'/%3E%3Ccircle cx='98' cy='261' r='1.2' fill='%232f8f79' opacity='.5'/%3E%3Ccircle cx='143' cy='277' r='1' fill='%232f8f79' opacity='.45'/%3E%3Ccircle cx='185' cy='307' r='0.8' fill='%232f8f79' opacity='.4'/%3E%3Ccircle cx='227' cy='291' r='1.1' fill='%232f8f79' opacity='.55'/%3E%3Ccircle cx='269' cy='314' r='1' fill='%232f8f79' opacity='.35'/%3E%3Ccircle cx='308' cy='278' r='0.9' fill='%232f8f79' opacity='.5'/%3E%3C/svg%3E");
  background-size: 320px 320px;
  animation: svcDots 30s linear infinite;
  pointer-events: none;
}
@keyframes svcDots {
  from { background-position: 0 0; }
  to   { background-position: 320px 320px; }
}

.svc-img {
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.85;
}
.svc-img-overlay {
  position: absolute; inset: 0; z-index: 1;
  /* dark vignette top + bottom, transparent middle */
  background: linear-gradient(to bottom,
    rgba(6,12,24,0.85) 0%,
    rgba(6,12,24,0.0) 35%,
    rgba(6,12,24,0.0) 65%,
    rgba(6,12,24,0.85) 100%);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 36px 44px;
}
.svc-img-tag {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--green); margin-bottom: 10px;
}
.svc-img-title {
  font-family: var(--heading); font-size: clamp(3rem, 5.5vw, 7rem);
  font-weight: 900; text-transform: uppercase; line-height: 0.86;
  color: white; margin-bottom: 0;
  text-shadow: 0 4px 32px rgba(0,0,0,0.5);
  letter-spacing: -0.02em;
}
.svc-img-counter {
  font-family: var(--heading); font-size: 0.85rem; font-weight: 700;
  margin-bottom: 10px;
}
.svc-cur { color: var(--green); }
.svc-total { color: rgba(255,255,255,0.3); }
.svc-img-progress {
  height: 2px; background: rgba(255,255,255,0.12);
  border-radius: 2px; overflow: hidden;
}
.svc-img-bar {
  height: 100%; background: var(--green); width: 0%;
  transition: width 0.5s var(--ease-out);
}

/* ── Right: stacking rounded square cards ── */
.svc-right {
  display: flex; flex-direction: column;
  padding: 20px 40px 20px 10px;
  gap: 16px;
  position: relative; z-index: 1;
}

.svc-card {
  position: sticky;
  top: calc(50vh - 21vw + 25px);
  height: calc(42vw - 50px);
  max-height: calc(100vh - 80px);
  flex-shrink: 0;
  border-radius: 20px;
  display: flex; align-items: center;
  padding: 0 52px;
  will-change: transform;
}

/* Stacking z-order: later cards cover earlier ones */
.svc-card:nth-child(1) { z-index: 1; }
.svc-card:nth-child(2) { z-index: 2; }
.svc-card:nth-child(3) { z-index: 3; }
.svc-card:nth-child(4) { z-index: 4; }
.svc-card:nth-child(5) { z-index: 5; }
.svc-card:nth-child(6) { z-index: 6; }

/* Alternating colours */
.svc-card:nth-child(odd)  { background: var(--green); }
.svc-card:nth-child(even) { background: var(--dark-3); }

/* Odd card overrides (green bg → use light text, dark accents) */
.svc-card:nth-child(odd) .svc-num             { color: rgba(0,0,0,0.10); }
.svc-card:nth-child(odd) .svc-content         { border-left-color: rgba(0,0,0,0.15); }
.svc-card:nth-child(odd) .svc-title           { color: #fff; }
.svc-card:nth-child(odd) .svc-desc            { color: rgba(255,255,255,0.80); }
.svc-card:nth-child(odd) .svc-btn             { color: #fff; border-bottom-color: rgba(255,255,255,0.45); }
.svc-card:nth-child(odd) .svc-btn:hover       { border-bottom-color: #fff; }

.svc-num {
  font-family: var(--heading);
  font-size: clamp(5rem, 8vw, 9rem);
  font-weight: 900; line-height: 1;
  color: rgba(255,255,255,0.10);
  flex-shrink: 0; width: 160px;
}
.svc-content {
  padding-left: 32px;
  border-left: 1px solid rgba(255,255,255,0.12);
}
.svc-title {
  font-family: var(--heading); font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.03em; line-height: 1.2;
  margin-bottom: 12px; color: white;
}
.svc-desc {
  color: rgba(255,255,255,0.48);
  font-size: 0.88rem; line-height: 1.7;
  max-width: 310px; margin-bottom: 22px;
}
.svc-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--green);
  border-bottom: 1px solid rgba(47,143,121,0.35);
  padding-bottom: 2px;
  transition: gap 0.3s, border-bottom-color 0.3s;
}
.svc-btn:hover { gap: 14px; border-bottom-color: var(--green); }

/* =============================================
   ADVANTAGES (pinned vertical scroll)
   ============================================= */
.advantages-pinned { background: var(--dark-2); }
/* custom container for advantages */
.adv-container { padding: 0 24px !important; }

.adv-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 3vw, 48px);
  align-items: start;
}
/* Типографика от ширины левой колонки, а не всего viewport — иначе vw раздувает текст и .split-line обрезает */
.adv-left {
  position: sticky;
  top: 140px;
  margin-left: 0;
  min-width: 0;
  container-type: inline-size;
  container-name: adv-left;
}
.adv-left .section-title {
  margin-bottom: 32px;
  line-height: 1.02;
  white-space: normal;
  overflow-wrap: break-word;
  /* Fallback без CQ: vw с низким потолком — иначе шире колонки и режется .split-line */
  font-size: clamp(2rem, 2.5vw, 3.35rem);
}
/* PickPack — одна строка; размер от ширины левой колонки (CQ) или умеренный vw */
.adv-brand {
  display: block;
  line-height: 0.88;
  letter-spacing: -0.02em;
  white-space: nowrap;
  max-width: 100%;
  font-size: clamp(2.5rem, 4vw, 4.75rem);
}
@supports (container-type: inline-size) {
  .adv-left .section-title {
    font-size: clamp(2rem, 9.5cqw, 3.35rem);
  }
  .adv-brand {
    font-size: clamp(2.5rem, 15cqw, 4.75rem);
  }
}
.adv-brand-pick { color: var(--light); }
.adv-brand-pack { color: var(--green); }
.adv-progress-wrap { width: 100%; height: 2px; background: var(--border); }
.adv-progress { height: 100%; background: var(--green); width: 0; transition: width 0.1s; }

/* Card-style advantages with neon glow border */
.adv-scroll-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  min-width: 0;
  margin-inline-start: clamp(0px, 2vw, 32px);
}

.adv-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  padding: 36px 40px;
  border-radius: 16px;
  border: 1px solid rgba(47, 143, 121, 0.35);
  box-shadow: 0 0 16px rgba(47, 143, 121, 0.12), inset 0 0 24px rgba(47, 143, 121, 0.04);
  background: var(--dark-3);
  align-items: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.adv-item:hover {
  border-color: rgba(47, 143, 121, 0.75);
  box-shadow: 0 0 28px rgba(47, 143, 121, 0.28), inset 0 0 32px rgba(47, 143, 121, 0.07);
}

.adv-item-left { display: flex; flex-direction: column; gap: 10px; min-width: 0; }

.adv-n {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em;
  color: var(--green); text-transform: uppercase;
}

.adv-item-title {
  font-family: var(--heading);
  font-size: clamp(1.3rem, 1.8vw, 2rem);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -0.01em; line-height: 1.05;
  color: var(--light);
  word-break: break-word;
}

.adv-item-desc {
  color: var(--muted);
  font-size: 0.92rem; line-height: 1.75;
}

/* =============================================
   MARKETPLACES
   ============================================= */
.mps { background: var(--dark); }
.mp-head { margin-bottom: 64px; }
.mp-lead {
  max-width: 760px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}
.mp-lead strong {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}
.mp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mp-card { padding: 40px; border: 1px solid var(--border); border-radius: 16px; background: var(--dark-3); display: flex; flex-direction: column; gap: 20px; transition: transform 0.35s var(--ease-out), border-color 0.3s; }
.mp-card:hover { transform: translateY(-8px); border-color: rgba(34,197,94,0.3); }
.mp-name { font-family: var(--heading); font-size: 1.8rem; font-weight: 900; text-transform: uppercase; }
.mp-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.t {
  padding: 5px 14px; border-radius: 4px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid; display: inline-block;
}
.t.g { background: rgba(34,197,94,0.07); color: #4ade80; border-color: rgba(34,197,94,0.45); box-shadow: 0 0 10px rgba(34,197,94,0.3), inset 0 0 8px rgba(34,197,94,0.06); }
.t.b { background: rgba(59,130,246,0.07); color: #60a5fa; border-color: rgba(59,130,246,0.45); box-shadow: 0 0 10px rgba(59,130,246,0.3), inset 0 0 8px rgba(59,130,246,0.06); }
.t.p { background: rgba(139,92,246,0.07); color: #a78bfa; border-color: rgba(139,92,246,0.45); box-shadow: 0 0 10px rgba(139,92,246,0.3), inset 0 0 8px rgba(139,92,246,0.06); }
.t.o { background: rgba(251,146,60,0.07); color: #fb923c; border-color: rgba(251,146,60,0.45); box-shadow: 0 0 10px rgba(251,146,60,0.3), inset 0 0 8px rgba(251,146,60,0.06); }
.t.c { background: rgba(45,212,191,0.07); color: #2dd4bf; border-color: rgba(45,212,191,0.45); box-shadow: 0 0 10px rgba(45,212,191,0.3), inset 0 0 8px rgba(45,212,191,0.06); }
.mp-card > p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; }
.mp-card ul { display: flex; flex-direction: column; gap: 10px; }
.mp-card li { font-size: 0.88rem; color: rgba(240,244,248,0.6); display: flex; align-items: center; gap: 10px; }
.mp-card li::before { content: '→'; color: var(--green); font-size: 0.8rem; flex-shrink: 0; }
.mp-card__link { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; color: var(--green); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; text-decoration: none; transition: gap 0.25s; }
.mp-card__link:hover { gap: 14px; }

/* =============================================
   REVIEWS / TESTIMONIALS SLIDER
   ============================================= */
.rev-section { position: relative; background: var(--dark); overflow: hidden; padding: 60px 0 0; }
.rev-section .container { max-width: none; padding: 0 clamp(12px, 2vw, 32px); }
.rev-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.rev-bg__glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.18; }
.rev-bg__glow--1 { width: 55%; height: 70%; top: -20%; left: -10%; background: radial-gradient(ellipse, #2f8f79 0%, transparent 65%); animation: revGlow1 14s ease-in-out infinite alternate; }
.rev-bg__glow--2 { width: 45%; height: 60%; bottom: -15%; right: -5%; background: radial-gradient(ellipse, #1d4ed8 0%, transparent 65%); animation: revGlow2 18s ease-in-out infinite alternate; }
.rev-bg__grid { position: absolute; inset: 0; opacity: 0.035; background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px); background-size: 56px 56px; }
@keyframes revGlow1 { from { transform: translate(0,0) scale(1); } to { transform: translate(6%,10%) scale(1.1); } }
@keyframes revGlow2 { from { transform: translate(0,0) scale(1); } to { transform: translate(-8%,-6%) scale(1.15); } }
/* Вторая колонка начинается с ~середины экрана — отзыв не висит у левого края в широкой полосе 1fr */
.rev-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  position: relative;
  z-index: 1;
}
.rev-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-left: clamp(0px, 2vw, 24px);
  max-width: min(520px, 100%);
  position: sticky;
  top: 80px;
}
.rev-title { font-size: clamp(1.8rem, 3vw, 3.8rem) !important; word-break: break-word; white-space: normal !important; line-height: 1 !important; }
.rev-heading { display: flex; flex-direction: column; gap: 0; line-height: 1; }
.rev-line1 { font-family: var(--heading); font-size: clamp(26px, 3.2vw, 50px); font-weight: 900; text-transform: uppercase; letter-spacing: -0.02em; white-space: nowrap; color: var(--light); line-height: 1; }
.rev-line2 { font-family: var(--heading); font-size: clamp(26px, 3.2vw, 50px); font-weight: 900; text-transform: uppercase; letter-spacing: -0.02em; white-space: nowrap; color: var(--light); line-height: 1; margin-top: 0.04em; }
.rev-k { color: var(--green); }
.rev-right {
  display: flex;
  flex-direction: column;
  min-width: 0;
  position: relative;
  z-index: 1;
  justify-self: start;
  width: 100%;
  max-width: 780px;
}
.rev-bottom { display: flex; justify-content: center; padding: 72px clamp(12px, 2vw, 32px) 80px; position: relative; z-index: 1; }
.rev-add-btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 36px; border-radius: 8px; border: 1px solid rgba(47,143,121,0.45); color: var(--green); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; background: rgba(47,143,121,0.06); box-shadow: 0 0 14px rgba(47,143,121,0.18); transition: background 0.25s, box-shadow 0.25s; }
.rev-add-btn:hover { background: rgba(47,143,121,0.15); box-shadow: 0 0 28px rgba(47,143,121,0.4); }
.rev-slider { display: grid; }
.rev-slide { grid-area: 1 / 1; z-index: 1; display: flex; flex-direction: column; gap: 20px; opacity: 0; pointer-events: none; transform: translateY(20px); padding-top: 52px; }
.rev-slide.active { z-index: 2; opacity: 1; pointer-events: auto; transform: translateY(0); }
.rev-quote-mark { position: absolute; top: -6px; left: -4px; font-family: Georgia, serif; font-size: 5.5rem; line-height: 1; color: var(--green); opacity: 0.25; user-select: none; pointer-events: none; }
.rev-text { font-size: clamp(1.05rem, 1.6vw, 1.35rem); line-height: 1.7; color: var(--light); font-style: normal; max-width: 720px; }
blockquote { font-style: normal; }
.rev-footer { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.rev-ava { width: 52px; height: 52px; border-radius: 50%; background: var(--ava-bg, var(--green)); color: white; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.88rem; flex-shrink: 0; }
.rev-name { font-weight: 700; font-size: 0.95rem; color: var(--light); }
.rev-role { color: var(--muted); font-size: 0.8rem; margin-top: 3px; }
.rev-mp-badge { margin-left: auto; }
.rev-controls { display: flex; align-items: center; gap: 20px; margin-top: 32px; }
.rev-arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border); background: var(--dark-3); color: var(--light); font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: border-color 0.25s, background 0.25s, color 0.25s; }
.rev-arrow:hover { border-color: var(--green); color: var(--green); background: rgba(47,143,121,0.1); }
.rev-dots { display: flex; gap: 8px; }
.rev-dot { width: 8px; height: 8px; border-radius: 4px; border: none; background: var(--border); cursor: pointer; transition: background 0.3s, width 0.3s; padding: 0; }
.rev-dot.active { background: var(--green); width: 24px; }
.rev-counter { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.1em; margin-left: auto; }

/* =============================================
   ABOUT FULL (image left, text right)
   ============================================= */
.about-full {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 700px; background: var(--dark);
}
.about-img-side { position: relative; overflow: hidden; }
.about-img-side img { width: 100%; height: 100%; object-fit: cover; }
.about-img-overlay { position: absolute; inset: 0; background: linear-gradient(to right, transparent 60%, var(--dark) 100%); }
.about-text-side { padding: 100px 80px; display: flex; flex-direction: column; justify-content: center; gap: 0; }
.about-text-side .section-title { margin-bottom: 32px; }
.about-text-side > p { color: var(--muted); font-size: 1rem; line-height: 1.75; margin-bottom: 20px; }
.about-text-side .btn-main { align-self: flex-start; margin-top: 16px; }

/* =============================================
   TARIFFS
   ============================================= */
.tariffs { background: var(--dark-2); }
.tariffs .section-title { max-width: 640px; }
.tariff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tariff-card { padding: 40px; border: 1px solid var(--border); border-radius: 16px; background: var(--dark-3); display: flex; flex-direction: column; gap: 20px; position: relative; }
.tariff-feat { border-color: var(--green); box-shadow: 0 0 0 1px var(--green), 0 0 40px rgba(34,197,94,0.08); }
.tc-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--green); color: white; padding: 4px 20px; border-radius: 100px; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.06em; white-space: nowrap; }
.tc-n { font-family: var(--heading); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.3em; color: var(--green); }
.tc-name { font-family: var(--heading); font-size: 2rem; font-weight: 900; text-transform: uppercase; }
.tariff-card > p { color: var(--muted); font-size: 0.88rem; }
.tariff-card ul { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.tariff-card li { display: flex; gap: 10px; font-size: 0.88rem; color: rgba(240,244,248,0.75); }
.tariff-card li span { color: var(--green); font-weight: 700; flex-shrink: 0; }
.tariff-card li.off { color: var(--muted); }
.tariff-card li.off span { color: var(--border); }
.tc-btn {
  position: relative; overflow: hidden;
  display: block; text-align: center;
  padding: 14px; border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 100px; font-weight: 700; font-size: 0.88rem;
  color: var(--light);
  transition: color 0.3s, border-color 0.3s;
  z-index: 0;
}
.tc-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.06);
  border-radius: inherit;
  transform: translateX(-101%);
  transition: transform 0.45s var(--ease-out);
  z-index: -1;
}
.tc-btn:hover::before { transform: translateX(0); }
.tc-btn:hover { border-color: var(--green); color: white; }

.tc-btn-main {
  background: var(--green); border-color: var(--green); color: white;
}
.tc-btn-main::before { background: var(--green-d); }
.tc-btn-main:hover { border-color: var(--green-d); }

/* =============================================
   TARIF TABLE (reused on tariffs page)
   ============================================= */
.tarif-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.tarif-table thead th {
  background: rgba(47, 143, 121, 0.12);
  color: white;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(47,143,121,0.35);
  text-align: left;
}
.tarif-table tbody td {
  padding: 14px 16px;
  color: rgba(255,255,255,0.86);
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  vertical-align: top;
}
.tarif-table tbody tr:last-child td { border-bottom: none; }
.tarif-table tbody td strong { color: var(--green); font-weight: 900; }
.tarif-table tbody td .sub { color: rgba(255,255,255,0.55); font-size: 0.86rem; margin-top: 6px; }
.tarif-table thead th:first-child,
.tarif-table tbody td:first-child { text-align: left; }
.tarif-table thead th:not(:first-child),
.tarif-table tbody td:not(:first-child) { text-align: center; vertical-align: middle; }

.tariff-storage-block {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "head-a head-b"
    "body-a body-b";
  gap: 14px clamp(20px, 4vw, 40px);
  align-items: start;
}
.tariff-storage-block > :nth-child(1) { grid-area: head-a; }
.tariff-storage-block > :nth-child(2) { grid-area: head-b; }
.tariff-storage-block > :nth-child(3) { grid-area: body-a; }
.tariff-storage-block > :nth-child(4) { grid-area: body-b; }
.tariff-storage-head {
  font-family: var(--heading);
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: -0.01em;
  text-align: center;
}
.tariff-storage-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tariff-mini-note {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.tariff-size-helps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tariff-size-helps .tile {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 18px;
}
.tariff-size-helps .tile b { color: var(--green); }

/* =============================================
   FAQ
   ============================================= */
.faq { background: var(--dark); }
.faq .section-title { max-width: 600px; }
.faq-list { max-width: 860px; }
.faq-item { border-bottom: 1px solid var(--border); cursor: pointer; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 28px 0; font-weight: 600; font-size: 1.05rem; gap: 16px; }
.faq-q span { color: var(--green); font-size: 1.6rem; font-weight: 300; transition: transform 0.35s; flex-shrink: 0; }
.faq-item.open .faq-q span { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease-out), padding 0.4s; color: var(--muted); font-size: 0.95rem; line-height: 1.75; }
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 28px; }

/* =============================================
   CONTACT
   ============================================= */
.contact { position: relative; overflow: hidden; }
.contact-bg { position: absolute; inset: 0; z-index: 0; }
.contact-bg img { width: 100%; height: 100%; object-fit: cover; }
.contact-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(8,12,24,0.98) 0%, rgba(8,12,24,0.92) 100%); }
.contact-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.ct-left .section-title { margin-bottom: 24px; font-size: clamp(2.2rem, 4vw, 4rem); }
.ct-left > p { color: var(--muted); font-size: 1rem; line-height: 1.7; }
.ct-links { display: flex; flex-direction: column; gap: 16px; margin-top: 36px; }
.ct-link { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 0.95rem; font-weight: 500; transition: color 0.2s; }
.ct-link:hover { color: var(--green); }
.ct-right {
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.f-field { margin-bottom: 16px; }
.f-field label { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.f-field input, .f-field select, .f-field textarea { width: 100%; padding: 14px 18px; background: rgba(255,255,255,0.06); border: 1px solid var(--border); border-radius: 10px; color: white; font-size: 0.95rem; font-family: var(--font); outline: none; transition: border-color 0.2s; }
.f-field input::placeholder, .f-field textarea::placeholder { color: rgba(255,255,255,0.22); }
.f-field select option { background: var(--dark-2); }
.f-field input:focus, .f-field select:focus, .f-field textarea:focus { border-color: var(--green); }
.f-field textarea { resize: none; }
.submit-btn {
  position: relative; overflow: hidden;
  width: 100%; padding: 16px;
  background: var(--green); border: 1.5px solid var(--green);
  border-radius: 12px; color: white;
  font-weight: 800; font-size: 1rem; font-family: var(--font);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(47,143,121,0.28);
  transition: box-shadow 0.3s;
  z-index: 0;
}
.submit-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--green-d);
  transform: translateX(-101%);
  transition: transform 0.5s var(--ease-out);
  z-index: -1;
}
.submit-btn:hover::before { transform: translateX(0); }
.submit-btn:hover { box-shadow: 0 8px 28px rgba(47,143,121,0.38); }
.f-note { text-align: center; color: rgba(255,255,255,0.2); font-size: 0.78rem; margin-top: 12px; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--dark-2); border-top: 1px solid var(--border); padding: 64px 0 32px; }
.footer-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; margin-bottom: 52px; }
.f-brand p { color: var(--muted); font-size: 0.88rem; line-height: 1.65; margin-top: 16px; max-width: 270px; }
.f-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.f-col { display: flex; flex-direction: column; gap: 12px; }
.f-col-t { font-family: var(--heading); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: white; margin-bottom: 4px; }
.f-col a { font-size: 0.88rem; color: var(--muted); transition: color 0.2s; }
.f-col a:hover { color: var(--green); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; color: var(--muted); font-size: 0.8rem; }
.footer-bottom a { color: rgba(255,255,255,0.25); font-size: 0.78rem; }
.footer-bottom a:hover { color: var(--green); }

/* =============================================
   SCROLL ANIMATIONS
   Initial states are set via gsap.set() in script.js
   to avoid flash of hidden content if JS is slow to load
   ============================================= */

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .mp-grid { grid-template-columns: repeat(2, 1fr); }
  .adv-layout { grid-template-columns: 1fr; }
  .adv-scroll-box { padding: 0; margin-inline-start: 0; }
  .adv-left { container-type: inline-size; }
  .adv-left .section-title {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    white-space: normal;
  }
  @supports (container-type: inline-size) {
    .adv-left .section-title {
      font-size: clamp(2.2rem, 10cqw, 3.5rem);
    }
  }
  .adv-brand {
    white-space: normal;
    font-size: clamp(2.6rem, 9vw, 4.5rem);
  }
  @supports (container-type: inline-size) {
    .adv-brand {
      font-size: clamp(2.6rem, 14cqw, 4.5rem);
    }
  }
  .about-full { grid-template-columns: 1fr; }
  .about-img-side { height: 400px; }
  .about-text-side { padding: 80px 48px; }
  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .rev-layout { grid-template-columns: 1fr; gap: 40px; }
  .rev-head { margin-left: 0; position: relative; top: auto; }
  .rev-text { font-size: 1rem; }
  .rev-mp-badge { margin-left: 0; }
  .rev-line1 { font-size: clamp(32px, 9vw, 64px); }
  .rev-line2 { font-size: clamp(32px, 9vw, 64px); }
  .container { padding: 0 24px; }
  .section-pad { padding: 80px 0; }
  .header__inner { padding: 0 24px; }
  .header__nav { display: none; }
  .header__cta { display: none; }
  .header__burger { display: flex; }
  .hero__content { padding: 80px 24px 80px; }
  .hero__title { font-size: 3rem; }
  .hero__brand-v { display: none; }
  .hero__particles { height: 110px; top: 100px; }
  .hero-slider { display: none; }
  .at-card-body { grid-template-columns: 1fr; gap: 32px; padding: 36px 24px 40px; }
  .at-card-head { padding: 24px 24px 0; }
  .at-card-left { gap: 24px; }
  .at-marquee-wrap { padding: 18px 0; }
  .about-teaser { padding: 60px 20px 80px; }
  .adv-left { position: relative; top: auto; margin-bottom: 40px; margin-left: 0; }
  .adv-item { grid-template-columns: 1fr; gap: 12px; padding: 28px 24px; }
  .mp-grid { grid-template-columns: 1fr; }
  .tariff-grid { grid-template-columns: 1fr; }
  .tariff-storage-block {
    grid-template-columns: 1fr;
    grid-template-areas:
      "head-a"
      "body-a"
      "head-b"
      "body-b";
  }
  .svc-layout { grid-template-columns: 1fr; }
  .svc-left { position: relative; height: auto; padding: 16px; display: block; }
  .svc-img-wrap { height: 70vw; max-height: none; }
  .svc-right { padding: 12px 16px; gap: 10px; }
  .svc-card { position: relative; top: 0; height: auto; max-height: none; min-height: 80vw; padding: 40px 24px; flex-direction: column; align-items: flex-start; gap: 16px; border-radius: 16px; }
  .svc-num { font-size: 4rem; width: auto; }
  .svc-content { padding-left: 0; border-left: none; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .f-row { grid-template-columns: 1fr; }
  .f-links { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-text-side { padding: 60px 24px; }
  .testimonial-inner { padding: 48px 28px; }
}

@media (max-width: 480px) {
  .f-links { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr; }
  .hero__title { font-size: 2.5rem; }
}

/* =============================================
   PAGE TRANSITION OVERLAY
   ============================================= */
#page-transition {
  position: fixed; inset: 0; z-index: 9000;
  pointer-events: none;
  background: var(--dark-2);
  transform: translateX(100%);
  transition: transform 0.6s var(--ease-out);
}
#page-transition.is-entering {
  transform: translateX(0);
  pointer-events: all;
}
#page-transition.is-leaving {
  transform: translateX(-100%);
  transition: transform 0.55s var(--ease-out);
}

body.about-page { overflow-x: hidden; }

/* =============================================
   GLOBAL CONTACT MODAL (contact-modal.js)
   ============================================= */
body.pp-cm-open,
body.pp-choose-open { overflow: hidden; }

.pp-cm {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(16px, env(safe-area-inset-top)) 20px max(24px, env(safe-area-inset-bottom));
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s var(--ease-out), visibility 0.28s;
}
.pp-cm.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.pp-cm__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 18, 0.94);
  cursor: pointer;
}
@media (prefers-reduced-motion: no-preference) {
  .pp-cm.is-open .pp-cm__backdrop {
    background: rgba(4, 8, 18, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
}
.pp-cm__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  max-height: min(92vh, 720px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, #171c28 0%, #0d1117 100%);
  border: 1px solid rgba(47, 143, 121, 0.5);
  border-radius: 24px;
  outline: none;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
  transform: translateY(12px) scale(0.99);
  opacity: 0;
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}
.pp-cm.is-open .pp-cm__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.pp-cm__glow {
  display: none;
}
.pp-cm__x {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.pp-cm__x:hover {
  color: white;
  border-color: rgba(47, 143, 121, 0.55);
  background: rgba(47, 143, 121, 0.12);
}
.pp-cm__head {
  position: relative;
  z-index: 2;
  padding: 32px 52px 8px 28px;
  flex-shrink: 0;
}
.pp-cm__eyebrow {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.pp-cm__title {
  font-family: var(--heading);
  font-size: 1.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 10px;
  color: var(--light);
}
.pp-cm__sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.pp-cm__form {
  position: relative;
  z-index: 2;
  padding: 16px 28px 28px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.pp-cm__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.pp-cm__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}
.pp-cm__full {
  grid-column: 1 / -1;
}
.pp-cm .f-field label {
  color: rgba(255, 255, 255, 0.5);
}
.pp-cm .f-field input,
.pp-cm .f-field select,
.pp-cm .f-field textarea {
  background: rgba(255, 255, 255, 0.06);
}
.pp-cm__submit {
  width: 100%;
  margin-top: 8px;
}
.pp-cm__note {
  margin-top: 12px;
  margin-bottom: 0;
}

.contact-cta-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(47, 143, 121, 0.35);
  border-radius: 20px;
  padding: 36px 32px;
  text-align: center;
  box-shadow: 0 0 32px rgba(47, 143, 121, 0.1);
}
.contact-cta-card--form {
  text-align: left;
}
.contact-inline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}
.contact-inline-grid .f-field {
  margin-bottom: 0;
}
.contact-inline-full {
  grid-column: 1 / -1;
}
.contact-inline-form .contact-inline-note {
  margin-top: 14px;
  margin-bottom: 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}
.contact-cta-card p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 22px;
}

/* =============================================
   HEADER — выбор связи (contact-modal.js)
   ============================================= */
.pp-choose {
  position: fixed;
  inset: 0;
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(16px, env(safe-area-inset-top)) 20px max(24px, env(safe-area-inset-bottom));
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s var(--ease-out), visibility 0.28s;
}
.pp-choose.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.pp-choose__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 14, 0.93);
  cursor: pointer;
}
@media (prefers-reduced-motion: no-preference) {
  .pp-choose.is-open .pp-choose__backdrop {
    background: rgba(2, 6, 14, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
}
.pp-choose__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  max-height: min(90vh, 640px);
  overflow: hidden auto;
  padding: 28px 24px 26px;
  background: linear-gradient(160deg, #151a26 0%, #0a0e16 100%);
  border: 1px solid rgba(47, 143, 121, 0.48);
  border-radius: 22px;
  outline: none;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.55);
  transform: translateY(14px) scale(0.98);
  opacity: 0;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s var(--ease-out);
}
.pp-choose.is-open .pp-choose__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.pp-choose__glow {
  display: none;
}
.pp-choose__x {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.pp-choose__x:hover {
  color: white;
  border-color: rgba(47, 143, 121, 0.55);
  background: rgba(47, 143, 121, 0.12);
}
.pp-choose__head {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 22px;
  padding: 0 36px 0 8px;
}
.pp-choose__eyebrow {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 8px;
}
.pp-choose__title {
  font-family: var(--heading);
  font-size: 1.45rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 8px;
  color: var(--light);
}
.pp-choose__sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}
.pp-choose__options {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pp-choose__opt {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px 18px;
  text-align: left;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--light);
  cursor: pointer;
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    opacity 0.32s ease;
  opacity: 0;
  transform: translateY(10px);
}
.pp-choose.is-open .pp-choose__opt {
  opacity: 1;
  transform: translateY(0);
}
.pp-choose.is-open .pp-choose__opt:nth-child(1) { transition-delay: 0.04s; }
.pp-choose.is-open .pp-choose__opt:nth-child(2) { transition-delay: 0.08s; }
.pp-choose.is-open .pp-choose__opt:nth-child(3) { transition-delay: 0.12s; }
.pp-choose__opt:hover {
  border-color: rgba(47, 143, 121, 0.45);
  background: rgba(47, 143, 121, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
.pp-choose__opt--form:hover {
  box-shadow: 0 12px 36px rgba(47, 143, 121, 0.18);
}
.pp-choose__opt--tg:hover {
  border-color: rgba(42, 171, 238, 0.5);
  background: rgba(42, 171, 238, 0.1);
}
.pp-choose__opt--wa:hover {
  border-color: rgba(37, 211, 102, 0.45);
  background: rgba(37, 211, 102, 0.08);
}
.pp-choose__opt-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--green);
  transition: transform 0.35s ease, background 0.35s ease;
}
.pp-choose__opt--tg .pp-choose__opt-icon { color: #2aabee; }
.pp-choose__opt--wa .pp-choose__opt-icon { color: #25d366; }
.pp-choose__opt:hover .pp-choose__opt-icon {
  transform: scale(1.06);
  background: rgba(255, 255, 255, 0.1);
}
.pp-choose__opt-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pp-choose__opt-label {
  font-family: var(--heading);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.pp-choose__opt-hint {
  font-size: 0.78rem;
  color: var(--muted);
}
.pp-choose__opt-arrow {
  flex-shrink: 0;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.35);
  transition: transform 0.3s ease, color 0.3s ease;
}
.pp-choose__opt:hover .pp-choose__opt-arrow {
  color: var(--green);
  transform: translateX(3px);
}
.pp-choose__opt--tg:hover .pp-choose__opt-arrow { color: #2aabee; }
.pp-choose__opt--wa:hover .pp-choose__opt-arrow { color: #25d366; }

@media (max-width: 600px) {
  .pp-cm__grid {
    grid-template-columns: 1fr;
  }
  .pp-cm__head {
    padding-right: 52px;
  }
  .contact-inline-grid {
    grid-template-columns: 1fr;
  }
}
