:root {
  --yellow: #FFE32E;
  --yellow-soft: #FFF6B0;
  --yellow-hover: #FFD400;
  --black: #1A1A1A;
  --gray-900: #2B2B2B;
  --gray-700: #555;
  --gray-500: #8A8A8A;
  --gray-200: #EEEEEE;
  --gray-100: #F5F5F5;
  --white: #FFFFFF;
  --green: #19B47A;
  --radius-card: 24px;
  --radius-pill: 999px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 8px 32px rgba(0,0,0,0.10);
  --font: 'Manrope', -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--black);
  background: var(--gray-100);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* HEADER */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; max-width: 1200px; margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; }
.logo-mark {
  width: 36px; height: 36px; background: var(--yellow); border-radius: 8px;
  display: grid; place-items: center; font-size: 22px;
}
.logo-sub { font-size: 11px; color: var(--gray-500); font-weight: 500; margin-top: 0; }
.nav { display: flex; gap: 8px; align-items: center; }
.nav a {
  padding: 10px 14px; border-radius: var(--radius-pill); font-weight: 600;
  font-size: 14px; color: var(--gray-700);
}
.nav a:hover { background: var(--gray-100); color: var(--black); }
.header-cta { display: flex; gap: 8px; align-items: center; }
.btn-tg { padding: 10px 14px; border-radius: var(--radius-pill); font-weight: 600; font-size: 14px; color: var(--gray-700); }
.btn-tg:hover { color: var(--black); background: var(--gray-100); }
.btn-login { padding: 10px 18px; border-radius: var(--radius-pill); font-weight: 700; font-size: 14px; border: 1.5px solid var(--gray-300); color: var(--black); }
.btn-login:hover { background: var(--gray-100); border-color: var(--gray-400); }
.btn-yellow {
  background: var(--yellow); color: var(--black); padding: 12px 22px;
  border-radius: var(--radius-pill); font-weight: 700; font-size: 14px;
  border: none; cursor: pointer; transition: background 0.15s;
}
.btn-yellow:hover { background: var(--yellow-hover); }
/* BURGER */
.burger {
  display: none; background: none; border: none; cursor: pointer;
  font-size: 22px; padding: 8px 4px; color: var(--black); line-height: 1;
}
@media (max-width: 768px) {
  .nav { display: none; flex-direction: column; position: fixed; top: 64px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--gray-200);
    padding: 12px 16px 20px; z-index: 99; box-shadow: 0 8px 24px rgba(0,0,0,0.08); gap: 2px;
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 16px; font-size: 15px; border-radius: 12px; color: var(--black); background: var(--gray-100); text-align: center; }
  .nav a:hover { background: var(--gray-200); }
  .btn-tg, .btn-login { display: none; }
  .burger { display: block; }
  .nav-mobile-only { display: block; }
}
.nav-mobile-only { display: none; }

/* HERO */
.hero { padding: 48px 0 32px; }
.hero-cta-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.btn-yellow-lg {
  background: var(--yellow); color: var(--black); padding: 14px 28px;
  border-radius: var(--radius-pill); font-weight: 700; font-size: 16px;
  border: none; cursor: pointer; box-shadow: 0 4px 16px rgba(255, 227, 46, 0.4);
  transition: all 0.15s; display: inline-block;
}
.btn-yellow-lg:hover { background: var(--yellow-hover); transform: translateY(-1px); }

/* ALT */
.alt { padding: 64px 0; background: var(--white); }
.alt-head { text-align: center; margin-bottom: 28px; }
.alt-head h2 { font-size: 32px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 10px; }
.alt-head p { color: var(--gray-700); font-size: 15px; max-width: 600px; margin: 0 auto; }
.alt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.alt-card {
  background: var(--gray-100); border-radius: var(--radius-card); padding: 24px 20px;
}
.alt-icon {
  width: 48px; height: 48px; background: var(--white); border-radius: 12px;
  display: grid; place-items: center; font-size: 24px; margin-bottom: 14px;
}
.alt-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.alt-card p { color: var(--gray-700); font-size: 14px; }
@media (max-width: 768px) {
  .alt-grid { grid-template-columns: 1fr; }
  .alt-head h2 { font-size: 24px; }
}

