/* ============ RESET ============ */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-0: #101010;
  --bg-1: #1a1a1a;
  --bg-2: #222222;
  --text: #ffffff;
  --gray: #d9d9d9;
  --muted: #7a7a7a;
  --dim: #4a4a4a;
  --accent: #00ff88;
  --accent-dark: #00cc6e;
  --border: rgba(255,255,255,0.10);
  --border-strong: rgba(255,255,255,0.16);
}

html, body {
  background: var(--bg-0);
  color: var(--text);
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 400;
  min-height: 100vh;
  overflow-x: clip;
}

/* base bg + single soft green radial glow in the corner */
body {
  background:
    radial-gradient(ellipse 1100px 800px at 100% 0%, rgba(0,255,136,0.08), transparent 60%),
    var(--bg-0);
  min-height: 100vh;
  position: relative;
}

a { color: inherit; text-decoration: none; }
button { background: none; border: none; color: inherit; cursor: pointer; font: inherit; }

/* ============ GRAIN OVERLAY (heavy, above everything) ============ */
.grain {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.09;
}

/* horizontal line at bottom of hero (not fixed — scrolls with hero) */
.hero-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 50px;
  height: 1px;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}

/* crosshairs at section border intersections */
.section-cross {
  position: absolute;
  top: 0;
  color: var(--muted);
  opacity: 0.7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  z-index: 4;
  pointer-events: none;
}
.section-cross--left  { left: 44px;  transform: translate(-50%, -50%); }
.section-cross--right { right: 44px; transform: translate(50%, -50%); }

/* global vertical lines — span all sections */
.v-line-global {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
  z-index: 3;
}
.v-line-global--left { left: 44px; }
.v-line-global--right { right: 44px; }

/* vertical frame lines — scoped to hero-frame, scroll with it */
.v-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.05);
  z-index: 1;
  pointer-events: none;
}
.v-line--left { left: 44px; }
.v-line--right { right: 44px; }

/* ============ SIDE RAILS (scoped to hero-frame, scroll with it) ============ */
.rail {
  position: absolute;
  top: 0;
  height: 100%;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}
.rail--left { left: 0; }
.rail--right { right: 0; flex-direction: column; gap: 18px; }

.rail__text {
  transform: rotate(-90deg);
  white-space: nowrap;
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--muted);
  opacity: 0.8;
}

.rail__icon {
  color: var(--muted);
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
}
.rail__icon:hover { opacity: 1; color: var(--text); }

.rail__icon--active {
  background: rgba(0,255,136,0.18);
  color: var(--accent);
  opacity: 1;
  box-shadow: 0 0 0 1px rgba(0,255,136,0.25), 0 0 14px rgba(0,255,136,0.18);
}

/* ============ CORNER CROSSHAIR (at intersections of v-lines & hero-line) ============ */
.corner {
  position: absolute;
  color: var(--muted);
  opacity: 0.7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  z-index: 2;
}
/* hero-line bottom = 50px, v-lines = 44px from edges. center crosshair on the cross */
.corner--bl {
  bottom: 50px;
  left: 44px;
  transform: translate(-50%, 50%);
}
.corner--br {
  bottom: 50px;
  right: 44px;
  transform: translate(50%, 50%);
}

/* ============ BOTTOM INFO (anchored to bottom of hero) ============ */
.bottom-info {
  position: absolute;
  bottom: 20px;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  pointer-events: none;
  text-transform: uppercase;
}
.bottom-info--left { left: 60px; }
.bottom-info--center {
  left: 50%;
  transform: translateX(-50%);
  font-variant-numeric: tabular-nums;
  color: var(--gray);
}

/* ============ FLOATING TOP NAVBAR (capsule, centered) ============ */
.navbar {
  position: fixed;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 80px));
  height: 60px;
  padding: 0 32px 0 28px;
  display: flex;
  align-items: center;
  gap: 36px;
  background: rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  box-shadow: none;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 50;
  transition: top 0.3s ease, width 0.3s ease, left 0.3s ease, transform 0.3s ease, border-radius 0.3s ease;
}
.navbar--stuck {
  top: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.navbar--stuck::before {
  content: '';
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  height: 100%;
  background: rgba(0,0,0,0.15);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: -1;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  display: block;
  height: 55px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav__link svg { opacity: 0.7; }
.nav__link:hover { color: var(--accent); }
.nav__link--active { color: var(--text); }
.nav__icons {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: color 0.2s;
}
.nav__icon:hover { color: var(--accent); }

.nav__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 18px;
  padding: 0 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.02em;
}

.controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* vertical separators */
.sep {
  width: 1px;
  align-self: stretch;
  background: rgba(255,255,255,0.10);
  display: block;
  flex-shrink: 0;
}

/* burger button — скрыт на десктопе */
.navbar__sep--burger,
.navbar__burger { display: none; }

.navbar__burger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 2px;
  color: var(--text);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* mobile nav dropdown */
.nav--mobile {
  display: none;
  position: fixed;
  top: 82px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  background: rgba(20,20,20,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 14px 0 18px;
  flex-direction: column;
  z-index: 10000;
}
.nav--mobile.is-open { display: flex; }
.nav--mobile .nav__link {
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
}
.nav--mobile .nav__link:hover { color: var(--accent); }

/* burger icon toggle */
.navbar__burger-close { display: none; }
.navbar__burger.is-open .navbar__burger-icon { display: none; }
.navbar__burger.is-open .navbar__burger-close { display: block; }

.lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
  padding: 6px 10px 6px 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  transition: background 0.2s;
}
.lang:hover { background: rgba(255,255,255,0.08); }
.lang__flag {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    linear-gradient(180deg,
      #b22234 0%, #b22234 14%,
      #ffffff 14%, #ffffff 28%,
      #b22234 28%, #b22234 42%,
      #ffffff 42%, #ffffff 56%,
      #3c3b6e 56%, #3c3b6e 100%);
  display: inline-block;
  flex-shrink: 0;
}

.theme {
  width: 36px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 3px;
  color: var(--text);
}

.hire {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 7px 14px;
  border-radius: 999px;
  background: rgba(20,20,20,0.85);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}
.hire:hover { border-color: rgba(255,255,255,0.22); background: rgba(28,28,28,0.95); }
.hire__plane { color: var(--accent); }
.hire__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.wave {
  width: 32px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  opacity: 0.85;
  transition: opacity 0.2s;
}
.wave:hover { opacity: 1; }

.search {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text);
  opacity: 0.85;
  transition: opacity 0.2s;
}
.search:hover { opacity: 1; }

/* ============ STAGE / HERO ============ */
.stage {
  position: relative;
  width: 100%;
}

.hero-frame {
  position: relative;
  width: 100%;
}

.hero {
  position: relative;
  width: 1360px;
  max-width: 100%;
  margin: 0 auto;
  padding: 190px 60px 100px 90px;
  min-height: calc(100vh - 95px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

/* wireframe globe — canvas, real 3D projection */
.globe {
  position: absolute;
  top: 56%;
  right: -200px;
  transform: translateY(-50%);
  width: calc(100vh - 100px);
  height: calc(100vh - 100px);
  max-width: 1340px;
  max-height: 1340px;
  pointer-events: none;
  z-index: 0;
}

.hero > *:not(.globe):not(.hero__bg-img) { position: relative; z-index: 1; }

.hero .hero__bg-img {
  position: absolute;
  bottom: -100px;
  right: -300px;
  pointer-events: none;
  z-index: 0;
  height: 88vh;
  width: auto;
}

.hero__label {
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--gray);
  margin-bottom: 36px;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

/* hero heading — strictly 4 separate lines, mixed weights */
.hero__title {
  display: block;
  font-size: 72px;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 44px;
  font-weight: 400;
  max-width: 760px;
}
.hero__title .line {
  display: block;
  width: 100%;
}
.hero__title .bold { font-weight: 700; color: var(--text); }
.hero__title .thin { font-weight: 300; color: var(--muted); }

/* trust pill — 4 avatars + "+" button + gray stars */
.trust {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 5px 22px 5px 5px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  margin-bottom: 48px;
  background: rgba(255,255,255,0.02);
}
.trust__avatars {
  display: flex;
  align-items: center;
}
.trust__avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--bg-0);
  margin-right: -10px;
  display: inline-block;
}
.trust__plus {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--bg-0);
  background: var(--bg-2);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}
