/* =====================================================================
   ВЫЗОВ ПРИНЯТ — лендинг партнёрской экосистемы
   Стиль референса: spacerental.ru/masa/15/partner-block.html
   ===================================================================== */

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

:root {
  --yellow: #FFD600;
  --yellow-soft: #FFE770;
  --yellow-light: #FFF7CC;
  --dark: #1a1a1a;
  --dark-2: #2a2a2a;
  --gray-1: #f5f5f5;
  --gray-2: #e8e8e8;
  --gray-3: #bbb;
  --text-muted: #555;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: var(--dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px 80px;
  gap: 120px;
  overflow-x: clip;
}

section { max-width: 1340px; width: 100%; position: relative; }

/* --- text reveal --- */
@property --reveal-pos {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 0%;
}
.text-reveal {
  --reveal-pos: 0%;
  display: inline-block;
  opacity: 0.3;
  -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,1) var(--reveal-pos), rgba(0,0,0,0.3) var(--reveal-pos));
  mask-image: linear-gradient(90deg, rgba(0,0,0,1) var(--reveal-pos), rgba(0,0,0,0.3) var(--reveal-pos));
}
.text-reveal.is-revealed {
  opacity: 1;
  animation: textRevealMask 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes textRevealMask { to { --reveal-pos: 100%; } }

/* --- floating action button --- */
.fab {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 100;
  background: var(--dark);
  color: #fff;
  padding: 18px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 10px 40px rgba(0,0,0,0.35), 0 0 0 4px var(--yellow);
  animation: fabPulse 3s ease-in-out infinite;
}
@keyframes fabPulse {
  0%, 90%, 100% { transform: translateY(0) scale(1); }
  93% { transform: translateY(-3px) scale(1.04); }
}

/* =====================================================================
   БЛОК 1 — HERO
   ===================================================================== */
.hero {
  display: grid;
  grid-template-columns: 1fr 610px;
  align-items: start;
  gap: 0;
}

.hero__left {
  background: var(--yellow);
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 0;
  padding: 52px 48px 20px;
  position: relative;
  z-index: 2;
  min-height: 510px;
}

.hero__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--dark);
  margin-bottom: 18px;
}


.hero__subtitle-text {
  font-size: 27px;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  max-width: 500px;
  margin-bottom: 14px;
  font-style: italic;
  background: var(--dark);
  display: inline-block;
  padding: 8px 18px;
  transform: rotate(-2deg);
}

.hero__bubbles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.hero__bubble {
  background: #fff;
  color: var(--dark);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
}

.hero__shelf {
  position: absolute;
  bottom: -85px;
  left: 0;
  right: 353px;
  height: 85px;
  background: var(--yellow);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.hero__shelf::before {
  content: '';
  position: absolute;
  right: -34px;
  top: 0;
  width: 64px;
  height: 64px;
  background: var(--yellow);
}
.hero__shelf::after {
  content: '';
  position: absolute;
  right: -34px;
  top: 0;
  width: 34px;
  height: 64px;
  background: #fff;
  border-top-left-radius: 48px;
}

.hero__btn-area {
  position: absolute;
  bottom: -85px;
  left: 280px;
  z-index: 3;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  background: var(--dark-2);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  padding: 22px 40px;
  border-radius: var(--radius-md);
  text-decoration: none;
  animation: btnNudge 4s ease-in-out infinite;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}
.hero__btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: btnShine 4s ease-in-out infinite;
}
.hero__btn:hover { background: #000; }
.hero__btn:hover::after { animation: none; opacity: 0; }

.hero__btn-cursor {
  position: absolute;
  bottom: -8px;
  right: 7px;
  font-size: 28px;
  animation: cursorTap 2s ease-in-out infinite;
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  z-index: 4;
}

@keyframes btnNudge {
  0%, 85%, 100% { transform: rotate(0) scale(1); }
  88% { transform: rotate(-2deg) scale(1.03); }
  91% { transform: rotate(2deg) scale(1.03); }
  94% { transform: rotate(-1.5deg) scale(1.02); }
  97% { transform: rotate(1deg) scale(1.01); }
}
@keyframes btnShine {
  0%, 70% { left: -100%; }
  85% { left: 150%; }
  100% { left: 150%; }
}
@keyframes cursorTap {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
  40% { transform: translate(-5px, -3px) scale(0.9); opacity: 1; }
  50% { transform: translate(-5px, -3px) scale(0.85); opacity: 0.8; }
  60% { transform: translate(-5px, -3px) scale(0.9); opacity: 1; }
  80% { transform: translate(0, 0) scale(1); opacity: 1; }
}

/* Right — photo + play */
.hero__right {
  position: relative;
  padding-left: 16px;
}
.hero__photo {
  width: 100%;
  max-width: 704px;
  aspect-ratio: 704 / 471;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__play-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 115px;
  height: 115px;
  z-index: 5;
}
.hero__play-corner-svg {
  position: absolute;
  top: 0;
  right: 10px;
  transform: rotate(90deg);
}
.hero__play {
  position: absolute;
  top: 0;
  right: 10px;
  width: 70px;
  height: 70px;
  background: #FFD600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
  z-index: 1;
}
.hero__play:hover { transform: scale(1.05); }
.hero__play svg { width: 25px; height: 25px; margin-left: 4px; }

/* Checklist поверх */
.hero__quote-wrap {
  margin-top: -75px;
  margin-left: -60px;
  position: relative;
  z-index: 3;
  width: 620px;
}
.hero__quote {
  background: #fff;
  border: none;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  padding: 24px 36px;
  display: flex;
  gap: 48px;
  justify-content: space-around;
  flex-wrap: wrap;
}
.hero__check { display: flex; align-items: center; gap: 14px; }
.hero__check-mark {
  display: inline-flex;
  width: 34px;
  height: 34px;
  background: var(--yellow);
  color: var(--dark);
  font-weight: 900;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
}
.hero__check-text {
  font-family: 'Unbounded', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
}

/* Stats inside quote */
.hero__quote--stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 32px;
  padding: 22px 32px;
}
.hero__mini-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__mini-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  color: var(--dark);
  letter-spacing: -0.5px;
}
.hero__mini-label {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-muted);
}

/* =====================================================================
   БЛОК 2 — ПРОБЛЕМА РЫНКА
   ===================================================================== */
.problem { text-align: center; }
.problem__line {
  height: 1px;
  background: var(--gray-2);
  margin-bottom: 60px;
}
.problem:last-child .problem__line { margin-top: 60px; margin-bottom: 0; }
.problem__line:last-of-type { margin-top: 60px; margin-bottom: 0; }

.problem__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 18px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.problem__lead {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
  margin-bottom: 48px;
}
.problem__card {
  background: #fff;
  border: 2px solid var(--gray-2);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: transform 0.25s, border-color 0.25s;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.problem__card:hover {
  transform: translateY(-4px);
  border-color: var(--dark);
}
.problem__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--yellow);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  color: var(--dark);
  overflow: hidden;
}
.problem__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  margin-bottom: 0;
}
.problem__card h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.problem__card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.problem__scroll-bar { display: none; }
.scale__scroll-bar { display: none; }

.problem__key {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 64px;
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
  position: relative;
}
.problem__key-label {
  position: absolute;
  top: -18px;
  left: 48px;
}
.problem__key-label span {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 18px;
  text-transform: uppercase;
  transform: rotate(-2deg);
}
.problem__key p {
  font-family: 'Unbounded', sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  flex: 1;
}
.problem__key strong { color: var(--yellow); font-weight: 700; }

/* =====================================================================
   БЛОК 3 — РЫНОК МЕНЯЕТСЯ
   ===================================================================== */
.market { text-align: center; }
.market__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}
.market__lead {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 60px;
}

.market__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 50px;
}
.market__compare-col {
  background: #fff;
  border: 2px solid var(--gray-2);
  border-radius: var(--radius-lg);
  padding: 60px 40px 40px;
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.market__compare-col--old { padding: 0; overflow: visible; }
.market__compare-col--old .market__badge { top: -18px; }
.market__compare-col--old .market__compare-img { border-radius: var(--radius-lg); }
.market__compare-col--new { background: var(--yellow); border-color: var(--yellow); padding: 0; overflow: visible; }
.market__compare-col--new .market__badge { top: -18px; }
.market__compare-col--new .market__compare-img { border-radius: var(--radius-lg); }
.market__compare-img {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
}
.market__badge {
  position: absolute;
  top: -18px;
  left: 30px;
}
.market__badge span {
  display: inline-block;
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  text-transform: uppercase;
  transform: rotate(-2deg);
}
.market__badge--old span { background: var(--gray-2); color: var(--dark); }
.market__badge--new span { background: var(--dark); color: var(--yellow); }

.market__scheme {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  font-family: 'Unbounded', sans-serif;
}
.market__client {
  font-size: 18px;
  font-weight: 700;
  background: var(--dark);
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
}
.market__compare-col--new .market__client { background: #fff; color: var(--dark); }
.market__arrows {
  display: grid;
  grid-template-columns: repeat(5, auto);
  gap: 4px 14px;
  font-size: 22px;
  color: var(--gray-3);
}
.market__providers {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-muted);
}
.market__arrow-big {
  font-size: 56px;
  color: var(--dark);
  line-height: 1;
}
.market__onewindow {
  font-size: 28px;
  font-weight: 800;
  background: var(--dark);
  color: var(--yellow);
  padding: 16px 36px;
  border-radius: 50px;
  letter-spacing: -0.5px;
}

.market__cats-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
}
.market__cats {
  position: relative;
  min-height: 170px;
  margin-top: 60px;
  margin-bottom: 56px;
}
.market__cat {
  background: #fff;
  border: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  padding: 14px 24px;
  border-radius: 50px;
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
  position: absolute;
  left: var(--x, 0px);
  top: var(--y, 0px);
  transform: rotate(var(--r, 0deg));
}
.market__cat:hover {
  background: var(--yellow);
}
.market__cat--yellow { background: var(--yellow); }
.market__cat--yellow:hover { background: var(--dark); color: #fff; }
.market__cat--dark { background: var(--dark); color: #fff; }

.market__note {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 36px 48px;
  max-width: 900px;
  margin: 0 auto 50px;
}
.market__note p {
  font-family: 'Unbounded', sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
}

/* =====================================================================
   БЛОК 4 — ЧТО ТАКОЕ ВЫЗОВ ПРИНЯТ
   ===================================================================== */
.eco {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 72px;
}
.eco__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}
.eco__title span {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  padding: 2px 14px;
  transform: rotate(-1.5deg);
}
.eco__lead {
  font-family: 'Unbounded', sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}
.eco__list {
  list-style: none;
  margin-bottom: 36px;
}
.eco__list li {
  font-size: 16px;
  padding: 12px 0 12px 32px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.eco__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 700;
}

.eco__principle {
  background: rgba(255,255,255,0.05);
  border-left: 3px solid var(--yellow);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px 28px;
  position: relative;
  margin-top: 24px;
}
.eco__principle-label { margin-bottom: 10px; }
.eco__principle-label span {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 700;
  background: var(--yellow);
  color: var(--dark);
  padding: 4px 12px;
  text-transform: uppercase;
  display: inline-block;
  transform: rotate(-2deg);
}
.eco__principle p {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

/* Диаграмма */
.eco__right {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}
.eco2__map--compact {
  max-width: 600px;
  height: 380px;
}
.eco2__map--compact .eco2__orbit-ring--1 {
  width: 230px; height: 230px;
  left: calc(50% - 115px); top: calc(50% - 115px);
}
.eco2__map--compact .eco2__orbit-ring--2 {
  width: 300px; height: 300px;
  left: calc(50% - 150px); top: calc(50% - 150px);
}
.eco2__map--compact .eco2__orbit-ring--3 {
  width: 400px; height: 400px;
  left: calc(50% - 200px); top: calc(50% - 200px);
}
.eco2__map--compact .eco2__center {
  width: 200px; height: 200px;
}
.eco2__map--compact .eco2__center-name {
  font-size: 22px;
}
.eco2__map--compact .eco2__center-sub {
  font-size: 11px;
}
.eco__diagram {
  position: relative;
  width: 460px;
  height: 460px;
}
.eco__diagram::before {
  content: '';
  position: absolute;
  inset: 80px;
  border: 2px dashed rgba(255,214,0,0.3);
  border-radius: 50%;
  animation: spin 40s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.eco__center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background: var(--yellow);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  line-height: 1.1;
  box-shadow: 0 0 0 16px rgba(255,214,0,0.15), 0 0 60px rgba(255,214,0,0.3);
  z-index: 2;
}
.eco__orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -64px;
  margin-top: -24px;
  width: 128px;
  height: 48px;
  background: #fff;
  color: var(--dark);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* =====================================================================
   БЛОК 4b — ЭКОСИСТЕМА v2
   ===================================================================== */
.eco2 {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 60px 40px 80px;
  text-align: center;
  color: #fff;
}
.eco2__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 60px;
  text-transform: uppercase;
}
.eco2__title span {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  padding: 2px 14px;
  transform: rotate(-1.5deg);
}
.eco2__map {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 460px;
  margin: 0 auto;
}
.eco2__orbit-ring {
  position: absolute;
  border: 2px dashed rgba(255, 214, 0, 0.3);
  border-radius: 50%;
}
.eco2__orbit-ring--1 {
  width: 300px;
  height: 300px;
  left: calc(50% - 150px);
  top: calc(50% - 150px);
  animation: spin 30s linear infinite;
}
.eco2__orbit-ring--2 {
  width: 420px;
  height: 420px;
  left: calc(50% - 210px);
  top: calc(50% - 210px);
  animation: spin 50s linear infinite reverse;
}
.eco2__orbit-ring--3 {
  width: 540px;
  height: 540px;
  left: calc(50% - 270px);
  top: calc(50% - 270px);
  animation: spin 70s linear infinite;
}
.eco2__center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--yellow) 0%, #c8a800 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 40px rgba(255, 214, 0, 0.4),
    0 0 80px rgba(255, 214, 0, 0.2),
    0 0 120px rgba(255, 214, 0, 0.1);
  z-index: 2;
}
.eco2__center-name {
  font-family: 'Unbounded', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.1;
  text-align: center;
}
.eco2__center-sub {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  opacity: 0.6;
  margin-top: 6px;
  letter-spacing: 1px;
  text-align: center;
}
.eco2__card {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(calc(-50% + var(--x, 0px)), calc(-50% + var(--y, 0px))) rotate(var(--r, 0deg));
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: 10px 14px;
  max-width: 260px;
  text-align: left;
  z-index: 3;
}
.eco2__card-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.eco2__card-body h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #444;
  margin-bottom: 0;
}
.eco2__card-body p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

