/* ============================================================
   FONTS (self-hosted Inter variable, Fontsource)
   ============================================================ */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url('/fonts/inter/inter-latin-wght-normal.woff2') format('woff2-variations');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url('/fonts/inter/inter-latin-ext-wght-normal.woff2') format('woff2-variations');
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url('/fonts/inter/inter-cyrillic-wght-normal.woff2') format('woff2-variations');
  unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url('/fonts/inter/inter-cyrillic-ext-wght-normal.woff2') format('woff2-variations');
  unicode-range: U+0460-052F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;
}

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --violet-900: #15072e;
  --violet-800: #1d0a44;
  --violet-700: #2b1066;
  --violet-600: #4b1fa3;
  --violet-500: #6929d3;
  --pink-500: #e83f8a;
  --pink-400: #ff5ca8;
  --yellow: #ffd60a;
  --yellow-soft: #fff1a8;
  --green: #2a9d4f;
  --red: #ff4b5c;

  --tg-500: #229ed9;
  --tg-400: #2aabee;
  --max-500: #0077ff;
  --max-400: #2a7fff;

  --cream: #faf7ff;
  --cream-2: #f4eef8;
  --white: #ffffff;
  --border: #e8dff5;
  --border-dark: rgba(255, 255, 255, 0.1);
  --text: #15072e;
  --text-muted: #6b5e87;
  --text-on-dark: #ece4fa;
  --text-on-dark-muted: #9a8ec2;

  --grad: linear-gradient(135deg, #4b1fa3 0%, #e83f8a 100%);
  --grad-text: linear-gradient(100deg, #4b1fa3 0%, #e83f8a 60%, #ff8a5c 100%);
  --grad-soft: linear-gradient(135deg, rgba(75, 31, 163, 0.09) 0%, rgba(232, 63, 138, 0.09) 100%);
  --grad-tg: linear-gradient(135deg, #2aabee 0%, #229ed9 100%);
  --grad-max: linear-gradient(135deg, #2a7fff 0%, #0077ff 100%);
  --grad-dark: linear-gradient(180deg, #1d0a44 0%, #15072e 100%);

  --shadow-sm: 0 2px 8px rgba(21, 7, 46, 0.06);
  --shadow-md: 0 12px 32px rgba(21, 7, 46, 0.1);
  --shadow-lg: 0 28px 64px rgba(21, 7, 46, 0.18);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  --font-sans: 'Inter', 'Helvetica Neue', Helvetica, Arial, system-ui, sans-serif;

  --container: 1280px;
}

/* ============================================================
   BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: clip; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 100px; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  background: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  line-height: 1.5;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
button { font: inherit; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 64px);
  position: relative;
}

.section {
  position: relative;
  padding: clamp(72px, 8vw, 120px) 0;
  overflow: clip;
}
.section--cream { background: var(--cream); }
.section--cream-2 { background: var(--cream-2); }
.section--dark {
  background: var(--grad-dark);
  color: var(--text-on-dark);
  overflow: hidden;
}
.section--dark .section__title { color: #fff; }
.section--dark .section__sub { color: var(--text-on-dark-muted); }

.section__head {
  max-width: 820px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--violet-600);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad);
}
.section--dark .eyebrow { color: var(--yellow); }
.section--dark .eyebrow::before { background: var(--yellow); }

.section__title {
  font-size: clamp(30px, 3.6vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--violet-900);
  margin: 0 0 16px;
}
.section__title em {
  font-style: normal;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section__sub {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   ATMOSPHERE
   ============================================================ */
.bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(21, 7, 46, 0.09) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 20%, rgba(0, 0, 0, 0.65), transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 20%, rgba(0, 0, 0, 0.65), transparent 75%);
  pointer-events: none;
  z-index: 0;
}
.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}
.bg-blob--pink {
  top: -260px; right: -200px; width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(232, 63, 138, 0.45) 0%, transparent 70%);
}
.bg-blob--violet {
  top: 180px; left: -220px; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(105, 41, 211, 0.35) 0%, transparent 70%);
}
.bg-blob--yellow {
  top: 420px; left: 40%; width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(255, 214, 10, 0.35) 0%, transparent 70%);
  opacity: 0.4;
}

.section--dark::before,
.section--dark::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.section--dark::before {
  top: -120px; right: -160px; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(232, 63, 138, 0.32) 0%, transparent 70%);
}
.section--dark::after {
  bottom: -160px; left: -160px; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(105, 41, 211, 0.4) 0%, transparent 70%);
}
.section--dark > .container { position: relative; z-index: 1; }

/* ============================================================
   NAV
   ============================================================ */
.nav-wrap {
  position: sticky;
  top: 16px;
  z-index: 100;
  padding-top: 16px;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 14px 10px 20px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  border: 1px solid rgba(232, 223, 245, 0.9);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
}
.nav__brand { display: flex; align-items: center; gap: 14px; text-decoration: none; flex-shrink: 0; }
.nav__brand img { height: 36px; width: auto; display: block; }
.nav__tagline {
  padding: 7px 14px;
  background: var(--grad-soft);
  border: 1px solid rgba(75, 31, 163, 0.14);
  border-radius: var(--r-pill);
  font-size: 16px; font-weight: 600;
  color: var(--violet-600);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.nav__menu { display: flex; gap: 28px; list-style: none; padding: 0; margin: 0; }
.nav__menu a {
  font-size: 16px; font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav__menu a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px;
  background: var(--grad); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.nav__menu a:hover { color: var(--violet-600); }
.nav__menu a:hover::after { transform: scaleX(1); }

.nav__cta { display: flex; gap: 6px; align-items: center; }
.nav-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 16px;
  border-radius: var(--r-pill);
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 16px; font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: var(--font-sans);
}
.nav-btn__icon { width: 18px; height: 18px; display: block; flex-shrink: 0; }
.nav-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.nav-btn--tg { background: var(--grad-tg); color: var(--white); border-color: transparent; }
.nav-btn--tg:hover { box-shadow: 0 10px 24px rgba(34, 158, 217, 0.4); }
.nav-btn--max { background: var(--grad-max); color: var(--white); border-color: transparent; }
.nav-btn--max:hover { box-shadow: 0 10px 24px rgba(0, 119, 255, 0.4); }
.nav-btn--phone { background: var(--violet-900); color: var(--white); border-color: var(--violet-900); }
.nav-btn--phone:hover { background: var(--violet-800); border-color: var(--violet-800); box-shadow: 0 10px 24px rgba(21, 7, 46, 0.35); }
.nav-btn--phone .nav-btn__icon { color: var(--yellow); }
.nav-btn--icon {
  background: transparent;
  border: none;
  padding: 4px;
  width: 40px; height: 40px;
  justify-content: center;
}
.nav-btn--icon:hover { box-shadow: none; }
.nav-btn--icon .nav-btn__icon { width: 32px; height: 32px; }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  position: relative;
  padding: clamp(32px, 6vw, 72px) 0 clamp(40px, 6vw, 80px);
}
.hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 56px;
  align-items: center;
  min-height: 640px;
}
.hero__left { position: relative; }

.badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-size: 16px; font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
  letter-spacing: -0.005em;
}
.badge__bolt {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--yellow);
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(255, 214, 10, 0.2);
}
.badge__bolt svg { width: 13px; height: 13px; color: var(--violet-900); }
.badge__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.2);
  margin-left: 4px;
  animation: pulse 2s infinite;
}

.hero__h1 {
  font-weight: 800;
  font-size: clamp(40px, 4.9vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
  color: var(--violet-900);
}
.hero__h1 em {
  font-style: normal;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
.hero__h1 em::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -0.08em;
  height: 0.12em; background: var(--grad); border-radius: 4px; opacity: 0.15;
}

.hero__price-row {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 24px; flex-wrap: wrap;
}
.hero__price {
  display: inline-block;
  padding: 10px 22px;
  background: var(--yellow);
  color: var(--violet-900);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1;
  letter-spacing: -0.03em;
  border-radius: 14px;
  box-shadow: 0 5px 0 0 var(--violet-900), 0 12px 28px rgba(255, 214, 10, 0.35);
  transform: rotate(-2deg);
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1.2);
}
.hero__price:hover { transform: rotate(0) translateY(-2px); }
.hero__price-note { font-size: 16px; font-weight: 500; color: var(--text-muted); line-height: 1.4; }
.hero__price-note strong { color: var(--text); font-weight: 700; }