.trust__stars { display: inline-flex; gap: 3px; }
.trust__text { font-size: 13px; color: var(--text); }

/* CTA */
.cta {
  display: flex;
  align-items: center;
  gap: 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  min-height: 50px;
  border-radius: 12px;
  transition: transform 0.15s, filter 0.15s, background 0.15s;
}
.btn:hover { transform: translateY(-1px); }

/* primary — neon green rounded rect, with darker green icon container */
.btn--primary {
  background: var(--accent);
  color: #0a0a0a;
  padding: 10px 10px 10px 22px;
  border-radius: 14px;
  font-weight: 600;
}
.btn--primary:hover { filter: brightness(1.05); }
.btn--primary .btn__icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: var(--accent-dark);
  color: #0a0a0a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ghost — transparent dark with gray outline */
.btn--ghost {
  color: var(--text);
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.05); }
.btn--ghost svg { color: var(--text); }

/* ============ FLOATING CONTACT CARD (bottom-right, overlaps globe) ============ */
.float-card {
  position: fixed;
  right: 80px;
  bottom: 70px;
  width: 320px;
  padding: 20px 20px 16px;
  border-radius: 20px;
  background:
    radial-gradient(ellipse 200px 120px at 20% 0%, rgba(255,255,255,0.10), transparent 70%),
    radial-gradient(ellipse 220px 100px at 90% 100%, rgba(0,255,136,0.10), transparent 70%),
    linear-gradient(180deg, rgba(28,28,28,0.85), rgba(14,14,14,0.85));
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 26px 70px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.07);
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.float-card__head {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.float-card__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.float-card__sub {
  font-size: 12.5px;
  color: var(--gray);
  opacity: 0.7;
}
.float-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.float-card__year {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.float-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #0a0a0a;
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 10px;
  transition: transform 0.15s, filter 0.15s;
}
.float-card__btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

/* ============ ADVANTAGES ============ */
.advantages {
  position: relative;
  width: 1360px;
  max-width: 100%;
  margin: 0 auto;
  padding: 80px 90px 120px;
}

.advantages__head {
  padding-bottom: 64px;
}
.advantages__title {
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-align: left;
  font-weight: 400;
}
.advantages__title .bold { font-weight: 700; color: var(--text); }
.advantages__title .thin { font-weight: 300; color: var(--muted); }

.adv-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.adv {
  display: grid;
  grid-template-columns: 160px 1fr 60px;
  align-items: start;
  gap: 40px;
  padding: 40px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
  transition: border-color 0.3s;
}
.adv:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.adv::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.adv:hover::before { width: 100%; }
.adv:hover { border-top-color: transparent; }
.adv:hover .adv__num { color: var(--accent); }
.adv:hover .adv__more {
  color: var(--accent);
  transform: translate(2px, -2px);
}

.adv__num {
  font-size: 88px;
  font-weight: 200;
  line-height: 1;
  color: var(--muted);
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  transition: color 0.3s;
  padding-top: 4px;
}

.adv__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 680px;
  padding-top: 14px;
}
.adv__title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text);
  line-height: 1.2;
}
.adv__text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 580px;
}

.adv__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text);
  align-self: center;
  justify-self: end;
  transition: color 0.3s, border-color 0.3s, transform 0.3s;
}
.adv__more:hover {
  border-color: var(--accent);
}

/* highlighted last row */
.adv--hl .adv__num {
  color: var(--accent);
  font-weight: 300;
}

/* ============ VALUES — 8 VARIANTS ============ */
.vs {
  position: relative;
  width: 1360px;
  max-width: 100%;
  margin: 0 auto;
  padding: 100px 90px 100px;
  border-top: 1px dashed rgba(255,255,255,0.06);
}
.vs__label {
  position: absolute;
  top: 24px;
  left: 90px;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--accent);
  opacity: 0.7;
  font-weight: 500;
}

/* ---- VARIANT 1: MANIFESTO PROSE ---- */
.vs-1__wrap {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 24px 0;
}
.vs-1__bg {
  position: absolute;
  top: -40px;
  right: -120px;
  width: 360px;
  height: 360px;
  object-fit: cover;
  opacity: 0.08;
  border-radius: 50%;
  pointer-events: none;
}
.vs-1__text {
  font-size: 19px;
  line-height: 1.7;
  color: var(--muted);
  position: relative;
  z-index: 1;
}
.vs-1__lead {
  display: block;
  font-size: 28px;
  line-height: 1.35;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.vs-1__text strong {
  color: var(--text);
  font-weight: 600;
  margin-right: 4px;
}

/* ---- VARIANT 2: INVERTED PYRAMID ---- */
.vs-2__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}
.vs-2__left {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 8px;
}
.vs-2__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  pointer-events: none;
}
.vs-2__lead-wrap {
  position: relative;
  z-index: 1;
  padding: 40px;
}
.vs-2__sentence {
  font-size: 22px;
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--gray);
  margin: 0;
  max-width: 100%;
}
.vs-2__em {
  display: inline;
  font-size: clamp(34px, 3.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
  vertical-align: baseline;
  background-image: url('img/dddepth-115.webp');
  background-size: 220% 320%;
  background-position: 40% 30%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  padding-right: 4px;
}
.vs-2__list {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.vs-2__list li { padding: 0; }
.vs-2__term {
  display: block;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin-bottom: 10px;
}
.vs-2__desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 540px;
}
.vs-2__term--1 { font-size: 42px; }
.vs-2__term--2 { font-size: 34px; }
.vs-2__term--3 { font-size: 28px; }
.vs-2__term--4 { font-size: 23px; }
.vs-2__term--5 { font-size: 20px; }

/* ---- VARIANT 3: ZIGZAG ---- */
.vs-3__lead {
  font-size: 22px;
  line-height: 1.4;
  color: var(--text);
  max-width: 640px;
  margin: 0 auto 60px;
  text-align: center;
  font-weight: 300;
}
.vs-3__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.vs-3__item {
  max-width: 56%;
}
.vs-3__item h3 {
  font-size: 26px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.vs-3__item p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}
.vs-3__item--L { align-self: flex-start; text-align: left; }
.vs-3__item--R { align-self: flex-end; text-align: right; }
.vs-3__item--C {
  align-self: center;
  width: 280px;
  max-width: none;
  aspect-ratio: 1/1;
  border-radius: 20px;
  overflow: hidden;
  filter: saturate(0.85) brightness(0.8);
}
.vs-3__item--C img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---- VARIANT 4: POSTER ROWS ---- */
.vs-4__lead {
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.vs-4__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.vs-4__row {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: end;
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.vs-4__row:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.vs-4__term {
  font-size: clamp(48px, 5.6vw, 88px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--text);
}
.vs-4__desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--muted);
  padding-bottom: 6px;
}
.vs-4__row--img { position: relative; isolation: isolate; }
.vs-4__row--img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  z-index: -1;
  border-radius: 4px;
}