/* Staircase + tiers layout */
.prov-staircase {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  align-items: stretch;
}
.prov-staircase__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-end;
  height: 100%;
}
.prov-staircase__right {
  min-width: 0;
}
.v7-stairs {
  background: #fff;
  position: relative;
}

/* Прыгающий шарик */
.v7-ball {
  position: absolute;
  width: 28px;
  height: 28px;
  background: #FFD600;
  border-radius: 50%;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(255,214,0,0.5);
  pointer-events: none;
  bottom: 0;
  left: 0;
  opacity: 0;
}
.v7-row {
  display: flex;
  justify-content: flex-end;
}
.v7-stair {
  background: #eee;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  min-height: 54px;
  border-radius: 16px 0 0 0;
}
.v7-stair--final {
  background: #1a1a1a;
  border-radius: 16px 0 0 0;
}
.v7-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: #FFD600;
  line-height: 1;
  flex-shrink: 0;
}
.v7-label {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1a1a;
}
.v7-label__mobile { display: none; }
.v7-stair--final .v7-label { color: #fff; }

/* Tooltip on specific stairs */
.v7-stair--has-tip {
  position: relative;
  cursor: pointer;
}
.v7-tip {
  position: absolute;
  right: calc(100% + 16px);
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  width: 320px;
  background: #1a1a1a;
  color: #fff;
  border-radius: 14px;
  padding: 18px 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .25s ease, visibility 0s linear .2s;
  z-index: 30;
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}
.v7-stair--has-tip:hover .v7-tip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
  pointer-events: auto;
  transition-delay: 0s;
}
.v7-tip::after {
  content: '';
  position: absolute;
  right: -7px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: #1a1a1a;
}
.v7-tip__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
  margin-bottom: 14px;
}
.v7-tip__group + .v7-tip__group {
  margin-top: 12px;
}
.v7-tip__side {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 6px;
}
.v7-tip__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.v7-tip__list li {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255,255,255,0.92);
  padding-left: 12px;
  position: relative;
}
.v7-tip__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 2px;
  background: var(--yellow);
}
.v7-tip__close {
  display: none;
  position: absolute;
  top: 6px;
  right: 10px;
  width: 32px;
  height: 32px;
  padding: 0;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.75);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.v7-tip__close:hover { color: #fff; }

/* Info icon on stairs with tooltip */
.v7-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid #4a4a4a;
  color: #4a4a4a;
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  font-weight: 800;
  font-style: normal;
  line-height: 1;
  flex-shrink: 0;
  margin-left: 6px;
  align-self: flex-end;
  transform-origin: center;
  animation: v7-info-shake 4s ease-in-out infinite;
}
.v7-row:nth-child(3) .v7-info { animation-delay: 0s; }
.v7-row:nth-child(4) .v7-info { animation-delay: 1s; }
.v7-row:nth-child(5) .v7-info { animation-delay: 2s; }
.v7-row:nth-child(6) .v7-info { animation-delay: 3s; }

@keyframes v7-info-shake {
  0%, 18%, 100% { transform: rotate(0) scale(1); }
  3%  { transform: rotate(-16deg) scale(1.18); }
  6%  { transform: rotate(16deg)  scale(1.18); }
  9%  { transform: rotate(-12deg) scale(1.12); }
  12% { transform: rotate(10deg)  scale(1.08); }
  15% { transform: rotate(-5deg)  scale(1.04); }
}

/* Timeline inside prov-entry (legacy) */
.prov-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 0;
  margin-bottom: 60px;
}
.prov-timeline__line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #e0e0e0, var(--yellow));
  transform: translateY(-50%);
  z-index: 0;
}
.prov-timeline__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.prov-timeline__step--top {
  flex-direction: column;
}
.prov-timeline__step--bottom {
  flex-direction: column;
}
.prov-timeline__step--top .prov-timeline__label {
  margin-bottom: 14px;
}
.prov-timeline__step--bottom .prov-timeline__label {
  margin-top: 14px;
}
.prov-timeline__dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.prov-timeline__step:hover .prov-timeline__dot {
  background: var(--yellow);
  color: var(--dark);
  transform: scale(1.15);
}
.prov-timeline__step--final .prov-timeline__dot {
  background: var(--yellow);
  color: var(--dark);
  width: 50px;
  height: 50px;
}
.prov-timeline__label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  line-height: 1.4;
  max-width: 120px;
}

/* =====================================================================
   БЛОК 5 — МАСШТАБ
   ===================================================================== */
.scale { text-align: center; }
.scale__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.scale__geo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-1);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 48px;
}
.scale__geo-pin { color: var(--yellow); font-size: 18px; }

.scale__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}
.scale__card {
  background: #fff;
  border: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  transform: translate(var(--x, 0px), var(--y, 0px)) rotate(var(--r, 0deg));
}
.scale__card--dark { background: var(--dark); border-color: var(--dark); }
.scale__card--dark .scale__card-num { color: var(--yellow); }
.scale__card--dark .scale__card-text { color: rgba(255,255,255,0.7); }
.scale__card--accent { background: var(--yellow); border-color: var(--yellow); }

.scale__card-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: -1.5px;
}
.scale__unit {
  font-size: 22px;
  font-weight: 700;
  margin-left: 4px;
}
.scale__card-text {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.scale__inf {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.scale__inf-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--gray-1);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}
.scale__inf-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}

.scale__note {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 48px;
  max-width: 860px;
  margin: 0 auto;
}
.scale__note p {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
.scale__note strong { color: var(--yellow); }

/* =====================================================================
   БЛОК 6 — ЗАЧЕМ ЭКОСИСТЕМА
   ===================================================================== */
.why-eco { text-align: center; }
.why-eco__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 56px;
}

.why-eco__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.why-eco__card {
  background: #fff;
  border: 2px solid var(--gray-2);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: left;
  transition: transform 0.25s, border-color 0.25s;
}
.why-eco__card:hover {
  transform: translateY(-4px);
  border-color: var(--dark);
}
.why-eco__card--yellow { background: var(--yellow); border-color: var(--yellow); }
.why-eco__num {
  font-family: 'Unbounded', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 18px;
  -webkit-text-stroke: 1px var(--dark);
  text-stroke: 1px var(--dark);
}
.why-eco__card--yellow .why-eco__num { color: var(--dark); -webkit-text-stroke: 0; }
.why-eco__card p {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--dark);
}

/* =====================================================================
   БЛОК 7 — ЧТО ПОЛУЧАЕТ ПАРТНЁР
   ===================================================================== */
.benefits {
  max-width: 1340px;
  width: 100%;
}

.benefits__inner {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  height: 650px;
}

.benefits__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.benefits__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 70% at 50% 55%,
    rgba(4, 4, 4, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  opacity: 0.3;
}

.benefits__title {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Unbounded', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 2;
}
.benefits__title-br { display: none; }

.benefits__tags {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.benefits__tag {
  position: absolute;
  background: #fff;
  color: #25292d;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 400;
  padding: 0 27px;
  line-height: 45px;
  border-radius: 20px;
  white-space: nowrap;
  pointer-events: auto;
  animation: benefitsFloat1 5s ease-in-out infinite;
}

.benefits__tag:nth-child(1) { animation: benefitsFloat1 8s ease-in-out infinite; animation-delay: -0.5s; }
.benefits__tag:nth-child(2) { animation: benefitsFloat2 9.5s ease-in-out infinite; animation-delay: -3.1s; }
.benefits__tag:nth-child(3) { animation: benefitsFloat3 10s ease-in-out infinite; animation-delay: -5.7s; }
.benefits__tag:nth-child(4) { animation: benefitsFloat2 8.8s ease-in-out infinite; animation-delay: -1.9s; }
.benefits__tag:nth-child(5) { animation: benefitsFloat1 9.2s ease-in-out infinite; animation-delay: -6.2s; }
.benefits__tag:nth-child(6) { animation: benefitsFloat3 8.5s ease-in-out infinite; animation-delay: -2.4s; }

@keyframes benefitsFloat1 {
  0% { transform: translateY(0) translateX(0); }
  20% { transform: translateY(-4px) translateX(2px); }
  45% { transform: translateY(2px) translateX(-1px); }
  70% { transform: translateY(-3px) translateX(-2px); }
  100% { transform: translateY(0) translateX(0); }
}

@keyframes benefitsFloat2 {
  0% { transform: translateY(0) translateX(0); }
  15% { transform: translateY(3px) translateX(-2px); }
  40% { transform: translateY(-4px) translateX(1px); }
  65% { transform: translateY(1px) translateX(3px); }
  85% { transform: translateY(-2px) translateX(-1px); }
  100% { transform: translateY(0) translateX(0); }
}

@keyframes benefitsFloat3 {
  0% { transform: translateY(0) translateX(0); }
  18% { transform: translateY(-3px) translateX(-2px); }
  36% { transform: translateY(2px) translateX(2px); }
  54% { transform: translateY(-4px) translateX(1px); }
  72% { transform: translateY(1px) translateX(-3px); }
  90% { transform: translateY(-1px) translateX(1px); }
  100% { transform: translateY(0) translateX(0); }
}

/* Мобильный слайдер тегов — скрыт на десктопе */
.benefits__slider { display: none; }

.benefits__tag--yellow {
  background: #FDD300;
  color: #25292d;
}

/* =====================================================================
   БЛОК 8 — РОСТ ВЫРУЧКИ
   ===================================================================== */
.revenue { text-align: center; }
.revenue__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}
.revenue__lead {
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 48px;
  display: inline-block;
  text-align: left;
}

