/* =====================================================================
   ПАРТНЕР ПО ПРОДАЖАМ — partner-prodazhi.css
   Prefix: sp- (sales partner)
   ===================================================================== */

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

:root {
  --yellow: #FFD600;
  --yellow-soft: #FFE770;
  --yellow-light: #FFF7CC;
  --dark: #1a1a1a;
  --dark-2: #2a2a2a;
  --dark-3: #333;
  --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: hidden; }

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

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

/* --- text reveal --- */
@property --reveal-pos {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 0%;
}
.text-reveal--yellow {
  color: var(--yellow);
}
.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%; } }

/* --- reveal animation --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- floating action button --- */
.sp-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: spFabPulse 3s ease-in-out infinite;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}
@keyframes spFabPulse {
  0%, 90%, 100% { transform: translateY(0) scale(1); }
  93% { transform: translateY(-3px) scale(1.04); }
}

/* =====================================================================
   HEADER
   ===================================================================== */
.header {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1340px;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--gray-2);
  border-radius: 18px;
  will-change: max-width;
  transition: box-shadow 0.5s cubic-bezier(0.4,0,0.2,1),
              max-width 0.5s cubic-bezier(0.4,0,0.2,1);
}
.header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  max-width: 700px;
}
.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 24px;
  height: 60px;
}
.header__logo            { grid-column: 1; grid-row: 1; justify-self: start; }
.header__center          { grid-column: 2; grid-row: 1; justify-self: center; display: flex; align-items: center; gap: 8px; }
.header__right           { grid-column: 3; grid-row: 1; justify-self: end; }
.header__contact-compact { grid-column: 3; grid-row: 1; justify-self: end; }
.header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}
.header__logo:hover { transform: translateY(-3px); }
.header__logo img { height: 23px; width: auto; }

.header__home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--dark-2);
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, transform 0.15s, width 0.5s cubic-bezier(0.4, 0, 0.2, 1), height 0.5s cubic-bezier(0.4, 0, 0.2, 1), border-radius 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.header.scrolled .header__home { width: 42px; height: 42px; border-radius: 12px; }
.header__home:hover { background: var(--yellow); color: var(--dark); transform: translateY(-1px); }
.header__home svg { width: 18px; height: 18px; display: block; }

.header__nav {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  opacity: 1;
  overflow: hidden;
  transition: max-width 0.5s cubic-bezier(0.4,0,0.2,1),
              opacity 0.35s ease 0.1s;
}
.header.scrolled .header__nav {
  max-width: 0;
  opacity: 0;
  pointer-events: none;
  transition: max-width 0.5s cubic-bezier(0.4,0,0.2,1),
              opacity 0.25s ease;
}
.header__nav-btn {
  background: var(--dark-2);
  border: none;
  border-radius: 10px;
  padding: 8px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.header__nav-btn:hover {
  background: var(--yellow);
  color: var(--dark);
}
.header__nav-btn.is-active {
  background: var(--yellow);
  color: var(--dark);
  font-weight: 700;
  cursor: default;
  pointer-events: none;
}

.header__dropdown-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: max-width 0.5s cubic-bezier(0.4,0,0.2,1),
              opacity 0.25s ease;
}
.header__dropdown-wrap.visible {
  max-width: 220px;
  opacity: 1;
  pointer-events: auto;
  transition: max-width 0.5s cubic-bezier(0.4,0,0.2,1),
              opacity 0.35s ease 0.15s;
}
.header__dropdown-wrap.open { overflow: visible; }
.header__dropdown-toggle {
  background: var(--dark-2);
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.header__dropdown-toggle:hover { background: var(--dark); }
.header__dropdown-toggle svg {
  width: 14px; height: 14px;
  transition: transform 0.3s;
}
.header__dropdown-wrap.open .header__dropdown-toggle svg {
  transform: rotate(180deg);
}
.header__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  padding: 8px;
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}
.header__dropdown-wrap.open .header__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header__dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s;
}
.header__dropdown-menu a:hover { background: var(--gray-1); }
.header__dropdown-menu a.is-active {
  background: var(--yellow);
  color: var(--dark);
  font-weight: 700;
  pointer-events: none;
}

.header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  max-width: 500px;
  opacity: 1;
  overflow: hidden;
  transition: max-width 0.5s cubic-bezier(0.4,0,0.2,1),
              opacity 0.35s ease 0.1s;
}
.header.scrolled .header__right {
  max-width: 0;
  opacity: 0;
  pointer-events: none;
  transition: max-width 0.5s cubic-bezier(0.4,0,0.2,1),
              opacity 0.25s ease;
}
.header__right > * { flex-shrink: 0; }
.header__right:has(.header__contact-wrap.open) { overflow: visible; }

.header__cta {
  background: var(--yellow);
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.header__cta:hover {
  background: var(--yellow-soft);
  transform: translateY(-1px);
}

.header__contact-compact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: max-width 0.5s cubic-bezier(0.4,0,0.2,1),
              opacity 0.25s ease;
}
.header.scrolled .header__contact-compact {
  max-width: 260px;
  opacity: 1;
  pointer-events: auto;
  transition: max-width 0.5s cubic-bezier(0.4,0,0.2,1),
              opacity 0.35s ease 0.15s;
}
.header__contact-compact > .header__contact-wrap { flex-shrink: 0; }
.header__contact-compact .header__contact-toggle { flex-shrink: 0; white-space: nowrap; }
.header__contact-compact:has(.header__contact-wrap.open) { overflow: visible; }