/* ---- VARIANT 5: MOSAIC 3×2 ---- */
.vs-5__lead {
  font-size: 22px;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 36px;
  max-width: 640px;
}
.vs-5__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 4px;
}
.vs-5__cell {
  background: rgba(255,255,255,0.025);
  padding: 28px;
  border-radius: 4px;
  transition: background 0.25s;
}
.vs-5__cell:hover { background: rgba(255,255,255,0.05); }
.vs-5__cell h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}
.vs-5__cell p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}
.vs-5__cell--img {
  padding: 0;
  overflow: hidden;
  background: none;
}
.vs-5__cell--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- VARIANT 6: ASCENDING CENTERED ---- */
.vs-6 { text-align: center; overflow: hidden; }
.vs-6__bg {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  object-fit: cover;
  opacity: 0.07;
  border-radius: 50%;
  pointer-events: none;
}
.vs-6__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.vs-6__term {
  display: block;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 8px;
  color: var(--text);
}
.vs-6__desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
}
.vs-6__term--1 { font-size: 22px; }
.vs-6__term--2 { font-size: 30px; }
.vs-6__term--3 { font-size: 40px; }
.vs-6__term--4 { font-size: 52px; }
.vs-6__term--5 { font-size: 68px; }

/* ---- VARIANT 7: MAGAZINE SPREAD ---- */
.vs-7 { padding: 100px 0 100px; }
.vs-7__spread {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}
.vs-7__visual {
  position: relative;
  overflow: hidden;
}
.vs-7__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vs-7__content {
  padding: 60px 90px 60px 60px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.vs-7__lead {
  font-size: 21px;
  line-height: 1.5;
  color: var(--text);
  font-weight: 300;
}
.vs-7__drop {
  float: left;
  font-size: 84px;
  line-height: 0.85;
  padding: 6px 10px 0 0;
  font-weight: 700;
  color: var(--accent);
}
.vs-7__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
}
.vs-7__list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: baseline;
}
.vs-7__num {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.1em;
  font-variant-numeric: tabular-nums;
}
.vs-7__list h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.vs-7__list p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

/* ---- VARIANT 8: HORIZONTAL SCROLL ---- */
.vs-8__lead {
  font-size: 18px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.vs-8__rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 24px;
  margin: 0 -90px;
  padding-left: 90px;
  padding-right: 90px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
}
.vs-8__rail::-webkit-scrollbar { height: 6px; }
.vs-8__rail::-webkit-scrollbar-track { background: transparent; }
.vs-8__rail::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 3px; }
.vs-8__card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  padding: 28px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vs-8__card h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
}
.vs-8__card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}
.vs-8__card--img {
  padding: 0;
  overflow: hidden;
  border: none;
  background: none;
}
.vs-8__card--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 220px;
}

/* ============ VALUES (legacy, replaced by vs-1..vs-8) ============ */
.values {
  position: relative;
  width: 1360px;
  max-width: 100%;
  margin: 0 auto;
  padding: 80px 90px 140px;
}

.values__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}

/* LEFT: image as bg (pure opacity, no gradients) + lead on top */
.values__left {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-start;
}
.values__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  pointer-events: none;
  user-select: none;
}
.values__lead-wrap {
  position: relative;
  z-index: 1;
  padding: 40px;
  align-self: center;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.values__display {
  font-size: clamp(40px, 3.8vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0 0 28px 0;
  max-width: 100%;
  word-wrap: break-word;
}
.values__display span {
  display: inline-block;
  background-image: url('img/dddepth-115.webp');
  background-size: 160% 240%;
  background-position: 40% 30%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.values__lead {
  font-size: 20px;
  line-height: 1.55;
  font-weight: 300;
  color: var(--gray);
  max-width: 540px;
  margin: 0;
}

/* RIGHT: inverted pyramid — first term largest, descending scale */
.values__right {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.value {
  position: relative;
  padding: 0;
  border: none;
}
.value::before { content: none; }
.value__term {
  display: block;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin-bottom: 10px;
  transition: color 0.25s;
}
.value__desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 540px;
}
.value--1 .value__term { font-size: 42px; }
.value--2 .value__term { font-size: 34px; }
.value--3 .value__term { font-size: 28px; }
.value--4 .value__term { font-size: 23px; }
.value--5 .value__term { font-size: 20px; }
.value:hover .value__term { color: var(--accent); }

/* crosshair — corner mark, bottom-right of section */
.values__cross {
  position: absolute;
  bottom: -28px;
  right: -28px;
  color: var(--muted);
  opacity: 0.7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  z-index: 2;
}


/* ============ VALUES ============ */
.values {
  display: grid;
  grid-template-columns: 400px 1fr;
  width: 1360px;
  max-width: 100%;
  margin: 0 auto;
  min-height: 680px;
}

.values__visual {
  position: relative;
  overflow: hidden;
}
.values__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  display: block;
  pointer-events: none;
  user-select: none;
}

.values__content {
  padding: 80px 72px;
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.values__head { margin-bottom: 40px; }
.values__title {
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin: 0 0 18px;
}
.values__title .bold { font-weight: 700; color: var(--text); }
.values__title .thin { font-weight: 300; color: var(--muted); }
.values__lead {
  font-size: 14px;
  line-height: 1.65;
  font-weight: 300;
  color: var(--gray);
  margin: 0;
  max-width: 380px;
}

.values__list {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.vrow {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.09);
}
.vrow:last-child { border-bottom: 1px solid rgba(255,255,255,0.09); }

.vrow__term {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0 0 6px;
}
.vrow__text {
  font-size: 13px;
  line-height: 1.65;
  color: var(--gray);
  font-weight: 300;
  margin: 0;
}

/* ============ ADV-B ============ */
.adv-b {
  width: 1360px;
  max-width: 100%;
  margin: 0 auto;
  padding: 100px 90px 140px;
  border-top: 1px solid var(--border);
}
.adv-b__head { margin-bottom: 56px; }
.adv-b__title {
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin: 0;
}
.adv-b__title .bold { font-weight: 700; color: var(--text); }
.adv-b__title .thin { font-weight: 300; color: var(--muted); }
.adv-b__list { list-style: none; }
.adv-b__row {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,0.09);
  position: relative;
}
.adv-b__row:last-child { border-bottom: 1px solid rgba(255,255,255,0.09); }
.adv-b__row::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.adv-b__row:hover::before { width: 100%; }
.adv-b__row:hover { border-top-color: transparent; }
.adv-b__name {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0;
  padding-top: 2px;
}
.adv-b__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray);
  font-weight: 300;
  margin: 0;
}