/* --- Cards row --- */
.revenue__cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
}

.revenue__card {
  position: relative;
  width: 480px;
  min-height: 340px;
  border-radius: 30px;
  padding: 70px 32px 32px;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.revenue__card--single {
  background: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
.revenue__card--complex {
  background: var(--yellow);
}

/* Label chip floating above card */
.revenue__card-label {
  position: absolute;
  top: -18px;
  left: -16px;
  background: #fff;
  padding: 10px 27px;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--dark);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  white-space: nowrap;
  z-index: 2;
}
.revenue__card-label--tilt {
  transform: rotate(-5.5deg);
}

/* Tags */
.revenue__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: auto;
}
.revenue__tag {
  display: inline-block;
  padding: 10px 27px;
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 400;
  white-space: nowrap;
}
.revenue__tag--dark {
  background: var(--dark);
  color: var(--yellow);
}
.revenue__tag--accent {
  background: var(--dark);
  color: var(--yellow);
}
.revenue__tag--white {
  background: #fff;
  color: var(--dark);
}

/* Amount at bottom */
.revenue__card-amount {
  margin-top: 24px;
  text-align: right;
  font-family: 'Unbounded', sans-serif;
  text-transform: uppercase;
  line-height: 1;
}
.revenue__card-amount .revenue__amount-num {
  font-weight: 900;
  font-size: 82px;
  color: var(--yellow);
}
.revenue__card-amount .revenue__amount-suffix {
  font-weight: 400;
  font-size: 82px;
  color: var(--yellow);
}
.revenue__card-amount--dark .revenue__amount-num {
  color: var(--dark);
}
.revenue__card-amount--dark .revenue__amount-suffix {
  color: var(--dark);
}

/* Arrow between cards */
.revenue__arrow-big {
  font-size: 64px;
  font-weight: 900;
  color: var(--dark);
  padding: 0 24px;
  flex-shrink: 0;
  line-height: 1;
  align-self: center;
}

/* Conclusion banner */
.revenue__conclusion {
  background: var(--dark);
  border-radius: 20px;
  padding: 32px 48px;
  max-width: 1070px;
  margin: 0 auto;
}
.revenue__conclusion p {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--yellow);
  text-align: center;
  line-height: 1.4;
}
.revenue__conclusion p strong {
  font-weight: 900;
  color: var(--yellow);
}
.revenue__conclusion p.revenue__example {
  font-size: 19px;
  color: #fff;
  font-weight: 400;
  margin-top: 12px;
}
.revenue__conclusion p.revenue__example strong {
  color: #fff;
  font-weight: 700;
}

/* =====================================================================
   БЛОК 9 — МОДЕЛЬ ВХОДА
   ===================================================================== */
.entry { text-align: center; }
.entry__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 56px;
}

.entry__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr) ;
  gap: 0;
  align-items: stretch;
  margin-bottom: 48px;
}
.entry__step {
  background: #fff;
  border: 2px solid var(--gray-2);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: left;
  transition: all 0.25s;
  position: relative;
}
.entry__step:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
}
.entry__step--final {
  background: var(--yellow);
  border-color: var(--yellow);
}
.entry__connect {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-3);
  font-size: 28px;
  font-weight: 900;
}
.entry__connect::before { content: '→'; }

.entry__step-num {
  width: 46px;
  height: 46px;
  background: var(--dark);
  color: var(--yellow);
  font-family: 'Unbounded', sans-serif;
  font-size: 20px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.entry__step--final .entry__step-num { background: var(--dark); color: var(--yellow); }
.entry__step h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.entry__step p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.entry__step--final p { color: var(--dark); font-weight: 500; }

.entry__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
}
.entry__compare-card {
  background: var(--gray-1);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
}
.entry__compare-card--final {
  background: var(--dark);
  color: #fff;
}
.entry__compare-label {
  position: absolute;
  top: -16px;
  left: 32px;
}
.entry__compare-label span {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 18px;
  text-transform: uppercase;
  transform: rotate(-2deg);
}
.entry__compare-card p {
  font-family: 'Unbounded', sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
}
.entry__compare-card strong {
  background: var(--yellow);
  padding: 0 8px;
}
.entry__compare-card ul {
  list-style: none;
  margin-top: 8px;
}
.entry__compare-card ul li {
  padding: 12px 0 12px 30px;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.entry__compare-card ul li:last-child { border-bottom: none; }
.entry__compare-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 800;
}

/* =====================================================================
   БЛОК 10 — СКОРОСТЬ
   ===================================================================== */
.speed {
  background: var(--yellow);
  border-radius: var(--radius-lg);
  padding: 64px;
  position: relative;
  overflow: hidden;
}
.speed::before {
  content: '⚡';
  position: absolute;
  right: -40px;
  top: -40px;
  font-size: 300px;
  opacity: 0.1;
  line-height: 1;
}
.speed__content { position: relative; z-index: 1; }
.speed__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 32px;
}
.speed__title span {
  display: inline-block;
  background: var(--dark);
  color: var(--yellow);
  padding: 2px 16px;
  transform: rotate(-1deg);
}
.speed__tracks {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.speed__track {
  background: var(--dark);
  color: #fff;
  padding: 18px 28px;
  border-radius: 50px;
  font-family: 'Unbounded', sans-serif;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}
.speed__bolt {
  color: var(--yellow);
  font-size: 20px;
}

/* =====================================================================
   БЛОК 11 — КАК РАСТЁТ ПАРТНЁР
   ===================================================================== */
.grow { text-align: center; }
.grow__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 14px;
}
.grow__lead {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 56px;
}

.grow__timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 60px;
}
.grow__line {
  position: absolute;
  top: 92px;
  left: 60px;
  right: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--gray-2) 0%, var(--yellow-soft) 60%, var(--yellow) 100%);
  border-radius: 2px;
  z-index: 0;
}
.grow__stage {
  position: relative;
  text-align: left;
  padding: 0 20px;
}
.grow__stage-num {
  width: 64px;
  height: 64px;
  background: #fff;
  border: 4px solid var(--gray-2);
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  position: relative;
  z-index: 2;
}
.grow__stage:nth-child(2) .grow__stage-num { border-color: var(--yellow-soft); }
.grow__stage:nth-child(3) .grow__stage-num { border-color: var(--yellow); }
.grow__stage--final .grow__stage-num {
  background: var(--dark);
  border-color: var(--yellow);
  color: var(--yellow);
}
.grow__stage-content {
  background: #fff;
  border: 2px solid var(--gray-2);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  text-align: center;
  transition: transform 0.25s, border-color 0.25s;
}
.grow__stage:hover .grow__stage-content {
  transform: translateY(-4px);
  border-color: var(--dark);
}
.grow__stage--final .grow__stage-content {
  background: var(--yellow);
  border-color: var(--yellow);
}
.grow__stage-content h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.grow__stage-content p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}
.grow__stage--final .grow__stage-content p { color: var(--dark); font-weight: 500; }

/* =====================================================================
   БЛОК 9 — ПОДКЛЮЧЕНИЕ (из provider-block)
   ===================================================================== */
.prov-entry { max-width: 1340px; width: 100%; }
.prov-entry__header { text-align: center; margin-bottom: 56px; }
.prov-entry__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: #1a1a1a;
  text-transform: uppercase;
}
.prov-entry__title span {
  color: #FFD600;
}
.prov-entry__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  margin-bottom: 48px;
}
.prov-entry__step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 12px;
}
.prov-entry__step-num {
  width: 56px; height: 56px;
  background: #FFD600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Unbounded', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 auto 14px;
  position: relative;
  z-index: 2;
  transition: transform 0.2s, box-shadow 0.2s;
}
.prov-entry__step:hover .prov-entry__step-num {
  transform: scale(1.15);
  box-shadow: 0 0 0 8px rgba(253, 214, 0, 0.2);
}
.prov-entry__step::after {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(50% + 32px);
  right: calc(-50% + 32px);
  height: 3px;
  background: linear-gradient(90deg, #FFD600, #e0e0e0);
  z-index: 1;
}
.prov-entry__step:last-child::after { display: none; }
.prov-entry__step-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
}
.prov-entry__tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.prov-entry__tier {
  border-radius: 24px;
  padding: 36px 32px;
  transition: transform 0.25s;
}
.prov-entry__tier:hover { transform: translateY(-4px); }
.prov-entry__tier--start { background: #f8f8f8; border: 2px solid #eee; }
.prov-entry__tier--partner { background: #1a1a1a; }
.prov-entry__tier-label {
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.prov-entry__tier--start .prov-entry__tier-label { color: #888; }
.prov-entry__tier--partner .prov-entry__tier-label { color: #FFD600; }
.prov-entry__tier-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
}
.prov-entry__tier--start .prov-entry__tier-title { color: #1a1a1a; }
.prov-entry__tier--partner .prov-entry__tier-title { color: #fff; }
.prov-entry__tier-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.prov-entry__tier-list li {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.prov-entry__tier--start .prov-entry__tier-list li { color: #555; }
.prov-entry__tier--partner .prov-entry__tier-list li { color: rgba(255, 255, 255, 0.8); }
.prov-entry__tier-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  background: #FFD600;
  border-radius: 50%;
}

/* =====================================================================
   БЛОК 12 — ПАРТНЁРЫ / BRANDS (из brands-block)
   ===================================================================== */
.brands {
  padding: 0;
  overflow-anchor: none;
}
.brands * { overflow-anchor: none; }
.brands__inner {
  max-width: 1340px;
  margin: 0 auto;
  border-radius: 80px;
  border: 1px solid transparent;
  background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, #FDD300, #FFE770, #25292D);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  padding: 64px 48px;
  overflow: hidden;
}
.brands__title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 1.05;
  text-align: center;
  color: #1a1a1a;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.brands__title span {
  color: #FFD600;
}
.brands__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  margin-left: 6px;
  background: #1a1a1a;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  border-radius: 50px;
  vertical-align: super;
  position: relative;
  top: -20px;
}
.brands__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #888;
  text-align: center;
  margin: 0 0 48px;
}
.brands__featured {
  display: grid;
  grid-template-columns: 295px minmax(0, 1fr) 300px;
  gap: 48px;
  align-items: start;
  margin-bottom: 20px;
  min-height: 280px;
}
.brands__featured-photo img {
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.brands__featured-person,
.brands__featured-desc,
.brands__featured-results-title,
.brands__featured-results-list {
  transition: opacity 0.12s ease;
}
.brands__featured.is-fading .brands__featured-photo img,
.brands__featured.is-fading .brands__featured-person,
.brands__featured.is-fading .brands__featured-desc,
.brands__featured.is-fading .brands__featured-results-title,
.brands__featured.is-fading .brands__featured-results-list {
  opacity: 0;
}
.brands__featured-card {
  display: flex;
  flex-direction: column;
  width: 295px;
}
.brands__featured-photo {
  width: 295px;
  height: 173px;
  border-radius: 16px;
  background: #e8e8e8;
  position: relative;
  margin-bottom: 16px;
  overflow: visible;
}
.brands__featured-photo img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 280px;
  width: auto;
  object-fit: contain;
  display: block;
}
.brands__featured-person {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}
.brands__featured-body {
  padding-top: 8px;
  max-width: 480px;
  height: 280px;
  overflow: hidden;
}
.brands__featured-desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: #1a1a1a;
  margin: 0 0 18px;
  max-width: 540px;
}
.brands__featured-results-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.brands__featured-results-list {
  margin: 0;
  padding-left: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: #1a1a1a;
}
.brands__featured-results-list li { margin-bottom: 6px; }
.brands__featured-results-list li::marker { color: #FDD300; }
.brands__nav {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-content: start;
}
.brands__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid #1a1a1a;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.brands__nav-btn:hover {
  background: #FDD300;
  border-color: #FDD300;
  transform: scale(1.1);
}
.brands__nav-btn:active { transform: scale(0.95); }
.brands__featured-action {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  margin-top: 16px;
}
.brands__featured-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  color: #1a1a1a;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  padding: 16px 26px;
  border: none;
  border-radius: 100px;
  text-decoration: none;
  text-transform: lowercase;
  white-space: nowrap;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
  box-shadow: inset 0 0 0 2px #1a1a1a;
}
.brands__featured-btn:hover {
  background: #FFD600;
  color: #1a1a1a;
  transform: translateY(-2px);
}
.brands__featured-btn:hover .brands__featured-btn-arrow {
  transform: translateX(4px);
}
.brands__featured-btn-arrow {
  display: block;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.brands__hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #888;
  text-transform: lowercase;
  letter-spacing: 0.01em;
}
.brands__hint-arrow {
  display: inline-block;
  font-size: 18px;
  color: #FDD300;
  animation: brandsHintBounce 1.6s ease-in-out infinite;
}
.brands__hint-arrow:last-child { animation-delay: 0.8s; }
@keyframes brandsHintBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}
.brands__marquee {
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
  margin-left: -48px;
  margin-right: -48px;
}
.brands__marquee:last-of-type { margin-bottom: 0; }
.brands__marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
  will-change: transform;
}
.brands__chip {
  flex-shrink: 0;
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  padding: 18px 28px;
  border-radius: 100px;
  background: #FFD600;
  color: #1a1a1a;
  border: 2px solid #FFD600;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
}
.brands__chip:hover {
  background: #1a1a1a;
  color: #FFD600;
  border-color: #1a1a1a;
}
.brands__chip.is-active,
.brands__chip--yellow.is-active {
  background: #1a1a1a;
  color: #FFD600;
  border-color: #1a1a1a;
}