.header__contact-wrap { position: relative; }
.header__contact-toggle { display: flex; align-items: center; }
.header__contact-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 8px 0;
  min-width: 260px;
  z-index: 1000;
  flex-direction: column;
}
.header__contact-wrap.open .header__contact-menu { display: flex; }
.header__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  white-space: nowrap;
  transition: background 0.15s;
  width: 100%;
}
.header__contact-item:hover { background: #f5f5f5; }

/* =====================================================================
   POPUP FORM
   ===================================================================== */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  padding: 20px;
}
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}
.popup {
  background: #25292d;
  border-radius: 20px;
  padding: 60px 48px;
  max-width: 520px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.35s ease;
}
.popup-overlay.active .popup {
  transform: translateY(0) scale(1);
}
.popup__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.popup__close:hover { background: rgba(255,255,255,0.2); }
.popup__close svg { width: 16px; height: 16px; }
.popup__title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 28px;
  line-height: 1.2;
  text-transform: uppercase;
  background: linear-gradient(to right, #fdd300, #ffe770);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin: 0 0 12px;
}
.popup__subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin: 0 0 32px;
}
.popup__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}
.popup__input {
  width: 100%;
  height: 58px;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: 16px;
  background: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #25292d;
  outline: none;
  transition: border-color 0.3s;
}
.popup__input::placeholder { color: #999; }
.popup__input:focus { border-color: #fdd300; }
.popup__input--error {
  border-color: #e74c3c !important;
  animation: popup-shake 0.4s ease;
}
@keyframes popup-shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-6px); }
  80% { transform: translateX(6px); }
}
.popup__btn {
  width: 100%;
  height: 58px;
  background: #fdd300;
  border: none;
  border-radius: 16px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #25292d;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.popup__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(253,211,0,0.35);
}

.popup__success { display: none; flex-direction: column; align-items: center; gap: 14px; padding: 20px 0; animation: popup-success-appear 0.4s ease; }
.popup__success-icon { width: 64px; height: 64px; background: rgba(253,211,0,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.popup__success-icon svg { width: 32px; height: 32px; }
.popup__success-title { font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 22px; color: #fff; }
.popup__success-text { font-size: 15px; color: rgba(255,255,255,0.6); text-align: center; }
@keyframes popup-success-appear { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }

/* =====================================================================
   VIDEO MODAL
   ===================================================================== */
.sp-video-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  padding: 40px;
}
.sp-video-modal.active {
  opacity: 1;
  visibility: visible;
}
.sp-video-modal__inner {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: #000;
}
.sp-video-modal__inner iframe,
.sp-video-modal__inner video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  background: #000;
}
.sp-video-modal__close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.sp-video-modal__close:hover { background: rgba(255,255,255,0.3); }
.sp-video-modal__close svg { width: 20px; height: 20px; }

/* =====================================================================
   BLOCK 1 — HERO
   ===================================================================== */
.sp-hero-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1340px;
  padding-top: 84px;
}
.sp-hero {
  background: var(--yellow);
  border-radius: 32px;
  margin-top: 20px;
  padding: 26px 0;
  position: relative;
}
.sp-hero__inner {
  max-width: 1340px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
.sp-hero__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}
.sp-hero__photo-wrap {
  position: relative;
  animation: spFadeUp 0.6s ease both 0.1s;
  align-self: end;
}
.sp-hero__photo {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 20px 30px 20px 20px;
  overflow: hidden;
}
.sp-hero__photo::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 55%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}
.hero__person {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  z-index: 2;
}
.hero__person-name {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.hero__person-role {
  font-size: 13px;
  opacity: 0.8;
}
.sp-hero__play-hint {
  position: absolute;
  top: 2px;
  right: 68px;
  display: flex;
  align-items: flex-end;
  gap: 2px;
  z-index: 6;
  text-decoration: none;
}
.sp-hero__play-hint-label {
  background: #fff;
  color: #1a1a1a;
  padding: 6px 12px;
  border-radius: 18px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  letter-spacing: 0.01em;
  transform-origin: bottom center;
  animation: playHintShake 2.8s linear infinite;
}
.sp-hero__play-hint-arrow {
  flex-shrink: 0;
  transform: rotate(40deg);
}
@keyframes playHintShake {
  0%, 78%, 100% { transform: translate(0, 0)     rotate(-8deg); }
  80%  { transform: translate(-1px, 0)   rotate(-9.5deg); }
  82%  { transform: translate(1px, -1px) rotate(-6.5deg); }
  84%  { transform: translate(-1px, 1px) rotate(-9.5deg); }
  86%  { transform: translate(1px, 0)    rotate(-6.5deg); }
  88%  { transform: translate(-1px, -1px) rotate(-9deg); }
  90%  { transform: translate(1px, 1px)  rotate(-7deg); }
  92%  { transform: translate(-1px, 0)   rotate(-8.8deg); }
  94%  { transform: translate(1px, -1px) rotate(-7.2deg); }
  96%  { transform: translate(0, 0)      rotate(-8deg); }
}
@media (max-width: 900px) {
  .sp-hero__play-hint { display: none; }
}
.sp-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.sp-hero__play-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 115px;
  height: 115px;
  z-index: 5;
}
.sp-hero__play-corner-svg {
  position: absolute;
  top: 0;
  right: 0px;
  transform: rotate(90deg);
}
.sp-hero__play {
  position: absolute;
  top: 0;
  right: 0px;
  width: 60px;
  height: 60px;
  background: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
  z-index: 1;
}
.sp-hero__play:hover { transform: scale(1.05); }
.sp-hero__play svg { width: 25px; height: 25px; margin-left: 4px; }

.sp-hero__text {
  animation: spFadeUp 0.6s ease both 0.25s;
  display: flex;
  flex-direction: column;
}
.sp-hero__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 46px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 0;
}
.sp-hero__slogan {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 24px;
  background: var(--dark);
  color: #fff;
  font-family: 'Unbounded', sans-serif;
  font-size: 29px;
  font-weight: 700;
  transform: rotate(-2deg);
  width: fit-content;
}
.sp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  margin-bottom: 20px;
  margin-left: auto;
  padding: 10px 20px;
  background: #fff;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  width: fit-content;
}
.sp-hero__badge svg { flex-shrink: 0; }
.hero__btn-area {
  position: relative;
  margin-top: 60px;
  z-index: 3;
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  background: var(--dark-2, var(--dark));
  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: 307px;
  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; }
}