/* ============ VAL-B ============ */
.val-b {
  width: 1360px;
  max-width: 100%;
  margin: 0 auto;
  padding: 100px 90px 160px;
  border-top: 1px solid var(--border);
}
.val-b__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 72px;
  align-items: end;
  margin-bottom: 56px;
}
.val-b__title {
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin: 0;
}
.val-b__title .bold { font-weight: 700; color: var(--text); }
.val-b__title .thin { font-weight: 300; color: var(--muted); }
.val-b__lead {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray);
  font-weight: 300;
  margin: 0 0 8px;
  max-width: 440px;
}
.val-b__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
}
.val-b__term {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 14px;
  line-height: 1.2;
}
.val-b__text {
  font-size: 13px;
  line-height: 1.65;
  color: var(--gray);
  font-weight: 300;
  margin: 0;
}

/* ============ ADV-C ============ */
.adv-c {
  width: 1360px;
  max-width: 100%;
  margin: 0 auto;
  padding: 100px 90px 0;
  border-top: 1px solid var(--border);
}
.adv-c__label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 60px;
}
.adv-c__list { list-style: none; }
.adv-c__item { position: relative; }
.adv-c__item--end .adv-c__rule { margin: 0; }
.adv-c__rule {
  position: relative;
  height: 1px;
  background: rgba(255,255,255,0.1);
}
.adv-c__cross {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  color: rgba(0,255,136,0.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
}
.adv-c__body {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
  padding: 28px 0;
}
.adv-c__name {
  font-size: 44px;
  font-weight: 200;
  letter-spacing: -0.025em;
  color: var(--text);
  line-height: 1.05;
  margin: 0;
}
.adv-c__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
  font-weight: 300;
  margin: 0;
  padding-top: 8px;
}
.adv-c__item:not(.adv-c__item--end):hover .adv-c__rule { background: rgba(0,255,136,0.4); }
.adv-c__item:not(.adv-c__item--end):hover .adv-c__name { color: rgba(255,255,255,0.7); }

/* ============ VAL-C ============ */
.val-c {
  width: 1360px;
  max-width: 100%;
  margin: 0 auto;
  padding: 100px 90px 160px;
  border-top: 1px solid var(--border);
}
.val-c__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}
.val-c__title {
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin: 0;
}
.val-c__title .bold { font-weight: 700; color: var(--text); }
.val-c__title .thin { font-weight: 300; color: var(--muted); }
.val-c__lead {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray);
  font-weight: 300;
  margin: 0 0 8px;
  max-width: 440px;
}
.val-c__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.val-c__col {
  padding: 28px 32px 0 0;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.val-c__col:last-child { border-right: none; padding-right: 0; }
.val-c__col:not(:first-child) { padding-left: 32px; padding-right: 32px; }
.val-c__col:last-child { padding-right: 0; }
.val-c__term {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 14px;
  line-height: 1.25;
}
.val-c__text {
  font-size: 13px;
  line-height: 1.65;
  color: var(--gray);
  font-weight: 300;
  margin: 0;
}

/* ============ ADV-D ============ */
.adv-d {
  width: 1360px;
  max-width: 100%;
  margin: 0 auto;
  padding: 100px 90px 140px;
  border-top: 1px solid var(--border);
}
.adv-d__head { margin-bottom: 64px; }
.adv-d__title {
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin: 0;
}
.adv-d__title .bold { font-weight: 700; color: var(--text); }
.adv-d__title .thin { font-weight: 300; color: var(--muted); }
.adv-d__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.07);
}
.adv-d__card {
  background: var(--bg-0);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.25s;
}
.adv-d__card:hover { background: var(--bg-1); }
.adv-d__icon {
  color: var(--accent);
  flex-shrink: 0;
}
.adv-d__name {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0;
  line-height: 1.25;
}
.adv-d__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray);
  font-weight: 300;
  margin: 0;
}

/* ============ VAL-D ============ */
.val-d {
  width: 1360px;
  max-width: 100%;
  margin: 0 auto;
  padding: 100px 90px 160px;
  border-top: 1px solid var(--border);
}
.val-d__top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}
.val-d__title {
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin: 0;
}
.val-d__title .bold { font-weight: 700; color: var(--text); }
.val-d__title .thin { font-weight: 300; color: var(--muted); }
.val-d__lead {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray);
  font-weight: 300;
  margin: 0 0 8px;
  max-width: 440px;
}
.val-d__list { margin: 0; padding: 0; }
.val-d__row {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: baseline;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.val-d__row:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.val-d__term {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0;
}
.val-d__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray);
  font-weight: 300;
  margin: 0;
}

/* ============ ADV-E ============ */
.adv-e {
  width: 1360px;
  max-width: 100%;
  margin: 0 auto;
  padding: 100px 90px 140px;
  border-top: 1px solid var(--border);
}
.adv-e__head { margin-bottom: 72px; }
.adv-e__title {
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin: 0;
}
.adv-e__title .bold { font-weight: 700; color: var(--text); }
.adv-e__title .thin { font-weight: 300; color: var(--muted); }
.adv-e__list { list-style: none; }
.adv-e__item {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: baseline;
  padding: 44px 0;
  border-top: 1px solid rgba(255,255,255,0.09);
  position: relative;
  cursor: default;
}
.adv-e__item:last-child { border-bottom: 1px solid rgba(255,255,255,0.09); }
.adv-e__item::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.adv-e__item:hover::before { width: 100%; }
.adv-e__item:hover { border-top-color: transparent; }
.adv-e__item:hover .adv-e__name { color: rgba(255,255,255,0.75); }
.adv-e__name {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0;
  line-height: 1.2;
  transition: color 0.3s;
}
.adv-e__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
  font-weight: 300;
  margin: 0;
}