/* =====================================================================
   БЛОК 12 — КЕЙСЫ
   ===================================================================== */
.cases { text-align: center; }
.cases__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 14px;
}
.cases__lead {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.cases__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cases__card {
  background: #fff;
  border: 2px solid var(--gray-2);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: left;
  transition: transform 0.25s, border-color 0.25s;
}
.cases__card:hover {
  transform: translateY(-4px);
  border-color: var(--dark);
}
.cases__video {
  background: linear-gradient(135deg, var(--dark) 0%, #333 100%);
  aspect-ratio: 16/10;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cases__video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,214,0,0.04) 10px, rgba(255,214,0,0.04) 20px);
}
.cases__play {
  width: 60px;
  height: 60px;
  background: var(--yellow);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: transform 0.2s;
}
.cases__card:hover .cases__play { transform: scale(1.1); }

.cases__brand {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 800;
  padding: 20px 22px 10px;
}
.cases__metrics {
  display: flex;
  gap: 18px;
  padding: 0 22px 22px;
}
.cases__metric {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
}
.cases__metric span {
  font-family: 'Unbounded', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 2px;
}

/* =====================================================================
   БЛОК 13+14 — КОМУ ПОДХОДИТ + URGENCY (вариант 2 — hero-число)
   ===================================================================== */
.v2 {
  background: var(--dark);
  border-radius: 30px;
  padding: 72px 60px;
  text-align: center;
  color: #fff;
  position: relative;
}
.v2__kicker {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%) rotate(-5.5deg);
  background: var(--yellow);
  padding: 10px 27px;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--dark);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  white-space: nowrap;
  z-index: 2;
}
.v2__hero-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 8px;
}
.v2__hero-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 160px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.v2__hero-of {
  font-family: 'Unbounded', sans-serif;
  font-size: 40px;
  font-weight: 400;
  color: rgba(255,255,255,0.3);
}
.v2__hero-total {
  font-family: 'Unbounded', sans-serif;
  font-size: 160px;
  font-weight: 900;
  color: rgba(255,255,255,0.08);
  line-height: 1;
}
.v2__hero-label {
  font-size: 22px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 48px;
}

.v2__bar-wrap {
  max-width: 700px;
  margin: 0 auto 48px;
}
.v2__bar {
  height: 16px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}
.v2__bar-fill {
  height: 100%;
  width: 66%;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--yellow-soft), var(--yellow));
}
.v2__bar-legend {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.v2__bar-legend strong { color: #fff; }
.v2__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
  vertical-align: middle;
}
.v2__dot--a { background: var(--dark); border: 2px solid rgba(255,255,255,0.3); }
.v2__dot--b { background: var(--yellow); }
.v2__dot--c { background: var(--yellow-soft); }

.v2__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
  text-align: left;
}
.v2__col {
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid rgba(255,255,255,0.06);
}
.v2__col-label {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
  letter-spacing: 0.08em;
}
.v2__col-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.v2__col-tag {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  background: rgba(255,255,255,0.08);
  color: #fff;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
}
.v2__col-tag:hover {
  transform: translateY(-6px);
}
.v2__col-tag--a {
  background: var(--yellow);
  color: var(--dark);
}
.v2__risk-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.v2__risk-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}
.v2__risk-icon {
  width: 28px; height: 28px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.v2__risk-icon svg {
  width: 16px;
  height: 16px;
}
.v2__key {
  background: var(--yellow);
  border-radius: 16px;
  padding: 28px 40px;
  max-width: 800px;
  margin: 0 auto;
}
.v2__key p {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
}
.v2__key strong {
  font-weight: 900;
}

/* =====================================================================
   БЛОК 15 — КАК ПРОХОДИТ ПОДКЛЮЧЕНИЕ
   ===================================================================== */
.process { text-align: center; }
.process__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 56px;
}
.process__flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  min-width: 140px;
}
.process__dot {
  width: 90px;
  height: 90px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Unbounded', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  box-shadow: 0 0 0 8px rgba(255,214,0,0.15);
  transition: transform 0.25s;
}
.process__step:hover .process__dot { transform: scale(1.08); }
.process__step--final .process__dot {
  background: var(--dark);
  color: var(--yellow);
  box-shadow: 0 0 0 8px rgba(26,26,26,0.15);
}
.process__step span {
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: lowercase;
}
.process__arr {
  font-size: 32px;
  color: var(--gray-3);
  font-weight: 900;
}

/* =====================================================================
   БЛОК 16 — ФИНАЛЬНЫЙ CTA + ФОРМА
   ===================================================================== */