/* PACKAGES */
.packs { padding: 64px 0; }
.packs-head { text-align: center; margin-bottom: 32px; }
.packs-head h2 { font-size: 36px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.packs-head p { color: var(--gray-700); font-size: 15px; }
.packs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; grid-auto-rows: 1fr; }
.pack-card {
  background: var(--white); border-radius: var(--radius-card); padding: 24px 20px;
  box-shadow: var(--shadow-card); position: relative;
  display: flex; flex-direction: column; transition: all 0.2s;
  border: 2px solid transparent;
}
.pack-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }
.pack-card.featured { border-color: var(--yellow); background: linear-gradient(180deg, #FFFCE3 0%, var(--white) 80%); }
.pack-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--black); color: var(--yellow); padding: 4px 12px;
  border-radius: var(--radius-pill); font-size: 10px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap;
}
.pack-name { font-size: 11px; color: var(--gray-500); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.pack-tag { font-size: 15px; font-weight: 700; margin: 4px 0 10px; }
.pack-price { font-size: 34px; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.pack-price small { font-size: 14px; font-weight: 600; color: var(--gray-500); }
.pack-meta { font-size: 12px; color: var(--gray-500); margin-bottom: 16px; }
.pack-features { list-style: none; margin-bottom: 20px; flex: 1; }
.pack-features li {
  display: flex; gap: 8px; align-items: flex-start; padding: 6px 0;
  font-size: 13px; color: var(--gray-900); border-bottom: 1px solid var(--gray-100);
}
.pack-features li:last-child { border-bottom: none; }
.pack-check {
  flex-shrink: 0; width: 16px; height: 16px; border-radius: 50%;
  background: var(--green); color: var(--white);
  display: grid; place-items: center; font-size: 10px; margin-top: 2px;
}
.pack-cta {
  background: var(--gray-100); color: var(--black); padding: 12px 16px;
  border-radius: var(--radius-pill); font-weight: 700; font-size: 14px;
  border: none; cursor: pointer; text-align: center; display: block;
  transition: background 0.15s; min-height: 42px;
}
.pack-cta:hover { background: var(--gray-200); }
.pack-card.featured .pack-cta { background: var(--yellow); }
.pack-card.featured .pack-cta:hover { background: var(--yellow-hover); }
.pack-custom { background: var(--gray-900); color: var(--white); }
.pack-custom .pack-name, .pack-custom .pack-meta { color: rgba(255,255,255,0.6); }
.pack-custom .pack-features li { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.08); }
.pack-custom .pack-price { color: var(--white); }
.pack-custom .pack-cta { background: var(--yellow); }
@media (max-width: 1100px) { .packs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .packs-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .packs-head h2 { font-size: 26px; }
}

/* HOW */
.how { padding: 64px 0; background: var(--white); }
.how-head { text-align: center; margin-bottom: 28px; }
.how-head h2 { font-size: 32px; font-weight: 800; letter-spacing: -0.02em; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.how-step {
  background: var(--gray-100); border-radius: var(--radius-card); padding: 24px 20px;
}
.how-num {
  width: 36px; height: 36px; background: var(--yellow);
  border-radius: 50%; display: grid; place-items: center;
  font-size: 16px; font-weight: 800; margin-bottom: 14px;
}
.how-step h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.how-step p { color: var(--gray-700); font-size: 14px; }
@media (max-width: 768px) {
  .how-grid { grid-template-columns: 1fr; }
  .how-head h2 { font-size: 24px; }
}

/* PROOF */
.proof { padding: 64px 0; }
.proof-head { text-align: center; margin-bottom: 28px; }
.proof-head h2 { font-size: 32px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 10px; }
.proof-head p { color: var(--gray-700); font-size: 15px; }
.proof-banner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  background: var(--white); border-radius: var(--radius-card);
  padding: 32px; box-shadow: var(--shadow-card); margin-bottom: 32px;
}
.proof-stat-num { font-size: 32px; font-weight: 800; line-height: 1; }
.proof-stat-label { font-size: 13px; color: var(--gray-500); margin-top: 6px; }
.proof-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.proof-card {
  background: var(--white); border-radius: var(--radius-card); padding: 28px;
  box-shadow: var(--shadow-card);
}
.proof-card-head { display: flex; gap: 12px; margin-bottom: 16px; align-items: center; }
.proof-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #FFD24A, #FFA92B);
  display: grid; place-items: center; font-weight: 700; color: var(--white);
  flex-shrink: 0;
}
.proof-name { font-weight: 700; font-size: 15px; }
.proof-role { font-size: 12px; color: var(--gray-500); }
.proof-text { font-size: 14px; color: var(--gray-900); line-height: 1.55; }
.proof-stars { color: #FFB800; margin-bottom: 12px; font-size: 14px; }
@media (max-width: 900px) {
  .proof-banner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .proof-cards { grid-template-columns: 1fr; }
  .proof-head h2 { font-size: 28px; }
}

/* FAQ */
.faq { padding: 64px 0; background: var(--white); }
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-head { text-align: center; margin-bottom: 28px; }
.faq-head h2 { font-size: 32px; font-weight: 800; letter-spacing: -0.02em; }
.faq-item {
  background: var(--gray-100); border-radius: 16px; margin-bottom: 12px; padding: 4px;
}
.faq-q {
  width: 100%; background: transparent; border: none; cursor: pointer;
  text-align: left; padding: 18px 24px; font: inherit;
  font-weight: 700; font-size: 16px; display: flex;
  justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q::after { content: '+'; font-size: 24px; color: var(--gray-500); transition: transform 0.2s; }
.faq-item.open .faq-q::after { content: '\2212'; }
.faq-a {
  padding: 0 24px 18px; color: var(--gray-700); font-size: 15px;
  display: none; line-height: 1.6;
}
.faq-item.open .faq-a { display: block; }
@media (max-width: 768px) { .faq-head h2 { font-size: 28px; } }

/* FINAL CTA */
.final {
  padding: 48px 0;
  background: linear-gradient(135deg, var(--black) 0%, #2A2A2A 100%);
  color: var(--white); text-align: center;
}
.final h2 { font-size: 36px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
.final h2 span { background: var(--yellow); color: var(--black); padding: 0 10px; border-radius: 8px; white-space: nowrap; }
.final p { color: rgba(255,255,255,0.7); font-size: 16px; margin-bottom: 24px; }
.final-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-tg-final {
  background: rgba(255,255,255,0.1); color: var(--white);
  padding: 14px 28px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 16px; border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer; display: inline-block; min-height: 42px;
}
.btn-tg-final:hover { background: rgba(255,255,255,0.18); }
@media (max-width: 768px) { .final h2 { font-size: 24px; } }

/* FOOTER */
.footer { padding: 48px 0 32px; background: #1A1A1A; color: rgba(255,255,255,0.7); font-size: 13px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer h4 { color: var(--white); font-size: 14px; margin-bottom: 14px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; }
.footer a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; font-size: 11px; color: rgba(255,255,255,0.5); }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   NEW COMPONENTS — v2 redesign
   ============================================================ */

/* Manrope font loaded via @import at top */

/* HERO DASHBOARD CARD */
.hero-dashboard {
  background: var(--white); border-radius: 20px;
  box-shadow: 0 16px 56px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
  padding: 0; overflow: hidden; width: 100%;
}
.dash-eyebrow {
  padding: 12px 20px 0;
  font-size: 12px; font-weight: 700; color: var(--gray-700);
}
.dash-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--gray-200);
}
.dash-stat {
  padding: 18px 14px; text-align: center;
  border-right: 1px solid var(--gray-200);
}
.dash-stat:last-child { border-right: none; }
.dash-stat--accent { background: rgba(255,227,46,0.15); }
.dash-stat-num {
  display: block; font-size: 28px; font-weight: 800;
  color: var(--black); line-height: 1; letter-spacing: -0.03em;
}
.dash-stat--accent .dash-stat-num { color: #B8920A; }
.dash-stat-label {
  display: block; font-size: 11px; color: var(--gray-500);
  margin-top: 4px; line-height: 1.3;
}
.dash-performer { padding: 20px 24px; }
.dash-performer-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.dash-performer-photo {
  width: 48px; height: 48px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
}
.dash-performer-badge {
  font-size: 10px; font-weight: 700; color: var(--green);
  text-transform: uppercase; letter-spacing: 0.06em;
  background: rgba(25,180,122,0.1); padding: 2px 8px; border-radius: 6px;
  display: inline-block;
}
.dash-performer-name { font-size: 14px; font-weight: 700; }
.dash-performer-meta { font-size: 12px; color: var(--gray-500); }
.dash-queue {
  padding: 14px 24px 18px;
  border-top: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: space-between;
}
.dash-queue-label { font-size: 12px; color: var(--gray-500); font-weight: 600; }
.dash-queue-avatars { display: flex; align-items: center; }
.dash-queue-img {
  width: 32px; height: 32px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--white);
  margin-left: -8px;
}
.dash-queue-img:first-child { margin-left: 0; }
.dash-queue-more {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gray-100); color: var(--gray-700);
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
  margin-left: -8px; border: 2px solid var(--white);
}
@media (max-width: 600px) {
  .dash-stat { padding: 12px 8px; }
  .dash-stat-num { font-size: 22px; }
  .dash-performer { padding: 16px; }
  .dash-queue { padding: 12px 16px 14px; }
}

/* LOGO with real image */
.logo-img {
  width: 36px; height: 36px; border-radius: 8px;
  object-fit: cover; display: block;
}

/* HERO — performer card on right */
.hero-performer {
  background: var(--white); border-radius: var(--radius-card);
  box-shadow: var(--shadow-card-hover); padding: 20px 24px;
  min-width: 260px; max-width: 420px;
}
.hero-performer-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.hero-performer-photo {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
}
.hero-performer-badge {
  font-size: 11px; font-weight: 700; color: var(--green);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.hero-performer-name { font-size: 14px; font-weight: 700; }
.hero-performer-meta { font-size: 12px; color: var(--gray-500); }

/* Chain steps in performer card */
.chain-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.chain-step {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--gray-500); padding: 7px 0;
  border-radius: 8px; transition: all 0.3s;
}
.chain-step--done { color: var(--gray-900); }
.chain-step--active {
  color: var(--black); font-weight: 600;
  background: var(--yellow); margin: 0 -12px; padding: 7px 12px;
}
.chain-step-icon {
  flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%;
  display: grid; place-items: center; font-size: 10px; margin-top: 1px;
  background: var(--gray-200); color: var(--gray-500);
}
.chain-step--done .chain-step-icon { background: var(--green); color: var(--white); }
.chain-step--active .chain-step-icon { background: var(--yellow); color: var(--black); }

/* Hero grid — flexbox for Safari */
.hero-grid-v2 {
  display: -webkit-flex; display: flex;
  -webkit-flex-wrap: nowrap; flex-wrap: nowrap;
  gap: 40px; -webkit-align-items: center; align-items: center;
}
.hero-grid-v2 > *:first-child { -webkit-flex: 1 1 0%; flex: 1 1 0%; min-width: 0; }
.hero-grid-v2 > *:last-child { -webkit-flex: 0 0 420px; flex: 0 0 420px; min-width: 0; }
@media (max-width: 1060px) {
  .hero-grid-v2 > *:last-child { -webkit-flex: 0 0 360px; flex: 0 0 360px; }
  .hero-grid-v2 { gap: 28px; }
}
@media (max-width: 900px) {
  .hero-grid-v2 { -webkit-flex-wrap: wrap; flex-wrap: wrap; gap: 24px; }
  .hero-grid-v2 > *:first-child { -webkit-flex: 1 1 100%; flex: 1 1 100%; }
  .hero-grid-v2 > *:last-child { -webkit-flex: 1 1 100%; flex: 1 1 100%; max-width: 480px; }
}

/* BULLETS with + icon */
.hero-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.hero-bullet {
  display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--gray-700);
}
.hero-bullet-icon {
  flex-shrink: 0; color: var(--black); font-weight: 800; font-size: 18px; line-height: 1.3;
}
.hero-bullet strong { color: var(--black); }