/* ============ VAL-E ============ */
.val-e {
  width: 1360px;
  max-width: 100%;
  margin: 0 auto;
  padding: 100px 90px 160px;
  border-top: 1px solid var(--border);
}
.val-e__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}
.val-e__title {
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin: 0;
}
.val-e__title .bold { font-weight: 700; color: var(--text); }
.val-e__title .thin { font-weight: 300; color: var(--muted); }
.val-e__lead {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray);
  font-weight: 300;
  margin: 0 0 8px;
  max-width: 440px;
}
.val-e__list { }
.val-e__row {
  border-top: 1px solid rgba(255,255,255,0.09);
}
.val-e__row:last-child { border-bottom: 1px solid rgba(255,255,255,0.09); }
.val-e__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  text-align: left;
}
.val-e__name {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  transition: color 0.25s;
}
.val-e__row--open .val-e__name,
.val-e__trigger:hover .val-e__name { color: var(--accent); }
.val-e__ico {
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.3s, color 0.25s;
}
.val-e__row--open .val-e__ico { transform: rotate(45deg); color: var(--accent); }
.val-e__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.val-e__row--open .val-e__body { max-height: 200px; }
.val-e__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
  font-weight: 300;
  margin: 0 0 28px;
  max-width: 680px;
}

/* ============ ADV-F ============ */
.adv-f {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
  width: 1360px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 90px;
  border-top: 1px solid var(--border);
}
.adv-f__left {
  position: sticky;
  top: 100px;
  padding: 100px 0 100px;
}
.adv-f__title {
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.adv-f__title .bold { font-weight: 700; color: var(--text); }
.adv-f__title .thin { font-weight: 300; color: var(--muted); }
.adv-f__right { padding: 100px 0; }
.adv-f__list { list-style: none; }
.adv-f__item {
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.adv-f__item:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.adv-f__item::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.adv-f__item:hover::before { width: 100%; }
.adv-f__item:hover { border-top-color: transparent; }
.adv-f__name {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0 0 10px;
  line-height: 1.2;
}
.adv-f__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray);
  font-weight: 300;
  margin: 0;
  max-width: 580px;
}

/* ============ VAL-F ============ */
.val-f {
  position: relative;
  width: 1360px;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid var(--border);
}
.val-f__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.38;
  pointer-events: none;
  user-select: none;
}
.val-f__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(20,20,20,0.78) 0%,
    rgba(20,20,20,0.42) 50%,
    rgba(20,20,20,0.85) 100%);
  z-index: 1;
  pointer-events: none;
}
.val-f__inner {
  position: relative;
  z-index: 2;
  padding: 100px 90px 140px;
}
.val-f__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}
.val-f__title {
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin: 0;
}
.val-f__title .bold { font-weight: 700; color: #fff; }
.val-f__title .thin { font-weight: 300; color: rgba(255,255,255,0.45); }
.val-f__lead {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  margin: 0 0 8px;
  max-width: 420px;
}
.val-f__list { display: flex; flex-direction: column; }
.val-f__item {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: baseline;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.13);
}
.val-f__item:last-child { border-bottom: 1px solid rgba(255,255,255,0.13); }
.val-f__name {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}
.val-f__desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  margin: 0;
}

/* ============ ADV-G ============ */
.adv-g {
  width: 1360px;
  max-width: 100%;
  margin: 0 auto;
  padding: 100px 90px 140px;
  border-top: 1px solid var(--border);
}
.adv-g__head { margin-bottom: 64px; }
.adv-g__title {
  font-size: 60px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin: 0;
}
.adv-g__title .bold { font-weight: 700; color: var(--text); }
.adv-g__title .thin { font-weight: 300; color: var(--muted); }
.adv-g__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 72px;
  border-top: 1px solid rgba(255,255,255,0.09);
  padding-top: 48px;
}
.adv-g__name {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0 0 14px;
  line-height: 1.25;
}
.adv-g__desc {
  font-size: 14px;
  line-height: 1.68;
  color: var(--gray);
  font-weight: 300;
  margin: 0;
}

/* ============ VAL-G ============ */
.val-g {
  width: 1360px;
  max-width: 100%;
  margin: 0 auto;
  padding: 100px 90px 160px;
  border-top: 1px solid var(--border);
}
.val-g__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}
.val-g__title {
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin: 0;
}
.val-g__title .bold { font-weight: 700; color: var(--text); }
.val-g__title .thin { font-weight: 300; color: var(--muted); }
.val-g__lead {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray);
  font-weight: 300;
  margin: 0 0 8px;
  max-width: 440px;
}
.val-g__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.09);
}
.val-g__item {
  padding: 32px 32px 32px 0;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.val-g__item:first-child { padding-left: 0; }
.val-g__item:not(:first-child) { padding-left: 32px; }
.val-g__item:last-child { border-right: none; }
.val-g__name {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 12px;
  line-height: 1.25;
}
.val-g__desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--gray);
  font-weight: 300;
  margin: 0;
}

/* ============ ADV-H ============ */
.adv-h {
  width: 1360px;
  max-width: 100%;
  margin: 0 auto;
  padding: 100px 90px 120px;
  border-top: 1px solid var(--border);
}
.adv-h__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 56px;
}
.adv-h__list { list-style: none; }
.adv-h__item {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.adv-h__item:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.adv-h__name {
  font-size: 32px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 14px;
  line-height: 1.15;
}
.adv-h__desc {
  font-size: 15px;
  line-height: 1.68;
  color: var(--gray);
  font-weight: 300;
  margin: 0;
  max-width: 720px;
}

/* ============ VAL-H ============ */
.val-h {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 1360px;
  max-width: 100%;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  min-height: 700px;
}
.val-h__visual {
  position: relative;
  overflow: hidden;
}
.val-h__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  display: block;
  pointer-events: none;
  user-select: none;
}
.val-h__content {
  padding: 72px 72px 72px 64px;
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.val-h__head { margin-bottom: 40px; }
.val-h__title {
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin: 0 0 16px;
}
.val-h__title .bold { font-weight: 700; color: var(--text); }
.val-h__title .thin { font-weight: 300; color: var(--muted); }
.val-h__lead {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray);
  font-weight: 300;
  margin: 0;
}
.val-h__list {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.val-h__item {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.val-h__item:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.val-h__name {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 6px;
}
.val-h__desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--gray);
  font-weight: 300;
  margin: 0;
}