.final {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,214,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.final__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.final__title .text-reveal {
  display: block;
  color: var(--yellow);
}
.final__lead {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  line-height: 1.6;
}
.final__pros {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.final__pros li {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  padding-left: 28px;
  position: relative;
}
.final__pros li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--yellow);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

/* Форма */
.final__form {
  background: #fff;
  color: var(--dark);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  z-index: 1;
}
.final__form-head {
  margin-bottom: 24px;
}
.final__form-step {
  display: block;
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.final__form-step b { color: var(--dark); }
.final__form-bar {
  height: 6px;
  background: var(--gray-1);
  border-radius: 3px;
  overflow: hidden;
}
.final__form-bar-fill {
  height: 100%;
  background: var(--yellow);
  border-radius: 3px;
  transition: width 0.35s ease;
}

.final__form-screen {
  display: none;
  animation: fadeStep 0.35s ease;
}
.final__form-screen.active { display: block; }
@keyframes fadeStep {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.final__form-screen h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}
.final__form-screen p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.final__micro {
  font-size: 13px !important;
  margin-bottom: 18px !important;
}

.final__input {
  display: block;
  width: 100%;
  padding: 16px 18px;
  background: var(--gray-1);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  margin-bottom: 12px;
  transition: border-color 0.2s, background 0.2s;
}
.final__input:focus {
  outline: none;
  border-color: var(--yellow);
  background: #fff;
}
.final__input--error {
  border-color: #e53935;
  animation: shake 0.4s ease;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

.final__hints {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}
.final__hints span {
  padding: 6px 12px;
  background: var(--gray-1);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: default;
  pointer-events: none;
  user-select: none;
}

.final__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 8px;
}
.final__options .final__opt--primary { grid-column: 1 / -1; }
.final__options .final__opt:last-child:nth-child(odd) { grid-column: 1 / -1; }
.final__opt {
  background: var(--gray-1);
  border: 2px solid transparent;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s;
}
.final__opt:hover {
  background: #fff;
  border-color: var(--dark);
}
.final__opt--primary {
  background: var(--yellow);
  border-color: var(--yellow);
}
.final__opt--primary:hover {
  background: var(--dark);
  color: var(--yellow);
  border-color: var(--dark);
}

.final__next {
  width: 100%;
  background: var(--dark);
  color: #fff;
  border: none;
  padding: 18px 24px;
  border-radius: var(--radius-sm);
  font-family: 'Unbounded', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 18px;
  transition: background 0.2s;
}
.final__next:hover { background: var(--yellow); color: var(--dark); }

.final__trust {
  margin-top: 14px;
  padding: 10px 16px;
  background: var(--yellow);
  color: var(--dark);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.final__next-steps {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 24px;
  padding: 16px;
  background: var(--gray-1);
  border-radius: var(--radius-sm);
  justify-content: center;
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 600;
}

/* =====================================================================
   MOBILE
   ===================================================================== */
/* =====================================================================
   TABLET  (601px – 1000px)
   ===================================================================== */
@media (max-width: 1000px) {
  body { padding: 20px 14px 60px; gap: 80px; }
  section { border-radius: var(--radius-md) !important; }

  /* Hero */
  .hero { grid-template-columns: 1fr; }
  .hero__left { padding: 36px 28px 80px; min-height: auto; border-radius: var(--radius-lg); }
  .hero__title { font-size: 30px; }
  .hero__shelf { display: none; }
  .hero__btn-area { position: relative; bottom: auto; left: auto; margin-top: 24px; text-align: center; }
  .hero__btn-cursor { bottom: -16px; right: -9px; }
  .problem__line { display: none; }
  .hero__right { padding-left: 0; margin-top: 20px; }
  .hero__subtitle-text { font-size: 20px; }
  .hero__quote-wrap { margin-top: 10px; margin-bottom: 10px; margin-left: 0; width: 100%; padding: 0; }
  .hero__quote--stats { grid-template-columns: repeat(3, 1fr); gap: 14px 20px; padding: 18px 20px; }
  .hero__mini-num { font-size: 18px; }

  /* Problem */
  .problem__title,
  .market__title,
  .why-eco__title,
  .revenue__title,
  .entry__title,
  .grow__title,
  .cases__title,
  .scale__title,
  .process__title { font-size: 28px; }
  .problem__grid { grid-template-columns: 1fr 1fr; }
  .problem__key { padding: 40px 28px; flex-direction: column; }
  .problem__key p { font-size: 18px; }

  /* Market */
  .market__compare { grid-template-columns: 1fr; }
  .market__note { padding: 24px; }
  .market__note p { font-size: 16px; }
  /* Market cats — switch from absolute to flow layout */
  .market__cats {
    position: static;
    min-height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 40px;
  }
  .market__cat {
    position: static;
    left: auto; top: auto;
    transform: none;
    font-size: 13px;
    padding: 10px 18px;
  }
  .market__cats-title { font-size: 18px; }

  /* Eco */
  .eco { grid-template-columns: 1fr; padding: 48px 28px; gap: 40px; }
  .eco__title { font-size: 28px; }
  .eco__lead { font-size: 28px; }
  .eco__right { min-height: 360px; }
  .eco2__map--compact { height: 340px; }
  .eco2__map--compact .eco2__center { width: 140px; height: 140px; }
  .eco2__map--compact .eco2__center-name { font-size: 16px; }
  .eco2__map--compact .eco2__center-sub { font-size: 9px; }
  .eco2__map--compact .eco2__orbit-ring--1 { width: 170px; height: 170px; left: calc(50% - 85px); top: calc(50% - 85px); }
  .eco2__map--compact .eco2__orbit-ring--2 { width: 230px; height: 230px; left: calc(50% - 115px); top: calc(50% - 115px); }
  .eco2__map--compact .eco2__orbit-ring--3 { width: 310px; height: 310px; left: calc(50% - 155px); top: calc(50% - 155px); }
  .eco2__card { padding: 8px 10px; gap: 8px; max-width: 180px; }
  .eco2__card-icon { width: 24px; height: 24px; }
  .eco2__card-body h3 { font-size: 12px; }
  .eco2__card { transform: translate(calc(-50% + calc(var(--x, 0px) * 0.65)), calc(-50% + calc(var(--y, 0px) * 0.65))) rotate(var(--r, 0deg)); }

  /* Scale */
  .scale__grid { grid-template-columns: 1fr 1fr; }
  .scale__inf { grid-template-columns: 1fr 1fr; }
  .scale__card-num { font-size: 34px; }
  .scale__card { transform: none; }
  .scale__note { padding: 24px; }
  .scale__note p { font-size: 15px; }

  /* Why */
  .why__title { font-size: 28px; }
  .why__lead { font-size: 16px; }
  .why__marquee-item { font-size: 14px; }
  .why__half { padding: 28px 24px; }
  .why__half-title { font-size: 15px; }

  /* Why-eco */
  .why-eco__cards { grid-template-columns: 1fr 1fr; }

  /* Benefits — мобильный слайдер тегов */
  .benefits__inner { height: auto; min-height: 500px; }
  .benefits__title { font-size: 28px; white-space: normal; text-align: center; padding: 0; width: max-content; max-width: calc(100% - 24px); line-height: 1.15; }
  .benefits__title-br { display: initial; }
  .benefits__tags--white,
  .benefits__tags--yellow { display: none; }

  .benefits__slider {
    display: block;
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 5;
  }
  .benefits__slider-track {
    display: flex;
    gap: 10px;
    padding: 0 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .benefits__slider-track::-webkit-scrollbar { display: none; }
  .benefits__slider-tag {
    flex-shrink: 0;
    background: #fff;
    color: #25292d;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 0 20px;
    line-height: 38px;
    border-radius: 20px;
    white-space: nowrap;
  }
  .benefits__slider-tag--yellow { background: var(--yellow); color: var(--dark); }
  .benefits__slider-pagination {
    height: 3px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    margin: 12px 16px 0;
    width: calc(100% - 32px);
    overflow: hidden;
  }
  .benefits__slider-pagination-thumb {
    height: 100%;
    width: 30%;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.15s;
  }

  /* Revenue */
  .revenue__cards { flex-direction: column; gap: 24px; }
  .revenue__card { width: 100%; min-height: 90px; padding: 18px 18px 18px; margin-top: 20px; }
  .revenue__arrow-big { transform: rotate(90deg); padding: 0; font-size: 48px; }
  .revenue__card-amount .revenue__amount-num,
  .revenue__card-amount .revenue__amount-suffix { font-size: 56px; }
  .revenue__tag { font-size: 16px; padding: 8px 20px; }
  .revenue__card-label { font-size: 16px; padding: 8px 20px; top: -30px; left: 14px; }
  /* Single-карточка: компактная по высоте — Спецэффекты + 50к в одну строку */
  .revenue__card--single {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 0;
    padding: 14px 20px;
  }
  .revenue__card--single .revenue__card-tags { margin-bottom: 0; flex-wrap: nowrap; }
  .revenue__card--single .revenue__card-amount { margin-top: 0; }
  .revenue__card--single .revenue__card-amount .revenue__amount-num,
  .revenue__card--single .revenue__card-amount .revenue__amount-suffix { font-size: 36px; }
  .revenue__conclusion { padding: 24px; }
  .revenue__conclusion p { font-size: 20px; }

  /* Entry */
  .entry__steps { grid-template-columns: 1fr; gap: 12px; }
  .entry__connect { transform: rotate(90deg); padding: 4px 0; }
  .entry__compare { grid-template-columns: 1fr; }
  .entry__compare-card { padding: 32px 24px; }

  /* Speed */
  .speed { padding: 40px 28px; }
  .speed__title { font-size: 26px; }
  .speed__track { font-size: 13px; padding: 14px 20px; }

  /* Staircase */
  .prov-staircase { grid-template-columns: 1fr; gap: 24px; }
  .prov-staircase__left { order: 2; }
  .prov-staircase__right { order: 1; }
  .v7-stair { padding: 12px 16px; min-height: 48px; }
  .v7-ball { display: none; }
  .v7-label__desktop { display: none; }
  .v7-label__mobile { display: inline; }
  .v7-label { overflow-wrap: anywhere; word-break: break-word; hyphens: auto; min-width: 0; }
  .v7-stair { overflow: hidden; }

  /* Подсказки как модалка по центру экрана */
  .v7-tip { transition: none; }
  .v7-stair--has-tip:hover .v7-tip {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-50%) translateX(10px);
  }
  .v7-stair--has-tip.is-open .v7-tip {
    position: fixed;
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
    width: min(90vw, 360px);
    max-height: 80vh;
    overflow-y: auto;
    padding: 22px 20px 18px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2010;
    transition: none;
  }
  .v7-stair--has-tip.is-open .v7-tip::after { display: none; }
  .v7-tip__close { display: block; }
  body.v7-tip-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 2000;
  }
  body.v7-tip-open { overflow: hidden; }
  .v7-num { font-size: 22px; }
  .v7-label { font-size: 12px; }

  /* Career8 */
  .career8__title { font-size: 28px; }
  .career8__subtitle { font-size: 16px; }
  .career8__track { height: 400px; margin-top: 40px; }
  .career8__cp { display: none; }
  .career8__replay { bottom: 100px; right: 10px; }

  /* Grow */
  .grow__timeline { grid-template-columns: 1fr 1fr; gap: 28px 14px; padding-top: 30px; }
  .grow__line { display: none; }

  /* Growth ladder */
  .prov-growth__ladder { grid-template-columns: 1fr 1fr; }

  /* Cases */
  .cases__grid { grid-template-columns: 1fr 1fr; }

  /* Fit / V2 */
  .v2 { padding: 48px 24px; }
  .v2__hero-num, .v2__hero-total { font-size: 80px; }
  .v2__hero-of { font-size: 24px; }
  .v2__hero-label { font-size: 16px; }
  .v2__columns { grid-template-columns: 1fr; }
  .v2__bar-legend { flex-wrap: wrap; gap: 14px; }
  .v2__key { padding: 24px 28px; }
  .v2__key p { font-size: 16px; }

  /* Process */
  .process__flow { flex-direction: column; gap: 12px; }
  .process__arr { transform: rotate(90deg); }

  /* Final */
  .final { grid-template-columns: 1fr; padding: 40px 24px; gap: 32px; }
  .final__title { font-size: 28px; }
  .final__form-screen h3 { font-size: 18px; }

  /* prov-entry */
  .prov-entry__title { font-size: 24px; }
  .prov-entry__steps { flex-direction: column; align-items: center; gap: 16px; }
  .prov-entry__step::after { display: none; }
  .prov-entry__tiers { grid-template-columns: 1fr; }

  /* brands */
  .brands__inner { padding: 40px 20px; border-radius: 24px; }
  .brands__title { font-size: 32px; }
  .brands__subtitle { font-size: 15px; margin-bottom: 32px; }
  .brands__chip { font-size: 13px; padding: 14px 20px; }
  .brands__marquee { margin-left: -20px; margin-right: -20px; }
  .brands__featured { grid-template-columns: 1fr; gap: 24px; margin-bottom: 24px; min-height: auto; }
  .brands__featured-card { width: 100%; align-items: center; text-align: center; }
  .brands__featured-photo { width: 260px; height: 153px; margin: 0 auto 16px; }
  .brands__featured-photo img { height: 240px; }
  .brands__featured-body { padding-top: 0; max-width: 100%; height: auto; text-align: center; }
  .brands__featured-desc { font-size: 14px; }
  .brands__featured-action { padding-top: 0; justify-content: center; }
  .brands__featured-btn { padding: 18px 28px; font-size: 14px; }
  .brands__nav { justify-content: center; }
  .brands__hint { font-size: 12px; }

  /* FAB */
  .fab { right: 16px; bottom: 16px; padding: 14px 20px; font-size: 12px; }
}

/* =====================================================================
   MOBILE  (max 600px)
   ===================================================================== */
@media (max-width: 600px) {
  body { padding: 12px 8px 60px; gap: 56px; }

  /* Hero */
  .hero__left { padding: 28px 18px 28px; border-radius: var(--radius-md); display: flex; flex-direction: column; align-items: center; text-align: center; }
  .hero__bubbles { justify-content: center; text-align: left; }
  .hero__title { font-size: 22px; }
  .hero__subtitle-text { font-size: 16px; padding: 6px 12px; }
  .hero__bubble { font-size: 13px; padding: 8px 14px; }
  .hero__btn { font-size: 14px; padding: 16px 24px; }
  .hero__quote-wrap { width: 100%; }
  .hero__quote--stats { grid-template-columns: repeat(2, 1fr); gap: 12px 16px; padding: 16px; }
  .hero__mini-num { font-size: 16px; }
  .hero__mini-label { font-size: 11px; }
  .hero__play-wrap { width: 80px; height: 80px; right: 0; }
  .hero__play { width: 50px; height: 50px; top: 10px; right: 10px; }
  .hero__play-corner-svg { right: 0; }
  .hero__play svg { width: 18px; height: 18px; }

  /* Problem */
  .problem__title,
  .market__title,
  .why-eco__title,
  .revenue__title,
  .entry__title,
  .grow__title,
  .cases__title,
  .scale__title,
  .process__title { font-size: 22px; }
  .problem__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 8px;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 4px;
    margin: 0 -8px 32px;
    scrollbar-width: none;
  }
  .problem__grid::-webkit-scrollbar { display: none; }
  .problem__grid::before,
  .problem__grid::after {
    content: '';
    flex-shrink: 0;
    width: 2px;
  }
  .problem__card {
    min-width: 280px;
    max-width: 300px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
  /* Pagination line */
  .problem__scroll-bar {
    display: block;
    height: 3px;
    background: var(--gray-2);
    border-radius: 2px;
    margin: 16px auto 0;
    max-width: 200px;
    overflow: hidden;
  }
  .problem__scroll-bar-fill {
    height: 100%;
    background: var(--dark);
    border-radius: 2px;
    width: 33%;
    transition: transform 0.15s ease;
  }
  .problem__lead { font-size: 15px; margin-bottom: 32px; }
  .problem__card { padding: 16px 18px; gap: 14px; }
  .problem__card:hover { transform: none; border-color: var(--gray-2); }
  .problem__card h3 { font-size: 14px; }
  .problem__key { padding: 32px 20px; }
  .problem__key p { font-size: 16px; }
  .problem__key-label { left: 20px; }

  /* Market */
  .market__lead { font-size: 15px; margin-bottom: 32px; }
  .market__compare-col { min-height: 200px; }
  .market__cats { gap: 8px; margin-top: 20px; margin-bottom: 0; }
  .market__cat { font-size: 11px; padding: 8px 14px; }
  .market__cats-title { font-size: 15px; }
  .market__note p { font-size: 14px; }

  /* Eco */
  .eco { padding: 32px 18px; gap: 28px; }
  .eco__title { font-size: 22px; }
  .eco__lead { font-size: 22px; }
  .eco__list li { font-size: 14px; padding: 10px 0 10px 24px; }
  .eco__principle p { font-size: 15px; }
  .eco__right { min-height: 300px; }
  .eco2__map--compact { height: 290px; }
  .eco2__map--compact .eco2__center { width: 110px; height: 110px; }
  .eco2__map--compact .eco2__center-name { font-size: 13px; }
  .eco2__map--compact .eco2__center-sub { font-size: 8px; }
  .eco2__map--compact .eco2__orbit-ring--1 { width: 140px; height: 140px; left: calc(50% - 70px); top: calc(50% - 70px); }
  .eco2__map--compact .eco2__orbit-ring--2 { width: 190px; height: 190px; left: calc(50% - 95px); top: calc(50% - 95px); }
  .eco2__map--compact .eco2__orbit-ring--3 { width: 260px; height: 260px; left: calc(50% - 130px); top: calc(50% - 130px); }
  .eco2__card { padding: 6px 8px; gap: 6px; max-width: 140px; }
  .eco2__card-icon { display: none; }
  .eco2__card-body h3 { font-size: 10px; }
  .eco2__card { transform: translate(calc(-50% + calc(var(--x, 0px) * 0.5)), calc(-50% + calc(var(--y, 0px) * 0.5))) rotate(var(--r, 0deg)); }

  /* Scale */
  .scale__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 8px;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 4px;
    margin: 0 -8px 32px;
    scrollbar-width: none;
  }
  .scale__grid::-webkit-scrollbar { display: none; }
  .scale__grid::before,
  .scale__grid::after {
    content: '';
    flex-shrink: 0;
    width: 2px;
  }
  .scale__card { transform: none; padding: 24px 20px; min-width: 240px; flex-shrink: 0; scroll-snap-align: start; }
  .scale__card-num { font-size: 28px; }
  .scale__grid { padding-top: 10px; padding-bottom: 10px; }
  .scale__inf { grid-template-columns: 1fr 1fr; gap: 10px; }
  .scale__inf-item { font-size: 13px; padding: 14px 16px; }
  .scale__inf-item:last-child { grid-column: 1 / -1; }
  .scale__note p { font-size: 14px; }

  /* Why */
  .why__title { font-size: 22px; }
  .why__lead { font-size: 14px; }
  .why__frame { grid-template-columns: 1fr; }
  .why__half { padding: 24px 20px; }
  .why__half-title { font-size: 14px; margin-bottom: 18px; }
  .why__half--dark .why__half-item p,
  .why__half--yellow .why__half-item p { font-size: 14px; }
  .why__marquee { padding: 12px 0; border-radius: 50px; }
  .why__marquee-item { font-size: 12px; }

  /* Why-eco */
  .why-eco__cards { grid-template-columns: 1fr; }

  /* Benefits */
  .benefits__inner { height: auto; min-height: 400px; }
  .benefits__title { font-size: 22px; }
  .benefits__slider-tag { font-size: 12px; padding: 0 16px; line-height: 34px; border-radius: 17px; }

  /* Revenue */
  .revenue__lead { font-size: 16px; margin-bottom: 28px; }
  .revenue__card { min-height: 90px; padding: 18px 18px 18px; }
  .revenue__card-amount .revenue__amount-num,
  .revenue__card-amount .revenue__amount-suffix { font-size: 42px; }
  .revenue__tag { font-size: 14px; padding: 6px 16px; }
  .revenue__card-label { font-size: 14px; padding: 6px 16px; }
  .revenue__conclusion p { font-size: 16px; }

  /* Speed */
  .speed { padding: 28px 18px; }
  .speed__title { font-size: 20px; }
  .speed__track { font-size: 12px; padding: 12px 16px; }
  .speed::before { font-size: 180px; right: -30px; top: -30px; }

  /* Staircase */
  .prov-entry__header { margin-bottom: 32px; }
  .prov-entry__title { font-size: 20px; }
  .prov-entry__tier { padding: 24px 20px; }
  .prov-entry__tier-title { font-size: 16px; }
  .v7-stair { padding: 10px 12px; min-height: 42px; }
  .v7-num { font-size: 18px; }
  .v7-label { font-size: 11px; }

  /* Career8 */
  .career8__title { font-size: 22px; }
  .career8__subtitle { font-size: 14px; }
  /* Career8 / prov-growth — горизонтальный слайдер карточек на мобилке */
  .prov-growth__ladder {
    display: flex;
    grid-template-columns: none;
    flex-direction: row;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 16px 8px;
    margin-top: 24px;
    margin-bottom: 16px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    align-items: stretch;
  }
  .prov-growth__ladder::-webkit-scrollbar { display: none; }
  .prov-growth__stage {
    flex-shrink: 0;
    width: calc(100% - 32px);
    min-height: auto !important;
    scroll-snap-align: center;
    perspective: none;
    cursor: default;
  }
  .prov-growth__stage-inner {
    transform: none !important;
    transform-style: flat;
    display: flex;
    flex-direction: column;
    min-height: auto;
    border-radius: 20px;
    overflow: hidden;
  }
  .prov-growth__stage-face {
    position: static !important;
    inset: auto;
    transform: none !important;
    backface-visibility: visible;
    border-radius: 0;
    padding: 22px 20px;
  }
  .prov-growth__stage-face--front { order: 1; }
  .prov-growth__stage-face--back { order: 2; }
  .prov-growth__stage-num { font-size: 36px; }
  .prov-growth__stage-title { font-size: 13px; }
  .prov-growth__pagination {
    display: block;
    height: 3px;
    background: rgba(0,0,0,0.12);
    border-radius: 2px;
    margin: 0 16px;
    width: calc(100% - 32px);
    overflow: hidden;
  }
  .prov-growth__pagination-thumb {
    height: 100%;
    width: 25%;
    background: var(--dark);
    border-radius: 2px;
    transition: transform 0.15s;
  }
  .career8__track { display: none; }

  /* Grow */
  .grow__timeline { grid-template-columns: 1fr; }

  /* Cases */
  .cases__grid { grid-template-columns: 1fr; }

  /* V2 / Fit */
  .v2 { padding: 36px 16px; border-radius: 20px; }
  .v2__kicker { font-size: 14px; padding: 8px 18px; }
  .v2__hero-num, .v2__hero-total { font-size: 56px; }
  .v2__hero-of { font-size: 18px; }
  .v2__hero-label { font-size: 14px; margin-bottom: 28px; }
  .v2__bar-legend { gap: 10px; font-size: 12px; flex-wrap: wrap; }
  .v2__columns { grid-template-columns: 1fr; gap: 14px; }
  .v2__col { padding: 24px 20px; }
  .v2__col-tag { font-size: 12px; padding: 6px 14px; }
  .v2__risk-item { font-size: 13px; }
  .v2__key { padding: 20px 22px; }
  .v2__key p { font-size: 14px; }

  /* Brands */
  .brands__inner { padding: 28px 14px; border-radius: 20px; }
  .brands__title { font-size: 24px; }
  .brands__count { top: -14px; }
  .brands__subtitle { font-size: 13px; margin-bottom: 24px; }
  .brands__featured-photo { width: 200px; height: 118px; }
  .brands__featured-photo img { height: 200px; }
  .brands__featured-person { font-size: 16px; }
  .brands__featured-desc { font-size: 13px; }
  .brands__featured-results-title { font-size: 14px; }
  .brands__featured-results-list { font-size: 13px; text-align: left; }
  .brands__chip { font-size: 12px; padding: 12px 16px; }
  .brands__marquee { margin-left: -14px; margin-right: -14px; }
  .brands__hint { display: none; }

  /* Final */
  .final { padding: 28px 16px; gap: 24px; }
  .final__title { font-size: 22px; }
  .final__lead { font-size: 14px; }
  .final__form { padding: 24px 18px; }
  .final__form-screen h3 { font-size: 16px; }
  .final__next { font-size: 13px; padding: 16px 20px; }
  .final__opt { padding: 14px 16px; font-size: 13px; }
  .final__input { padding: 14px 14px; font-size: 14px; }
  .final__next-steps { font-size: 11px; gap: 6px; }

  /* FAB */
  .fab { right: 12px; bottom: 12px; padding: 12px 18px; font-size: 11px; }
}

/* ========================================
   Секция "Зачем экосистема" (why)
   ======================================== */
.why {
  max-width: 1340px;
  width: 100%;
}

.why__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: #1a1a1a;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 40px;
}

