/* Фирменный рукописный шрифт из брендбука */
@font-face {
  font-family: "Leonov SP";
  src: url("assets/fonts/LeonovSP.otf") format("opentype");
  font-display: swap;
}

/* ============ X6 AGENCY — фирменные токены из брендбука ============ */
:root {
  --bg: #171719;          /* тёмный фон — 55% */
  --surface: #262626;     /* фирменный тёмно-серый */
  --surface-2: #2e2e30;
  --line: rgba(252, 252, 252, 0.08);
  --text: #fcfcfc;        /* белый — 20% */
  --muted: #a3a3a3;
  --green: #03D302;       /* фирменный зелёный — 10% */
  --green-dark: #02a902;
  --blue: #0042F9;        /* дополнительный — 10% */
  --lime: #d2f500;        /* акцент — 4% */
  --red: #FE5140;         /* акцент — 1% */
  --radius: 24px;
  --font-head: "Unbounded", sans-serif;
  --font-body: "Noto Sans", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
[hidden] { display: none !important; }

.container {
  width: min(1240px, 100% - 48px);
  margin-inline: auto;
}

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

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

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

/* ============ Кнопки ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.01em;
  text-decoration: none;
  border-radius: 100px;
  padding: 13px 26px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease),
              border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn--lg { padding: 17px 34px; font-size: 15px; }
.btn--primary { background: var(--green); color: #0b0b0c; }
.btn--primary:hover { background: var(--lime); transform: translateY(-2px); }
.btn--ghost { color: var(--text); border-color: rgba(252, 252, 252, 0.22); }
.btn--ghost:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }
.btn--dark { background: #171719; color: #fcfcfc; }
.btn--dark:hover { background: #262626; transform: translateY(-2px); }

/* ============ NAV ============ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--lime));
  box-shadow: 0 0 10px rgba(3, 211, 2, 0.5);
  transform-origin: 0 50%;
  transform: scaleX(0);
  z-index: 200;
  pointer-events: none;
}

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 14px 0;
  transition: background-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav.is-scrolled {
  background: rgba(17, 17, 19, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__logo { display: flex; flex-shrink: 0; }
.nav__logo img { height: 26px; width: auto; }
.nav__links {
  display: flex;
  gap: 28px;
  margin-inline: auto;
}
.nav__links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--text); }
.nav__socials {
  display: flex;
  gap: 10px;
  margin-left: 14px;
  flex-shrink: 0;
}
.soc {
  position: relative;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  overflow: hidden;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.5),
    inset 0 1px 1.5px rgba(255, 255, 255, 0.55),
    inset 0 -2px 4px rgba(0, 0, 0, 0.28);
}
/* глянцевый блик в верхней половине — как у iOS-иконок */
.soc::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0.08) 46%, transparent 52%);
  pointer-events: none;
}
.soc svg { position: relative; filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.35)); }
.soc:hover { transform: translateY(-2px) scale(1.04); }
.soc--tg {
  background: linear-gradient(180deg, #41c5f7 0%, #2aabee 45%, #1e93cf 100%);
}
.soc--tg:hover { box-shadow: 0 8px 20px rgba(42, 171, 238, 0.55), inset 0 1px 1.5px rgba(255, 255, 255, 0.55), inset 0 -2px 4px rgba(0, 0, 0, 0.28); }
.soc--ig {
  background: radial-gradient(circle at 28% 112%, #fdf497 0%, #fd5949 42%, #d6249f 62%, #285aeb 92%);
}
.soc--ig:hover { box-shadow: 0 8px 20px rgba(214, 36, 159, 0.55), inset 0 1px 1.5px rgba(255, 255, 255, 0.55), inset 0 -2px 4px rgba(0, 0, 0, 0.28); }
.soc--yt {
  background: linear-gradient(180deg, #ff5a52 0%, #e02f2f 50%, #c01f1f 100%);
}
.soc--yt:hover { box-shadow: 0 8px 20px rgba(224, 47, 47, 0.55), inset 0 1px 1.5px rgba(255, 255, 255, 0.55), inset 0 -2px 4px rgba(0, 0, 0, 0.28); }
.founder__socials {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.founder__tags {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  max-width: 480px;
}
.founder__left .founder__name { margin-top: 26px; }
.founder__left .founder__award img { width: 46px; }
.founder__award {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  padding: 12px 22px 12px 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 195, 60, 0.4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 18px rgba(255, 185, 40, 0.16);
  text-decoration: none;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.founder__award:hover {
  border-color: #ffc93c;
  transform: translateY(-3px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 28px rgba(255, 185, 40, 0.35);
}
.founder__award img { width: 46px; flex-shrink: 0; }
.founder__award span { font-size: 14px; color: var(--muted); max-width: 360px; }
.founder__award b { color: var(--text); }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav__burger span {
  width: 24px; height: 2px;
  background: var(--text);
  transition: transform 0.25s var(--ease), opacity 0.25s;
}
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  right: -10%;
  top: 10%;
  width: 60vw;
  height: 60vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(circle, rgba(3, 211, 2, 0.16) 0%, transparent 62%);
  pointer-events: none;
}
.hero__visual { will-change: transform; }
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
  position: relative;
}
/* защита от распирания grid-колонок контентом */
.hero__inner > *,
.about__grid > *,
.principles__grid > *,
.founder__grid > *,
.services__grid > *,
.audience__grid > * {
  min-width: 0;
}
.hero__eyebrow {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 400;
  color: var(--green);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero__title {
  font-size: clamp(42px, 6.2vw, 84px);
  font-weight: 600;
  text-transform: uppercase;
}
.quote-mark { color: var(--green); }
.hero__title-accent { position: relative; white-space: nowrap; }
.underline {
  position: absolute;
  left: 2%;
  bottom: -0.18em;
  width: 96%;
  height: 0.28em;
  color: var(--green);
}
.underline path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw 1.1s 0.7s var(--ease) forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }
.hero__sub {
  margin-top: 30px;
  max-width: 520px;
  font-size: 19px;
  color: var(--muted);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}
.hero__stages {
  margin-top: 56px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.hero__stages span {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  white-space: nowrap;
}
.hero__stages i {
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green));
  margin: 0 14px;
  flex-shrink: 0;
}
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 620px;
}
.hero__canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  filter: drop-shadow(0 30px 80px rgba(3, 211, 2, 0.3));
}
.hero__hint {
  position: absolute;
  bottom: -8px;
  left: 50%;
  translate: -50% 0;
  font-family: var(--font-head);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  animation: hint-pulse 2.2s ease-in-out infinite;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.4s;
}
.hero__hint.is-hidden { opacity: 0; }
@keyframes hint-pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}
.hero__winbadge {
  position: absolute;
  top: -3%;
  left: 50%;
  translate: -50% 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(18px, 2vw, 28px);
  letter-spacing: -0.02em;
  color: var(--text);
  text-transform: uppercase;
  white-space: nowrap;
  max-width: 100vw;
  opacity: 0;
  scale: 0.6;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), scale 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-shadow: 0 0 40px rgba(3, 211, 2, 0.8);
}
.hero__winbadge span { color: var(--green); }
.hero__winbadge.is-on { opacity: 1; scale: 1; }
.hero__ctawin {
  position: absolute;
  bottom: 3%;
  left: 50%;
  translate: -50% 0;
  opacity: 0;
  scale: 0.6;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), scale 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  box-shadow: 0 12px 40px rgba(3, 211, 2, 0.45);
}
.hero__ctawin.is-on { opacity: 1; scale: 1; pointer-events: auto; }
.hero__soundbtn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(38, 38, 38, 0.7);
  border: 1px solid rgba(252, 252, 252, 0.18);
  border-radius: 50%;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.hero__soundbtn:hover { color: var(--green); border-color: var(--green); }