/* ============ ADV-J ============ */
.adv-j {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.adv-j__wrap {
  width: 1360px;
  max-width: 100%;
  margin: 0 auto;
  padding: 100px 90px 0;
}
.adv-j__head { margin-bottom: 56px; }
.adv-j__title {
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
}
.adv-j__title .bold { font-weight: 700; color: var(--text); }
.adv-j__title .thin { font-weight: 300; color: var(--muted); }
.adv-j__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  position: relative;
}
.adv-j__grid::before,
.adv-j__grid::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cline x1='8' y1='0' x2='8' y2='16' stroke='%2300ff88' stroke-width='1' vector-effect='non-scaling-stroke'/%3E%3Cline x1='0' y1='8' x2='16' y2='8' stroke='%2300ff88' stroke-width='1' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(-50%, -50%);
  top: var(--circle-top, 50%);
  z-index: 2;
  pointer-events: none;
}
.adv-j__grid::before { left: 33.333%; }
.adv-j__grid::after  { left: 66.667%; }
.adv-j__cell {
  background: var(--bg-0);
  padding: 40px 40px 48px;
  position: relative;
  overflow: hidden;
}
.adv-j__num {
  position: absolute;
  bottom: -48px;
  right: 14px;
  font-family: 'Orbitron', sans-serif;
  font-size: 150px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: rgba(255,255,255,0.05);
  pointer-events: none;
  user-select: none;
  will-change: transform;
}
.adv-j__name {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 12px;
  line-height: 1.25;
  position: relative;
  z-index: 1;
}
.adv-j__desc {
  font-size: 16px;
  line-height: 1.68;
  color: var(--gray);
  font-weight: 300;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ============ ADV-I ============ */
.adv-i {
  width: 1360px;
  max-width: 100%;
  margin: 0 auto;
  padding: 100px 90px 120px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0 80px;
  align-items: start;
}
.adv-i__meta {
  position: sticky;
  top: 110px;
}
.adv-i__label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.adv-i__count {
  display: block;
  font-size: 96px;
  font-weight: 200;
  line-height: 0.88;
  letter-spacing: -0.05em;
  color: rgba(0, 255, 136, 0.10);
  margin-bottom: 28px;
}
.adv-i__note {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 300;
}
.adv-i__list { list-style: none; }
.adv-i__item {
  padding: 34px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.adv-i__item:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.adv-i__name {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 10px;
  line-height: 1.25;
}
.adv-i__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
  font-weight: 300;
  margin: 0;
}

/* ============ VAL-I ============ */
.val-i { border-top: 1px solid var(--border); }
.val-i__visual {
  width: 100%;
  height: 280px;
  position: relative;
  overflow: hidden;
}
.val-i__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  opacity: 0.42;
  pointer-events: none;
  user-select: none;
}
.val-i__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, var(--bg-0) 100%);
}
.val-i__inner {
  position: relative;
  z-index: 1;
  width: 1360px;
  max-width: 100%;
  margin: -96px auto 0;
  padding: 0 90px 80px;
}
.val-i__head { margin-bottom: 56px; }
.val-i__label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.val-i__title {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
  margin: 0 0 16px;
}
.val-i__title em {
  display: block;
  font-size: 38px;
  font-weight: 300;
  color: var(--muted);
  font-style: normal;
  letter-spacing: -0.025em;
}
.val-i__lead {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray);
  font-weight: 300;
  margin: 0;
  max-width: 520px;
}
.val-i__strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 32px;
}
.val-i__item { padding-right: 28px; border-right: 1px solid rgba(255,255,255,0.08); }
.val-i__item:not(:first-child) { padding-left: 28px; }
.val-i__item:last-child { border-right: none; padding-right: 0; }
.val-i__name {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 10px;
  line-height: 1.25;
}
.val-i__desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--gray);
  font-weight: 300;
  margin: 0;
}