.why__title span {
  color: #FFD600;
}

.why__top {
  text-align: center;
  margin-bottom: 32px;
}

.why__lead {
  font-family: 'Unbounded', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #555;
  line-height: 1.4;
  margin-top: 12px;
}

/* --- Бегущая строка --- */
.why__marquee {
  overflow: hidden;
  background: #1a1a1a;
  border-radius: 100px;
  padding: 18px 0;
  margin-bottom: 32px;
}

.why__marquee-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: whyMarquee 40s linear infinite;
  width: max-content;
}

.why__marquee-item {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

.why__marquee-item--accent {
  color: #FFD600;
  font-weight: 800;
}

@keyframes whyMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Фрейм 50/50 --- */
.why__frame {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 24px;
  overflow: hidden;
}

.why__half {
  padding: 40px 36px;
}

.why__half--dark {
  background: #1a1a1a;
}

.why__half--yellow {
  background: #FFD600;
}

.why__half-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.why__half--dark .why__half-title {
  color: #FFD600;
}

.why__half--yellow .why__half-title {
  color: #1a1a1a;
}

.why__half-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why__half-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.why__half-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  background: #FFD600;
  border-radius: 50%;
  margin-top: 6px;
}

.why__half--dark .why__half-item p {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 1.45;
}

.why__half-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #FFD600;
}

.why__half--yellow .why__half-item p {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.45;
}

/* --- prov-growth ladder (замена career8__track) --- */
.prov-growth__ladder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: flex-end;
  margin-top: 40px;
  margin-bottom: 32px;
}
.prov-growth__pagination { display: none; }
.prov-growth__stage {
  position: relative;
  perspective: 1400px;
  cursor: pointer;
  background: transparent;
}
.prov-growth__stage--1 { min-height: 180px; }
.prov-growth__stage--2 { min-height: 230px; }
.prov-growth__stage--3 { min-height: 280px; }
.prov-growth__stage--4 { min-height: 330px; }