.hero__sub {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 0 28px;
}

.hero__bullets { list-style: none; padding: 0; margin: 0 0 36px; display: grid; gap: 12px; max-width: 580px; }
.hero__bullets li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 16px; font-weight: 500;
  color: var(--text); line-height: 1.5;
}
.hero__bullets .check {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--grad); display: grid; place-items: center; margin-top: 3px;
  box-shadow: 0 3px 8px rgba(75, 31, 163, 0.2);
}
.hero__bullets .check svg { width: 11px; height: 11px; color: #fff; }
.hero__bullets li b { font-weight: 700; color: var(--violet-900); }

/* ============================================================
   BUTTONS (shared)
   ============================================================ */
.cta-group { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 17px 26px;
  border-radius: var(--r-pill);
  font-family: var(--font-sans);
  font-weight: 600; font-size: 16px;
  letter-spacing: -0.005em;
  text-decoration: none;
  color: #fff; position: relative;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s;
  border: none; cursor: pointer;
}
.btn__icon {
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0; overflow: hidden;
  padding: 2px;
  border: 2px solid #fff;
}
.btn__icon img, .btn__icon svg { width: 100%; height: 100%; display: block; }
.btn--tg { background: var(--grad-tg); box-shadow: 0 6px 18px rgba(34, 158, 217, 0.35); }
.btn--tg:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(34, 158, 217, 0.45); }
.btn--max { background: var(--grad-max); box-shadow: 0 6px 18px rgba(0, 119, 255, 0.35); }
.btn--max:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(0, 119, 255, 0.45); }
.btn--phone { background: var(--violet-900); box-shadow: 0 6px 18px rgba(21, 7, 46, 0.3); }
.btn--phone:hover { transform: translateY(-3px); background: var(--violet-800); box-shadow: 0 14px 32px rgba(21, 7, 46, 0.4); }
.btn--phone .btn__icon { background: var(--yellow); }
.btn--phone .btn__icon svg { width: 14px; height: 14px; color: var(--violet-900); }
.section--dark .btn--phone { background: var(--yellow); color: var(--violet-900); }
.section--dark .btn--phone .btn__icon { background: var(--violet-900); border-color: var(--yellow); }
.section--dark .btn--phone .btn__icon svg { color: var(--yellow); }
.section--dark .btn--phone:hover { background: #ffe147; }

.hero__note { font-size: 16px; color: var(--text-muted); max-width: 560px; margin: 0; line-height: 1.55; }
.hero__note strong { color: var(--text); font-weight: 600; }

/* Right composition */
.hero__right { position: relative; height: 600px; }
.composition { position: absolute; inset: 0; }
.comp__blob {
  position: absolute; inset: 40px 20px;
  background: var(--grad);
  border-radius: 48% 52% 60% 40% / 50% 45% 55% 50%;
  opacity: 0.95;
  animation: morph 14s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(75, 31, 163, 0.38));
}
.comp__blob::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25), transparent 60%);
  border-radius: inherit;
}
.bolt-big {
  position: absolute; top: 40px; left: 10px;
  width: 90px; height: 120px; z-index: 4;
  filter: drop-shadow(0 14px 28px rgba(255, 214, 10, 0.55));
  animation: bolt-pulse 3.5s ease-in-out infinite;
}
.rocket {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: min(70%, 340px); z-index: 2;
  animation: rocket-launch 4s ease-in-out infinite;
  filter: drop-shadow(0 30px 50px rgba(21, 7, 46, 0.35)) drop-shadow(0 0 40px rgba(255, 140, 40, 0.35));
}
.rocket img { width: 100%; height: auto; display: block; aspect-ratio: 329 / 877; }
.rocket__glow {
  position: absolute; left: 50%; bottom: -6%;
  transform: translateX(-50%);
  width: 55%; height: 35%;
  background: radial-gradient(ellipse at center top, rgba(255, 180, 60, 0.7) 0%, rgba(255, 100, 30, 0.35) 40%, transparent 75%);
  filter: blur(14px); z-index: -1;
  animation: flame-flicker 0.35s ease-in-out infinite alternate;
}

/* Floating cards */
.card-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(232, 223, 245, 0.9) inset;
  z-index: 3;
  display: flex; align-items: center; gap: 12px;
}
.card-float__icon {
  width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center; flex-shrink: 0;
}
.card-float__icon svg { width: 20px; height: 20px; }
.card-float__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.card-float__label {
  font-size: 11px; color: var(--text-muted);
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em; line-height: 1;
}
.card-float__value {
  font-weight: 800; font-size: 22px;
  color: var(--violet-900); line-height: 1.1;
  letter-spacing: -0.02em;
}
.card-float__sub { font-size: 12px; color: var(--green); font-weight: 600; display: flex; align-items: center; gap: 4px; }
.card-float--time { top: 30px; right: -20px; animation: float 6s ease-in-out infinite; }
.card-float--time .card-float__icon { background: var(--yellow); color: var(--violet-900); }
.card-float--price { bottom: 120px; left: -24px; animation: float 7s ease-in-out infinite 0.7s; }
.card-float--price .card-float__icon { background: var(--grad); color: #fff; }
.card-float--price .card-float__value span { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.card-float--rating { bottom: 10px; right: 30px; animation: float 8s ease-in-out infinite 1.3s; }
.card-float--rating .card-float__icon { background: rgba(46, 204, 113, 0.12); color: var(--green); }

.spark {
  position: absolute; background: var(--yellow); border-radius: 50%;
  box-shadow: 0 0 18px rgba(255, 214, 10, 0.7); z-index: 1;
}
.spark--1 { top: 170px; right: 80px; width: 10px; height: 10px; animation: twinkle 3s ease-in-out infinite; }
.spark--2 { top: 80px; left: 40%; width: 6px; height: 6px; animation: twinkle 3s ease-in-out infinite 0.8s; }
.spark--3 { bottom: 180px; right: 20px; width: 8px; height: 8px; animation: twinkle 3s ease-in-out infinite 1.5s; }

/* ============================================================
   01 — WHO
   ============================================================ */
.who__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.who__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex; flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.who__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.who__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--grad);
  display: grid; place-items: center;
  margin-bottom: 24px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(75, 31, 163, 0.3);
}
.who__icon svg { width: 28px; height: 28px; }
.who__title { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 12px; color: var(--violet-900); }
.who__text { font-size: 16px; color: var(--text-muted); line-height: 1.55; margin: 0; }
.who__text b { color: var(--text); font-weight: 600; }

/* ============================================================
   02 — PAIN
   ============================================================ */
.pain {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.pain__list { list-style: none; padding: 0; margin: 0 0 32px; display: grid; gap: 18px; }
.pain__list li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 17px; line-height: 1.5;
  color: var(--text-on-dark);
}
.pain__x {
  flex-shrink: 0; width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255, 75, 92, 0.15);
  color: #ff7483;
  display: grid; place-items: center;
  margin-top: 2px;
}
.pain__x svg { width: 14px; height: 14px; }
.pain__closer {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--yellow);
  color: var(--violet-900);
  font-weight: 700; font-size: 18px;
  padding: 18px 28px;
  border-radius: var(--r-md);
  line-height: 1.4;
  box-shadow: 0 8px 24px rgba(255, 214, 10, 0.28);
}
.pain__closer svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ============================================================
   03 — INCLUDED (что входит)
   ============================================================ */