/* H1 with DKI slot + highlight span */
.hero-h1 { font-size: 36px; line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
.hero-h1 .hero-highlight { background: var(--yellow); padding: 2px 8px; border-radius: 8px; display: inline; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
@media (max-width: 900px) { .hero-h1 { font-size: 30px; } }
@media (max-width: 600px) { .hero-h1 { font-size: 24px; } }

/* CHAIN SECTION */
.chain-section { padding: 64px 0; background: var(--white); }
.chain-section-head { text-align: center; margin-bottom: 28px; }
.chain-section-head h2 { font-size: 30px; font-weight: 800; letter-spacing: -0.02em; }
.chain-section-head p { color: var(--gray-700); font-size: 15px; margin-top: 8px; }
.chain-steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.chain-step-card {
  background: var(--gray-100); border-radius: 16px; padding: 18px 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.chain-step-card-num {
  width: 32px; height: 32px; background: var(--yellow);
  border-radius: 50%; display: grid; place-items: center;
  font-size: 14px; font-weight: 800;
}
.chain-step-card p { font-size: 13px; color: var(--gray-700); }
@media (max-width: 900px) { .chain-steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .chain-steps-grid { grid-template-columns: 1fr; } }

/* TARIFFS — per-action pricing */
.pack-price-unit {
  font-size: 12px; color: var(--gray-500); font-weight: 500; margin-bottom: 2px;
}
.pack-price-big {
  font-size: 36px; font-weight: 800; line-height: 1; letter-spacing: -0.03em;
}
.pack-price-small {
  font-size: 12px; color: var(--gray-500); margin-bottom: 14px;
}

/* SOURCE TOGGLE (Реальные люди / Боты) */
.source-toggle {
  display: inline-flex; background: var(--gray-200); border-radius: var(--radius-pill);
  padding: 4px; gap: 4px; margin-bottom: 32px;
}
.source-toggle-btn {
  padding: 10px 20px; border-radius: var(--radius-pill); font-weight: 700;
  font-size: 14px; border: none; cursor: pointer; background: transparent;
  color: var(--gray-700); transition: all 0.15s;
}
.source-toggle-btn.active { background: var(--white); color: var(--black); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }

/* PERFORMERS SECTION */
.performers { padding: 64px 0; background: var(--gray-100); }
.performers-head { text-align: center; margin-bottom: 24px; }
.performers-head h2 { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; }
.performers-head p { color: var(--gray-700); font-size: 14px; margin-top: 8px; }
.performers-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
}
.performer-card { text-align: center; }
.performer-card img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: center top;
  border-radius: 10px; display: block;
}
.performer-card-body { padding: 6px 2px 0; }
.performer-name { font-size: 13px; font-weight: 600; margin-top: 6px; color: var(--black); }
.performer-city { font-size: 11px; color: var(--gray-500); }
.performer-card-name { font-weight: 700; font-size: 13px; }
.performer-card-role { font-size: 11px; color: var(--gray-500); }
.performer-card-quote { display: none; }
@media (max-width: 1024px) { .performers-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px)  { .performers-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; } }