.hero__spiral {
  width: min(420px, 90%);
  filter: drop-shadow(0 30px 80px rgba(3, 211, 2, 0.35));
  animation: float 7s ease-in-out infinite;
  will-change: transform;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-22px) rotate(2deg); }
}

/* ============ MARQUEE ============ */
.marquee {
  border-block: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  background: #131315;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee__track span {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: var(--text);
}
.marquee__track i { color: var(--green); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ Секции ============ */
.section { padding: 130px 0; }
.section__label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 400;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 22px;
}
.section__title {
  font-size: clamp(30px, 3.8vw, 52px);
  text-transform: uppercase;
}
.section__head { margin-bottom: 64px; }
.section__head--arrow {
  display: flex;
  align-items: center;
  gap: 30px;
}
.decor3--cyclearrow {
  width: 110px;
  flex-shrink: 0;
  animation: decor-float 8s ease-in-out infinite;
}
.vac-shake {
  position: absolute;
  right: 24px;
  bottom: 18px;
  width: 158px;
  pointer-events: none;
  animation: decor-float 8s ease-in-out infinite;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.4));
}
/* рукопожатие «пожимается» при наведении на кнопку */
.vacancy-card:has(.btn:hover) .vac-shake { animation: shake-pulse 0.7s ease-in-out infinite; }
@keyframes shake-pulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  30% { transform: scale(1.14) rotate(-5deg); }
  60% { transform: scale(1.06) rotate(4deg); }
}
.vac-perks {
  list-style: none;
  margin-top: 28px;
  border-bottom: 1px solid var(--line);
}
.vac-perks li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 12px 4px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
}
.vac-perks i {
  font-style: normal;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}