.included {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.included__price-card {
  position: sticky;
  top: 104px;
  background: linear-gradient(135deg, var(--violet-900) 0%, var(--violet-700) 100%);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  isolation: isolate;
}
.included__price-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 63, 138, 0.45), transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.included__price-label {
  display: block;
  font-size: 14px; text-transform: uppercase;
  letter-spacing: 0.1em; font-weight: 700;
  color: var(--yellow);
  margin-bottom: 12px;
}
.included__price-big {
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 900;
  line-height: 1; letter-spacing: -0.04em;
  color: #fff;
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 16px;
}
.included__price-big em {
  font-style: normal;
  background: linear-gradient(100deg, #ffd60a 0%, #ff9a5c 45%, #ff5ca8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 28px rgba(255, 154, 92, 0.35);
}
.included__price-note {
  font-size: 16px; color: rgba(255, 255, 255, 0.7);
  line-height: 1.5; margin: 0 0 24px;
}
.included__price-divider {
  height: 1px; background: rgba(255, 255, 255, 0.12);
  margin: 20px 0;
}
.included__price-foot {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
}
.included__price-foot + .included__price-foot { margin-top: 12px; }
.included__price-foot svg { width: 20px; height: 20px; color: var(--yellow); flex-shrink: 0; margin-top: 1px; }
.included__price-foot b { color: #fff; font-weight: 700; }

.included__price-ctas {
  display: flex;
  gap: 8px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.included__price-cta {
  flex: 1;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: var(--r-pill);
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.005em;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.included__price-cta img,
.included__price-cta svg { width: 18px; height: 18px; flex-shrink: 0; }
.included__price-cta--tg { background: var(--grad-tg); box-shadow: 0 4px 14px rgba(34, 158, 217, 0.3); }
.included__price-cta--max { background: var(--grad-max); box-shadow: 0 4px 14px rgba(0, 119, 255, 0.3); }
.included__price-cta--phone { background: var(--yellow); color: var(--violet-900); box-shadow: 0 4px 14px rgba(255, 214, 10, 0.35); }
.included__price-cta--phone svg { color: var(--violet-900); }
.included__price-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.included__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 16px;
}
.included__item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.included__item:hover {
  border-color: transparent;
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.included__item-check {
  flex-shrink: 0; width: 28px; height: 28px;
  border-radius: 50%; background: var(--grad);
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 4px 10px rgba(75, 31, 163, 0.25);
}
.included__item-check svg { width: 14px; height: 14px; }
.included__item-body strong {
  display: block;
  font-size: 17px; font-weight: 700;
  color: var(--violet-900); margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.included__item-body span {
  font-size: 15px; color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   04 — WHY FAST
   ============================================================ */
.why__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.why__tile {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px 32px 32px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.why__tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.why__num {
  position: absolute;
  top: 24px; right: 32px;
  font-size: 88px; font-weight: 900;
  line-height: 1; letter-spacing: -0.05em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.18;
  pointer-events: none;
}
.why__tile-title {
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--violet-900);
  margin: 0 0 12px;
  max-width: 85%;
  position: relative;
}
.why__tile-text {
  font-size: 16px; color: var(--text-muted);
  line-height: 1.55; margin: 0;
  position: relative;
}
.why__tile-text b { color: var(--text); font-weight: 600; }

/* ============================================================
   05 — PROCESS
   ============================================================ */
.process { position: relative; display: grid; gap: 20px; }
.process__step {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  padding: 24px 28px 24px 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  align-items: center;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.process__step:hover {
  transform: translateX(6px);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}
.process__num {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--grad);
  display: grid; place-items: center;
  color: #fff;
  font-size: 22px; font-weight: 800;
  letter-spacing: -0.02em;
  margin-left: 16px;
  box-shadow: 0 8px 20px rgba(75, 31, 163, 0.3);
}
.process__body h3 {
  font-size: 19px; font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--violet-900);
  margin: 0 0 6px;
}
.process__body p {
  font-size: 16px; color: var(--text-muted);
  line-height: 1.55; margin: 0;
}
.process__foot {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--yellow);
  border-radius: var(--r-md);
  color: var(--violet-900);
  font-weight: 600; font-size: 16px;
  line-height: 1.5;
  display: flex; align-items: center; gap: 12px;
}
.process__foot svg { width: 22px; height: 22px; flex-shrink: 0; }
.process__foot b { font-weight: 800; }

/* ============================================================
   06 — PORTFOLIO
   ============================================================ */
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.portfolio__card {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--violet-800), var(--violet-700));
  box-shadow: var(--shadow-md);
  cursor: zoom-in;
  display: block;
  text-decoration: none;
  border: 0;
  padding: 0;
  width: 100%;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s;
}
.portfolio__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.portfolio__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.portfolio__card:hover .portfolio__img {
  transform: scale(1.04);
}
.portfolio__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 28px;
  background: linear-gradient(
    180deg,
    rgba(21, 7, 46, 0) 45%,
    rgba(21, 7, 46, 0.85) 100%
  );
  color: #fff;
  transition: background 0.3s;
}
.portfolio__card:hover .portfolio__overlay {
  background: linear-gradient(
    180deg,
    rgba(21, 7, 46, 0.15) 0%,
    rgba(21, 7, 46, 0.9) 100%
  );
}
.portfolio__cat {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 6px;
}
.portfolio__name {
  font-size: 22px; font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
.portfolio__url {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
  font-weight: 500;
}
.portfolio__zoom {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--violet-900);
  font-size: 13px; font-weight: 700;
  letter-spacing: -0.005em;
  border-radius: var(--r-pill);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  backdrop-filter: blur(6px);
}
.portfolio__zoom svg { width: 14px; height: 14px; }
.portfolio__card:hover .portfolio__zoom {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   07 — NUMBERS (dark)
   ============================================================ */
.numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  text-align: center;
  padding: 32px 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.stat:first-child { border-left: none; }
.stat__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--grad);
  display: grid; place-items: center;
  margin: 0 auto 20px;
  color: #fff;
  box-shadow: 0 12px 28px rgba(75, 31, 163, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}
.stat__icon svg { width: 26px; height: 26px; }
.stat--yellow .stat__icon {
  background: var(--yellow);
  color: var(--violet-900);
  box-shadow: 0 12px 28px rgba(255, 214, 10, 0.35);
}
.stat__value {
  font-size: clamp(44px, 5.2vw, 68px);
  font-weight: 900;
  line-height: 1; letter-spacing: -0.04em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.stat__value em {
  font-style: normal;
  color: var(--yellow);
  -webkit-text-fill-color: var(--yellow);
}
.stat__label {
  font-size: 15px;
  color: var(--text-on-dark-muted);
  font-weight: 500;
  line-height: 1.4;
}

/* ============================================================
   08 — GUARANTEES
   ============================================================ */
.guarantees__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.guarantee {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.guarantee:hover {
  transform: translateY(-6px);
  border-color: var(--violet-600);
  box-shadow: var(--shadow-lg);
}
.guarantee__badge {
  position: absolute;
  top: -14px; left: 32px;
  background: var(--yellow);
  color: var(--violet-900);
  font-size: 13px; font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  box-shadow: 0 4px 12px rgba(255, 214, 10, 0.35);
}
.guarantee__icon {
  width: 60px; height: 60px;
  border-radius: 18px;
  background: var(--grad);
  display: grid; place-items: center;
  color: #fff;
  margin-bottom: 20px;
  margin-top: 12px;
  box-shadow: 0 10px 24px rgba(75, 31, 163, 0.3);
}
.guarantee__icon svg { width: 30px; height: 30px; }
.guarantee__title {
  font-size: 22px; font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--violet-900);
  margin: 0 0 14px;
  line-height: 1.2;
}
.guarantee__text {
  font-size: 16px; color: var(--text-muted);
  line-height: 1.55; margin: 0;
}
.guarantee__text b { color: var(--text); font-weight: 700; }

/* ============================================================
   09 — ADDONS
   ============================================================ */
.addons {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.addon {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 24px;
  border-radius: var(--r-md);
  transition: background 0.2s;
}
.addon + .addon { border-top: 1px solid var(--border); }
.addon:hover { background: var(--cream-2); }
.addon__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad-soft);
  display: grid; place-items: center;
  color: var(--violet-600);
}
.addon__icon svg { width: 22px; height: 22px; }
.addon__name {
  font-size: 17px; font-weight: 600;
  color: var(--violet-900);
  letter-spacing: -0.01em;
}
.addon__name small {
  display: block;
  font-size: 14px; font-weight: 500;
  color: var(--text-muted);
  margin-top: 4px;
}
.addon__price {
  font-size: 18px; font-weight: 800;
  color: var(--violet-900);
  white-space: nowrap;
  letter-spacing: -0.02em;
}
.addon__price small {
  font-size: 13px; font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 2px;
}

/* ============================================================
   10 — ABOUT
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about__portrait {
  position: relative;
  aspect-ratio: 1;
  max-width: 420px;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}
.about__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about__meta {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: #fff;
  border-radius: var(--r-md);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 10px 30px rgba(21, 7, 46, 0.22), 0 0 0 1px rgba(232, 223, 245, 0.9);
}
.about__meta-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(42, 157, 79, 0.2);
  animation: pulse 2s infinite;
}
.about__meta-text {
  font-size: 15px; font-weight: 600;
  color: var(--violet-900);
  line-height: 1.3;
}
.about__meta-text span {
  display: block;
  font-size: 13px; color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}
.about__h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--violet-900);
  margin: 0 0 20px;
}
.about__h2 em {
  font-style: normal;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about__text p {
  font-size: 17px; color: var(--text-muted);
  line-height: 1.6; margin: 0 0 16px;
}
.about__text p b { color: var(--violet-900); font-weight: 700; }
.about__text p strong { color: var(--text); font-weight: 700; }

.about__ctas {
  display: flex;
  gap: 10px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.about__cta {
  flex: 1 1 0;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: var(--r-pill);
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}
.about__cta img,
.about__cta svg { width: 20px; height: 20px; flex-shrink: 0; display: block; }
.about__cta--tg { background: var(--grad-tg); box-shadow: 0 6px 16px rgba(34, 158, 217, 0.3); }
.about__cta--max { background: var(--grad-max); box-shadow: 0 6px 16px rgba(0, 119, 255, 0.3); }
.about__cta--phone { background: var(--violet-900); box-shadow: 0 6px 16px rgba(21, 7, 46, 0.3); }
.about__cta--phone svg { color: var(--yellow); }
.about__cta:hover { transform: translateY(-2px); filter: brightness(1.06); }
.about__cta--phone:hover { background: var(--violet-800); }

/* ============================================================
   11 — FAQ (smooth accordion)
   ============================================================ */
.faq { max-width: 860px; margin: 0 auto; }
.faq__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.faq__item.is-open {
  border-color: var(--violet-600);
  box-shadow: var(--shadow-md);
}
.faq__summary {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  cursor: pointer;
  font-size: 17px; font-weight: 600;
  color: var(--violet-900);
  letter-spacing: -0.01em;
  line-height: 1.4;
  text-align: left;
  width: 100%;
  background: transparent;
  border: 0;
  font-family: inherit;
  transition: background 0.2s;
}
.faq__summary:hover { background: var(--cream-2); }
.faq__item.is-open .faq__summary { background: var(--cream-2); }
.faq__plus {
  flex-shrink: 0;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--grad-soft);
  border: 1px solid rgba(75, 31, 163, 0.15);
  display: grid; place-items: center;
  position: relative;
  transition: transform 0.3s, background 0.3s;
}
.faq__plus::before, .faq__plus::after {
  content: ''; position: absolute;
  background: var(--violet-600);
  border-radius: 2px;
}
.faq__plus::before { width: 14px; height: 2px; }
.faq__plus::after { width: 2px; height: 14px; transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1); }
.faq__item.is-open .faq__plus { background: var(--grad); border-color: transparent; }
.faq__item.is-open .faq__plus::before,
.faq__item.is-open .faq__plus::after { background: #fff; }
.faq__item.is-open .faq__plus::after { transform: rotate(90deg); }

.faq__wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.faq__item.is-open .faq__wrap {
  grid-template-rows: 1fr;
}
.faq__body {
  overflow: hidden;
  min-height: 0;
}
.faq__body-inner {
  padding: 10px 28px 24px;
  font-size: 16px; color: var(--text-muted);
  line-height: 1.6;
}
.faq__body-inner p { margin: 0 0 12px; }
.faq__body-inner p:last-child { margin-bottom: 0; }

/* ============================================================
   12 — FINAL CTA
   ============================================================ */
.final { text-align: center; max-width: 820px; margin: 0 auto; }
.final__title {
  font-size: clamp(34px, 4.2vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #fff;
  margin: 0 0 20px;
}
.final__title em {
  font-style: normal;
  background: linear-gradient(100deg, #ffd60a, #ff8a5c 70%, #e83f8a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.final__sub {
  font-size: 18px;
  color: var(--text-on-dark-muted);
  line-height: 1.55;
  margin: 0 0 36px;
}
.final__cta {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}
.final__note {
  font-size: 15px; color: var(--text-on-dark-muted);
  max-width: 520px; margin: 0 auto 32px;
  line-height: 1.55;
}
.final__note a { color: #fff; text-decoration: underline; text-decoration-color: rgba(255,255,255,0.3); }
.final__scarcity {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: rgba(255, 214, 10, 0.12);
  border: 1px solid rgba(255, 214, 10, 0.3);
  border-radius: var(--r-pill);
  font-size: 15px;
  color: var(--yellow);
  font-weight: 600;
  text-align: left;
  max-width: 100%;
}
.final__scarcity-text { flex: 1; min-width: 0; }
.final__scarcity-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 214, 10, 0.2);
  animation: pulse-yellow 2s infinite;
}
.final__scarcity b { color: #fff; font-weight: 700; }

/* ============================================================
   FOOTER — simplified
   ============================================================ */
.footer {
  background: #0e041f;
  color: var(--text-on-dark-muted);
  padding: 56px 0 32px;
  position: relative;
}
.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
}
.footer__logo { height: 36px; width: auto; }
.footer__contacts {
  display: flex; flex-wrap: wrap;
  gap: 16px 32px;
  justify-content: center;
  align-items: center;
}
.footer__contacts a {
  display: inline-flex; align-items: center; gap: 10px;
  color: #ece4fa;
  text-decoration: none;
  font-size: 16px; font-weight: 500;
  transition: color 0.2s;
}
.footer__contacts a:hover { color: var(--yellow); }
.footer__contacts svg,
.footer__contacts img {
  width: 18px; height: 18px;
  color: var(--violet-500);
  flex-shrink: 0;
}

.footer__docs {
  display: flex; flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}
.footer__docs a {
  color: var(--text-on-dark-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer__docs a:hover { color: var(--yellow); }

.footer__copy {
  text-align: center;
  font-size: 13px;
  color: rgba(236, 228, 250, 0.5);
  line-height: 1.6;
}
.footer__copy b { color: rgba(236, 228, 250, 0.8); font-weight: 600; }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 12px; left: 12px; right: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 6px;
  box-shadow: 0 -8px 32px rgba(21, 7, 46, 0.15), var(--shadow-md);
  z-index: 90;
  gap: 6px;
}
.sticky-cta a {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 12px 10px;
  border-radius: var(--r-pill);
  text-decoration: none;
  color: #fff;
  font-size: 14px; font-weight: 700;
}
.sticky-cta a svg,
.sticky-cta a img { width: 20px; height: 20px; }
.sticky-cta a span { margin-left: 8px; }
.sticky-cta .sc--tg { background: var(--grad-tg); }
.sticky-cta .sc--max { background: var(--grad-max); }
.sticky-cta .sc--phone { background: var(--violet-900); }
.sticky-cta .sc--phone svg { color: var(--yellow); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie {
  position: fixed;
  left: 16px; right: 16px;
  bottom: 16px;
  max-width: 880px;
  margin: 0 auto;
  z-index: 120;
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 18px 22px;
  animation: cookie-in 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.cookie[hidden] { display: none; }
@keyframes cookie-in {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie__inner {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.cookie__text {
  flex: 1;
  min-width: 240px;
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-muted);
}
.cookie__text a {
  color: var(--violet-600);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}
.cookie__text a:hover { color: var(--pink-500); }
.cookie__btn {
  flex-shrink: 0;
  padding: 12px 32px;
  border: none;
  border-radius: var(--r-pill);
  background: var(--grad);
  color: var(--white);
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(75, 31, 163, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cookie__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(75, 31, 163, 0.42);
}
.cookie__btn:active { transform: translateY(0); }

/* ============================================================
   MODAL (portfolio lightbox)
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(8, 2, 24, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.modal__content {
  position: relative;
  width: 100%;
  max-width: 1200px;
  max-height: calc(100vh - 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: scale(0.96) translateY(12px);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.modal.is-open .modal__content {
  transform: scale(1) translateY(0);
}
.modal__img-wrap {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: auto;
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.modal__img {
  width: 100%;
  height: auto;
  display: block;
}
.modal__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0 4px;
}
.modal__title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.modal__title small {
  display: block;
  font-size: 13px;
  color: var(--text-on-dark-muted);
  font-weight: 500;
  margin-top: 2px;
}
.modal__visit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--r-pill);
  background: var(--yellow);
  color: var(--violet-900);
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 18px rgba(255, 214, 10, 0.35);
}
.modal__visit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 214, 10, 0.45);
}
.modal__visit svg { width: 16px; height: 16px; }
.modal__close {
  position: absolute;
  top: -52px;
  right: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s, transform 0.2s;
}
.modal__close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}
.modal__close svg { width: 18px; height: 18px; }
body.is-modal-open { overflow: hidden; }

/* ============================================================
   FLOATING STICKERS (decorative 3D icons)
   ============================================================ */
.sticker {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 14px 26px rgba(21, 7, 46, 0.22));
  animation: sticker-float 5s ease-in-out infinite;
}
.sticker--timer {
  top: 8%;
  right: 4%;
  width: 96px;
  height: 96px;
  animation-duration: 5.5s;
}
.sticker--bolt {
  bottom: 12%;
  left: 3%;
  width: 74px;
  height: 92px;
  animation-duration: 4.5s;
  animation-delay: -1.2s;
}
.sticker--shield {
  top: 12%;
  right: 5%;
  width: 88px;
  height: 96px;
  animation-duration: 6s;
  animation-delay: -0.6s;
}
.sticker--star {
  top: 14%;
  left: 5%;
  width: 80px;
  height: 80px;
  animation-duration: 4.8s;
  animation-delay: -2s;
}
.sticker--check {
  bottom: 8%;
  right: 6%;
  width: 82px;
  height: 82px;
  animation-duration: 5s;
  animation-delay: -1.5s;
}
.sticker--rocket-small {
  top: 18%;
  right: 6%;
  width: 78px;
  height: 94px;
  animation-duration: 5.4s;
  animation-delay: -0.8s;
}
@media (max-width: 1100px) {
  .sticker { transform: scale(0.85); opacity: 0.85; }
  .sticker--timer { top: 4%; }
}
@media (max-width: 720px) {
  .sticker--timer, .sticker--shield { width: 64px; height: 64px; }
  .sticker--bolt { width: 52px; height: 64px; }
  .sticker--star, .sticker--check { width: 56px; height: 56px; }
  .sticker--rocket-small { width: 54px; height: 64px; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.25); }
  50% { box-shadow: 0 0 0 8px rgba(46, 204, 113, 0.1); }
}
@keyframes pulse-yellow {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 214, 10, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(255, 214, 10, 0.05); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes rocket-launch {
  0%, 100% { transform: translate(-50%, -50%) rotate(-2deg); }
  50% { transform: translate(-50%, -54%) rotate(1deg); }
}
@keyframes flame-flicker {
  0% { opacity: 0.75; transform: translateX(-50%) scaleY(1); }
  100% { opacity: 1; transform: translateX(-50%) scaleY(1.15); }
}
@keyframes morph {
  0%, 100% { border-radius: 48% 52% 60% 40% / 50% 45% 55% 50%; }
  33% { border-radius: 60% 40% 50% 50% / 40% 55% 45% 60%; }
  66% { border-radius: 42% 58% 45% 55% / 55% 40% 60% 45%; }
}
@keyframes bolt-pulse {
  0%, 100% { transform: scale(1) rotate(0); }
  50% { transform: scale(1.08) rotate(-4deg); filter: drop-shadow(0 14px 28px rgba(255, 214, 10, 0.85)); }
}
@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}
@keyframes sticker-float {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-14px) rotate(6deg); }
}
/* Scroll reveal — classes applied by JS so no-JS users see content instantly */
.anim-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}
.anim-in.is-in { opacity: 1; transform: translateY(0); }
.anim-in.anim-in--d1 { transition-delay: 0.08s; }
.anim-in.anim-in--d2 { transition-delay: 0.16s; }
.anim-in.anim-in--d3 { transition-delay: 0.24s; }
.anim-in.anim-in--d4 { transition-delay: 0.32s; }
.anim-in.anim-in--d5 { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
  .anim-in { opacity: 1; transform: none; transition: none; }
}

.reveal { opacity: 0; transform: translateY(20px); animation: reveal 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }
.reveal--1 { animation-delay: 0.05s; }
.reveal--2 { animation-delay: 0.15s; }
.reveal--3 { animation-delay: 0.25s; }
.reveal--4 { animation-delay: 0.35s; }
.reveal--5 { animation-delay: 0.45s; }
.reveal--6 { animation-delay: 0.55s; }
.reveal--7 { animation-delay: 0.65s; }
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nav__menu { display: none; }
  .hero { grid-template-columns: 1fr; gap: 32px; min-height: auto; }
  .hero__right { height: 480px; order: 2; }
  .rocket { width: min(65%, 300px); }

  .who__grid { grid-template-columns: 1fr; }
  .pain { grid-template-columns: 1fr; gap: 40px; }
  .included { grid-template-columns: 1fr; gap: 40px; }
  .included__price-card { position: relative; top: auto; }
  .why__grid { grid-template-columns: 1fr; }
  .portfolio__grid { grid-template-columns: repeat(2, 1fr); }
  .numbers__grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-left: none; border-top: 1px solid rgba(255, 255, 255, 0.08); }
  .stat:first-child, .stat:nth-child(2) { border-top: none; }
  .guarantees__grid { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; gap: 40px; }
  .about__portrait { max-width: 340px; margin: 0 auto; }
}