/* HOW IT WORKS — 5 steps */
.how-steps-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
@media (max-width: 1000px) { .how-steps-5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .how-steps-5 { grid-template-columns: 1fr; } }

/* FOOTER v2 */
.footer-grid-6 { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr; gap: 24px; margin-bottom: 32px; }
@media (max-width: 1000px) { .footer-grid-6 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .footer-grid-6 { grid-template-columns: 1fr 1fr; } }

/* FOOTER 5-column grid */
.footer-grid-5 { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 24px; margin-bottom: 32px; }
.footer-grid-5 > * { min-width: 0; }
@media (max-width: 1100px) { .footer-grid-5 { grid-template-columns: 1.5fr repeat(3, 1fr); } }
@media (max-width: 900px) { .footer-grid-5 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid-5 { grid-template-columns: 1fr; } }

/* PAYMENT BLOCK */
.footer-payment {
  display: flex; align-items: center; flex-wrap: wrap; gap: 16px;
  background: rgba(255,255,255,0.05); border-radius: 12px;
  padding: 16px 20px; margin-bottom: 24px;
}
.footer-payment-card { flex-shrink: 0; }
.footer-payment-title { font-size: 14px; font-weight: 700; color: var(--white); }
.footer-payment-subs { font-size: 12px; color: rgba(255,255,255,0.5); }
.footer-payment-methods { display: flex; flex-wrap: wrap; gap: 6px; flex: 1; }
.pay-badge {
  background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8);
  padding: 4px 10px; border-radius: var(--radius-pill); font-size: 11px; font-weight: 600;
}