/* Ticker */
.sp-hero__ticker {
  overflow: hidden;
  background: var(--dark-2);
  border-radius: 16px;
  padding: 14px 0;
  margin-top: 30px;
  max-width: 1340px;
  width: 100%;
}
.sp-hero__ticker-track {
  display: flex;
  gap: 40px;
  align-items: center;
  width: max-content;
  animation: spTicker 30s linear infinite;
}
.sp-hero__ticker-item {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sp-hero__ticker-item span {
  color: var(--yellow);
  font-weight: 800;
}
.sp-hero__ticker-dot {
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.3;
}
@keyframes spTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes spFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =====================================================================
   BLOCK 2 — KEY IDEA
   ===================================================================== */
.sp-keyidea {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 80px 60px 0;
  margin-top: 0;
  text-align: center;
  overflow: visible;
}
.sp-keyidea__main {
  font-family: 'Unbounded', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 32px;
}
.sp-keyidea__main .sp-hl {
  color: var(--yellow);
}
.sp-keyidea__stat {
  display: inline-block;
  padding: 8px 24px;
  background: var(--yellow);
  color: var(--dark);
  font-family: 'Unbounded', sans-serif;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 24px;
}
.sp-keyidea__sub {
  font-size: 20px;
  color: rgba(255,255,255,0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
.sp-keyidea__flow {
  margin-top: 48px;
  margin-bottom: 10px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 40px;
  padding-bottom: 0;
}
.sp-keyidea__flow-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 32px;
  line-height: 1.3;
}
/* Flow columns */
.sp-keyidea__flow-cols {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}
.sp-keyidea__flow-left {
}
.sp-keyidea__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sp-keyidea__tag {
  padding: 10px 22px;
  background: rgba(255,255,255,0.1);
  border-radius: 50px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

/* Right stack: checks + max */
.sp-keyidea__flow-right {
  position: relative;
  padding-bottom: 32px;
}
.sp-keyidea__checks-outer {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--yellow);
  color: var(--dark);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  transform: rotate(2deg);
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.sp-keyidea__checks-label {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.4;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.sp-keyidea__check {
  text-align: center;
}
.sp-keyidea__check-num {
  display: block;
  font-family: 'Unbounded', sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
}
.sp-keyidea__check-sub {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.5;
}
.sp-keyidea__check-divider {
  width: 1px;
  height: 48px;
  background: rgba(0,0,0,0.15);
}

/* Max block — overlaps flow bottom edge */
.sp-keyidea__max {
  position: relative;
  z-index: 3;
  margin-top: -80px;
  margin-bottom: -30px;
  margin-left: auto;
  margin-right: 70px;
  width: fit-content;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  transform: rotate(-1.5deg);
  box-sizing: border-box;
}
.sp-keyidea.reveal.is-visible:hover .sp-keyidea__max {
  z-index: 5;
}

/* Compact shown by default, expanded hidden — swap on parent hover so width re-fits content */
.sp-keyidea__max-compact {
  display: block;
}
.sp-keyidea__max-expanded {
  display: none;
  flex-direction: column;
  gap: 2px;
}
.sp-keyidea.reveal.is-visible:hover .sp-keyidea__max-compact {
  display: none;
}
.sp-keyidea.reveal.is-visible:hover .sp-keyidea__max-expanded {
  display: flex;
}
.sp-keyidea__max-tier {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 4px 0;
  white-space: nowrap;
  font-size: 14px;
}
.sp-keyidea__max-tier .sp-keyidea__max-num {
  font-size: 16px;
}
.sp-keyidea__max-tier .sp-keyidea__max-num--big {
  font-size: 18px;
}
.sp-keyidea__max-tier--flip {
  flex-direction: row-reverse;
  justify-content: flex-start;
  margin-left: auto;
}
.sp-keyidea__max-badge {
  display: inline-block;
  padding: 5px 14px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
  margin-bottom: 14px;
}
.sp-keyidea__max-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.sp-keyidea__max-row + .sp-keyidea__max-row {
  margin-top: 8px;
}
.sp-keyidea__max-num {
  color: #fff;
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 20px;
}
.sp-keyidea__max-num--big {
  font-size: 26px;
  color: var(--yellow);
}
.sp-keyidea__max-label {
  color: rgba(255,255,255,0.55);
  font-size: 15px;
}

/* =====================================================================
   BLOCK 4
   ===================================================================== */
.sp-flow {
  margin-top: 0;
}
.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-flow__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sp-flow__card {
  background: var(--gray-1);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.sp-flow__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.sp-flow__card-icon {
  width: 48px;
  height: 48px;
  background: var(--yellow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.sp-flow__card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--dark);
}
.sp-flow__card-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.sp-flow__card-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}
.sp-flow__card--accent {
  background: var(--yellow);
}
.sp-flow__card--accent .sp-flow__card-icon {
  background: var(--dark);
}
.sp-flow__card--accent .sp-flow__card-icon svg {
  color: var(--yellow);
}
.sp-flow__card--accent .sp-flow__card-text {
  color: var(--dark);
}

/* =====================================================================
   BLOCK 4 — YOUR ROLE + ECONOMICS
   ===================================================================== */
.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: 1000px;
  margin: 60px auto 48px;
  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 0 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__metrics-pagination { display: none; }
.sp-role__metric-card {
  width: 300px;
  height: 170px;
  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);
}
.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: 18px;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  line-height: 1.3;
}
.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;
}
.sp-econ__note {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* =====================================================================
   BLOCK 6 — PROSPECTS
   ===================================================================== */
.sp-prospects {
  margin-top: 0;
}
.sp-prospects__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.sp-prospects__card {
  background: var(--yellow);
  border-radius: var(--radius-md);
  padding: 36px;
  padding-top: 48px;
  color: var(--dark);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
  margin-top: 60px;
}
.sp-prospects__card-step {
  position: absolute;
  top: -42px;
  left: 30px;
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}
.sp-prospects__card-badge {
  position: absolute;
  top: -16px;
  left: 30px;
  display: inline-block;
  width: fit-content;
  padding: 8px 18px;
  background: var(--dark);
  color: var(--yellow);
  font-family: 'Unbounded', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  transform: rotate(-2deg);
}
.sp-prospects__card-label-hl {
  color: var(--yellow);
  background: var(--dark);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  margin-right: 4px;
}
.sp-prospects__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex-grow: 1;
}
.sp-prospects__list li {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: rgba(0,0,0,0.85);
  padding-left: 20px;
  position: relative;
}
.sp-prospects__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--dark);
  font-weight: 700;
}
.sp-prospects__card-income {
  border-top: 1px solid rgba(0,0,0,0.12);
  padding-top: 20px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.sp-prospects__card-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--dark);
}
.sp-prospects__card-label {
  font-size: 14px;
  color: rgba(0,0,0,0.45);
}
.sp-prospects__card-infinity {
  flex-shrink: 0;
}