.lbl--short { display: none; }

@media (max-width: 720px) {
  .nav-wrap { display: none; }

  .hero__h1 { font-size: clamp(34px, 10vw, 48px); }
  .hero__price { font-size: 30px; padding: 8px 16px; }
  .hero__bullets li { font-size: 15px; }
  .btn { padding: 14px 18px; font-size: 15px; flex: 1 1 100%; justify-content: center; }

  .btn--dual .lbl--full,
  .included__price-cta--dual .lbl--full,
  .about__cta--dual .lbl--full { display: none; }
  .btn--dual .lbl--short,
  .included__price-cta--dual .lbl--short,
  .about__cta--dual .lbl--short { display: inline; }

  .hero__right { height: 420px; }
  .rocket { width: 60%; }
  .card-float { padding: 10px 12px; }
  .card-float__icon { width: 32px; height: 32px; }
  .card-float__icon svg { width: 16px; height: 16px; }
  .card-float__value { font-size: 16px; }
  .card-float--price .card-float__value { font-size: 18px; }
  .card-float--price { left: -14px; bottom: 40px; }
  .card-float--time { right: -8px; top: 20px; }
  .card-float--rating { right: 20px; bottom: 0; }
  .bolt-big { width: 56px; height: 72px; top: 20px; left: 0; }

  .portfolio__grid { grid-template-columns: 1fr; }
  .portfolio__zoom { opacity: 1; transform: translateY(0); }

  .addon { grid-template-columns: 40px 1fr; gap: 14px; padding: 16px; align-items: start; }
  .addon__price { grid-column: 2 / -1; text-align: left; }
  .process__step { grid-template-columns: 52px 1fr; gap: 14px; padding: 18px 18px 18px 0; align-items: start; }
  .process__num { width: 44px; height: 44px; margin-left: 12px; font-size: 18px; }

  .footer { padding: 40px 0 88px; }
  .footer__contacts { gap: 12px 20px; }
  .footer__contacts a { font-size: 15px; }

  .cookie {
    left: 8px; right: 8px;
    padding: 14px 16px;
  }
  .cookie__inner { gap: 14px; }
  .cookie__text { font-size: 13.5px; min-width: 0; }
  .cookie__btn { width: 100%; padding: 12px 20px; }

  .modal { padding: 12px; }
  .modal__close { top: auto; right: 12px; bottom: calc(100% + 12px); top: -48px; }
  .modal__meta { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 420px) {
  .nav-btn { padding: 8px 10px; }
  .hero__bullets { max-width: none; }
  .included__price-card { padding: 32px 24px; }
  .guarantee, .who__card, .why__tile { padding: 28px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   BLOG — list page + post page (cream-only)
   ============================================================ */

/* Breadcrumbs */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.crumbs a {
  color: var(--violet-600);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.crumbs a:hover { color: var(--pink-500); }
.crumbs__sep { color: var(--text-muted); opacity: 0.6; }
.crumbs__current { color: var(--text); font-weight: 600; }

/* Compact hero for blog pages */
.blog-hero {
  padding: clamp(40px, 5vw, 72px) 0 clamp(20px, 2vw, 32px);
}
.blog-hero__title {
  font-size: clamp(34px, 4.4vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--violet-900);
  margin: 0 0 16px;
  max-width: 880px;
}
.blog-hero__title em {
  font-style: normal;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.blog-hero__sub {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
  max-width: 720px;
}

/* Category pills with counts */
.cat-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 32px 0 0;
}
.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 8px 9px 16px;
  border-radius: var(--r-pill);
  background: var(--white);
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, color 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.cat-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--violet-600);
  color: var(--violet-600);
}
.cat-pill__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 22px;
  padding: 0 8px;
  border-radius: var(--r-pill);
  background: var(--grad-soft);
  color: var(--violet-600);
  font-size: 12px;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}
.cat-pill.is-active {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(75, 31, 163, 0.3);
}
.cat-pill.is-active .cat-pill__count {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

/* Featured (first) card — full width */
.blog-featured { margin-top: 32px; }
.post-card.post-card--featured {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.post-card.post-card--featured:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.post-card.post-card--featured .post-card__cover {
  width: auto;
  height: auto;
  max-width: 300px;
  aspect-ratio: auto;
  max-height: none;
  margin: clamp(28px, 3.5vw, 48px);
  align-self: stretch;
}
.post-card.post-card--featured .post-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.post-card.post-card--featured .post-card__body {
  padding: clamp(28px, 3.5vw, 48px);
  gap: 16px;
  justify-content: center;
}
.post-card.post-card--featured .post-card__title {
  font-size: clamp(24px, 2.6vw, 34px);
}
.post-card.post-card--featured .post-card__lead {
  font-size: 17px;
}

/* Post cards grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 28px;
}
.blog-grid__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 24px;
  color: var(--text-muted);
  font-size: 16px;
}

.post-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.post-card__cover {
  width: 100px;
  aspect-ratio: 1 / 1;
  margin: 25px 25px 0 25px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--grad-soft);
  display: block;
}
.post-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}
.post-card__cover--ph { background: var(--grad-soft); }
.post-card__body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.post-card__cat {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: var(--grad-soft);
  border: 1px solid rgba(75, 31, 163, 0.14);
  font-size: 12px;
  font-weight: 700;
  color: var(--violet-600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.post-card__title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--violet-900);
  margin: 0;
}
.post-card__lead {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}
.post-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: auto;
  padding-top: 4px;
}
.post-card__meta-dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--text-muted); opacity: 0.5;
}

/* Post page layout — content left, sidebar right */
.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 56px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}
.post-layout__main { min-width: 0; }

/* Sidebar (CTA + TOC) */
.post-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.post-cta {
  background: linear-gradient(135deg, var(--violet-900) 0%, var(--violet-700) 100%);
  border-radius: var(--r-xl);
  padding: 24px 24px 20px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.post-cta::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 63, 138, 0.45), transparent 70%);
  z-index: -1;
}
.post-cta__eyebrow {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--yellow);
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.post-cta__eyebrow::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--yellow);
}
.post-cta__title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin: 0 0 8px;
}
.post-cta__sub {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
  margin: 0 0 16px;
}
.post-cta__btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.post-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: var(--r-pill);
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s, filter 0.2s;
}
.post-cta__btn img,
.post-cta__btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.post-cta__btn--tg { background: var(--grad-tg); }
.post-cta__btn--max { background: var(--grad-max); }
.post-cta__btn--phone { background: var(--yellow); color: var(--violet-900); }
.post-cta__btn--phone svg { color: var(--violet-900); }
.post-cta__btn:hover { transform: translateY(-2px); filter: brightness(1.05); }