.prov-growth__stage-inner {
  position: relative;
  width: 100%;
  min-height: inherit;
  transition: transform 0.7s cubic-bezier(.4,.1,.2,1);
  transform-style: preserve-3d;
}
.prov-growth__stage:hover .prov-growth__stage-inner {
  transform: rotateY(180deg);
}
.prov-growth__stage-face {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 28px 24px;
  box-sizing: border-box;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.prov-growth__stage-face--back {
  transform: rotateY(180deg);
  background: #1a1a1a;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.prov-growth__stage--1 .prov-growth__stage-face--front { background: #f0f0f0; }
.prov-growth__stage--2 .prov-growth__stage-face--front { background: #e4e1e1; }
.prov-growth__stage--3 .prov-growth__stage-face--front { background: #ffe770; }
.prov-growth__stage--4 .prov-growth__stage-face--front { background: #FFD600; }

.prov-growth__stage-back-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.prov-growth__stage-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.prov-growth__stage-list li {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255,255,255,0.88);
  padding-left: 14px;
  position: relative;
}
.prov-growth__stage-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 2px;
  background: var(--yellow);
}
.prov-growth__stage-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.08);
  line-height: 1;
  margin-bottom: 12px;
}
.prov-growth__stage-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  line-height: 1.3;
}
.prov-growth__stage-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}
.prov-growth__timeline {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 24px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.prov-growth__timeline-icon {
  font-size: 24px;
}
.prov-growth__timeline-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.prov-growth__timeline-text span {
  color: #FFD600;
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
}

/* ========================================
   Секция "Как растёт партнёр" (career8)
   ======================================== */
.career8 { max-width: 1340px; width: 100%; }

.career8__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 40px; font-weight: 900; color: #1a1a1a;
  text-transform: uppercase; line-height: 1.15;
  margin-bottom: 14px; text-align: center;
}
.career8__title span { color: #FFD600; }

.career8__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #555;
  text-align: center;
}

.career8__track {
  position: relative;
  width: 100%;
  height: 520px;
  margin-top: 60px;
}

.career8__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.career8__moto { filter: none; }