/* ============ VAL-J ============ */
.val-j {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.val-j__bg {
  position: absolute;
  left: -30px;
  bottom: 50px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  animation: val-j-drift 11s linear infinite alternate;
}
@keyframes val-j-drift {
  from { transform: translateX(-20px); }
  to   { transform: translateX(20px); }
}
.val-j__wrap {
  position: relative;
  z-index: 1;
  width: 1360px;
  max-width: 100%;
  margin: 0 auto;
  padding: 130px 90px 160px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 0 80px;
}
.val-j__left { }
.val-j__right { }
.val-j__left-inner {
  position: sticky;
  top: 320px;
}
.val-j__title {
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
  margin: 0 0 20px;
}
.val-j__title .bold { font-weight: 700; color: var(--text); }
.val-j__title .thin { font-weight: 300; color: var(--muted); display: block; }
.val-j__lead {
  font-size: 17px;
  line-height: 1.68;
  color: var(--gray);
  font-weight: 300;
  margin: 0;
}
.val-j__arrow {
  display: block;
  width: 140px;
  height: auto;
  margin-top: 40px;
  color: rgba(255,255,255,0.35);
}
.val-j__right {
  display: flex;
  flex-direction: column;
}
.val-j__sep {
  height: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.val-j__sep::before,
.val-j__sep::after {
  content: '';
  flex: 1;
  width: 1px;
  background: rgba(255,255,255,0.12);
}
.val-j__node {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cline x1='8' y1='0' x2='8' y2='16' stroke='%2300ff88' stroke-width='1' vector-effect='non-scaling-stroke'/%3E%3Cline x1='0' y1='8' x2='16' y2='8' stroke='%2300ff88' stroke-width='1' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.val-j__card {
  padding: 36px 40px;
  background: var(--bg-1);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  will-change: opacity;
}
.val-j__icon {
  flex-shrink: 0;
  margin-top: 2px;
  width: 72px;
  height: 72px;
  object-fit: contain;
}
.val-j__name {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 8px;
  line-height: 1.2;
}
.val-j__desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray);
  font-weight: 300;
  margin: 0;
}

/* ============ PARTNERS-J (marquee strip) ============ */
.partners-j {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.partners-j::before,
.partners-j::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.partners-j::before {
  left: 0;
  background: linear-gradient(to right, #101010 40%, transparent);
}
.partners-j::after {
  right: 0;
  background: linear-gradient(to left, #101010 40%, transparent);
}
.partners-j__inner {
  padding: 28px 0;
  overflow: hidden;
}
.partners-j__track {
  display: flex;
  width: max-content;
  animation: partners-scroll 38s linear infinite;
  will-change: transform;
}
.partners-j__track:hover {
  animation-play-state: paused;
}
.partners-j__group {
  display: flex;
  align-items: center;
  gap: 80px;
  padding-right: 80px;
  flex-shrink: 0;
}
.partners-j__item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  opacity: 0.45;
  filter: grayscale(1) brightness(2);
  transition: opacity 0.3s ease;
  text-decoration: none;
}
.partners-j__item:hover {
  opacity: 0.9;
}
.partners-j__item img {
  height: 36px;
  width: auto;
  display: block;
}
@keyframes partners-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ ABOUT-J ============ */
.about-j {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.about-j__wrap {
  position: relative;
  z-index: 2;
  width: 1360px;
  max-width: 100%;
  margin: 0 auto;
  padding: 100px 90px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  column-gap: 16px;
  align-items: stretch;
}
.about-j__left {
  position: relative;
  order: 2;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  min-height: 320px;
}
.about-j__photo {
  position: absolute;
  top: 12px;
  left: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  border-radius: 12px;
  object-fit: cover;
  object-position: center bottom;
  display: block;
  filter: brightness(0.65);
}
.about-j__right {
  order: 1;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
}
.about-j__box { padding: 0; }
.about-j__title {
  grid-column: 1 / -1;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 48px;
  color: var(--text);
}
.about-j__p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--gray);
  font-weight: 300;
  margin: 0 0 24px;
}
.about-j__p:last-child { margin-bottom: 0; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1440px) {
  .hero__title { font-size: 56px; }
}
@media (max-width: 1200px) {
  .navbar { width: calc(100% - 80px); gap: 24px; padding: 0 16px 0 22px; }
  .advantages { padding: 60px 30px 90px; }
  .advantages__head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .advantages__title { text-align: left; margin-left: 0; font-size: 44px; }
  .adv { grid-template-columns: 110px 1fr 50px; gap: 24px; }
  .adv__num { font-size: 64px; }
}
@media (max-width: 900px) {
  .nav { display: none; }
  .navbar { width: calc(100% - 40px); }
  .hero__title { font-size: 42px; }
  .float-card { right: 20px; bottom: 20px; width: 280px; }
  .globe { right: -480px; opacity: 0.4; }
  .rail { display: none; }
  .bottom-info--left { left: 20px; }
  .adv { grid-template-columns: 80px 1fr; }
  .adv__more { display: none; }
  .adv__num { font-size: 48px; }
  .adv__title { font-size: 20px; }
}

/* ============ BRAND-J ============ */
.brand-j {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.brand-j__wrap {
  position: relative;
  z-index: 1;
  width: 1360px;
  max-width: 100%;
  margin: 0 auto;
  padding: 100px 90px 120px;
}
.brand-j__head {
  margin-bottom: 56px;
  text-align: center;
}
.brand-j__title {
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
  margin: 0;
}
.brand-j__title .bold { font-weight: 700; }
.brand-j__title .thin { font-weight: 300; color: var(--muted); }
.brand-j__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@keyframes brand-card-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.brand-j__card {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 24px 32px;
  transition: border-color 0.2s, background 0.2s;
  opacity: 0;
  will-change: transform, opacity;
}
.brand-j--visible .brand-j__card:nth-child(1)  { animation: brand-card-in 0.5s ease forwards 0.00s; }
.brand-j--visible .brand-j__card:nth-child(2)  { animation: brand-card-in 0.5s ease forwards 0.05s; }
.brand-j--visible .brand-j__card:nth-child(3)  { animation: brand-card-in 0.5s ease forwards 0.10s; }
.brand-j--visible .brand-j__card:nth-child(4)  { animation: brand-card-in 0.5s ease forwards 0.15s; }
.brand-j--visible .brand-j__card:nth-child(5)  { animation: brand-card-in 0.5s ease forwards 0.20s; }
.brand-j--visible .brand-j__card:nth-child(6)  { animation: brand-card-in 0.5s ease forwards 0.25s; }
.brand-j--visible .brand-j__card:nth-child(7)  { animation: brand-card-in 0.5s ease forwards 0.30s; }
.brand-j--visible .brand-j__card:nth-child(8)  { animation: brand-card-in 0.5s ease forwards 0.35s; }
.brand-j--visible .brand-j__card:nth-child(9)  { animation: brand-card-in 0.5s ease forwards 0.40s; }
.brand-j--visible .brand-j__card:nth-child(10) { animation: brand-card-in 0.5s ease forwards 0.45s; }
.brand-j--visible .brand-j__card:nth-child(11) { animation: brand-card-in 0.5s ease forwards 0.50s; }
.brand-j--visible .brand-j__card:nth-child(12) { animation: brand-card-in 0.5s ease forwards 0.55s; }
.brand-j--visible .brand-j__card:nth-child(13) { animation: brand-card-in 0.5s ease forwards 0.60s; }
.brand-j--visible .brand-j__card:nth-child(14) { animation: brand-card-in 0.5s ease forwards 0.65s; }
.brand-j--visible .brand-j__card:nth-child(15) { animation: brand-card-in 0.5s ease forwards 0.70s; }
.brand-j__card:hover {
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
}
.brand-j__logo {
  max-width: 100%;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ============ REQ-J ============ */
.req-j {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.req-j__wrap {
  width: 1360px;
  max-width: 100%;
  margin: 0 auto;
  padding: 48px 90px 56px;
}
.req-j__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.9fr 1fr;
  gap: 48px;
}
.req-j__group {
  display: flex;
  flex-direction: column;
}
.req-j__group--contacts {
  gap: 0;
}
.req-j__head {
  margin-bottom: 32px;
}
.req-j__company {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0 0 4px;
}
.req-j__heading {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin: 0 0 20px;
}
.req-j__contact {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
  line-height: 1.2;
  transition: color 0.2s;
}
.req-j__contact + .req-j__contact { margin-top: 10px; }
.req-j__contact svg {
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.req-j__contact:hover { color: var(--accent); }
.req-j__contact:hover svg { opacity: 1; }
.req-j__contact--sub {
  align-items: center;
  font-size: 16px;
}
.req-j__contact--sub span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.req-j__contact-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.req-j__line {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin: 0 0 6px;
}
.req-j__line:last-child { margin-bottom: 0; }

.req-j__bottom {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.req-j__bottom-inner {
  width: 1360px;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.req-j__copy {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  margin: 0;
}
.req-j__docs {
  display: flex;
  align-items: center;
  gap: 20px;
}
.req-j__doc {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.req-j__doc:hover { color: rgba(255,255,255,0.8); }

/* ============ CAT-L ============ */
.cat-l {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cat-l__wrap {
  position: relative;
  z-index: 1;
  width: 1180px;
  max-width: 100%;
  margin: 0 auto;
  padding: 100px 90px 120px;
}
.cat-l__head {
  margin-bottom: 60px;
  text-align: center;
}
.cat-l__title {
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
  margin: 0;
}
.cat-l__title .bold { font-weight: 700; }
.cat-l__title .thin { font-weight: 300; color: var(--muted); }
.cat-l__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.cat-l__cell {
  position: relative;
  padding: 42px 36px;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
}
.cat-l__cell:nth-child(3n) {
  border-right: none;
}
.cat-l__cell:nth-last-child(-n+3) {
  border-bottom: none;
}
.cat-l__cell:nth-child(3n+1):not(:nth-last-child(-n+3))::after,
.cat-l__cell:nth-child(3n+2):not(:nth-last-child(-n+3))::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cline x1='8' y1='0' x2='8' y2='16' stroke='%2300ff88' stroke-width='1' vector-effect='non-scaling-stroke'/%3E%3Cline x1='0' y1='8' x2='16' y2='8' stroke='%2300ff88' stroke-width='1' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
  pointer-events: none;
}
.cat-l__img {
  aspect-ratio: 1 / 1;
  width: 90%;
  margin: 0 auto 24px;
}
.cat-l__photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.cat-l__cell:hover .cat-l__photo { transform: scale(1.06); }
.cat-l__foot {
  text-align: center;
}
.cat-l__name {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 10px;
  line-height: 1.3;
}
.cat-l__desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  margin: 0;
  line-height: 1.65;
}

/* ============================================================
   RESPONSIVE
   Десктоп (>1024px) не затрагивается.
   Только добавление правил поверх.
   ============================================================ */

/* --- Фикс navbar когда .nav скрыт (≤900px) --- */
@media (max-width: 900px) {
  .nav__icons { margin-left: auto; }
  .sep { display: none; }
  .navbar__sep--burger,
  .navbar__burger { display: flex; }
  .navbar__sep--burger { display: block; }
}

/* ============ TABLET ≤ 1024px ============ */
@media (max-width: 1024px) {

  /* Декоративные линии и крестики убираем — при 40px паддинге они заходят в контент */
  .v-line-global,
  .v-line,
  .section-cross { display: none; }

  /* Hero */
  .hero { padding-top: 140px !important; justify-content: flex-start !important; }
  .hero__title { font-size: 48px; }

  /* about-j — одна колонка, фото сверху */
  .about-j__wrap {
    grid-template-columns: 1fr;
    padding: 80px 40px;
  }
  .about-j__left { order: 2; min-height: 380px; }
  .about-j__right { order: 1; }
  .about-j__title { font-size: 40px; margin-bottom: 36px; }

  /* adv-j — 2 колонки, крестик посередине */
  .adv-j__wrap { padding: 80px 40px 0; }
  .adv-j__title { font-size: 40px; }
  .adv-j__grid { grid-template-columns: repeat(2, 1fr); }
  .adv-j__grid::before { left: 50%; }
  .adv-j__grid::after { display: none; }

  /* val-j — одна колонка, sticky выключить */
  .val-j__wrap {
    grid-template-columns: 1fr;
    padding: 80px 40px 100px;
    gap: 48px;
  }
  .val-j__left-inner { position: static; }
  .val-j__title { font-size: 40px; }

  /* cat-l */
  .cat-l__wrap { padding: 80px 40px 100px; }
  .cat-l__title { font-size: 40px; }
  .cat-l__grid { grid-template-columns: repeat(2, 1fr); }
  .cat-l__cell { padding: 40px 32px; }
  .cat-l__cell:nth-child(3n) { border-right: 1px solid rgba(255,255,255,0.08); }
  .cat-l__cell:nth-child(2n) { border-right: none; }
  .cat-l__cell:nth-last-child(-n+3) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .cat-l__cell:nth-last-child(-n+1) { border-bottom: none; }
  .cat-l .cat-l__cell:nth-child(3n+1)::after,
  .cat-l .cat-l__cell:nth-child(3n+2)::after { content: none; }
  .cat-l__cell:nth-child(odd):not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cline x1='8' y1='0' x2='8' y2='16' stroke='%2300ff88' stroke-width='1' vector-effect='non-scaling-stroke'/%3E%3Cline x1='0' y1='8' x2='16' y2='8' stroke='%2300ff88' stroke-width='1' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 2;
    pointer-events: none;
  }

  /* brand-j — 3 колонки */
  .brand-j__wrap { padding: 80px 40px 100px; }
  .brand-j__title { font-size: 40px; }
  .brand-j__grid { grid-template-columns: repeat(3, 1fr); }

  /* req-j — 2 колонки */
  .req-j__wrap { padding: 40px 40px; }
  .req-j__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ============ MOBILE ≤ 768px ============ */
@media (max-width: 768px) {

  /* Navbar */
  .navbar { width: calc(100% - 32px); padding: 0 14px 0 18px; gap: 12px; top: 14px; }
  .navbar--stuck { top: 0; }
  .logo img { height: 26px; }

  /* Hero */
  .hero { padding: 165px 24px 0; min-height: calc(100vh - 58px); }
  .hero__title { font-size: 44px; margin-bottom: 28px; }
  .hero__label { margin-bottom: 20px; }
  .hero .hero__bg-img { width: 115%; height: auto; right: -15%; bottom: -40px; }

  /* about-j */
  .about-j__wrap { padding: 80px 24px 60px; }
  .about-j__right { padding: 20px; }
  .about-j__title { font-size: 38px; margin-bottom: 28px; }
  .about-j__left { min-height: 280px; }

  /* adv-j — 1 колонка */
  .adv-j__wrap { padding: 80px 24px 0; }
  .adv-j__title { font-size: 38px; }
  .adv-j__grid { grid-template-columns: 1fr; }
  .adv-j__grid::before { display: none; }
  .adv-j__cell { padding: 32px 28px 44px; }

  /* val-j */
  .val-j__arrow { display: none; }
  .val-j__wrap { padding: 80px 24px 80px; }
  .val-j__right { min-width: 0; width: 100%; }
  .val-j__title { font-size: 38px; }
  .val-j__card { padding: 24px 20px; gap: 16px; }
  .val-j__icon { width: 52px; height: 52px; }

  /* cat-l — 1 колонка */
  .cat-l__wrap { padding: 80px 24px 80px; }
  .cat-l__head { margin-bottom: 0; }
  .cat-l__title { font-size: 38px; }
  .cat-l__grid { grid-template-columns: 1fr; }
  .cat-l__cell { border-right: none; padding: 32px 24px; }
  .cat-l__cell:nth-child(3n),
  .cat-l__cell:nth-child(2n) { border-right: none; }
  .cat-l__cell:nth-last-child(-n+3),
  .cat-l__cell:nth-last-child(-n+1) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .cat-l__cell:last-child { border-bottom: none; }
  .cat-l .cat-l__cell:nth-child(n)::after { content: none; }
  .cat-l__img { width: 78%; }

  /* brand-j — 2 колонки */
  .brand-j__wrap { padding: 80px 24px 80px; }
  .brand-j__title { font-size: 38px; }
  .brand-j__grid { grid-template-columns: repeat(2, 1fr); }

  /* req-j — 1 колонка */
  .req-j__wrap { padding: 60px 24px; }
  .req-j__grid { grid-template-columns: 1fr; }
  .req-j__bottom-inner { padding: 16px 24px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .req-j__docs { flex-direction: column; gap: 10px; }

  /* partners-j — компактнее, без градиентов */
  .partners-j::before,
  .partners-j::after { display: none; }
  .partners-j__inner { padding: 16px 0; }
  .partners-j__item img { height: 26px; }
}

/* ============ SMALL MOBILE ≤ 480px ============ */
@media (max-width: 480px) {

  /* Navbar */
  .navbar { width: calc(100% - 20px); }
  .nav--mobile { width: calc(100% - 20px); top: 78px; }

  /* Hero */
  .hero { padding: 130px 16px 0; min-height: calc(100vh - 58px); }
  .hero__title { font-size: 36px; }
  .hero__label { font-size: 9px; letter-spacing: 0.18em; white-space: normal; }
  .cta { flex-wrap: wrap; gap: 12px; }

  /* Секции — горизонтальные паддинги 16px */
  .about-j__wrap { padding: 64px 16px 48px; }
  .adv-j__wrap   { padding: 64px 16px 0; }
  .val-j__wrap   { padding: 64px 16px 60px; }
  .cat-l__wrap   { padding: 64px 16px 60px; }
  .brand-j__wrap { padding: 64px 16px 60px; }
  .req-j__wrap   { padding: 48px 16px; }
  .req-j__bottom-inner { padding: 14px 16px; }

  /* Заголовки секций */
  .about-j__title { font-size: 32px; }
  .adv-j__title   { font-size: 32px; }
  .val-j__title   { font-size: 32px; }
  .cat-l__title   { font-size: 32px; }
  .brand-j__title { font-size: 32px; }

  /* Прочее */
  .adv-j__num { font-size: 100px; }
  .adv-j__cell { padding: 28px 20px 36px; }
  .val-j__card { padding: 20px 16px; }
}