/* TOC inside sidebar */
.toc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 22px 24px;
  font-size: 14px;
}
.toc__label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--violet-600);
  margin-bottom: 14px;
}
.toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toc__list a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.2s;
  display: block;
  padding-left: 12px;
  border-left: 2px solid transparent;
}
.toc__list a:hover { color: var(--violet-600); }
.toc__list .is-active > a {
  color: var(--violet-900);
  font-weight: 700;
  border-left-color: var(--violet-600);
}

/* Article hero */
.post-hero__cat {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: var(--grad-soft);
  border: 1px solid rgba(75, 31, 163, 0.14);
  font-size: 13px;
  font-weight: 700;
  color: var(--violet-600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.post-hero__title {
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--violet-900);
  margin: 0 0 20px;
}
.post-hero__title em {
  font-style: normal;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.post-hero__lead {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 24px;
}
.post-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}
.post-hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Long-form article body */
.post-body p,
.post-body ul,
.post-body ol,
.post-body table,
.post-body blockquote {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 22px;
}
.post-body h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.18;
  color: var(--violet-900);
  margin: 56px 0 20px;
  scroll-margin-top: 100px;
}
.post-body h3 {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--violet-900);
  margin: 36px 0 14px;
  scroll-margin-top: 100px;
}
.post-body ul,
.post-body ol { padding-left: 26px; }
.post-body li { margin-bottom: 10px; }
.post-body li::marker { color: var(--violet-600); }
.post-body strong,
.post-body b { font-weight: 700; color: var(--violet-900); }
.post-body a {
  color: var(--violet-600);
  text-decoration: none;
  border-bottom: 1px solid rgba(75, 31, 163, 0.3);
  transition: color 0.2s, border-color 0.2s;
}
.post-body a:hover {
  color: var(--pink-500);
  border-bottom-color: var(--pink-500);
}
.post-body blockquote {
  padding: 18px 24px;
  border-left: 4px solid var(--violet-600);
  background: var(--grad-soft);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-style: italic;
  color: var(--violet-900);
}
.post-body blockquote p:last-child { margin-bottom: 0; }
.post-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.post-body th,
.post-body td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.post-body th {
  background: var(--cream-2);
  font-weight: 700;
  color: var(--violet-900);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.post-body tr:last-child td { border-bottom: none; }
.post-body hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}