/* FOOTER LEGAL */
.footer-legal { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.footer-legal div { margin-bottom: 6px; }
.footer-legal a { color: rgba(255,255,255,0.6); }
.footer-legal a:hover { color: var(--white); }

/* Eyebrow chip */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow-soft); padding: 7px 14px;
  border-radius: var(--radius-pill); font-size: 12px; font-weight: 700;
  margin-bottom: 20px; color: var(--black);
}

/* CTA button primary */
.btn-cta {
  display: inline-block; background: var(--yellow); color: var(--black);
  padding: 14px 28px; border-radius: var(--radius-pill); font-weight: 800;
  font-size: 16px; border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(255,227,46,.4); transition: all .15s; min-height: 48px;
}
.btn-cta:hover { background: var(--yellow-hover); transform: translateY(-1px); }

/* Hint badge for featured pack */
.pack-badge-v2 {
  display: inline-block; background: var(--black); color: var(--yellow);
  font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--radius-pill); margin-bottom: 8px;
}

/* HERO stats bar */
.hero-stats-bar {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-top: 20px; font-size: 12px; color: var(--gray-700);
}
.hero-stat { display: flex; align-items: center; gap: 4px; }
.hero-stat strong { font-size: 14px; font-weight: 800; color: var(--black); }
.hero-stat-sep { color: var(--gray-500); font-size: 14px; }