/* =====================================================================
   BLOCK 8 — WHAT YOU GET
   ===================================================================== */
.benefits {
  margin-top: 0;
  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__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__tag--yellow {
  background: #FDD300;
  color: #25292d;
}
.benefits__slider { display: none; }

/* =====================================================================
   BLOCK 9 — HOW TO START
   ===================================================================== */
/* Location wrapper */
.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: 42px;
  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; }

.sp-start-wrap {
  margin-top: 0;
  padding-left: 0;
  padding-right: 0;
}
.sp-start__timeline {
  display: flex;
  gap: 0;
  position: relative;
  margin-top: 40px;
}
.sp-start__timeline-pagination { display: none; }
.sp-start__step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 12px;
}
.sp-start__step-num {
  width: 48px;
  height: 48px;
  background: var(--gray-2, #e0e0e0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 800;
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
  transition: background 0.4s;
}
.sp-start__step.is-filled .sp-start__step-num {
  background: var(--yellow);
}
.sp-start__step-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}
.sp-start__step-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}
.sp-start__line {
  position: absolute;
  top: 24px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: var(--gray-2, #e0e0e0);
  z-index: 1;
  border-radius: 2px;
  overflow: hidden;
}
.sp-start__line-fill {
  width: 0;
  height: 100%;
  background: var(--yellow);
  border-radius: 2px;
  transition: width 2s ease;
}
.sp-start-wrap.is-visible .sp-start__line-fill {
  animation: startLineFill 2s linear forwards;
}
@keyframes startLineFill {
  0% { width: 0; }
  100% { width: 100%; }
}

/* =====================================================================
   BLOCK 10 — SCALE
   ===================================================================== */
.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__grid-pagination { display: none; }
.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); }
.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); }
.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); }
.scale__scroll-bar { display: none; }

/* =====================================================================
   BLOCK 11 — WHO IT'S FOR (audience)
   ===================================================================== */
.audience {
  text-align: center;
  max-width: 1340px;
  width: 100%;
  position: relative;
  overflow: visible;
}
.audience__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 42px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.audience__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.audience__cards-pagination { display: none; }
.audience__card {
  position: relative;
  padding-top: 120px;
}
.audience__card-bg {
  background: #f1f1f1;
  border-radius: var(--radius-lg);
  padding-top: 160px;
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.audience__card-img {
  position: absolute;
  top: 63px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  height: auto;
  object-fit: contain;
  z-index: 2;
}
.audience__hint {
  position: absolute;
  bottom: -67px;
  right: 460px;
  background: var(--dark);
  color: #fff;
  padding: 20px 28px;
  border-radius: 16px;
  transform: rotate(3deg);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 420px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  z-index: 10;
}
.audience__hint-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}
.audience__hint-arrow {
  flex-shrink: 0;
  color: var(--yellow);
  animation: hintBounce 1.5s ease-in-out infinite;
}
@keyframes hintBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
.audience__card-label {
  width: 220px;
  height: 56px;
  background: #fff;
  border-radius: 12px;
  padding: 0 16px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
}

/* =====================================================================
   BLOCK 12 — NOT FOR EVERYONE
   ===================================================================== */
.sp-notall {
  margin-top: 0;
}
.sp-notall__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.sp-notall__col {
  border-radius: var(--radius-md);
  padding: 40px;
}
.sp-notall__col--dark {
  background: var(--dark);
  color: #fff;
}
.sp-notall__col--yellow {
  background: var(--yellow);
  color: var(--dark);
}
.sp-notall__col-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sp-notall__col-title svg { flex-shrink: 0; }
.sp-notall__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sp-notall__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
}
.sp-notall__list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* =====================================================================
   BLOCK 13 — ENTRY AS MANAGER
   ===================================================================== */
.sp-entry {
  margin-top: 0;
  background: var(--gray-1);
  border-radius: var(--radius-lg);
  padding: 60px;
}
.sp-entry__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.sp-entry__card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
}
.sp-entry__card-value {
  font-family: 'Unbounded', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 8px;
}
.sp-entry__card-label {
  font-size: 14px;
  color: var(--text-muted);
}
.sp-entry__card--accent {
  background: var(--yellow);
}

/* =====================================================================
   BLOCK 14 — GROWTH PATH
   ===================================================================== */
.sp-growth {
  margin-top: 0;
}
.sp-growth__path {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.sp-growth__node {
  background: var(--gray-1);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  text-align: center;
  min-width: 180px;
  transition: transform 0.25s;
}
.sp-growth__node:hover { transform: translateY(-4px); }
.sp-growth__node-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.sp-growth__node-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}
.sp-growth__node--active {
  background: var(--yellow);
}
.sp-growth__node--final {
  background: var(--dark);
  color: #fff;
}
.sp-growth__node--final .sp-growth__node-sub {
  color: rgba(255,255,255,0.6);
}
.sp-growth__arrow {
  padding: 0 8px;
  color: var(--gray-3);
}
.sp-growth__arrow svg { width: 24px; height: 24px; }

/* =====================================================================
   BLOCK 15 — LEAD DISTRIBUTION
   ===================================================================== */
.sp-leads {
  margin-top: 0;
}
.sp-leads__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sp-leads__step {
  background: var(--dark);
  border-radius: var(--radius-md);
  padding: 28px;
  color: #fff;
  position: relative;
}
.sp-leads__step-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--yellow);
  margin-bottom: 12px;
}
.sp-leads__step-text {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
}

/* =====================================================================
   BLOCK 16 — PRODUCT EXPERTISE
   ===================================================================== */