.career8__cp {
  position: absolute;
  z-index: 10;
  opacity: 0.5;
  transition: opacity 0.6s ease, transform 0.6s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.career8__cp--lit { opacity: 1; }

.career8__cp--1 { left: 5%; top: 46%; transform: translate(var(--x, 0px), var(--y, 0px)); }
.career8__cp .adapt__card {
  position: static;
  transform: none;
  top: auto; bottom: auto; left: auto; right: auto;
}
.career8__cp--2 { left: 33%; top: 38%; transform: translate(var(--x, 0px), var(--y, 0px)); }
.career8__cp--3 { left: 55%; top: 26%; transform: translate(var(--x, 0px), var(--y, 0px)); }
.career8__cp--4 { left: 80%; top: 15%; transform: translate(var(--x, 0px), var(--y, 0px)); }

.career8__cp-dot {
  width: 12px; height: 12px;
  background: #ccc; border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.4s, box-shadow 0.4s;
  z-index: 2;
}
.career8__cp--lit .career8__cp-dot {
  background: #FFD600;
  box-shadow: 0 0 12px rgba(255, 214, 0, 0.5);
}
.career8__cp-dot--finish { width: 16px; height: 16px; }

.career8__replay {
  position: absolute; right: 20px; bottom: 140px;
  display: none; align-items: center; gap: 8px;
  background: #fff; color: #25292d;
  border: 2px solid #25292d; border-radius: 50px;
  padding: 10px 20px;
  font-family: 'Unbounded', sans-serif; font-size: 13px; font-weight: 700;
  cursor: pointer; transition: transform 0.2s, background 0.2s;
  z-index: 150;
  animation: replayPulse 2s ease-in-out infinite;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.career8__replay:hover { background: #25292d; color: #fdd300; transform: scale(1.05); }
.career8__replay svg { transition: transform 0.3s; }
.career8__replay:hover svg { transform: rotate(-360deg); }
.career8__replay.is-visible { display: flex; }
@keyframes replayPulse {
  0%, 100% { box-shadow: 0 2px 8px rgba(0,0,0,0.1), 0 0 0 0 rgba(37,41,45,0.3); }
  50% { box-shadow: 0 2px 8px rgba(0,0,0,0.1), 0 0 0 8px rgba(37,41,45,0); }
}

.career8__cp-line {
  width: 2px; height: 30px;
  background: #ddd; transition: background 0.4s;
}
.career8__cp--lit .career8__cp-line { background: #FFD600; }

.career8__road-bg { filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.12)); }

/* --- adapt cards (используются в career8) --- */
.adapt__card {
  position: absolute;
  width: auto; min-width: 200px; max-width: 260px;
  background: #fff; border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.adapt__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.adapt__card--accent {
  background: #1a1a1a;
  box-shadow: 0 8px 32px rgba(253, 211, 0, 0.2);
}
.adapt__card--accent .adapt__card-title { color: #FFD600; }
.adapt__card--accent .adapt__card-text { color: rgba(255, 255, 255, 0.7); }
.adapt__card--accent .adapt__card-list li { color: #fff; }
.adapt__card--accent .adapt__card-result { background: #FFD600; color: #1a1a1a; }

.adapt__card-info {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700;
  font-style: normal; color: #fff; line-height: 1;
  margin-left: 6px; cursor: pointer; vertical-align: middle;
}

.adapt__card-tooltip {
  position: absolute; bottom: calc(100% + 30px);
  left: 50%; transform: translateX(-50%);
  background: #1a1a1a; color: #fff;
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 400;
  line-height: 1.5; padding: 14px 18px; border-radius: 12px;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity 0.2s; z-index: 20;
}
.adapt__card-tooltip::after {
  content: ''; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent; border-top-color: #1a1a1a;
}
.adapt__card--accent:hover .adapt__card-tooltip { opacity: 1; }

.adapt__card-label {
  position: absolute; top: -16px; left: 50%;
  transform: translateX(-50%);
  background: #FFD600; color: #1a1a1a;
  font-family: 'Unbounded', sans-serif; font-size: 12px; font-weight: 700;
  padding: 6px 16px; border-radius: 20px;
  white-space: nowrap; z-index: 5;
}

.adapt__card-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 14px; font-weight: 700; color: #1a1a1a;
  line-height: 1.3; margin-bottom: 6px; white-space: nowrap;
}

.adapt__card-list {
  list-style: none; margin: 0 0 10px 0; padding: 0;
}
.adapt__card-list li {
  font-size: 13px; color: #555; line-height: 1.4;
  padding-left: 12px; position: relative;
}
.adapt__card-list li::before {
  content: '·'; position: absolute; left: 0;
  font-weight: 800; color: #FFD600; font-size: 16px; line-height: 1;
}

.adapt__card-result {
  display: inline-block; font-size: 12px; font-weight: 700;
  color: #1a1a1a; background: #F0F0F0;
  padding: 5px 10px; border-radius: 6px; line-height: 1.2;
}

/* =====================================================================
   LATE OVERRIDES — styles defined after the main media queries
   need their own responsive rules here at the end of the file
   ===================================================================== */
@media (max-width: 1000px) {
  /* prov-growth */
  .prov-growth__ladder { grid-template-columns: 1fr 1fr; gap: 14px; }
  .prov-growth__stage { min-height: auto; }
  .prov-growth__stage-num { font-size: 36px; }
  /* career8 */
  .career8__title { font-size: 28px; }
  .career8__subtitle { font-size: 16px; }
  .career8__track { display: none; }
  /* why */
  .why__title { font-size: 28px; }
  .why__lead { font-size: 16px; }
  .why__half-title { font-size: 15px; }
  /* hero quote — prevent overflow */
  .hero__quote-wrap { width: 100%; margin-left: 0; }
  /* marquee overflow protection */
  .why__marquee { overflow: hidden; }
  .brands__marquee { overflow: hidden; }
  /* eco2 orbit rings — contain inside section */
  .eco2__map { overflow: hidden; }
}
@media (max-width: 600px) {
  /* prov-growth стили слайдера — см. блок выше (строка 3383) */
  .prov-growth__stage-text { font-size: 12px; }
  /* career8 */
  .career8__title { font-size: 22px; }
  .career8__subtitle { font-size: 14px; }
  .career8__track { display: none; }
  /* why */
  .why__title { font-size: 22px; }
  .why__lead { font-size: 14px; }
  .why__half-title { font-size: 14px; }
  .why__half--dark .why__half-item p,
  .why__half--yellow .why__half-item p { font-size: 14px; }
  .why__frame { grid-template-columns: 1fr; }
  /* hero quote */
  .hero__quote-wrap { width: 100%; margin-left: 0; }
  /* hero play */
  .hero__play-wrap { right: 0; }
  .hero__play { top: 10px; }
  /* eco2 */
  .eco2__map { overflow: hidden; }
}

/* =====================================================================
   ECO-INTRO — заголовок перед блоком eco
   ===================================================================== */
.eco-intro {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
.eco-intro__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--dark);
  margin: 0;
}
.eco-intro__accent {
  color: var(--dark);
  font-weight: 900;
}
@media (max-width: 1000px) {
  .eco-intro__title { font-size: 28px; }
}
@media (max-width: 600px) {
  .eco-intro__title { font-size: 22px; }
}

/* =====================================================================
   SP-ROLE — твоя роль + экономика (copied from partner-prodazhi.css)
   ===================================================================== */
.sp-section-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 42px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--dark);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}
.sp-role {
  margin-top: 0;
}
.sp-role__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}
.sp-role__slogan {
  display: inline-block;
  width: fit-content;
  padding: 10px 24px;
  background: var(--yellow);
  color: var(--dark);
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 700;
}
.sp-role__metrics-wrap {
  position: relative;
  max-width: 1340px;
  margin: 60px auto 0;
  border-radius: 40px;
  border: 1px solid transparent;
  background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, #FDD300, #FFE770, #25292D);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  padding: 48px 24px;
}
.sp-role__metrics-badge {
  position: absolute;
  top: -16px;
  left: 36px;
  padding: 8px 18px;
  background: var(--dark);
  color: var(--yellow);
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  transform: rotate(-2deg);
}
.sp-role__metrics {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.sp-role__metric-card {
  width: 340px;
  min-height: 200px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--gray-1, #f5f5f5);
  border: none;
  border-radius: var(--radius-md);
  box-sizing: border-box;
}
.sp-role__metric-icon {
  width: 52px;
  height: 52px;
  background: var(--dark);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.sp-role__metric-icon svg {
  width: 24px;
  height: 24px;
}
.sp-role__metric-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  text-align: center;
  line-height: 1.4;
}
.sp-econ {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.sp-econ__formula {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.sp-econ__step {
  text-align: center;
}
.sp-econ__num {
  display: block;
  font-family: 'Unbounded', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #fff;
}
.sp-econ__desc {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.sp-econ__op {
  font-family: 'Unbounded', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
}
.sp-econ__result {
  background: var(--yellow);
  color: var(--dark);
  border-radius: var(--radius-md);
  padding: 24px 40px;
  text-align: center;
}
.sp-econ__result-num {
  display: block;
  font-family: 'Unbounded', sans-serif;
  font-size: 42px;
  font-weight: 900;
}
.sp-econ__result-label {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.6;
}

@media (max-width: 1000px) {
  .sp-section-title { font-size: 28px; }
}
@media (max-width: 600px) {
  .sp-section-title { font-size: 22px; margin-bottom: 24px; }
  /* sp-role__metrics — горизонтальный слайдер */
  .sp-role__metrics-wrap { padding: 32px 0; border-radius: 24px; }
  .sp-role__metrics-badge { left: 16px; }
  .sp-role__metrics {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 16px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .sp-role__metrics::-webkit-scrollbar { display: none; }
  .sp-role__metric-card {
    flex-shrink: 0;
    width: calc(100% - 32px);
    min-height: 160px;
    scroll-snap-align: center;
  }
  .sp-econ { padding: 32px 20px; }
  .sp-econ__formula { gap: 16px; }
  .sp-econ__num { font-size: 28px; }
  .sp-econ__result { padding: 20px 28px; }
  .sp-econ__result-num { font-size: 32px; }
}

/* prov-growth mobile slider (перекрывает tablet-grid на 600–1000px) */
@media (max-width: 1000px) {
  .prov-growth__ladder {
    display: flex !important;
    grid-template-columns: none !important;
    flex-direction: row;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 10px;
    scroll-padding-right: 10px;
    padding: 0 0 8px;
    margin-top: 24px;
    margin-bottom: 16px;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    align-items: stretch;
  }
  .prov-growth__ladder::-webkit-scrollbar { display: none; }
  .prov-growth__ladder > .prov-growth__stage:first-child { margin-left: 10px; }
  .prov-growth__ladder > .prov-growth__stage:last-child { margin-right: 10px; }
  .prov-growth__stage {
    flex-shrink: 0;
    width: calc(100% - 32px);
    min-height: auto !important;
    scroll-snap-align: center;
    perspective: none;
    cursor: default;
    padding: 0;
  }
  .prov-growth__stage-inner {
    transform: none !important;
    transform-style: flat;
    display: flex;
    flex-direction: column;
    min-height: auto;
    border-radius: 20px;
    overflow: hidden;
  }
  .prov-growth__stage-face {
    position: static !important;
    inset: auto;
    transform: none !important;
    backface-visibility: visible;
    border-radius: 0;
    padding: 22px 20px;
  }
  .prov-growth__stage-face--front { order: 1; }
  .prov-growth__stage-face--back { order: 2; }
  .prov-growth__stage-num { font-size: 36px; }
  .prov-growth__stage-title { font-size: 13px; }
  .prov-growth__pagination {
    display: block;
    height: 3px;
    background: rgba(0,0,0,0.12);
    border-radius: 2px;
    margin: 0 16px;
    width: calc(100% - 32px);
    overflow: hidden;
  }
  .prov-growth__pagination-thumb {
    height: 100%;
    width: 25%;
    background: var(--dark);
    border-radius: 2px;
    transition: transform 0.15s;
  }
}

/* ============================================
   Brands mobile — копия из predprinimateli.html (partner-block.css)
   ============================================ */
.brands__mobile-pag { display: none; }

@media (max-width: 768px) {
  .brands__nav { display: none; }
  .brands__hint { display: none; }
  .brands__marquee { display: none; }

  .brands__featured {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: auto;
    touch-action: pan-y;
    margin-top: 90px;
  }
  .brands__featured-card {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .brands__featured-photo {
    width: 200px;
    height: 120px;
    margin: 0 auto 12px;
  }
  .brands__featured-photo img { height: 200px; }
  .brands__featured-body {
    height: auto;
    max-width: 100%;
    padding-top: 0;
  }
  .brands__featured-desc {
    font-size: 14px;
    max-width: 100%;
  }
  .brands__featured-results-title { font-size: 14px; }
  .brands__featured-results-list { font-size: 13px; text-align: left; }
  .brands__featured-action {
    justify-content: center;
    margin-top: 12px;
  }
  .brands__mobile-pag {
    display: block;
    height: 3px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    margin-top: 20px;
    overflow: hidden;
  }
  .brands__mobile-pag-thumb {
    height: 100%;
    width: 15%;
    background: #1a1a1a;
    border-radius: 2px;
    transition: transform 0.3s;
  }
  .brands__inner {
    padding: 40px 20px;
    border-radius: 24px;
  }
  .brands__title { font-size: 28px; }
  .brands__count {
    top: -12px;
    min-width: 26px;
    height: 26px;
    font-size: 12px;
  }
  .brands__subtitle {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .brands__featured-btn {
    padding: 14px 22px;
    font-size: 13px;
  }
  .brands__chip {
    font-size: 13px;
    padding: 14px 20px;
  }
}

@media (max-width: 480px) {
  .brands__inner {
    padding: 28px 14px;
    border-radius: 20px;
  }
  .brands__title { font-size: 22px; }
  .brands__count {
    top: -8px;
    min-width: 22px;
    height: 22px;
    font-size: 10px;
  }
  .brands__featured-photo {
    width: 180px;
    height: 110px;
  }
  .brands__featured-photo img { height: 180px; }
  .brands__chip {
    font-size: 11px;
    padding: 10px 16px;
  }
  .brands__marquee {
    margin-left: -14px;
    margin-right: -14px;
  }
}

/* ============================================
   Секция "ЛОКАЦИЯ И СКЛАДСКИЕ МОЩНОСТИ" (location)
   перенесено из partner-block.css
   ============================================ */
.location { padding: 0; width: 100%; }

.location__inner {
  max-width: 1340px; margin: 0 auto;
  border-radius: 80px;
  border: 1px solid transparent;
  background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, #FDD300, #FFE770, #25292D);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  padding: 48px; overflow: hidden;
}

.location__title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800; font-size: 48px;
  line-height: 1.05; text-align: center;
  color: #1a1a1a; margin: 0 0 12px;
  text-transform: uppercase; letter-spacing: -0.01em;
}
.location__title span { color: #FFD600; }
.location__title .text-reveal.is-revealed { animation-duration: 2s; }

.location__subtitle {
  font-family: 'Inter', sans-serif; font-size: 18px;
  color: #888; text-align: center; margin: 0 0 32px;
}

.location__tabs {
  display: flex; gap: 8px; justify-content: center; margin-top: 28px;
}
.location__tab {
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14px;
  padding: 10px 20px; border-radius: 100px; border: 2px solid #ddd;
  background: #fff; color: #666; cursor: pointer; transition: all 0.2s;
}
.location__tab:hover { border-color: #1a1a1a; color: #1a1a1a; }
.location__tab.is-active { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }

.location__grid {
  display: grid; grid-template-columns: 1fr;
  gap: 24px; align-items: stretch; margin-top: 20px;
}

.location__map-full {
  height: 550px; border-radius: 24px;
  overflow: hidden; background: #e8e8e8;
}

.location__scheme {
  height: 600px; border-radius: 24px;
  overflow: hidden; background: #f9f9f9; grid-column: 1;
}
.location__scheme-wrap { position: relative; width: 100%; height: 100%; }
.location__scheme-wrap img { display: block; width: 100%; height: 100%; object-fit: contain; }
.location__scheme-svg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
}
.location__zone {
  pointer-events: all; cursor: pointer;
  transition: fill 0.2s, stroke-width 0.2s;
}
.location__zone:hover { fill-opacity: 0.6; stroke-width: 3; }
.location__scheme-tooltip {
  position: absolute; display: none;
  background: #1a1a1aee; color: #fff;
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600;
  padding: 6px 14px; border-radius: 8px; white-space: nowrap;
  pointer-events: none; z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transform: translate(-50%, -100%);
}

.location__legend {
  background: #f9f9f9; border-radius: 24px; padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.location__legend-title {
  font-family: 'Unbounded', sans-serif; font-weight: 700;
  font-size: 16px; color: #1a1a1a; margin: 0;
}
.location__legend-list { display: flex; flex-direction: column; gap: 10px; }
.location__legend-item {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Inter', sans-serif; font-size: 13px; color: #333;
}
.location__legend-dot { width: 14px; height: 14px; border-radius: 4px; flex-shrink: 0; }

.location__marker {
  display: flex; flex-direction: column; align-items: center;
  transform: translate(-50%, -100%);
}
.location__marker-dot {
  width: 16px; height: 16px; border-radius: 50%;
  border: 3px solid #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.location__marker-label {
  margin-top: 4px; background: #1a1a1aee; color: #fff;
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600;
  padding: 3px 8px; border-radius: 6px; white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.location__marker--zone { transform: translate(-50%, -50%); }
.location__marker-zone { width: 60px; height: 40px; border-radius: 8px; }

.location__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.location__stat {
  background: #FFD600; border-radius: 24px;
  padding: 24px 28px; text-align: center;
  transition: transform 0.25s ease, background 0.25s ease;
}
.location__stat:hover { transform: translateY(-4px); background: #FFE770; }
.location__stat-num {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800; font-size: 40px; line-height: 1;
  color: #1a1a1a; margin-bottom: 10px;
}
.location__stat-text {
  font-family: 'Inter', sans-serif; font-size: 15px;
  font-weight: 500; color: #1a1a1a; text-transform: lowercase;
}

@media (max-width: 1200px) {
  .location { padding: 0; }
  .location__inner { padding: 36px 28px; border-radius: 40px; }
  .location__title { font-size: 36px; }
  .location__map-full { height: 400px; }
  .location__stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .location__stat-num { font-size: 30px; }
}

@media (max-width: 768px) {
  .location { padding: 0; }
  .location__inner { padding: 28px 16px; border-radius: 24px; }
  .location__title { font-size: 26px; }
  .location__subtitle { font-size: 15px; }
  .location__map-full { height: 350px; border-radius: 16px; }
  .location__stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .location__stat { padding: 24px 16px; }
  .location__stat-num { font-size: 28px; }
}

@media (max-width: 480px) {
  .location { padding: 0; }
  .location__inner { padding: 20px 12px; border-radius: 20px; }
  .location__stats { grid-template-columns: 1fr; }
  .location__stat { padding: 24px 28px; }
  .location__title { font-size: 22px; }
  .location__map-full { height: 280px; }
  .location__stat-num { font-size: 24px; }
}

/* Hero — только планшет (601–1000px) */
@media (min-width: 601px) and (max-width: 1000px) {
  .hero__left { padding: 36px 28px 30px; }
  .hero__btn-cursor { bottom: -16px; right: 181px; }

  /* Revenue — 2 карточки рядом, как на десктопе, но меньше */
  .revenue__cards { flex-direction: row; gap: 8px; align-items: stretch; justify-content: center; }
  .revenue__card {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
    min-height: 280px;
    padding: 50px 20px 22px;
    margin-top: 20px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    text-align: left;
  }
  .revenue__arrow-big {
    transform: none;
    padding: 0 6px;
    font-size: 40px;
    align-self: center;
    flex-shrink: 0;
  }
  .revenue__card-label { font-size: 13px; padding: 6px 14px; top: -16px; left: -8px; }
  .revenue__card-amount { margin-top: 20px; text-align: right; }
  .revenue__card-amount .revenue__amount-num,
  .revenue__card-amount .revenue__amount-suffix { font-size: 52px; }
  .revenue__tag { font-size: 12px; padding: 6px 14px; }
  .revenue__card-tags { gap: 8px; margin-bottom: auto; flex-wrap: wrap; }
  .revenue__card--single {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
  }
  .revenue__card--single .revenue__card-tags { margin-bottom: auto; flex-wrap: wrap; }
  .revenue__card--single .revenue__card-amount { margin-top: 20px; }
  .revenue__card--single .revenue__card-amount .revenue__amount-num,
  .revenue__card--single .revenue__card-amount .revenue__amount-suffix { font-size: 52px; }

  /* sp-role__metrics — 2 в строке + 1 по центру */
  .sp-role__metrics { gap: 16px; justify-content: center; }
  .sp-role__metric-card { width: calc((100% - 16px) / 2); min-height: 180px; }

  /* prov-staircase__left — 2 карточки в строку */
  .prov-staircase__left { flex-direction: row; gap: 16px; align-items: stretch; }
  .prov-staircase__left > .prov-entry__tier { flex: 1 1 0; min-width: 0; }

  /* prov-growth slider — уже карточки, чтобы 2–3 влезли */
  .prov-growth__stage { width: 280px; scroll-snap-align: start; }

  /* v2 risk-list в 2 колонки */
  .v2__risk-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; }

  /* Полный лого на планшете */
  .header__logo img.header__logo-img--desktop { display: block !important; }
  .header__logo img.header__logo-img--mobile { display: none !important; }
}