/* Hero anchor link */
.hero-anchor-link {
  font-size: 14px; color: var(--gray-700); text-decoration: underline;
  text-underline-offset: 3px;
}
.hero-anchor-link:hover { color: var(--black); }

/* Performer cards — fixed square aspect ratio, faces top-aligned */

/* FOOTER AI plashka */
.footer-ai-plashka {
  background: rgba(255,227,46,0.12); border: 1px solid rgba(255,227,46,0.3);
  border-radius: 12px; padding: 14px 20px; margin-bottom: 32px;
  font-size: 13px; font-weight: 600;
}
.footer-ai-plashka a { color: var(--yellow); text-decoration: none; }
.footer-ai-plashka a:hover { text-decoration: underline; }

/* FOOTER 4-column grid */
.footer-grid-4 { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
@media (max-width: 900px) { .footer-grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid-4 { grid-template-columns: 1fr; } }

/* Platform logo in service cards */
.platform-logo { width: 28px; height: 28px; object-fit: contain; display: inline-block; vertical-align: middle; margin-right: 6px; }

/* NAV SWITCHER — двухуровневый переключатель в hero */
.nav-switcher {
  margin-bottom: 24px;
  background: var(--white); border-radius: 14px; padding: 12px 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.nav-switcher-row {
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center; margin-bottom: 6px;
}
.nav-chip {
  padding: 7px 14px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600; cursor: pointer;
  background: var(--gray-100); color: var(--gray-700);
  border: none; transition: all 0.12s; white-space: nowrap;
  text-decoration: none; display: inline-flex; align-items: center; gap: 4px;
}
.nav-chip:hover { background: var(--gray-200); color: var(--black); }
.nav-chip.active { background: var(--yellow); color: var(--black); }
.nav-chip.ext { opacity: .85; }
.nav-chip.ext::after { content: ' ↗'; font-size: 11px; }
.nav-switcher-label {
  font-size: 10px; font-weight: 700; color: var(--gray-500);
  text-transform: uppercase; letter-spacing: .08em; margin-right: 4px;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .nav-switcher-row { gap: 5px; }
  .nav-chip { font-size: 12px; padding: 6px 11px; }
}

/* HOME HERO GRID — flexbox for Safari */
.home-hero-grid {
  display: -webkit-flex; display: flex;
  -webkit-flex-wrap: nowrap; flex-wrap: nowrap;
  gap: 40px; -webkit-align-items: center; align-items: center;
  padding: 40px 0 32px;
}
.home-hero-grid > *:first-child { -webkit-flex: 1 1 0%; flex: 1 1 0%; min-width: 0; }
.home-hero-grid > *:last-child { -webkit-flex: 0 0 420px; flex: 0 0 420px; min-width: 0; }
@media (max-width: 1060px) {
  .home-hero-grid > *:last-child { -webkit-flex: 0 0 360px; flex: 0 0 360px; }
  .home-hero-grid { gap: 28px; }
}
@media (max-width: 900px) {
  .home-hero-grid { -webkit-flex-wrap: wrap; flex-wrap: wrap; gap: 24px; padding: 24px 0 20px; }
  .home-hero-grid > *:first-child { -webkit-flex: 1 1 100%; flex: 1 1 100%; }
  .home-hero-grid > *:last-child { -webkit-flex: 1 1 100%; flex: 1 1 100%; max-width: 480px; }
}
.home-h1 {
  font-size: 44px; line-height: 1.1; font-weight: 800; letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.home-h1 .hero-highlight { background: var(--yellow); padding: 2px 8px; border-radius: 8px; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
@media (max-width: 900px) { .home-h1 { font-size: 34px; } }
@media (max-width: 600px) { .home-h1 { font-size: 26px; } }
.home-sub {
  font-size: 17px; color: var(--gray-700); margin-bottom: 16px; line-height: 1.5; max-width: 520px;
}
@media (max-width: 600px) { .home-sub { font-size: 16px; } }

/* HOME SELECTOR */
.home-selector { margin-bottom: 24px; }
.home-selector-label {
  font-size: 11px; font-weight: 800; color: var(--gray-500);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px;
}
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 20px; font-size: 15px; font-weight: 700;
  background: var(--white); color: var(--black);
  border: none; border-radius: 16px; cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  transition: transform .15s, box-shadow .15s, background .1s;
  line-height: 1.2;
}
.chip:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.11); }
.chip.active {
  background: var(--yellow);
  box-shadow: 0 4px 24px rgba(255,227,46,.45);
}
.home-platforms { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; min-height: 0; }
.home-platforms .chip {
  padding: 10px 18px; font-size: 14px; font-weight: 600;
  border-radius: 999px; box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.home-platforms .chip.active { background: var(--black); color: var(--yellow); box-shadow: none; }
@media (max-width: 600px) {
  .chip { padding: 12px 16px; font-size: 14px; }
  .chips { gap: 8px; }
}

/* SECONDARY CTA — "Узнать стоимость" */
.btn-know-price {
  display: inline-block; background: var(--white); color: var(--black);
  padding: 14px 28px; border-radius: var(--radius-pill); font-weight: 700;
  font-size: 16px; border: 2px solid var(--gray-200); cursor: pointer;
  transition: all .15s; min-height: 48px; text-decoration: none;
}
.btn-know-price:hover { border-color: var(--gray-500); background: var(--gray-100); }
.btn-know-price.disabled { opacity: .45; pointer-events: none; }
.btn-cta.disabled { opacity: .45; pointer-events: none; }

/* STATS STRIP */
.stats-strip { background: var(--white); border-top: 1px solid var(--gray-200); padding: 20px 0; }
.stats-strip-inner {
  display: -webkit-flex; display: flex;
  -webkit-flex-direction: row; flex-direction: row;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: center; justify-content: center;
  gap: 12px; flex-wrap: nowrap;
}
.stat-item {
  display: -webkit-inline-flex; display: inline-flex;
  -webkit-align-items: baseline; align-items: baseline;
  gap: 6px; flex-shrink: 0; white-space: nowrap;
}
.stat-num { font-size: 26px; font-weight: 800; color: var(--black); letter-spacing: -0.02em; }
.stat-label { font-size: 13px; color: var(--gray-500); }
.stat-sep { font-size: 18px; color: var(--gray-300); flex-shrink: 0; }
@media (max-width: 600px) {
  .stat-num { font-size: 20px; }
  .stats-strip-inner { flex-wrap: wrap; gap: 4px 12px; }
  .stat-sep { display: none; }
}

/* PERFORMERS HEAD — акцентная плашка */
.performers-accent-head { margin-bottom: 28px; }
.performers-accent-head h2 {
  font-size: 30px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 10px;
}
.performers-accent-plashka {
  display: inline-block; background: var(--black); color: var(--yellow);
  padding: 8px 20px; border-radius: var(--radius-pill); font-size: 15px;
  font-weight: 800; line-height: 1.3;
}
.performers-accent-plashka strong { color: var(--white); }
.performers-footer-link {
  display: block; text-align: center; margin-top: 20px;
  font-size: 14px; color: var(--gray-500); text-decoration: underline;
  text-underline-offset: 3px;
}
.performers-footer-link:hover { color: var(--black); }
@media (max-width: 600px) { .performers-accent-head h2 { font-size: 22px; } }

/* CROSS-PROMO BANNER */
.cross-promo {
  background: var(--yellow-soft); border: 1.5px solid var(--yellow);
  border-radius: 16px; padding: 16px 24px; margin: 32px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.cross-promo p { font-size: 14px; color: var(--gray-900); }
.cross-promo strong { font-weight: 700; }
.cross-promo-link {
  display: inline-block; background: var(--black); color: var(--yellow);
  padding: 10px 20px; border-radius: var(--radius-pill); font-weight: 700;
  font-size: 13px; white-space: nowrap; flex-shrink: 0;
}
.cross-promo-link:hover { background: var(--gray-900); }

/* MOBILE IMPROVEMENTS */
@media (max-width: 768px) {
  /* Hero */
  .hero { padding: 28px 0 20px; }
  .hero-sub { font-size: 16px; margin-bottom: 24px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .btn-cta, .btn-yellow-lg { display: block; text-align: center; width: 100%; padding: 16px 24px; font-size: 16px; }
  .hero-stats-bar { gap: 8px; }
  .hero-stat strong { font-size: 14px; }
  .nav-switcher { padding: 10px 12px; }
  .nav-chip { font-size: 12px; padding: 6px 10px; }

  /* Packs */
  .packs { padding: 40px 0; }
  .packs-head h2 { font-size: 28px; }
  .pack-card { padding: 24px 20px; }
  .pack-price-big { font-size: 34px; }

  /* Chain section */
  .chain-section { padding: 40px 0; }
  .chain-section-head h2 { font-size: 26px; }

  /* How */
  .how { padding: 40px 0; }
  .how-step { padding: 24px 20px; }

  /* FAQ */
  .faq { padding: 40px 0; }
  .faq-q { font-size: 15px; padding: 16px 20px; }

  /* Final CTA */
  .final { padding: 48px 0; }
  .final h2 { font-size: 26px; }
  .final p { font-size: 16px; }
  .final-row { flex-direction: column; align-items: stretch; }
  .btn-yellow-lg, .btn-tg-final { display: block; text-align: center; }

  /* Footer */
  .footer { padding: 36px 0 24px; }
  .footer-ai-plashka { font-size: 12px; padding: 12px 16px; }

  /* Cross-promo */
  .cross-promo { flex-direction: column; align-items: flex-start; }
  .cross-promo-link { align-self: stretch; text-align: center; }

  /* Source toggle */
  .source-toggle { display: flex; width: 100%; }
  .source-toggle-btn { flex: 1; text-align: center; }

  /* Performers */
  .performers { padding: 40px 0; }
  .performers-head h2 { font-size: 26px; }

  /* Proof */
  .proof-banner { padding: 24px; }
  .proof-stat-num { font-size: 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .header-inner { padding: 12px 16px; }
  .hero-h1 { font-size: 26px; }
  .packs-head h2 { font-size: 24px; }
  .footer-grid-4 { grid-template-columns: 1fr 1fr; }
}

/* Safari grid fix: prevent children from forcing column width */
.alt-grid > *,
.packs-grid > *,
.how-grid > *,
.proof-banner > *,
.proof-cards > *,
.footer-grid > *,
.chain-steps-grid > *,
.performers-grid > *,
.how-steps-5 > *,
.footer-grid-6 > *,
.footer-grid-4 > * { min-width: 0; }