/* Inline images inside article body — float left, 350x350, rounded */
.post-body p img,
.post-body > img {
  float: left;
  width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
  margin: 6px 28px 14px 0;
  shape-outside: inset(0 round 10px);
}
.post-body h2,
.post-body h3 { clear: both; }

@media (max-width: 720px) {
  .post-body p img,
  .post-body > img {
    float: none;
    width: 100%;
    height: auto;
    max-width: 460px;
    display: block;
    margin: 24px auto;
    shape-outside: none;
  }
}

/* Inline figure (small image inside article body) */
.post-body__figure {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.post-body__figure img {
  max-width: 460px;
  width: 100%;
  height: auto;
  border-radius: var(--r-md);
  background: var(--grad-soft);
  box-shadow: var(--shadow-sm);
}
.post-body__figure figcaption {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
  max-width: 460px;
}

.post-body__callout {
  display: flex;
  gap: 14px;
  padding: 20px 24px;
  background: var(--cream-2);
  border-left: 4px solid var(--yellow);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin: 28px 0;
}
.post-body__callout svg { width: 24px; height: 24px; color: var(--violet-900); flex-shrink: 0; margin-top: 4px; }
.post-body__callout p { font-size: 16px; margin: 0; line-height: 1.55; }

/* Related posts */
.related {
  max-width: 1180px;
  margin: 0 auto;
}
.related__title {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--violet-900);
  margin: 0 0 24px;
}
.related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Responsive */
@media (max-width: 1100px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .post-card.post-card--featured { grid-template-columns: 1fr; }
  .post-card.post-card--featured .post-card__cover { min-height: 240px; aspect-ratio: 1 / 1; margin: 16px; }
  .post-layout { grid-template-columns: 1fr; gap: 32px; }
  .post-sidebar { position: static; flex-direction: column-reverse; }
  .post-cta { padding: 28px; }
  .related__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .related__grid { grid-template-columns: 1fr; }
  .post-card__title { font-size: 20px; }
  .post-body p,
  .post-body ul,
  .post-body ol,
  .post-body blockquote { font-size: 17px; }
  .post-body table { font-size: 14px; }
  .post-body th,
  .post-body td { padding: 10px 12px; }
}