/* ============ ABOUT ============ */
.about { padding-bottom: 60px; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.about__lead {
  font-size: 22px;
  line-height: 1.55;
  color: var(--text);
}
.about__cards {
  margin-top: 36px;
  border-bottom: 1px solid var(--line);
}
.mini-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 26px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding: 22px 6px;
  transition: background 0.3s var(--ease);
}
.mini-card:hover { background: rgba(252, 252, 252, 0.025); }
.mini-card h3 {
  font-size: 15px;
  color: var(--green);
  text-transform: uppercase;
  padding-top: 2px;
}
.mini-card p { font-size: 15px; color: var(--muted); }

.title-accent { color: var(--green); }

/* лесенка-график «X6 в цифрах» */
.stairs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  align-items: end;
  height: 400px;
  margin-top: 52px;
}
.stairs__step {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  text-align: center;
  min-width: 0;
}
.stairs__step b {
  font-family: var(--font-head);
  font-size: clamp(15px, 1.6vw, 22px);
  font-weight: 600;
  color: var(--green);
  margin-bottom: 5px;
}
.stairs__step span {
  font-size: 11.5px;
  line-height: 1.4;
  color: var(--muted);
  margin-bottom: 12px;
}
.stairs__step i {
  display: block;
  width: 100%;
  height: 0;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(180deg, rgba(3, 211, 2, 0.95), rgba(3, 211, 2, 0.16));
  box-shadow: 0 0 26px rgba(3, 211, 2, 0.22);
  transition: height 0.9s var(--ease);
}
.stairs.is-visible .stairs__step i { height: var(--h); }
.stairs.is-visible .stairs__step:nth-child(2) i { transition-delay: 0.12s; }
.stairs.is-visible .stairs__step:nth-child(3) i { transition-delay: 0.24s; }
.stairs.is-visible .stairs__step:nth-child(4) i { transition-delay: 0.36s; }
.stairs.is-visible .stairs__step:nth-child(5) i { transition-delay: 0.48s; }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chips span {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.chips span:hover { border-color: rgba(3, 211, 2, 0.5); color: var(--text); }
.chips--green span { border-color: rgba(3, 211, 2, 0.35); color: var(--text); }

.mini-card--wide { grid-column: 1 / -1; }

/* карусель фото с конференций */
.carousel {
  position: relative;
  margin-top: 36px;
  height: 580px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0d0d0f;
  touch-action: pan-y;
}
.carousel__track {
  display: flex;
  height: 100%;
  transition: transform 0.55s var(--ease);
}
.carousel__slide {
  position: relative;
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.carousel__bg {
  position: absolute;
  inset: -24px;
  width: calc(100% + 48px);
  height: calc(100% + 48px);
  object-fit: cover;
  filter: blur(26px) brightness(0.4);
}
.carousel__img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}
.carousel__btn {
  position: absolute;
  z-index: 2;
  top: 50%;
  translate: 0 -50%;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(252, 252, 252, 0.25);
  background: rgba(13, 13, 15, 0.55);
  backdrop-filter: blur(6px);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.carousel__btn:hover { background: rgba(3, 211, 2, 0.9); border-color: var(--green); color: #0b0b0c; }
.carousel__btn--prev { left: 14px; }
.carousel__btn--next { right: 14px; }
.carousel__dots {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.carousel__dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(252, 252, 252, 0.35);
  cursor: pointer;
  padding: 0;
  transition: width 0.3s var(--ease), background 0.3s var(--ease);
}
.carousel__dots button.is-active { width: 24px; background: var(--green); }


.about__group { margin-top: 80px; }
.about__group-label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 400;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 22px;
}
.about__group-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.group-card {
  border-top: 1px solid var(--line);
  padding: 22px 24px 0 0;
  transition: border-color 0.3s var(--ease);
}
.group-card:hover { border-top-color: rgba(3, 211, 2, 0.6); }
.group-card--active { border-top-color: var(--green); }
.group-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.group-card--active h3 { color: var(--green); }
.group-card--partners h3 { color: #3d74ff; }
.group-card--partners:hover { border-top-color: rgba(61, 116, 255, 0.7); }
.group-card--media h3 { color: var(--red); }
.group-card--media:hover { border-top-color: rgba(254, 81, 64, 0.7); }
.group-card p { font-size: 14px; color: var(--muted); }

/* ============ SERVICES ============ */
.services { background: #131315; border-block: 1px solid var(--line); }
.services__sub {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 400;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 64px 0 24px;
}
/* источники трафика — крупные строки с картинкой на hover */
.srclist { border-bottom: 1px solid var(--line); }
.srcrow {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr 44px;
  align-items: center;
  gap: 28px;
  padding: 30px 10px;
  border-top: 1px solid var(--line);
  transition: background 0.3s var(--ease);
}
.srcrow__num {
  font-family: var(--font-head);
  font-size: 15px;
  color: var(--green);
  opacity: 0.75;
}
.srcrow__main h3 {
  font-size: clamp(20px, 2vw, 27px);
  text-transform: uppercase;
  transition: color 0.3s var(--ease), transform 0.35s var(--ease);
}
.srcrow__main p {
  margin-top: 8px;
  font-size: 15px;
  color: var(--muted);
  max-width: 600px;
}
.srcrow__arrow {
  font-size: 26px;
  color: var(--muted);
  opacity: 0.5;
  transition: transform 0.35s var(--ease), color 0.3s var(--ease), opacity 0.3s var(--ease);
}
.srcrow__img {
  position: absolute;
  right: 110px;
  top: 50%;
  width: 200px;
  border-radius: 18px;
  transform: translateY(-50%) rotate(6deg) scale(0.7);
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
  transition: opacity 0.3s var(--ease), transform 0.5s var(--ease);
  z-index: 2;
}
.srcrow:hover { background: rgba(252, 252, 252, 0.025); }
.srcrow:hover .srcrow__main h3 { color: var(--green); transform: translateX(8px); }
.srcrow:hover .srcrow__arrow { color: var(--green); opacity: 1; transform: rotate(90deg) scale(1.2); }
.srcrow:hover .srcrow__img { opacity: 1; transform: translateY(-50%) rotate(-3deg) scale(1); }

.services__extra {
  position: relative;
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
}
.decor3--hashtag {
  position: absolute;
  right: 0;
  top: -78px;
  width: 110px;
  animation: decor-float 9s ease-in-out infinite;
}
.services__extra .services__sub { margin: 0 0 16px; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.service-card:hover { border-color: rgba(3, 211, 2, 0.45); transform: translateY(-6px); }
.service-card__num {
  font-family: var(--font-head);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 40px;
}
.service-card__icon {
  width: 34px;
  height: 34px;
  color: var(--green);
  margin-bottom: 20px;
}
.service-card h3 { font-size: 20px; margin-bottom: 14px; }
.service-card p { font-size: 14.5px; color: var(--muted); margin-top: auto; }
.service-card--accent { background: var(--green); border-color: var(--green); }
.service-card--accent:hover { border-color: var(--lime); }

/* фоновые картинки карточек цикла (тёмный градиент сверху — читаемость текста) */
.services__grid .service-card:nth-child(1) {
  background: linear-gradient(185deg, rgba(26, 26, 28, 0.94) 38%, rgba(26, 26, 28, 0.45)), url("assets/gen/bg-strategy.webp") center 80% / cover no-repeat;
}
.services__grid .service-card:nth-child(2) {
  background: linear-gradient(185deg, rgba(26, 26, 28, 0.94) 38%, rgba(26, 26, 28, 0.42)), url("assets/gen/bg-funnel.webp") center 75% / cover no-repeat;
}
.services__grid .service-card:nth-child(3) {
  background: linear-gradient(185deg, rgba(26, 26, 28, 0.94) 38%, rgba(26, 26, 28, 0.45)), url("assets/gen/bg-traffic.webp") center / cover no-repeat;
}
.services__grid .service-card:nth-child(4) {
  background: linear-gradient(185deg, rgba(3, 211, 2, 0.9) 34%, rgba(3, 211, 2, 0.25)), url("assets/gen/bg-money.webp") center 85% / cover no-repeat;
}
.service-card--accent .service-card__num { color: rgba(11, 11, 12, 0.72); }
.service-card--accent p { color: #0b0b0c; font-weight: 500; }
.service-card--accent .service-card__icon,
.service-card--accent h3 { color: #0b0b0c; }

/* ============ VERTICALS & MODELS (liquid glass) ============ */
.verticals { position: relative; overflow: hidden; }
/* плёночное зерно */
.verticals::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/></svg>");
  opacity: 0.05;
  pointer-events: none;
  z-index: 3;
}
/* пыль-частицы (общая для секций) */
.section-dust {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
.about, .services, .principles { position: relative; }
.verticals .container { position: relative; z-index: 1; }
.verticals .section__head--decor { position: relative; }
.vert-coin {
  width: 132px;
  height: 132px;
  flex-shrink: 0;
  pointer-events: none;
}
.vert-coin canvas { display: block; width: 100%; height: 100%; }

/* CTA-мостик */
.ctabridge__card {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  background: var(--green);
  border-radius: 28px;
  padding: 38px 48px;
  margin-top: 20px;
}
.ctabridge__badge {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #101012;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 12px 28px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ctabridge__badge img {
  width: 62px;
  animation: decor-float 8s ease-in-out infinite;
}
.ctabridge__text { flex: 1; min-width: 260px; }
.ctabridge__text h3 {
  font-size: clamp(20px, 2.2vw, 28px);
  color: #0b0b0c;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.ctabridge__text p { color: rgba(11, 11, 12, 0.75); font-size: 16px; }
.verticals__sub { margin: 0 0 24px; }
.vbento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.vbento__main { grid-column: 1 / 4; }
.vbento__models { grid-column: 4 / 7; }
.vbento__rule { grid-column: span 2; }
.vbento__main,
.vbento__model,
.vbento__rule {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  backdrop-filter: blur(22px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 16px 44px rgba(0, 0, 0, 0.35);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.vbento__main::before,
.vbento__model::before,
.vbento__rule::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(130% 65% at 18% 0%, rgba(255, 255, 255, 0.10), transparent 55%);
  pointer-events: none;
}
.vbento__main:hover,
.vbento__model:hover,
.vbento__rule:hover {
  border-color: rgba(3, 211, 2, 0.55);
  transform: translateY(-5px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 20px 54px rgba(3, 211, 2, 0.14);
}
/* зеркальный блик, проезжающий по стеклу при наведении */
.vbento__main::after,
.vbento__model::after,
.vbento__rule::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 32%, rgba(255, 255, 255, 0.13) 46%, rgba(255, 255, 255, 0.02) 52%, transparent 64%);
  background-size: 260% 100%;
  background-position: 125% 0;
  pointer-events: none;
  transition: background-position 0.8s var(--ease);
}
.vbento__main:hover::after,
.vbento__model:hover::after,
.vbento__rule:hover::after { background-position: -30% 0; }
.vbento__main { padding: 34px 36px; }
.vbento__molecule {
  position: absolute;
  right: 20px;
  bottom: 14px;
  width: 140px;
  pointer-events: none;
  animation: decor-float 9s ease-in-out infinite;
  filter: drop-shadow(0 0 26px rgba(255, 190, 40, 0.45)) drop-shadow(0 10px 22px rgba(0, 0, 0, 0.4));
}
.vchips { display: flex; flex-wrap: wrap; gap: 12px; }
.vchips span {
  font-family: var(--font-head);
  font-size: 15px;
  padding: 13px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.vchips span:hover { background: var(--green); color: #0b0b0c; border-color: var(--green); }
/* золото — только у первых трёх вертикалей */
.vchips span:nth-child(-n+3) {
  border-color: rgba(255, 195, 60, 0.65);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 0 18px rgba(255, 185, 40, 0.38);
}
.vchips span:nth-child(-n+3):hover {
  background: rgba(255, 190, 45, 0.92);
  color: #0b0b0c;
  border-color: #ffc93c;
  box-shadow: 0 0 26px rgba(255, 185, 40, 0.5);
}
.vbento__note {
  margin-top: 30px;
  font-size: 17px;
  color: var(--muted);
  max-width: 480px;
}
.vbento__models {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.vbento__model {
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vbento__model:first-child { grid-column: 1 / -1; }
.vbento__model b {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 500;
  color: var(--green);
}
.vbento__model span { font-size: 14px; color: var(--muted); }
.vbento__model--accent {
  background: linear-gradient(135deg, rgba(3, 211, 2, 0.55), rgba(3, 211, 2, 0.2));
  border-color: rgba(3, 211, 2, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 16px 46px rgba(3, 211, 2, 0.25);
}
.vbento__model--accent:hover { border-color: var(--lime); }
.vbento__model--accent b { color: #ffffff; text-shadow: 0 0 18px rgba(3, 211, 2, 0.6); }
.vbento__model--accent span { color: rgba(255, 255, 255, 0.88); font-weight: 500; }
.vbento__rule {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
}
.vbento__rule p { font-size: 15px; color: var(--muted); }
.vbento__ico {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
}
.vbento__ico--ok { background: rgba(3, 211, 2, 0.14); color: var(--green); border: 1px solid rgba(3, 211, 2, 0.45); }
.vbento__ico--no { background: rgba(254, 81, 64, 0.12); color: var(--red); border: 1px solid rgba(254, 81, 64, 0.45); }
.vbento__rule:has(.vbento__ico--no) { border-color: rgba(254, 81, 64, 0.5); }
.vbento__rule:has(.vbento__ico--no):hover {
  border-color: var(--red);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 20px 54px rgba(254, 81, 64, 0.14);
}
.vbento__rule:has(.vbento__ico--ok) { border-color: rgba(3, 211, 2, 0.5); }

/* ============ AUDIENCE ============ */
.audience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.aud-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.aud-card:hover { border-color: rgba(3, 211, 2, 0.45); transform: translateY(-6px); }
.aud-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top center;
  background: #101012;
}
.aud-card__body { padding: 26px 28px 30px; }
.aud-card h3 { font-size: 19px; margin-bottom: 10px; }
.aud-card p { font-size: 14.5px; color: var(--muted); }

/* ============ QUOTE ============ */
.quote { padding: 60px 0 130px; position: relative; }

/* ============ Декор: сгенерированные 3D-иллюстрации ============ */
.decor3 {
  pointer-events: none;
  user-select: none;
}
.decor3--chevrons {
  position: absolute;
  left: 7%;
  top: 16%;
  width: 120px;
  animation: decor-float 8s ease-in-out infinite;
}
.audience .section__head, .partners .section__head { position: relative; }

/* ============ PARTNERS ============ */
.partners__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}
.partners__logos span {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text);
  padding: 16px 30px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.partners__logos span:hover { border-color: rgba(3, 211, 2, 0.55); transform: translateY(-3px); }
.partners__lead {
  margin-top: 24px;
  max-width: 560px;
  font-size: 17px;
  color: var(--muted);
}
.pgallery {
  overflow: hidden;
  padding: 26px 0;
  transform: rotate(-1.4deg);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.pslide {
  position: relative;
  flex-shrink: 0;
  border-radius: 18px;
  overflow: hidden;
}
.pslide figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 16px 12px;
  font-family: var(--font-head);
  font-size: 12px;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(8, 8, 10, 0.78));
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}
.pslide:hover figcaption { opacity: 1; }
.pgallery__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: pgallery-run 46s linear infinite;
}
.pgallery:hover .pgallery__track { animation-play-state: paused; }
.pgallery img {
  height: 330px;
  width: auto;
  display: block;
  transition: transform 0.4s var(--ease);
}
.pslide:hover img { transform: scale(1.08); }
@keyframes pgallery-run { to { transform: translateX(calc(-50% - 8px)); } }
/* встречная лента логотипов партнёров */
.plogos {
  overflow: hidden;
  margin-top: 30px;
  padding: 14px 0;
  transform: rotate(1.1deg);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.plogos__track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: plogos-run 44s linear infinite reverse;
}
.plogos img {
  height: 52px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.25s var(--ease), transform 0.3s var(--ease);
}
.plogos img[src*="l-10.png"] { height: 74px; }
.plogos img:hover { opacity: 1; transform: scale(1.18); }
.plogos:hover .plogos__track { animation-play-state: paused; }
@keyframes plogos-run { to { transform: translateX(calc(-50% - 32px)); } }
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.review-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  padding: 28px 30px;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.review-card:hover { border-color: rgba(3, 211, 2, 0.45); transform: translateY(-4px); }
.review-card { display: flex; flex-direction: column; }
.review-card p { font-size: 15px; color: var(--text); }
.review-card figcaption { margin-top: auto; padding-top: 18px; display: flex; flex-direction: column; gap: 2px; }
.review-card b { font-size: 13.5px; font-weight: 600; }
.review-card span { font-size: 13px; color: var(--muted); }
.partners__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  font-family: var(--font-head);
  font-size: 15px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
.partners__cta b { color: var(--green); font-weight: 500; }
.partners__cta svg { color: var(--green); transition: transform 0.25s var(--ease); }
.partners__cta:hover { color: var(--text); }
.partners__cta:hover svg { transform: translate(3px, -3px); }
.decor3--radar {
  position: absolute;
  right: 0;
  top: -34px;
  width: 210px;
  animation: decor-float 12s ease-in-out infinite;
}
.decor3--swirl {
  display: block;
  width: 180px;
  margin-top: 44px;
  animation: decor-float 10s ease-in-out infinite;
}
.decor3--x6 {
  position: absolute;
  z-index: 1;
  right: 5%;
  top: 50%;
  translate: 0 -50%;
  width: clamp(200px, 24vw, 330px);
  animation: decor-float 9s ease-in-out infinite;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.25));
}
@keyframes decor-float {
  0%, 100% { transform: translateY(-10px) rotate(-1.5deg); }
  50% { transform: translateY(10px) rotate(1.5deg); }
}

/* ============ 3D-фишка X6 у цитаты (coin3d.js) ============ */
.quote__coin {
  position: absolute;
  width: clamp(240px, 24vw, 370px);
  height: clamp(240px, 24vw, 370px);
  right: 2%;
  top: 50%;
  translate: 0 -50%;
  pointer-events: none;
}
.quote__coin canvas { display: block; width: 100%; height: 100%; }
.quote__text {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(30px, 5vw, 64px);
  letter-spacing: -0.025em;
  line-height: 1.15;
  text-transform: uppercase;
  text-align: center;
}

/* ============ PRINCIPLES ============ */
.principles { background: #131315; border-block: 1px solid var(--line); }
.principles__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.principles__head { position: sticky; top: 120px; }
.principles__note { margin-top: 24px; color: var(--muted); max-width: 420px; }
.principles__list { list-style: none; border-bottom: 1px solid var(--line); }
.principle {
  display: flex;
  gap: 34px;
  align-items: flex-start;
  border-top: 1px solid var(--line);
  padding: 30px 8px;
  transition: background 0.3s var(--ease);
}
.principle:hover { background: rgba(252, 252, 252, 0.025); }
.principle:hover h3 { color: var(--green); }
.principle__num {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 600;
  color: var(--green);
  opacity: 0.55;
  line-height: 1.1;
  transition: opacity 0.3s var(--ease);
}
.principle:hover .principle__num { opacity: 1; }
.principle h3 { font-size: 21px; text-transform: uppercase; margin-bottom: 8px; transition: color 0.3s var(--ease); }
.principle p { font-size: 15px; color: var(--muted); }

/* карточка вакансий */
.vacancy-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  backdrop-filter: blur(22px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 16px 44px rgba(0, 0, 0, 0.35);
  padding: 42px 46px;
}
.vacancy-card h3 {
  font-size: clamp(20px, 2vw, 26px);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.vacancy-card > p {
  color: var(--muted);
  font-size: 16px;
  max-width: 560px;
}
.vacancy-card__chips { margin: 28px 0 34px; }
.btn__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(11, 11, 12, 0.35);
  flex-shrink: 0;
}

/* ============ FOUNDER ============ */
.founder__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}
.founder__photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(160deg, #f4f4f4 0%, #d9d9d9 100%);
}
.founder__photo img { width: 100%; }
.founder__quote p {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.founder__name {
  margin-top: 36px;
  font-family: "Marck Script", "Leonov SP", cursive;
  font-size: 40px;
  color: var(--green);
  font-weight: 400;
}
.founder__role { color: var(--muted); font-size: 15px; margin-top: 4px; }
.founder__principles {
  list-style: none;
  margin-top: 36px;
}
.founder__principles li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
}
.founder__principles b { color: var(--text); font-weight: 600; }

/* ============ CTA ============ */
.cta { padding: 0 0 130px; }
.cta-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: var(--green);
}
.cta-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
.cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, #03d302 28%, rgba(3, 211, 2, 0.65) 58%, transparent 100%);
}
.cta-card__content {
  position: relative;
  z-index: 1;
  padding: 96px 64px;
  max-width: 640px;
}
.cta-card h2 {
  font-size: clamp(30px, 4vw, 54px);
  color: #0b0b0c;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.cta-card p {
  color: rgba(11, 11, 12, 0.78);
  font-size: 18px;
  margin-bottom: 36px;
  max-width: 460px;
}

/* ============ FOOTER ============ */
.footer { border-top: 1px solid var(--line); padding: 44px 0; }
.footer__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.footer__inner img { height: 22px; width: auto; }
.footer__mail {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  margin-inline: auto;
  transition: color 0.2s;
}
.footer__mail:hover { color: var(--green); }
.footer__copy { color: var(--muted); font-size: 14px; }

/* ============ Reveal-анимации ============ */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal--left { transform: translateX(-56px); }
.reveal--right { transform: translateX(56px); }
.reveal--zoom { transform: scale(0.9) translateY(24px); }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }
.reveal[data-delay="6"] { transition-delay: 0.6s; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Служебный режим скриншотов (#shoot в app.js) */
.shoot-mode .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
.shoot-mode .stairs__step i { transition: none !important; }
.shoot-mode .hero { min-height: auto; padding: 150px 0 70px; }

/* Анимации играют всегда: клиент хочет «живой» сайт, prefers-reduced-motion не глушим */

/* ============ Адаптив ============ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
  .hero__spiral { width: min(300px, 70%); }
  .hero { padding-top: 120px; }
  .about__grid, .principles__grid, .founder__grid { grid-template-columns: 1fr; gap: 44px; }
  .principles__head { position: static; }
  .services__extra { grid-template-columns: 1fr; gap: 28px; }
  .vbento__main, .vbento__models { grid-column: 1 / -1; }
  .srcrow__img { right: 70px; width: 170px; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .section { padding: 84px 0; }
  .container { width: min(1240px, 100% - 40px); }

  /* hero: компактный слот сверху, заголовок сразу под ним */
  .hero { min-height: auto; padding: 104px 0 60px; }
  .hero__inner { gap: 18px; }
  .hero__visual { min-height: 460px; }
  .hero__eyebrow { margin-bottom: 18px; }
  .hero__title { font-size: clamp(30px, 9.4vw, 42px); }
  .hero__sub { font-size: 17px; margin-top: 22px; }
  .hero__stages { max-width: 100%; }

  .founder__quote p { font-size: 20px; }
  .quote__text { font-size: clamp(24px, 7.6vw, 34px); }
  .cta-card h2 { font-size: clamp(24px, 7.6vw, 32px); }
  .section__title { font-size: clamp(26px, 7.4vw, 34px); }
  .nav__links, .nav__cta, .nav__socials { display: none; }
  .nav__burger { display: flex; }
  .nav.is-open { background: rgba(17, 17, 19, 0.97); }
  .nav.is-open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(17, 17, 19, 0.97);
    backdrop-filter: blur(14px);
    padding: 20px 24px 28px;
    gap: 18px;
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.4);
  }
  .nav.is-open .nav__links a { font-size: 18px; }
  .audience__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .srcrow { grid-template-columns: 36px 1fr; gap: 16px; }
  .srcrow__arrow, .srcrow__img { display: none; }
  .mini-card { grid-template-columns: 1fr; gap: 8px; }
  .about__cards { grid-template-columns: 1fr; }
  .about__group-grid { grid-template-columns: 1fr; }
  .quote__coin { display: none; }
  .decor3--chevrons, .decor3--radar, .decor3--x6, .decor3--hashtag, .vert-coin { display: none; }
  .decor3--cyclearrow { width: 76px; }
  .section__head--arrow { gap: 18px; }
  .ctabridge__card { padding: 32px 28px; }
  .reviews { grid-template-columns: 1fr; }

  /* лесенка → горизонтальные полосы: число + подпись, бар на всю ширину */
  .stairs { display: flex; flex-direction: column; align-items: stretch; height: auto; gap: 18px; margin-top: 40px; }
  .stairs__step {
    display: block;
    height: auto;
    text-align: left;
  }
  .stairs__step b { font-size: 20px; margin: 0 10px 0 0; }
  .stairs__step span { font-size: 12.5px; margin: 0; }
  .stairs__step span br { display: none; }
  .stairs__step i {
    display: block;
    margin-top: 10px;
    width: 0;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(3, 211, 2, 0.95), rgba(3, 211, 2, 0.16));
    transition: width 0.9s var(--ease);
  }
  .stairs.is-visible .stairs__step i { width: var(--h); height: 10px; }

  .carousel { height: 440px; }

  /* verticals: кубок под текст, модели 2×2 */
  .vbento__main { padding: 28px 24px; }
  .vbento__note { max-width: none; margin-top: 24px; }
  .vbento__molecule { position: static; width: 92px; margin: 14px 2px 0 auto; }
  .vbento__rule { grid-column: 1 / -1; }
  .vbento__models { grid-template-columns: 1fr 1fr; gap: 14px; }
  .vbento__model { padding: 20px 18px; }
  .vbento__model:first-child { grid-column: 1 / -1; }
  .vchips { gap: 9px; }
  .vchips span { font-size: 13.5px; padding: 10px 18px; }

  /* партнёры: ленты компактнее */
  .pgallery img { height: 230px; }
  .plogos__track { gap: 34px; }
  .plogos img { height: 38px; }
  .plogos img[src*="l-10.png"] { height: 54px; }
  .partners__cta { flex-wrap: wrap; row-gap: 4px; }

  /* вакансии: руки не наезжают на чипы, сидят справа от кнопки */
  .vacancy-card { padding: 32px 26px; }
  .vac-shake { width: 104px; right: 12px; bottom: 14px; }

  .founder__award { align-items: flex-start; }

  .cta-card__content { padding: 64px 32px; }

  .footer__inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer__mail { margin-inline: 0; }
}