.sp-expertise {
  margin-top: 0;
}
.sp-expertise__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.sp-expertise__card {
  background: var(--gray-1);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.25s;
}
.sp-expertise__card:hover { transform: translateY(-4px); }
.sp-expertise__card-icon {
  width: 48px;
  height: 48px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.sp-expertise__card-icon svg { width: 24px; height: 24px; color: var(--dark); }
.sp-expertise__card-title {
  font-size: 14px;
  font-weight: 700;
}

/* =====================================================================
   BLOCK 17 — MANAGEMENT SYSTEM
   ===================================================================== */
.sp-mgmt {
  margin-top: 0;
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 60px;
}
.sp-mgmt .sp-section-title { color: #fff; }
.sp-mgmt__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.sp-mgmt__item {
  background: var(--dark-2);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  transition: transform 0.2s;
}
.sp-mgmt__item:hover { transform: translateY(-3px); }
.sp-mgmt__item-icon {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sp-mgmt__item-icon svg { width: 22px; height: 22px; color: var(--dark); }
.sp-mgmt__item-text {
  font-size: 15px;
  font-weight: 600;
}

/* =====================================================================
   BLOCK 18 — V2 PARTNER LIMIT
   ===================================================================== */
.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: 33%;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--yellow-soft, #ffe770), 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, #ffe770); }
.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; }

/* =====================================================================
   BLOCK 19 — ECOSYSTEM CONNECTION
   ===================================================================== */
.sp-eco {
  margin-top: 0;
}
.sp-eco__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sp-eco__card {
  background: var(--gray-1);
  border-radius: var(--radius-md);
  padding: 36px;
  text-align: center;
  transition: transform 0.25s;
}
.sp-eco__card:hover { transform: translateY(-4px); }
.sp-eco__card-icon {
  width: 56px;
  height: 56px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.sp-eco__card-icon svg { width: 28px; height: 28px; color: var(--dark); }
.sp-eco__card-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.sp-eco__card-text {
  font-size: 14px;
  color: var(--text-muted);
}

/* =====================================================================
   BLOCK 20 — EXCURSION
   ===================================================================== */
.sp-excursion {
  margin-top: 0;
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  text-align: center;
  color: #fff;
}
.sp-excursion__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.sp-excursion__text {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.5;
}
.sp-excursion__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: var(--yellow);
  color: var(--dark);
  border-radius: var(--radius-md);
  font-family: 'Unbounded', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.sp-excursion__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(253,211,0,0.35);
}

/* =====================================================================
   BLOCK 21 — CTA FORM
   ===================================================================== */
.cta {
  max-width: 1340px;
  width: 100%;
}
.cta__inner--form {
  background: #25292d;
  border-radius: 20px;
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cta__title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 36px;
  line-height: 1.2;
  text-transform: uppercase;
  background: linear-gradient(to right, #fdd300, #ffe770);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin: 0 0 16px;
}
.cta__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 40px;
}
.cta__form {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.cta__input {
  width: 280px;
  height: 62px;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: 20px;
  background: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #25292d;
  outline: none;
  transition: border-color 0.3s;
}
.cta__input::placeholder { color: #999; }
.cta__input:focus { border-color: #fdd300; }
.cta__input--error {
  border-color: #e74c3c !important;
  animation: cta-shake 0.4s ease;
}
@keyframes cta-shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-6px); }
  80% { transform: translateX(6px); }
}
.cta__btn {
  height: 62px;
  padding: 0 36px;
  background: #fdd300;
  border: none;
  border-radius: 20px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #25292d;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(253, 211, 0, 0.35);
}

.cta__success { display: none; flex-direction: column; align-items: center; gap: 14px; padding: 30px 0; animation: cta-success-appear 0.4s ease; }
.cta__success-icon { width: 72px; height: 72px; background: rgba(253,211,0,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.cta__success-icon svg { width: 36px; height: 36px; }
.cta__success-title { font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 26px; color: #fff; }
.cta__success-text { font-size: 16px; color: rgba(255,255,255,0.6); text-align: center; }
@keyframes cta-success-appear { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }

/* =====================================================================
   FOOTER
   ===================================================================== */
.sp-foot {
  width: 100%;
  max-width: 1340px;
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid var(--gray-2);
  margin-top: 40px;
}
.sp-foot__brand {
  font-family: 'Unbounded', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}

/* =====================================================================
   RESPONSIVE — TABLET
   ===================================================================== */
@media (max-width: 1024px) {
  body { gap: 80px; padding: 0 10px 80px; }
  .sp-hero__row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .sp-hero__text { text-align: center; align-items: center; }
  .sp-hero__title { font-size: 36px; }
  .sp-hero__slogan { font-size: 16px; }
  .sp-hero__badge { margin-left: auto; margin-right: auto; }
  .hero__btn-cursor { right: -3px; }

  .sp-flow__grid { grid-template-columns: repeat(2, 1fr); }
  .sp-econ__grid { grid-template-columns: repeat(2, 1fr); }
    .sp-expertise__grid { grid-template-columns: repeat(3, 1fr); }
  .sp-leads__steps { grid-template-columns: repeat(2, 1fr); }
  .sp-mgmt__grid { grid-template-columns: repeat(2, 1fr); }
  .sp-eco__grid { grid-template-columns: repeat(2, 1fr); }
  .scale__grid { grid-template-columns: repeat(2, 1fr); }
  .scale__inf { grid-template-columns: repeat(3, 1fr); }
  .scale__title { font-size: 32px; }

  .sp-prospects__grid { grid-template-columns: 1fr; }
  .sp-prospects { padding: 40px; }
  .sp-prospects__card-income { flex-direction: column; align-items: flex-start; gap: 6px; }
  .sp-keyidea { padding: 60px 40px; }
  .sp-keyidea__main { font-size: 26px; }
  .sp-keyidea__flow-cols { grid-template-columns: 1fr; }
  .sp-keyidea__checks-outer { transform: rotate(1.5deg); }
  .sp-keyidea__check-num { font-size: 22px; }
  .sp-section-title { font-size: 28px; }
  .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__bar-legend { flex-wrap: wrap; gap: 14px; }
  .v2__key { padding: 24px 28px; }
  .v2__key p { font-size: 16px; }

  .sp-start__timeline {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 14px;
    padding: 0 8px;
    margin-left: -8px;
    margin-right: -8px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .sp-start__timeline::-webkit-scrollbar { display: none; }
  .sp-start__step { flex: 0 0 30%; padding: 0; }
  .sp-start__line { display: none; }
  .sp-start__timeline-pagination {
    display: block;
    height: 3px;
    background: rgba(37,41,45,0.12);
    border-radius: 2px;
    margin: 20px 0 0;
    overflow: hidden;
  }
  .sp-start__timeline-pagination-thumb {
    height: 100%;
    width: 35%;
    background: var(--dark);
    border-radius: 2px;
    transition: transform 0.15s;
  }

  .sp-growth__path { gap: 8px; }
  .sp-growth__node { min-width: 140px; padding: 18px 20px; }

  .sp-entry__grid { grid-template-columns: repeat(2, 1fr); }
  .sp-entry__card:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 10px);
  }

  .audience__cards {
    display: flex;
    grid-template-columns: none;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 16px;
    padding: 0 24px;
    margin-left: -24px;
    margin-right: -24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .audience__cards::-webkit-scrollbar { display: none; }
  .audience__cards > .audience__card { flex: 0 0 42%; }
  .audience__cards-pagination {
    display: block;
    height: 3px;
    background: rgba(37,41,45,0.12);
    border-radius: 2px;
    margin: 20px 0 0;
    overflow: hidden;
  }
  .audience__cards-pagination-thumb {
    height: 100%;
    width: 40%;
    background: var(--dark);
    border-radius: 2px;
    transition: transform 0.15s;
  }
  .audience__hint {
    position: relative;
    right: auto; bottom: auto; left: auto;
    max-width: 640px;
    width: 100%;
    margin: 36px auto 0;
    padding: 20px 28px;
    transform: rotate(-1deg);
    justify-content: center;
  }

  .header__phone { display: none; }
  .header__nav { gap: 4px; }
  .header__nav-btn { padding: 6px 12px; font-size: 13px; }

  .benefits__inner { height: 390px; min-height: 0; padding-bottom: 0; }
  .benefits__title { font-size: 24px; white-space: normal; text-align: center; padding: 0 16px; }
  .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;
  }

  .location__inner { border-radius: 40px; padding: 32px; }
}

/* =====================================================================
   RESPONSIVE — MOBILE
   ===================================================================== */
@media (max-width: 640px) {
  body { padding: 0 10px 60px; gap: 56px; }

  .header { width: calc(100% - 24px); top: 8px; }
  .header__inner { padding: 0 12px; height: 52px; }
  .header__nav { display: none; }
  .header__dropdown-wrap { display: block !important; }
  .header__cta { padding: 8px 16px; font-size: 13px; }
  .header__logo img { height: 32px; }

  /* --- HERO --- */
  .sp-hero-wrap { padding-top: 68px; }
  .sp-hero { border-radius: 20px; padding: 16px 0; margin-top: 10px; }
  .sp-hero__inner { padding: 0 14px; }
  .sp-hero__row { grid-template-columns: 1fr; gap: 18px; }
  .sp-hero__photo { height: 240px; border-radius: 16px 22px 16px 16px; }
  .sp-hero__play-wrap { width: 82px; height: 82px; }
  .sp-hero__play-corner-svg { width: 82px; height: 82px; }
  .sp-hero__play { width: 44px; height: 44px; top: 10px; right: 10px; }
  .sp-hero__play svg { width: 18px; height: 18px; margin-left: 3px; }

  .sp-hero__text { text-align: center; align-items: center; }
  .sp-hero__badge {
    margin: 0 auto 16px;
    padding: 8px 16px;
    font-size: 13px;
  }
  .sp-hero__badge svg { width: 15px; height: 15px; }
  .sp-hero__title { font-size: 26px; text-align: center; }
  .sp-hero__slogan {
    font-size: 15px;
    padding: 8px 16px;
    margin-top: 14px;
    align-self: center;
  }
  .hero__btn-area { text-align: center; margin-top: 28px; }
  .hero__btn { font-size: 14px; padding: 16px 24px; }
  .hero__btn-cursor { right: auto; left: 87%; bottom: -10px; transform: translateX(-50%); font-size: 22px; }
  @keyframes cursorTap {
    0%, 100% { transform: translateX(-50%) translateY(0) scale(1); opacity: 1; }
    40%, 60% { transform: translateX(-50%) translateY(-4px) scale(0.9); opacity: 0.9; }
    50%      { transform: translateX(-50%) translateY(-4px) scale(0.85); opacity: 0.8; }
    80%      { transform: translateX(-50%) translateY(0) scale(1); opacity: 1; }
  }

  .sp-hero__ticker { border-radius: 12px; margin-top: 16px; padding: 10px 0; }
  .sp-hero__ticker-track { gap: 24px; animation-duration: 25s; }
  .sp-hero__ticker-item { font-size: 12px; gap: 6px; }

  .sp-section-title { font-size: 22px; margin-bottom: 24px; }

  /* --- Grids collapse to single column --- */
  .sp-flow__grid,
  .sp-econ__grid,
  .sp-leads__steps,
  .sp-mgmt__grid,
  .sp-eco__grid { grid-template-columns: 1fr; }
  .scale__inf { grid-template-columns: repeat(2, 1fr); }
  .scale__title { font-size: 24px; }
  .scale__grid {
    display: flex;
    grid-template-columns: none;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 12px;
    padding: 14px 16px;
    margin-left: -16px;
    margin-right: -16px;
    margin-top: -14px;
    margin-bottom: 4px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .scale__grid::-webkit-scrollbar { display: none; }
  .scale__card {
    flex: 0 0 70%;
    transform: none;
    padding: 28px 20px;
  }
  .scale__card-num { font-size: 36px; }
  .scale__grid-pagination {
    display: block;
    height: 3px;
    background: rgba(37,41,45,0.12);
    border-radius: 2px;
    margin: 0 0 28px;
    overflow: hidden;
  }
  .scale__grid-pagination-thumb {
    height: 100%;
    width: 35%;
    background: var(--dark);
    border-radius: 2px;
    transition: transform 0.15s;
  }
  .scale__unit { font-size: 18px; }
  .scale__note { padding: 24px; }
  .scale__note p { font-size: 15px; }
  .scale__geo { font-size: 13px; padding: 10px 18px; margin-bottom: 28px; text-align: left; }
  .scale__header { padding: 0; }
  .sp-expertise__grid,
  .sp-entry__grid { grid-template-columns: 1fr; }
  .sp-entry__card:nth-child(3) { grid-column: auto; justify-self: stretch; width: auto; }

  /* --- sp-role / sp-econ --- */
  .sp-role__intro { gap: 10px; margin-bottom: 24px; }
  .sp-role__slogan { font-size: 14px; padding: 8px 16px; text-align: center; line-height: 1.35; }
  .sp-role__metrics-wrap { margin: 44px auto 36px; border-radius: 24px; padding: 36px 0 20px; }
  .sp-role__metrics-badge { left: 20px; font-size: 12px; padding: 6px 14px; top: -14px; }
  .sp-role__metrics {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 12px;
    padding: 0 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .sp-role__metrics::-webkit-scrollbar { display: none; }
  .sp-role__metric-card {
    flex: 0 0 72%;
    width: auto;
    height: 150px;
    padding: 22px 16px;
    gap: 12px;
  }
  .sp-role__metric-icon { width: 44px; height: 44px; border-radius: 12px; }
  .sp-role__metric-icon svg { width: 20px; height: 20px; }
  .sp-role__metric-text { font-size: 15px; }
  .sp-role__metrics-pagination {
    display: block;
    height: 3px;
    background: rgba(37,41,45,0.12);
    border-radius: 2px;
    margin: 16px 16px 0;
    overflow: hidden;
  }
  .sp-role__metrics-pagination-thumb {
    height: 100%;
    width: 40%;
    background: var(--dark);
    border-radius: 2px;
    transition: transform 0.15s;
  }

  .sp-econ { padding: 28px 18px; border-radius: 20px; }
  .sp-econ__formula { flex-direction: column; gap: 14px; }
  .sp-econ__num { font-size: 26px; }
  .sp-econ__desc { font-size: 12px; }
  .sp-econ__op { font-size: 22px; }
  .sp-econ__result { padding: 18px 24px; width: 100%; }
  .sp-econ__result-num { font-size: 30px; }
  .sp-econ__result-label { font-size: 13px; }

  .sp-notall__grid { grid-template-columns: 1fr; }

  /* --- audience --- */
  .audience__cards {
    display: flex;
    grid-template-columns: none;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 12px;
    padding: 0 16px;
    margin-left: -16px;
    margin-right: -16px;
    margin-top: 24px;
    margin-bottom: 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .audience__cards::-webkit-scrollbar { display: none; }
  .audience__cards > .audience__card { flex: 0 0 78%; }
  .audience__cards-pagination {
    display: block;
    height: 3px;
    background: rgba(37,41,45,0.12);
    border-radius: 2px;
    margin: 16px 0 0;
    overflow: hidden;
  }
  .audience__cards-pagination-thumb {
    height: 100%;
    width: 40%;
    background: var(--dark);
    border-radius: 2px;
    transition: transform 0.15s;
  }
  .audience__title { font-size: 24px; margin-bottom: 12px; }
  .audience__card { padding-top: 90px; }
  .audience__card-img { width: 200px; top: 63px; }
  .audience__card-bg { padding-top: 140px; padding-bottom: 24px; border-radius: 22px; }
  .audience__card-label { width: calc(100% - 28px); max-width: 240px; height: 56px; font-size: 15px; border-radius: 14px; padding: 0 14px; line-height: 1.2; }
  .audience__hint {
    position: relative;
    right: auto; bottom: auto; left: auto;
    max-width: none;
    width: 100%;
    margin: 28px 0 0;
    padding: 16px 18px;
    transform: rotate(-1deg);
    gap: 10px;
  }
  .audience__hint-text { font-size: 13px; }
  .audience__hint-arrow { width: 24px; height: 24px; }

  /* --- sp-keyidea --- */
  .sp-keyidea { padding: 36px 18px 24px; border-radius: 20px; }
  .sp-keyidea__main { font-size: 18px; line-height: 1.35; margin-bottom: 20px; }
  .sp-keyidea__stat { font-size: 13px; padding: 6px 16px; margin-bottom: 16px; }
  .sp-keyidea__sub { font-size: 15px; }
  .sp-keyidea__flow { padding: 20px 16px; margin-top: 28px; }
  .sp-keyidea__flow-title { font-size: 16px; margin-bottom: 18px; }
  .sp-keyidea__flow-cols { grid-template-columns: 1fr; gap: 18px; }
  .sp-keyidea__tags { gap: 8px; justify-content: center; }
  .sp-keyidea__tag { padding: 7px 14px; font-size: 12px; }
  .sp-keyidea__checks-outer { padding: 16px 20px; gap: 14px; transform: rotate(1deg); justify-content: center; }
  .sp-keyidea__check-num { font-size: 18px; }
  .sp-keyidea__check-sub { font-size: 11px; }
  .sp-keyidea__check-divider { height: 40px; }
  .sp-keyidea__checks-label { display: none; }
  .sp-keyidea__flow-right { padding-bottom: 0; }
  .sp-keyidea__max {
    position: relative;
    margin: 22px auto 0;
    margin-right: auto;
    padding: 18px 18px;
    transform: rotate(-1deg);
    min-height: 0;
    width: 100%;
    max-width: 320px;
  }
  .sp-keyidea__max-row { justify-content: center; gap: 8px; }
  .sp-keyidea__max-num { font-size: 18px; }
  .sp-keyidea__max-num--big { font-size: 22px; }
  .sp-keyidea__max-label { font-size: 13px; }
  .sp-keyidea__max-badge { font-size: 11px; padding: 4px 12px; margin-bottom: 10px; }

  /* --- sp-prospects --- */
  .sp-prospects { padding: 32px 18px; border-radius: 20px; }
  .sp-prospects__grid { grid-template-columns: 1fr; gap: 48px; margin-top: 48px; }
  .sp-prospects__card { padding: 28px 20px 24px; margin-top: 32px; }
  .sp-prospects__card-step { top: -38px; left: 20px; font-size: 11px; }
  .sp-prospects__card-badge { top: -14px; left: 20px; font-size: 15px; padding: 6px 14px; }
  .sp-prospects__list { gap: 10px; margin-top: 18px; margin-bottom: 22px; }
  .sp-prospects__list li { font-size: 14px; padding-left: 18px; }
  .sp-prospects__card-income { padding-top: 16px; flex-wrap: wrap; gap: 6px; }
  .sp-prospects__card-num { font-size: 19px; }
  .sp-prospects__card-label { font-size: 13px; }

  /* --- sp-start / location --- */
  .sp-start__timeline { flex-direction: column; gap: 14px; margin-top: 28px; }
  .sp-start__step { flex: none; display: flex; align-items: center; gap: 14px; text-align: left; padding: 0; }
  .sp-start__step-num { margin: 0; flex-shrink: 0; width: 40px; height: 40px; font-size: 15px; }
  .sp-start__step-title { font-size: 14px; margin-bottom: 2px; }
  .sp-start__step-text { font-size: 12px; }
  .sp-start__line { display: none; }
  .sp-start__timeline-pagination { display: none; }

  .sp-growth__path { flex-direction: column; gap: 8px; }
  .sp-growth__arrow { transform: rotate(90deg); }
  .sp-growth__node { width: 100%; min-width: auto; }

  /* --- benefits --- */
  .benefits__inner { border-radius: 20px; }
  .benefits__title { font-size: 22px; padding: 0 16px 0; line-height: 1.2; }
  .benefits__slider-tag { font-size: 12px; padding: 0 16px; line-height: 34px; border-radius: 17px; }

  /* --- location --- */
  .location__inner { border-radius: 24px; padding: 28px 20px; }

  /* --- sp-mgmt --- */
  .sp-mgmt { padding: 36px 20px; border-radius: 20px; }
  .sp-mgmt__item { padding: 18px 16px; gap: 12px; }
  .sp-mgmt__item-icon { width: 38px; height: 38px; }
  .sp-mgmt__item-icon svg { width: 18px; height: 18px; }
  .sp-mgmt__item-text { font-size: 14px; }

  /* --- v2 --- */
  .v2 { padding: 40px 18px 32px; border-radius: 20px; }
  .v2__kicker { font-size: 13px; padding: 7px 16px; top: -14px; }
  .v2__hero-row { gap: 10px; margin-bottom: 4px; }
  .v2__hero-num, .v2__hero-total { font-size: 72px; }
  .v2__hero-of { font-size: 20px; }
  .v2__hero-label { font-size: 13px; margin-bottom: 24px; padding: 0 12px; }
  .v2__bar-wrap { margin-bottom: 32px; }
  .v2__bar { height: 12px; }
  .v2__bar-legend { gap: 10px 14px; font-size: 12px; flex-wrap: wrap; }
  .v2__dot { width: 8px; height: 8px; margin-right: 5px; }
  .v2__key { padding: 18px 20px; border-radius: 14px; }
  .v2__key p { font-size: 14px; line-height: 1.45; }

  /* --- sp-excursion / sp-entry --- */
  .sp-excursion { padding: 44px 22px; border-radius: 20px; }
  .sp-excursion__title { font-size: 22px; }

  .sp-entry { padding: 36px 18px; border-radius: 20px; }
  .sp-entry__card { padding: 24px 18px; }
  .sp-entry__card-value { font-size: 22px; }
  .sp-entry__card-label { font-size: 13px; }

  /* --- cta --- */
  .cta__inner--form { padding: 36px 20px; border-radius: 18px; }
  .cta__title { font-size: 22px; }
  .cta__subtitle { font-size: 15px; margin-bottom: 24px; }
  .cta__form { flex-direction: column; width: 100%; gap: 12px; }
  .cta__input { width: 100%; height: 54px; font-size: 16px; border-radius: 14px; padding: 0 18px; }
  .cta__btn { width: 100%; height: 54px; font-size: 15px; border-radius: 14px; }

  .sp-fab { padding: 14px 20px; font-size: 13px; right: 16px; bottom: 16px; }

  .popup { padding: 40px 20px 28px; border-radius: 18px; }
  .popup__title { font-size: 22px; }
  .popup__subtitle { font-size: 14px; margin-bottom: 22px; }
  .popup__input { height: 52px; font-size: 15px; border-radius: 14px; padding: 0 18px; }
  .popup__btn { height: 52px; font-size: 15px; border-radius: 14px; }

  .sp-video-modal { padding: 16px; }
  .sp-video-modal__close { top: -44px; }
}

/* =====================================================================
   BLOCK — BRANDS (скопирован из index.html)
   ===================================================================== */
.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__featured-btn--mobile { display: none; }
.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;
}
.brands__mobile-pag { display: none; }

@media (max-width: 1200px) {
  .brands__inner { padding: 48px 32px; border-radius: 40px; }
  .brands__title { font-size: 36px; }
  .brands__featured { grid-template-columns: 240px minmax(0, 1fr) auto; gap: 24px; }
  .brands__featured-card { width: 240px; }
  .brands__featured-photo { width: 240px; height: 140px; }
  .brands__featured-photo img { height: 230px; }
  .brands__marquee { margin-left: -32px; margin-right: -32px; }
}

@media (max-width: 768px) {
  .brands__nav { display: none; }
  .brands__hint { display: none; }
  .brands__marquee { display: none; }
  .brands__featured {
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: center;
    min-height: auto;
    touch-action: pan-y;
    margin-top: 20px;
  }
  .brands__featured-card {
    width: auto;
    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; }
  .brands__featured-btn--mobile { display: inline-flex; margin-bottom: 16px; }
  .brands__featured-action { display: none; }
  .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: 560px) {
  .brands__featured {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 90px;
  }
  .brands__featured-card { width: 100%; }
}

@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; }
}

/* =====================================================================
   RESPONSIVE — SMALL MOBILE (<= 380px)
   ===================================================================== */
@media (max-width: 380px) {
  .sp-hero__title { font-size: 22px; }
  .sp-hero__slogan { font-size: 13px; }
  .sp-hero__photo { height: 210px; }
  .sp-keyidea__main { font-size: 16px; }
  .sp-section-title { font-size: 20px; }
  .audience__card-img { width: 200px; top: 63px; }
  .audience__card-label { font-size: 13px; height: 50px; }
  .v2__hero-num, .v2__hero-total { font-size: 60px; }
  .sp-prospects__card-badge { font-size: 14px; }
}

/* =====================================================================
   BLOCK — LOCATION (карта складских зон — скопирован из index.html)
   ===================================================================== */
.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__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;
}
.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;
}

@media (max-width: 1200px) {
  .location__inner { padding: 36px 28px; border-radius: 40px; }
  .location__title { font-size: 36px; }
  .location__map-full { height: 400px; }
  .location__stats { gap: 12px; }
  .location__stat-num { font-size: 30px; }
}

@media (max-width: 768px) {
  .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: 640px) {
  .location__title { font-size: 24px; }
}

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