/* ============================================================
   MOBILE HEADER + BURGER + MENU OVERLAY
   ============================================================ */
.nav__burger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--violet-900);
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s, background 0.2s;
}
.nav__burger:hover { transform: translateY(-2px); background: var(--violet-800); }
.nav__burger svg { width: 20px; height: 20px; display: block; }
.nav__burger .ic-close { display: none; }
body.is-menu-open .nav__burger .ic-burger { display: none; }
body.is-menu-open .nav__burger .ic-close { display: inline-block; }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--grad-dark);
  color: #fff;
  z-index: 110;
  padding: 100px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  overflow-y: auto;
}
body.is-menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
}
body.is-menu-open { overflow: hidden; }
.mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.mobile-menu__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  letter-spacing: -0.01em;
}
.mobile-menu__list a::after {
  content: '\203A';
  font-size: 24px;
  color: var(--yellow);
  opacity: 0.7;
}
.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.mobile-menu__close:hover { background: rgba(255, 255, 255, 0.16); transform: rotate(90deg); }
.mobile-menu__close svg { width: 18px; height: 18px; display: block; }

.mobile-menu__contacts {
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-menu__contact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-on-dark-muted);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}
.mobile-menu__contact svg,
.mobile-menu__contact img { width: 20px; height: 20px; flex-shrink: 0; }
.mobile-menu__contact:hover { color: var(--yellow); }

/* On mobile: re-enable nav, compress to logo + 2 icons + burger */
@media (max-width: 720px) {
  .nav-wrap { display: block; padding-top: 8px; top: 8px; z-index: 130; }
  .nav { padding: 6px 6px 6px 14px; gap: 8px; }
  .nav__brand { gap: 10px; min-width: 0; }
  .nav__brand img { height: 28px; }
  .nav__tagline { display: none; }
  .nav__menu { display: none; }
  .nav__cta { gap: 4px; flex-shrink: 0; }
  .nav-btn { padding: 10px; width: 40px; height: 40px; justify-content: center; }
  .nav-btn span { display: none; }
  .nav-btn--icon { padding: 0; }
  .nav-btn--phone { display: none; }
  .nav-btn--lp { display: none; }
  .nav__burger { display: inline-flex; }
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 48px;
}
.pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--r-pill);
  background: var(--white);
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s, color 0.2s, background 0.2s;
}
.pagination__btn:hover:not([disabled]):not(.is-active) {
  transform: translateY(-2px);
  border-color: var(--violet-600);
  color: var(--violet-600);
}
.pagination__btn.is-active {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(75, 31, 163, 0.3);
}
.pagination__btn[disabled] { opacity: 0.35; cursor: not-allowed; }
.pagination__ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  color: var(--text-muted);
}
.pagination__btn--nav svg { width: 14px; height: 14px; }

/* Cat filter — bit of breathing room above for hover lift */
.cat-filter { padding-top: 4px; }

/* ============================================================
   /lp/ — рекламный лендинг под Direct.
   Кнопка-форма + lead form modal + thanks page.
   ============================================================ */

/* Primary "Оставить заявку" button (gradient violet→pink, под бренд) */
.btn--primary,
.btn--lp {
  background: var(--grad);
  box-shadow: 0 6px 18px rgba(75, 31, 163, 0.35);
  color: #fff;
}
.btn--primary:hover,
.btn--lp:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(232, 63, 138, 0.4);
}
.btn--lg { padding: 18px 32px; font-size: 17px; }

/* Single-CTA layouts (override 3-column .cta-group children) */
.cta-group--single,
.about__ctas--single,
.final__cta--single {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.cta-group--single .btn,
.about__ctas--single .btn,
.final__cta--single .btn {
  flex: 0 1 auto;
}
.included__price-ctas--single {
  display: flex;
  margin-top: 18px;
}
.included__price-ctas--single .btn {
  width: 100%;
  justify-content: center;
}

/* Header CTA "Оставить заявку" (вместо 3 иконок) */
.nav-btn--lp {
  background: var(--grad);
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(75, 31, 163, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.nav-btn--lp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(232, 63, 138, 0.35);
}

/* Sticky CTA (mobile) — single button variant */
.sticky-cta--lp {
  display: none;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px rgba(21, 7, 46, 0.08);
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
}
.sticky-cta--lp .btn { width: 100%; justify-content: center; }
@media (max-width: 720px) {
  .sticky-cta--lp { display: flex; }
}

/* Mobile menu form button */
.mobile-menu__form-btn { width: 100%; justify-content: center; }

/* ============================================================
   Lead form modal
   ============================================================ */
.modal--form .modal__content {
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 32px 32px;
  background: #fff;
  border-radius: var(--r-lg);
  position: relative;
}
.modal--form .modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream-2);
  border: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.15s;
}
.modal--form .modal__close:hover { background: var(--border); }
.modal--form .modal__close svg { width: 18px; height: 18px; color: var(--text); }

.lead-form__title {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.lead-form__intro {
  margin: 0 0 22px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.5;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lead-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lead-form__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}
.lead-form__req { color: var(--pink-500); font-style: normal; font-weight: 600; }

.lead-form__field input[type="text"],
.lead-form__field input[type="tel"] {
  font-family: var(--font-sans);
  font-size: 16px;
  padding: 13px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  background: #fff;
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}
.lead-form__field input:focus-visible {
  outline: none;
  border-color: var(--violet-500);
  box-shadow: 0 0 0 3px rgba(75, 31, 163, 0.15);
}
.lead-form__field input::placeholder { color: #b8aacf; }

.lead-form__radio-group {
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lead-form__legend {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  padding: 0 4px;
}
.lead-form__radio {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 15px;
  color: var(--text);
  padding: 4px 0;
}
.lead-form__radio input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--violet-500);
  cursor: pointer;
}

.lead-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
}
.lead-form__checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--violet-500);
  cursor: pointer;
  flex-shrink: 0;
}
.lead-form__checkbox a {
  color: var(--violet-600);
  text-decoration: underline;
}
.lead-form__checkbox a:hover { color: var(--pink-500); }

.lead-form__error {
  background: #fff0f2;
  border: 1px solid #ffd0d6;
  color: #b91327;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  font-size: 14px;
  line-height: 1.45;
}

.lead-form__submit {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}
.lead-form__submit:disabled { opacity: 0.65; cursor: progress; transform: none !important; }

@media (max-width: 480px) {
  .modal--form .modal__content {
    padding: 32px 20px 24px;
    max-height: 100vh;
    border-radius: 0;
  }
  .lead-form__title { font-size: 22px; }
}

/* ============================================================
   /lp/thanks/ page
   ============================================================ */
.thanks-header { padding: 14px 0; border-bottom: 1px solid var(--border); }
.thanks-header .nav { padding: 0; }

.thanks { padding: 60px 0 80px; }
.thanks__inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.thanks__icon {
  margin: 0 auto 20px;
  width: 64px;
  height: 64px;
}
.thanks__title {
  font-size: 38px;
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.thanks__lead {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 28px;
}

.thanks__channels {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.thanks__channel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}
.thanks__channel img { width: 22px; height: 22px; }
.thanks__channel svg { width: 20px; height: 20px; }
.thanks__channel--tg { background: var(--grad-tg); box-shadow: 0 6px 18px rgba(34, 158, 217, 0.3); }
.thanks__channel--max { background: var(--grad-max); box-shadow: 0 6px 18px rgba(0, 119, 255, 0.3); }
.thanks__channel--phone { background: var(--violet-900); box-shadow: 0 6px 18px rgba(21, 7, 46, 0.3); }
.thanks__channel--phone svg { color: var(--yellow); }
.thanks__channel:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(21, 7, 46, 0.18);
}

.thanks__hint {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 40px;
}

.thanks__blog {
  text-align: left;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  margin-top: 12px;
}
.thanks__blog-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 14px;
  color: var(--text);
}
.thanks__blog-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.thanks__blog-list a {
  color: var(--violet-600);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.45;
}
.thanks__blog-list a:hover { color: var(--pink-500); text-decoration: underline; }
.thanks__blog-more {
  display: inline-block;
  color: var(--text-muted);
  font-size: 14px;
  text-decoration: none;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  width: 100%;
}
.thanks__blog-more:hover { color: var(--violet-600); }

@media (max-width: 720px) {
  .thanks { padding: 40px 0 60px; }
  .thanks__title { font-size: 28px; }
  .thanks__lead { font-size: 15px; }
  .thanks__channels { flex-direction: column; align-items: stretch; }
  .thanks__channel { justify-content: center; }
}

/* ============================================================
   LP — без курсива на всей странице (em оставляем для подсветки)
   ============================================================ */
body.lp em,
body.lp i { font-style: normal; }

/* ============================================================
   LP — Hero bonus badge (рядом с ценой)
   ============================================================ */
.hero__bonus-badge {
  display: inline-flex; align-items: center;
  padding: 9px 16px;
  background: var(--grad);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--r-pill);
  box-shadow: 0 8px 20px rgba(75, 31, 163, 0.3);
  white-space: nowrap;
  line-height: 1;
}

/* ============================================================
   LP — Ya.Bonus math block
   ============================================================ */
.ya-bonus__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
}
.ya-bonus__math {
  margin: 28px 0 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 6px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.ya-bonus__row {
  display: grid;
  grid-template-columns: minmax(170px, 0.6fr) 1fr;
  gap: 20px;
  align-items: center;
  padding: 16px 20px;
  border-radius: var(--r-md);
  font-size: 16px;
  line-height: 1.4;
}
.ya-bonus__row + .ya-bonus__row { border-top: 1px solid var(--border); }
.ya-bonus__sum {
  font-weight: 700;
  color: var(--violet-900);
  font-size: 17px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.ya-bonus__what {
  color: var(--text-muted);
  font-size: 15px;
}
.ya-bonus__row--accent {
  background: rgba(255, 214, 10, 0.22);
  border-top-color: transparent !important;
}
.ya-bonus__row--accent .ya-bonus__sum,
.ya-bonus__row--accent .ya-bonus__sum b { color: var(--violet-900); font-size: 19px; }
.ya-bonus__row--total {
  background: linear-gradient(135deg, var(--violet-900) 0%, var(--violet-700) 100%);
  border-top-color: transparent !important;
}
.ya-bonus__row--total .ya-bonus__sum,
.ya-bonus__row--total .ya-bonus__sum b { color: var(--yellow); font-size: 22px; }
.ya-bonus__row--total .ya-bonus__what { color: rgba(255, 255, 255, 0.88); }
.ya-bonus__highlight {
  font-size: clamp(19px, 1.7vw, 24px);
  font-weight: 800;
  color: var(--violet-900);
  letter-spacing: -0.01em;
  line-height: 1.4;
  margin: 0 0 18px;
  padding: 22px 26px;
  background: linear-gradient(135deg, rgba(255, 214, 10, 0.28), rgba(232, 63, 138, 0.16));
  border-radius: var(--r-lg);
}
.ya-bonus__highlight b {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ya-bonus__note {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 20px;
}
.ya-bonus__cta { display: flex; flex-wrap: wrap; }
.ya-bonus__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 100px;
}
.ya-bonus__visual img {
  max-width: 100%;
  height: auto;
  border-radius: var(--r-xl);
}

/* ============================================================
   LP — Included two columns
   ============================================================ */
.included__cols.included--two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.included__col-title {
  font-size: 15px; font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--violet-600);
  margin: 0 0 14px;
}
.included__list--col { gap: 12px; }
.included__list--col .included__item { padding: 16px 18px; }
.included__list--col .included__item-body strong { font-size: 16px; }
.included__list--col .included__item-body span { font-size: 14px; line-height: 1.45; }

/* ============================================================
   LP — Niches grid (10 cards with generated illustrations)
   ============================================================ */
.ya-niches__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.ya-niche {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px 16px;
  display: flex; flex-direction: column;
  gap: 10px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.ya-niche:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.ya-niche__icon {
  width: 88px; height: 88px;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  background: var(--cream-2);
  margin: 0 auto 4px;
  overflow: hidden;
}
.ya-niche__icon img {
  width: 88px; height: 88px;
  object-fit: cover;
}
.ya-niche__name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--violet-900);
  margin: 0 0 6px;
  text-align: center;
  line-height: 1.25;
  min-height: 38px;
}
.ya-niche__metrics {
  display: grid;
  gap: 6px;
  margin-top: auto;
}
.ya-niche__metric {
  display: flex; flex-direction: column;
  gap: 2px;
  padding: 8px 12px;
  border-radius: var(--r-sm);
  background: var(--cream);
}
.ya-niche__metric-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  font-weight: 600;
}
.ya-niche__metric-value {
  font-size: 15px;
  font-weight: 800;
  color: var(--violet-900);
  letter-spacing: -0.01em;
}
.ya-niche__cpl { color: var(--violet-600); }
.ya-niche__cr { color: var(--green); }
.ya-niches__note {
  margin: 28px 0 0;
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.ya-niches__note em { font-style: italic; }

/* ============================================================
   LP — Guarantees 4-grid (расширение)
   ============================================================ */
.guarantees__grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ============================================================
   LP — Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .ya-bonus__inner { grid-template-columns: 1fr; gap: 28px; }
  .ya-bonus__visual { order: -1; max-width: 360px; margin: 0 auto; position: static; top: auto; }
  .ya-niches__grid { grid-template-columns: repeat(3, 1fr); }
  .guarantees__grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .hero__bonus-badge { font-size: 11px; padding: 7px 12px; letter-spacing: 0.03em; }
  .hero__price-row { gap: 12px; }
  .ya-bonus__row { grid-template-columns: 1fr; gap: 4px; padding: 14px 18px; }
  .ya-bonus__sum { font-size: 16px; white-space: normal; }
  .ya-bonus__row--accent .ya-bonus__sum,
  .ya-bonus__row--accent .ya-bonus__sum b { font-size: 17px; }
  .ya-bonus__row--total .ya-bonus__sum,
  .ya-bonus__row--total .ya-bonus__sum b { font-size: 19px; }
  .ya-bonus__highlight { padding: 18px 20px; }
  .included__cols.included--two-col { grid-template-columns: 1fr; gap: 20px; }
  .ya-niches__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .ya-niche { padding: 14px 12px; }
  .ya-niche__icon { width: 72px; height: 72px; }
  .ya-niche__icon img { width: 72px; height: 72px; }
  .ya-niche__name { font-size: 14px; min-height: 0; }
  .guarantees__grid--4 { grid-template-columns: 1fr; }
}
