/* ============================================================
   ROOT & TOKENS
============================================================ */
:root {
  --dark:       oklch(0.19 0.06 155);
  --dark-2:     oklch(0.24 0.08 155);
  --forest:     oklch(0.22 0.09 155);
  --forest-m:   oklch(0.34 0.08 155);
  --forest-l:   oklch(0.52 0.07 155);
  --accent:     oklch(0.68 0.10 65);
  --accent-h:   oklch(0.60 0.11 65);
  --bg:         oklch(0.97 0.003 140);
  --bg-alt:     oklch(0.93 0.006 140);
  --text:       oklch(0.18 0.02 200);
  --text-mid:   oklch(0.40 0.02 180);
  --muted:      oklch(0.55 0.02 170);
  --border:     oklch(0.87 0.008 140);
  --max:        #7c5cbf;
  --max-h:      #6a4aad;
  --vk:         #2787f5;
  --vk-h:       #1a6fd4;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Manrope', system-ui, sans-serif;

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  100px;

  --sh-sm: 0 2px 8px oklch(0 0 0 / .06);
  --sh-md: 0 8px 28px oklch(0 0 0 / .08);
  --sh-lg: 0 20px 56px oklch(0 0 0 / .13);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  padding-bottom: 82px;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ============================================================
   TYPOGRAPHY HELPERS
============================================================ */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-m);
  margin-bottom: 0.75rem;
}
.section-label--light { color: rgba(255,255,255,.55); }

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
}
.section-title--light { color: #fff; }

.section-sub {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 56ch;
  line-height: 1.65;
}

.section-head {
  margin-bottom: 3rem;
}

/* ============================================================
   REVEAL ANIMATIONS
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  padding: 0.85rem 1.5rem;
  border-radius: var(--r-xl);
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.btn__icon { width: 18px; height: 18px; flex-shrink: 0; }

.btn--primary {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 4px 16px oklch(0.22 0.09 155 / .35);
}
.btn--primary:hover { background: var(--forest-m); }

.btn--outline {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
}
.btn--outline:hover { background: var(--forest); color: #fff; }

.btn--max  { background: var(--max); color: #fff; box-shadow: 0 4px 16px oklch(0.4 0.12 295 / .3); }
.btn--max:hover { background: var(--max-h); }

.btn--vk   { background: var(--vk);  color: #fff; box-shadow: 0 4px 16px oklch(0.5 0.18 255 / .3); }
.btn--vk:hover  { background: var(--vk-h); }

.btn--phone {
  background: var(--bg-alt);
  color: var(--dark);
  border: 1.5px solid var(--border);
}
.btn--phone:hover { background: var(--border); }

.btn--lg { font-size: 1rem; padding: 1rem 1.75rem; }

.btn--full { width: 100%; justify-content: center; }

.btn--hero-primary {
  background: #fff;
  color: var(--forest);
  font-size: 1rem;
  padding: 1rem 1.75rem;
  box-shadow: 0 4px 20px oklch(0 0 0 / .2);
}
.btn--hero-primary:hover { background: oklch(0.97 0.003 140); }

.btn--hero-ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
  font-size: 1rem;
  padding: 1rem 1.75rem;
  backdrop-filter: blur(4px);
}
.btn--hero-ghost:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.6); }

/* VK secondary — smaller than Max primary */
.btn--hero-secondary {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.2);
  font-size: 0.875rem;
  padding: 0.75rem 1.25rem;
  backdrop-filter: blur(4px);
}
.btn--hero-secondary:hover { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.4); }

.btn--hero-phone {
  background: transparent;
  color: rgba(255,255,255,.7);
  font-size: 0.9rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-xl);
}
.btn--hero-phone:hover { color: #fff; border-color: rgba(255,255,255,.5); }

.btn--b2b {
  background: #fff;
  color: var(--forest);
  padding: 0.9rem 2rem;
  border-radius: var(--r-xl);
  font-weight: 700;
  box-shadow: var(--sh-md);
  display: inline-flex;
  align-items: center;
  transition: background 0.2s, transform 0.15s;
}
.btn--b2b:hover { background: oklch(0.95 0.008 140); transform: translateY(-1px); }

.btn--form-submit {
  width: 100%;
  background: var(--forest);
  color: #fff;
  padding: 1rem;
  border-radius: var(--r-md);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 4px 16px oklch(0.22 0.09 155 / .3);
  transition: background 0.2s, transform 0.15s;
}
.btn--form-submit:hover { background: var(--forest-m); transform: translateY(-1px); }

/* ============================================================
   ANNOUNCE BAR
============================================================ */
.announce-bar {
  background: var(--forest);
  color: #fff;
  text-align: center;
  padding: 0.55rem 3rem 0.55rem 1.25rem;
  font-size: 0.85rem;
  line-height: 1.5;
  position: relative;
}
.announce-bar strong { color: var(--accent); }
.announce-bar.hidden { display: none; }
.announce-bar__close {
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.6);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  border-radius: var(--r-sm);
}
.announce-bar__close:hover { color: #fff; background: rgba(255,255,255,.08); }
.announce-bar__close svg { width: 14px; height: 14px; }

/* ============================================================
   HEADER
============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.header.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 16px oklch(0 0 0 / .06);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
}
.logo-icon {
  width: 36px;
  height: 36px;
  display: block;
  flex-shrink: 0;
}
.logo-icon--footer {
  color: rgba(255,255,255,.6);
}
.header__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header__phone {
  display: none;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
  transition: color 0.2s;
}
.header__phone:hover { color: var(--forest); }
@media (min-width: 600px) { .header__phone { display: block; } }

/* ── Hamburger ── */
.hamburger {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r-sm);
  transition: background 0.2s;
}
.hamburger:hover { background: var(--bg-alt); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* ============================================================
   MOBILE DRAWER
============================================================ */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
}
.drawer.open { visibility: visible; }

.drawer__overlay {
  position: absolute;
  inset: 0;
  background: oklch(0 0 0 / .5);
  opacity: 0;
  transition: opacity 0.3s;
  backdrop-filter: blur(2px);
}
.drawer.open .drawer__overlay { opacity: 1; }

.drawer__panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(320px, 88vw);
  background: var(--bg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.drawer.open .drawer__panel { transform: none; }

.drawer__close {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  color: var(--muted);
  transition: background 0.2s, color 0.2s;
}
.drawer__close:hover { background: var(--bg-alt); color: var(--dark); }
.drawer__close svg { width: 14px; height: 14px; }

.drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.drawer__nav a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  padding: 0.7rem 0.75rem;
  border-radius: var(--r-sm);
  transition: background 0.2s, color 0.2s;
}
.drawer__nav a:hover { background: var(--bg-alt); color: var(--forest); }

.drawer__actions {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: auto;
}
.drawer__phone {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  padding: 0.5rem 0.75rem;
  text-align: center;
  display: block;
  letter-spacing: 0.01em;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: clamp(480px, 85vh, 820px);
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    oklch(0.10 0.04 195 / .85) 0%,
    oklch(0.14 0.05 175 / .72) 50%,
    oklch(0.10 0.03 190 / .60) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 5rem 0 4rem;
  width: 100%;
}
.hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 1rem;
}
.hero__services {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  background: oklch(from var(--accent) l c h / 0.15);
  border: 1px solid oklch(from var(--accent) l c h / 0.3);
  display: inline-block;
  padding: 0.3em 0.85em;
  border-radius: 2em;
  margin-bottom: 1.25rem;
}
.hero__h1 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  max-width: 18ch;
  margin-bottom: 1.25rem;
}
.hero__sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,.8);
  max-width: 50ch;
  line-height: 1.65;
  margin-bottom: 2rem;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.chip {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  padding: 0.35rem 0.85rem;
  border-radius: var(--r-xl);
  backdrop-filter: blur(4px);
  white-space: nowrap;
}

/* ============================================================
   STATS
============================================================ */
.stats {
  background: var(--dark);
  padding: 2.5rem 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 560px) {
  .stats__grid { grid-template-columns: 1fr; gap: 1rem; }
}
.stat { text-align: center; }
.stat__num {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat__label {
  font-size: 0.82rem;
  color: rgba(255,255,255,.65);
  line-height: 1.4;
}

/* ============================================================
   SITUATIONS
============================================================ */
.situations {
  padding: 5rem 0;
  background: var(--bg);
}
.sit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 1.5rem;
}
.sit-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}
.sit-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.sit-card__img {
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.sit-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.sit-card:hover .sit-card__img img { transform: scale(1.04); }
.sit-card__body {
  padding: 1.25rem 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sit-card__title {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
}
.sit-card__text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
  flex: 1;
}
.sit-card__tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--forest-m);
  letter-spacing: 0.04em;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

/* ============================================================
   RISK
============================================================ */
.risk {
  background: var(--dark);
  padding: 5rem 0;
}
.risk__layout {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .risk__layout { grid-template-columns: 1fr 1fr; }
}
.risk__lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin: 1.25rem 0;
}
.risk__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.risk__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,.65);
  line-height: 1.55;
}
.risk__list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}
.risk__callout {
  background: rgba(255,255,255,.06);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
}
.risk__photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.risk__photo img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   PRICE LOGIC
============================================================ */
.price-logic {
  padding: 5rem 0;
  background: var(--bg-alt);
}
.price-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.price-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 1.5rem;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.price-card__num {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
}
.price-card__title {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}
.price-card__text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.price-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
@media (min-width: 480px) {
  .price-cta { flex-direction: row; align-items: center; }
}
.price-cta__note {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ============================================================
   PROCESS
============================================================ */
.process {
  padding: 5rem 0;
  background: var(--bg);
}
.process__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 640px;
}
.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.25rem;
}
.step__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step__num {
  width: 40px;
  height: 40px;
  background: var(--forest);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.step__line {
  width: 2px;
  flex: 1;
  background: var(--border);
  margin: 8px 0;
  min-height: 40px;
}
.step__body {
  padding-bottom: 2rem;
}
.step__title {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.4rem;
  padding-top: 0.5rem;
}
.step__text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ============================================================
   SERVICES
============================================================ */
.services {
  padding: 5rem 0;
  background: var(--bg-alt);
}
.serv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1.25rem;
}
.serv-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 1.5rem;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: box-shadow 0.25s, transform 0.25s;
}
.serv-card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.serv-card__icon {
  width: 48px;
  height: 48px;
  background: oklch(0.93 0.015 155);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
  flex-shrink: 0;
}
.serv-card__icon svg { width: 26px; height: 26px; color: var(--forest); }
.serv-card__title {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}
.serv-card__text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
  flex: 1;
}
.serv-card__price {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--forest-m);
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

/* ============================================================
   CASES
============================================================ */
.cases {
  padding: 5rem 0;
  background: var(--bg);
}
.case {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 4rem;
  align-items: center;
}
.case:last-child { margin-bottom: 0; }
@media (min-width: 768px) {
  .case { grid-template-columns: 1fr 1fr; }
  .case--reverse .case__media { order: 2; }
  .case--reverse .case__info { order: 1; }
}

/* Before/After slider */
.ba-container {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  user-select: none;
  box-shadow: var(--sh-md);
}
.ba-after, .ba-before {
  position: absolute;
  inset: 0;
}
.ba-after { z-index: 1; }
.ba-before {
  z-index: 2;
  overflow: hidden;
  width: 50%;
}
.ba-after img, .ba-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-before img { width: auto; min-width: 100%; position: absolute; left: 0; top: 0; }
.ba-label {
  position: absolute;
  top: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: var(--r-xl);
  pointer-events: none;
}
.ba-label--before { left: 0.75rem; background: rgba(0,0,0,.6); color: #fff; }
.ba-label--after  { right: 0.75rem; background: rgba(255,255,255,.9); color: var(--dark); }
.ba-slider {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  margin: 0;
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 3;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  pointer-events: none;
}
.ba-handle::before, .ba-handle::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px oklch(0 0 0 / .25);
}
.ba-handle::before { top: calc(50% - 18px); }
.ba-handle::after { display: none; }

.case__title {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}
.case__meta { display: flex; flex-direction: column; gap: 0.75rem; }
.case__row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
}
.case__key {
  font-weight: 700;
  color: var(--muted);
  font-size: 0.8rem;
  padding-top: 2px;
}
.case__val { color: var(--text); }

/* ============================================================
   TRUST
============================================================ */
.trust {
  padding: 5rem 0;
  background: var(--bg-alt);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1.25rem;
}
.trust-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 1.5rem;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.trust-card__icon {
  width: 44px;
  height: 44px;
  background: oklch(0.93 0.015 155);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}
.trust-card__icon svg { width: 24px; height: 24px; color: var(--forest); }
.trust-card__title {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}
.trust-card__text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ============================================================
   EQUIPMENT
============================================================ */
.equipment {
  padding: 5rem 0;
  background: var(--bg);
}
.equipment__layout {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .equipment__layout { grid-template-columns: 1fr 1fr; }
}
.equipment__lead {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 1rem 0 1.25rem;
}
.equipment__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.equipment__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.equipment__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--forest-m);
  border-radius: 50%;
  margin-top: 0.5em;
  flex-shrink: 0;
}
.equipment__photos { display: flex; flex-direction: column; gap: 0.75rem; }
.equipment__photo-main {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.equipment__photo-main img { width: 100%; height: 100%; object-fit: cover; }
.equipment__photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.equipment__photo-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--r-md);
}

/* ============================================================
   B2B
============================================================ */
.b2b {
  background: var(--forest);
  padding: 5rem 0;
}
.b2b__layout {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .b2b__layout { grid-template-columns: 1fr 1fr; }
}
.b2b__lead {
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin: 1rem 0 2rem;
}
.b2b__features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.b2b__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: rgba(255,255,255,.07);
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,.1);
}
.b2b__item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 1px;
}
.b2b__item div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.b2b__item strong {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
}
.b2b__item span {
  color: rgba(255,255,255,.55);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ============================================================
   LETTERS
============================================================ */
.letters {
  padding: 5rem 0;
  background: var(--bg-alt);
}
.letters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: 1.25rem;
}
.letter-card {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: box-shadow 0.25s, transform 0.25s;
  background: #fff;
}
.letter-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.letter-card img { width: 100%; height: auto; display: block; }

/* ============================================================
   RESULT
============================================================ */
.result {
  padding: 5rem 0;
  background: var(--bg);
}
.result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1.25rem;
}
.result-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.55;
  font-weight: 500;
}
.result-item svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--forest);
  margin-top: 1px;
}

/* ============================================================
   FAQ
============================================================ */
.faq {
  padding: 5rem 0;
  background: var(--bg-alt);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  max-width: 720px;
}
.faq-item {
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item[open] { box-shadow: var(--sh-md); }
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  line-height: 1.4;
  transition: color 0.2s;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.2s, color 0.2s;
  line-height: 1;
}
.faq-item[open] .faq-item__q { color: var(--forest); }
.faq-item[open] .faq-item__q::after { content: '−'; color: var(--forest); }
.faq-item__a {
  padding: 0 1.25rem 1.1rem;
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  margin-top: -0.125rem;
  padding-top: 1rem;
}

/* ============================================================
   CONTACT
============================================================ */
.contact {
  padding: 5rem 0;
  background: var(--dark-2);
}
.contact__layout {
  display: grid;
  gap: 3rem;
  align-items: start;
  max-width: 640px;
}
.contact__lead {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin: 1rem 0 1.75rem;
}
.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 480px) {
  .contact__channels { flex-direction: row; flex-wrap: wrap; }
}
.contact__cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}
.contact__microcopy {
  font-size: 0.78rem;
  color: rgba(255,255,255,.5);
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  padding-left: 0.25rem;
}
.contact__reassure {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.contact__reassure li {
  font-size: 0.85rem;
  color: rgba(255,255,255,.45);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.5;
}
.contact__reassure li::before {
  content: '—';
  flex-shrink: 0;
  color: rgba(255,255,255,.25);
}

/* ── Contact form ── */
.contact-form {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--sh-lg);
}
.contact-form__title {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}
.contact-form__sub {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.form-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: 0.03em;
}
.form-req { color: var(--forest); }
.form-input {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-input:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px oklch(0.22 0.09 155 / .12);
}
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2390a090' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 12px; padding-right: 2.5rem; }
.form-legal {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.75rem;
  line-height: 1.5;
}
.form-success {
  text-align: center;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.form-success svg { width: 48px; height: 48px; color: var(--forest); }
.form-success h3 { font-family: var(--ff-display); font-size: 1.3rem; color: var(--dark); }
.form-success p { font-size: 0.92rem; color: var(--muted); }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.5);
  padding: 3rem 0 2rem;
}
.footer__inner {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer__inner { grid-template-columns: 1fr auto auto; align-items: start; }
}
.footer__logo { filter: brightness(0) invert(1); opacity: 0.75; }
.footer__desc {
  font-size: 0.84rem;
  line-height: 1.6;
  margin-top: 0.75rem;
  max-width: 36ch;
}
.footer__links, .footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.footer__links a, .footer__contacts a {
  font-size: 0.84rem;
  color: rgba(255,255,255,.4);
  transition: color 0.2s;
}
.footer__links a:hover, .footer__contacts a:hover { color: rgba(255,255,255,.75); }
.footer__phone {
  font-size: 0.95rem !important;
  font-weight: 700;
  color: rgba(255,255,255,.7) !important;
  margin-bottom: 0.25rem;
}
.footer__copy {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.78rem;
}

/* ============================================================
   STICKY BAR
============================================================ */
.sticky-bar {
  position: fixed;
  bottom: 0.625rem;
  left: 0.625rem;
  right: 0.625rem;
  z-index: 90;
  display: grid;
  grid-template-columns: 52px 52px 1fr;
  gap: 0.375rem;
  align-items: center;
  padding: 0.4375rem;
  background: oklch(0.14 0.05 155);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 1.125rem;
  box-shadow: 0 -2px 0 rgba(255,255,255,.04) inset, 0 12px 40px oklch(0 0 0 / .55);
}
@media (min-width: 769px) {
  .sticky-bar { display: none; }
  body { padding-bottom: 0; }
}

.sticky-bar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 0.75rem;
  color: rgba(255,255,255,.45);
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
  flex-shrink: 0;
}
.sticky-bar__btn svg { width: 22px; height: 22px; }
.sticky-bar__btn--phone:hover,
.sticky-bar__btn--phone:focus-visible { background: rgba(255,255,255,.07); color: rgba(255,255,255,.8); }
.sticky-bar__btn--vk {
  color: #4f9cff;
  background: oklch(0.35 0.12 260 / 0.25);
}
.sticky-bar__btn--vk:hover,
.sticky-bar__btn--vk:focus-visible { background: oklch(0.4 0.15 260 / 0.35); color: #7db8ff; }

.sticky-bar__cta {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0 1rem;
  height: 52px;
  background: var(--max);
  border-radius: 0.75rem;
  transition: background 0.15s, transform 0.15s;
  cursor: pointer;
}
.sticky-bar__cta:hover,
.sticky-bar__cta:focus-visible { background: var(--max-h); transform: translateY(-1px); }
.sticky-bar__cta:active { transform: translateY(0); }
.sticky-bar__cta svg { width: 20px; height: 20px; color: #fff; flex-shrink: 0; }
.sticky-bar__cta-text { display: flex; flex-direction: column; gap: 1px; }
.sticky-bar__cta-main {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
}
.sticky-bar__cta-sub {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  line-height: 1.2;
  white-space: nowrap;
}

/* ============================================================
   HERO OFFER PILLS
============================================================ */
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: var(--r-md);
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  backdrop-filter: blur(4px);
  line-height: 1.3;
}
.hero__pill svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--accent); }
.hero__pill--primary {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.45);
}

/* ============================================================
   RESULT CTA
============================================================ */
.result__cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.result__cta-note {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ============================================================
   CONTACT FORM COLUMN
============================================================ */
.contact__form-col {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .contact__layout {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    gap: 4rem;
    align-items: start;
  }
}

/* ============================================================
   RESPONSIVE ADJUSTMENTS
============================================================ */
@media (max-width: 600px) {
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__pills { flex-direction: column; }
  .contact__channels { flex-direction: column; }
  .contact__channels .btn { width: 100%; justify-content: center; }
  .price-cta { align-items: stretch; }
  .price-cta .btn { text-align: center; justify-content: center; }
  .drawer__phone { font-size: 1rem; }
  .result__cta { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   RISK — COMPARISON TABLE
============================================================ */
.risk__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--r-md);
  overflow: hidden;
  margin-top: 2rem;
  border: 1px solid rgba(255,255,255,.1);
}
.risk__compare-col { display: flex; flex-direction: column; }
.risk__compare-head {
  padding: 0.65rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}
.risk__compare-col--bad .risk__compare-head {
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.35);
}
.risk__compare-col--good .risk__compare-head {
  background: var(--accent);
  color: oklch(0.14 0.04 65);
}
.risk__compare-row {
  padding: 0.55rem 1rem;
  font-size: 0.83rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-top: 1px solid rgba(255,255,255,.05);
  line-height: 1.4;
}
.risk__compare-col--bad .risk__compare-row { color: rgba(255,255,255,.38); }
.risk__compare-col--good .risk__compare-row {
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.03);
}
.risk__compare-row::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}
.risk__compare-row--no::before  { background: oklch(0.45 0.18 25 / .55); }
.risk__compare-row--yes::before { background: oklch(0.55 0.14 145 / .75); }

/* ============================================================
   CHAT DEMO — Price Logic simulation
============================================================ */
.chat-demo {
  margin-top: 3.5rem;
  background: var(--dark);
  border-radius: var(--r-lg);
  display: grid;
  gap: 2.5rem;
  padding: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .chat-demo { grid-template-columns: 320px 1fr; }
}
.chat-demo__phone {
  background: oklch(0.15 0.025 200);
  border-radius: 24px;
  padding: 1.25rem 1rem 1.5rem;
  border: 1.5px solid rgba(255,255,255,.07);
  width: 100%;
  max-width: 320px;
}
.chat-demo__header {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,.35);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.chat-demo__body { display: flex; flex-direction: column; gap: 0.75rem; }
.chat-msg { display: flex; flex-direction: column; gap: 0.2rem; }
.chat-msg--out { align-items: flex-end; }
.chat-msg--in  { align-items: flex-start; }
.chat-msg__bubble {
  padding: 0.6rem 0.85rem;
  border-radius: 14px;
  font-size: 0.8rem;
  line-height: 1.55;
  max-width: 84%;
}
.chat-msg--out .chat-msg__bubble {
  background: var(--max);
  color: #fff;
  border-bottom-right-radius: 3px;
}
.chat-msg--in .chat-msg__bubble {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.88);
  border-bottom-left-radius: 3px;
}
.chat-msg__bubble strong { color: var(--accent); }
.chat-msg__attach {
  font-size: 0.7rem;
  color: rgba(255,255,255,.3);
  padding: 0 0.2rem;
  align-self: flex-end;
}
.chat-msg__time {
  font-size: 0.68rem;
  color: rgba(255,255,255,.28);
  padding: 0 0.2rem;
}
.chat-demo__caption { display: flex; flex-direction: column; gap: 1rem; }
.chat-demo__caption-title {
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.chat-demo__caption-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
}
.chat-demo__points { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.5rem; }
.chat-demo__point {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,.78);
}
.chat-demo__point::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   TRUST — Featured card
============================================================ */
.trust-card--featured {
  grid-column: 1 / -1;
  background: var(--forest);
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  padding: 1.75rem 2.5rem;
}
.trust-card--featured .trust-card__icon {
  background: rgba(255,255,255,.15);
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.trust-card--featured .trust-card__icon svg { color: #fff; }
.trust-card--featured .trust-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.trust-card--featured .trust-card__title { color: #fff; font-size: 1.1rem; }
.trust-card--featured .trust-card__text  { color: rgba(255,255,255,.72); }
.trust-card--featured .trust-card__badge {
  background: var(--accent);
  color: oklch(0.14 0.04 65);
  font-size: 0.73rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: var(--r-xl);
  letter-spacing: 0.04em;
  white-space: nowrap;
  align-self: center;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .trust-card--featured { flex-direction: column; align-items: flex-start; }
  .trust-card--featured .trust-card__badge { align-self: flex-start; }
}

/* ============================================================
   EQUIPMENT CARDS
============================================================ */
.equip-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.equip-card {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-alt);
  box-shadow: var(--sh-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.equip-card:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.equip-card__img { aspect-ratio: 4/3; overflow: hidden; }
.equip-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.equip-card:hover .equip-card__img img { transform: scale(1.04); }
.equip-card__info { padding: 0.7rem 0.85rem; }
.equip-card__name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 0.15rem;
}
.equip-card__desc { font-size: 0.72rem; color: var(--muted); line-height: 1.4; }

/* ============================================================
   LETTERS — figcaption
============================================================ */
.letter-card figure { display: flex; flex-direction: column; height: 100%; }
.letter-card figcaption {
  padding: 0.65rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-mid);
  text-align: center;
  line-height: 1.4;
  background: #fff;
}
.letter-card figcaption span {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 0.1rem;
}

/* ============================================================
   REVIEWS
============================================================ */
.reviews { padding: 5rem 0; background: var(--bg-alt); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1.25rem;
}
.review-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 1.5rem;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow 0.25s;
}
.review-card:hover { box-shadow: var(--sh-md); }
.review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.review-card__author { font-weight: 700; font-size: 0.92rem; color: var(--dark); }
.review-card__source {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  background: var(--bg-alt);
  padding: 0.2rem 0.6rem;
  border-radius: var(--r-xl);
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.review-card__stars { color: oklch(0.72 0.17 65); font-size: 0.95rem; letter-spacing: 0.06em; }
.review-card__text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; flex: 1; }
.review-card__date { font-size: 0.75rem; color: var(--muted); }

/* ============================================================
   HERO CHIPS — звёзды
============================================================ */
.chip--stars {
  color: oklch(0.72 0.17 65);
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ============================================================
   PRICING BLOCK
============================================================ */
.pricing {
  padding: 5rem 0;
  background: var(--bg);
}
.price-list {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.18s;
}
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: var(--bg); }
.price-row__left {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}
.price-row__name {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}
.price-row__desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
}
.price-row__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
  flex-shrink: 0;
}
.price-row__val {
  font-size: 1rem;
  font-weight: 800;
  color: var(--forest);
  white-space: nowrap;
}
.price-row__unit {
  font-size: 0.72rem;
  color: var(--muted);
  white-space: nowrap;
}
.price-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--bg-alt);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
}
.price-disclaimer svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--forest-m);
  margin-top: 0.15rem;
}
.price-disclaimer p {
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.6;
}
@media (max-width: 560px) {
  .price-row { flex-direction: column; align-items: flex-start; gap: 0.5rem; padding: 1rem 1.25rem; }
  .price-row__right { align-items: flex-start; }
}

/* ============================================================
   FOUNDER BLOCK
============================================================ */
.founder {
  padding: 5rem 0;
  background: var(--bg-alt);
}
.founder__layout {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .founder__layout { grid-template-columns: 280px 1fr; gap: 4rem; }
}
.founder__photo-wrap {
  position: relative;
}
.founder__photo {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  display: block;
}
@media (max-width: 767px) {
  .founder__photo { max-width: 200px; aspect-ratio: 1/1; border-radius: var(--r-xl); }
}
.founder__body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.founder__quote {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--dark);
  border-left: 3px solid var(--forest);
  padding-left: 1.5rem;
  font-style: normal;
}
.founder__sig {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.founder__name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
}
.founder__role {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ============================================================
   SECTION CTA — межсекционные призывы к действию
============================================================ */
.section-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
@media (max-width: 600px) {
  .section-cta { flex-direction: column; }
  .section-cta .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   CONTACT TIPS — замена формы
============================================================ */
.contact-tips {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-tip {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}
.contact-tip svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 0.1rem;
}
.contact-tip span {
  font-size: 0.92rem;
  color: rgba(255,255,255,.6);
  line-height: 1.55;
}

/* ============================================================
   BA-TAB — переключатель До/После
============================================================ */
.ba-tab {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  background: var(--bg-alt);
}
.ba-tab__header {
  display: flex;
  background: var(--dark);
  padding: 0.375rem;
  gap: 0.25rem;
}
.ba-tab__toggle {
  flex: 1;
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  border-radius: var(--r-sm);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  border: none;
  background: transparent;
  font-family: var(--ff-body);
}
.ba-tab__toggle.is-active {
  background: rgba(255,255,255,.12);
  color: #fff;
}
.ba-tab__toggle:hover:not(.is-active) {
  color: rgba(255,255,255,.75);
}
.ba-tab__imgs {
  position: relative;
  aspect-ratio: 4/3;
}
.ba-tab__img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.ba-tab__img.is-active {
  opacity: 1;
  pointer-events: auto;
}
.ba-tab__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   CASES CAROUSEL
============================================================ */
.cases {
  padding: 5rem 0;
  background: var(--bg-alt);
}
.cases-carousel {
  overflow: hidden;
}
.cases-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.case-slide {
  min-width: 100%;
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 768px) {
  .case-slide { grid-template-columns: 1fr 1fr; }
}
.case-slide__media { width: 100%; }
.case-slide__info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.case-slide__title {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}
.case-slide__meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.case-row {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.case-row:last-child { border-bottom: none; padding-bottom: 0; }
.case-key {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.case-val {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.case-row--result .case-val { color: var(--dark); font-weight: 600; }
.case-row--price .case-val {
  font-size: 1rem;
  font-weight: 800;
  color: var(--forest);
}
.cases-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.cases-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  box-shadow: var(--sh-sm);
}
.cases-btn:hover:not(:disabled) {
  background: var(--forest);
  border-color: var(--forest);
  transform: scale(1.05);
}
.cases-btn:hover:not(:disabled) svg { color: #fff; }
.cases-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.cases-btn svg { width: 18px; height: 18px; color: var(--dark); }
.cases-counter {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
  min-width: 3rem;
  text-align: center;
}

/* ============================================================
   NEW ELEMENTS — 2026-03-26
============================================================ */

/* H1 two-line split */
.hero__h1-offer {
  display: block;
  font-size: 0.62em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 0.4em;
  line-height: 1.4;
  max-width: 50ch;
}

/* Header messenger icons — hidden on mobile, show on desktop */
.header__messengers {
  display: none;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .header__messengers {
    display: flex;
    align-items: center;
  }
}
.header__messenger {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  color: var(--text-muted);
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
}
.header__messenger:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--accent);
}
.header__messenger svg {
  width: 18px;
  height: 18px;
}
.header__messenger--vk {
  color: #4f9cff;
}
.header__messenger--vk:hover {
  background: rgba(79, 156, 255, 0.1);
}
.header__messenger--max {
  color: var(--accent);
}
.header__messenger--max:hover {
  background: oklch(from var(--accent) l c h / 0.1);
}

/* Sticky bar phone hint */
.sticky-bar__btn--phone {
  flex-direction: column;
  gap: 2px;
}
.sticky-bar__phone-hint {
  font-size: 0.575rem;
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.02em;
}

/* Founder name emphasis */
.founder__name {
  font-size: 1.125rem;
  font-weight: 800;
}

/* ============================================================
   ROUND 3 — 2026-03-26
============================================================ */

/* Fix ba-before image sizing */
.ba-before img {
  height: 100%;
  object-fit: cover;
}
.ba-label {
  z-index: 5;
}

/* ── Hero trust badge ──────────────────────────────────── */
.hero__trust {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.4rem 0.9rem;
  border-radius: 2rem;
  margin-bottom: 1.25rem;
  animation: trustPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: 0.2s;
}
.hero__trust-stars {
  color: #fbbf24;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.hero__trust-text {
  font-size: 0.77rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-body);
  font-weight: 500;
}
@keyframes trustPop {
  from { opacity: 0; transform: translateY(-6px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__trust { animation: none; }
}

/* ── Price calculator ──────────────────────────────────── */
.calc {
  padding: 5rem 0;
  background: var(--bg);
}
.calc__wrap {
  background: var(--bg-alt);
  border-radius: var(--r-xl);
  padding: 3rem 2.5rem;
  display: grid;
  gap: 2.5rem;
  border: 1px solid oklch(from var(--dark) l c h / 0.06);
}
@media (min-width: 768px) {
  .calc__wrap {
    grid-template-columns: 1fr 2fr;
    align-items: start;
  }
}
.calc__heading {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin: 0.5rem 0 0.75rem;
}
.calc__sub {
  font-size: 0.92rem;
  color: var(--muted);
}
.calc__step { transition: opacity 0.2s; }
.calc__step--hidden { display: none; }
.calc__qlabel {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 1rem;
}
.calc__opts {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.calc__opt {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1.125rem;
  border: 1.5px solid oklch(from var(--dark) l c h / 0.12);
  border-radius: var(--r-md);
  background: var(--bg);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s, transform 0.18s;
  text-align: left;
}
.calc__opt:hover {
  border-color: var(--accent);
  background: oklch(from var(--accent) l c h / 0.05);
  transform: translateX(4px);
}
.calc__opt:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--accent);
}
.calc__opt-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--forest);
}
.calc__opt--sm {
  padding: 0.625rem 0.875rem;
  font-size: 0.9rem;
}
.calc__opt--sm .calc__opt-icon { display: none; }
.calc__back {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0;
  margin-bottom: 1rem;
  font-family: var(--font-body);
  transition: color 0.15s;
}
.calc__back:hover { color: var(--dark); }
.calc__back svg { width: 14px; height: 14px; }
.calc__result-box {
  background: var(--dark);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}
.calc__result-from {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
}
.calc__result-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}
.calc__result-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.calc__result-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.btn--ghost {
  background: none;
  border: 1.5px solid oklch(from var(--dark) l c h / 0.15);
  color: var(--muted);
  padding: 0.75rem 1.5rem;
  border-radius: var(--r-xl);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.btn--ghost:hover {
  border-color: var(--dark);
  color: var(--dark);
}

/* ── Dynamic animations ────────────────────────────────── */

/* Primary CTA pulse-glow */
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 oklch(from var(--accent) l c h / 0); }
  50%       { box-shadow: 0 0 0 8px oklch(from var(--accent) l c h / 0.18); }
}
.btn--hero-primary {
  animation: ctaPulse 3s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .btn--hero-primary { animation: none; }
}

/* Hero chips slide-in */
.hero__chips .chip {
  animation: chipSlide 0.5s cubic-bezier(0.34, 1.4, 0.64, 1) both;
}
.hero__chips .chip:nth-child(1) { animation-delay: 0.5s; }
.hero__chips .chip:nth-child(2) { animation-delay: 0.65s; }
@keyframes chipSlide {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__chips .chip { animation: none; }
}

/* Section label shimmer */
@keyframes labelShimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.section-label {
  background-image: linear-gradient(
    90deg,
    var(--accent) 0%,
    oklch(from var(--accent) calc(l + 0.12) c h) 40%,
    var(--accent) 80%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: labelShimmer 4s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .section-label {
    background-image: none;
    -webkit-text-fill-color: currentColor;
    color: var(--accent);
    animation: none;
  }
}

/* Calc option active state highlight */
.calc__opt.is-selected {
  border-color: var(--accent);
  background: oklch(from var(--accent) l c h / 0.08);
}

/* Trust card featured glow */
.trust-card--featured {
  position: relative;
  overflow: hidden;
}
.trust-card--featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, var(--accent) 0%, transparent 60%);
  opacity: 0.15;
  border-radius: inherit;
  pointer-events: none;
}


/* ============================================================
   ROUND 4 — 2026-03-26
============================================================ */

/* ── Cases: grid layout (replaces broken carousel) ──────── */
.cases-carousel {
  overflow: visible;
}
.cases-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  transform: none;
  transition: none;
}
@media (min-width: 900px) {
  .cases-track {
    grid-template-columns: 1fr 1fr;
  }
}
.case-slide {
  min-width: 0;
}
.cases-controls {
  display: none;
}

/* ── Header & footer logo name ───────────────────────────── */
.header__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.logo-name--footer {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
}
.footer__brand a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}

/* ── Hero trust badge: stars prominent ───────────────────── */
.hero__trust {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  padding: 0.5rem 1rem;
}
.hero__trust-stars {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  line-height: 1;
}
.hero__trust-text {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
}

/* ── Floating side CTA button ────────────────────────────── */
.side-cta {
  position: fixed;
  right: 0;
  top: 52%;
  transform: translateY(-50%) translateX(calc(100% - 52px));
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 1.25rem 0.75rem;
  border-radius: 1rem 0 0 1rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  line-height: 1.3;
  box-shadow: -2px 4px 20px oklch(from var(--accent) l c h / 0.35);
  transition: transform 0.22s ease;
  writing-mode: horizontal-tb;
}
.side-cta:hover,
.side-cta:focus-visible {
  transform: translateY(-50%) translateX(0);
  outline: none;
}
.side-cta svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transform: rotate(-90deg);
}
.side-cta span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  white-space: nowrap;
}
@media (max-width: 767px) {
  .side-cta {
    top: auto;
    bottom: 90px;
    transform: translateX(calc(100% - 44px));
  }
  .side-cta:hover,
  .side-cta:focus-visible {
    transform: translateX(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .side-cta {
    transform: translateY(-50%) translateX(0);
    border-radius: 0.75rem 0 0 0.75rem;
  }
  @media (max-width: 767px) {
    .side-cta { transform: translateX(0); }
  }
}


/* ============================================================
   ROUND 5 — stars-only hero badge
============================================================ */

/* Reset earlier overrides for hero__trust */
.hero__trust {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 0.55rem 1rem;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.28) 0%,
    rgba(255, 255, 255, 0.06) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2.5rem;
  margin-bottom: 1.5rem;
  display: inline-flex;
}

.hero__trust-star {
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0.06em;
  background: linear-gradient(
    160deg,
    #fef3c7 0%,
    #fbbf24 40%,
    #f59e0b 70%,
    #d97706 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 1px 6px rgba(245, 158, 11, 0.6));
  transition: transform 0.15s ease;
}

.hero__trust-star:nth-child(1) { animation-delay: 0.2s; }
.hero__trust-star:nth-child(2) { animation-delay: 0.28s; }
.hero__trust-star:nth-child(3) { animation-delay: 0.36s; }
.hero__trust-star:nth-child(4) { animation-delay: 0.44s; }
.hero__trust-star:nth-child(5) { animation-delay: 0.52s; }

@keyframes starDrop {
  from { opacity: 0; transform: translateY(-8px) scale(0.7); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.hero__trust-star {
  animation: starDrop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@media (prefers-reduced-motion: reduce) {
  .hero__trust-star { animation: none; }
}


/* ============================================================
   MOBILE RESPONSIVE FIXES — 2026-03-26
============================================================ */

/* Prevent horizontal scroll on any screen */
html, body {
  overflow-x: hidden;
}

/* ── Logo name: hide on very small screens ───────────────── */
@media (max-width: 359px) {
  .logo-name { display: none; }
}

/* ── Announce bar: reserve space for close button ────────── */
@media (max-width: 599px) {
  .announce-bar {
    padding-right: 3.25rem;
    font-size: 0.8rem;
  }
}

/* ── Risk compare: compact on mobile ─────────────────────── */
@media (max-width: 480px) {
  .risk__compare-head {
    padding: 0.45rem 0.5rem;
    font-size: 0.62rem;
    letter-spacing: 0.04em;
  }
  .risk__compare-row {
    padding: 0.45rem 0.5rem;
    font-size: 0.72rem;
    gap: 0.3rem;
    line-height: 1.35;
  }
  .risk__compare-row::before {
    width: 10px;
    height: 10px;
    min-width: 10px;
  }
}

/* ── Hero chips: wrap properly on mobile ─────────────────── */
@media (max-width: 480px) {
  .hero__chips {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .chip {
    font-size: 0.75rem;
  }
}

/* ── Hero pills: ensure touch-friendly stacking ─────────── */
.hero__pill {
  min-height: 44px;
}

/* ── Calc options: 44px+ touch targets ──────────────────── */
.calc__opt {
  min-height: 52px;
}
.calc__back {
  min-height: 44px;
  padding: 0.5rem 0.25rem;
}

/* ── Calc wrap: single column on mobile ─────────────────── */
@media (max-width: 767px) {
  .calc__wrap {
    padding: 2rem 1.25rem;
  }
}

/* ── Side CTA: tighter bottom gap on mobile ─────────────── */
@media (max-width: 767px) {
  .side-cta {
    bottom: 96px;
  }
}

/* ── Cases grid: single column on small mobile ───────────── */
@media (max-width: 599px) {
  .cases-track {
    gap: 2rem;
  }
}

/* ── B2B section: ensure buttons don't overflow ─────────── */
@media (max-width: 600px) {
  .b2b__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .b2b__actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* ── Calc result CTAs: full width on mobile ─────────────── */
@media (max-width: 600px) {
  .calc__result-ctas .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .calc__result-ctas {
    gap: 0.625rem;
  }
}

/* ── Section head on mobile ──────────────────────────────── */
@media (max-width: 480px) {
  .section-title {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }
}

/* ── Footer copy: wrap on mobile ─────────────────────────── */
@media (max-width: 599px) {
  .footer__copy {
    flex-direction: column;
    gap: 0.375rem;
    font-size: 0.72rem;
  }
}


/* ============================================================
   STICKY BAR REDESIGN — 2026-03-26
============================================================ */

/* New grid: phone icon | VK full | Max full */
.sticky-bar {
  grid-template-columns: 52px 1fr 1.15fr;
}

/* Phone: icon only, muted */
.sticky-bar__btn--phone {
  flex-direction: row;
  gap: 0;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}
.sticky-bar__btn--phone:hover,
.sticky-bar__btn--phone:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
}
/* Hide phone hint if it somehow remains */
.sticky-bar__btn--phone .sticky-bar__phone-hint {
  display: none;
}

/* VK: full blue button */
.sticky-bar__cta--vk {
  background: #0077ff;
}
.sticky-bar__cta--vk:hover,
.sticky-bar__cta--vk:focus-visible {
  background: #0066e0;
  transform: translateY(-1px);
}
.sticky-bar__cta--vk .sticky-bar__cta-main {
  font-size: 0.9rem;
}

/* Hide side-cta */
.side-cta { display: none; }

/* ============================================================
   VIDEO MODAL & FOUNDER VIDEO BUTTON
============================================================ */
.founder__photo-wrap {
  position: relative;
  display: inline-block; /* ensures the wrapper fits the image tighter */
  border-radius: var(--r-lg);
  overflow: hidden;
}
.founder__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: var(--forest);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px oklch(0 0 0 / .3);
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  z-index: 2;
}
.founder__play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--forest-m);
  box-shadow: 0 6px 24px oklch(0 0 0 / .4);
}
.founder__play-btn svg {
  width: 32px;
  height: 32px;
  margin-left: 4px; /* optical center */
}
.founder__photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: oklch(0 0 0 / .2);
  border-radius: inherit;
  pointer-events: none;
  transition: opacity 0.3s;
}
.founder__photo-wrap:hover::after {
  opacity: 0.1;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s;
}
.video-modal.open {
  visibility: visible;
  opacity: 1;
}
.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: oklch(0 0 0 / .85);
  backdrop-filter: blur(4px);
}
.video-modal__content {
  position: relative;
  width: 100%;
  max-width: 900px;
  padding: 1rem;
  z-index: 1;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}
.video-modal.open .video-modal__content {
  transform: scale(1);
}
.video-modal__close {
  position: absolute;
  top: -40px;
  right: 1rem;
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  transition: background 0.2s;
}
@media (min-width: 900px) {
  .video-modal__close { right: 0; top: -50px; }
}
.video-modal__close:hover { background: rgba(255,255,255,.25); }
.video-modal__close svg { width: 16px; height: 16px; }

.video-modal__container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  background: #000;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.video-modal__container iframe,
.video-modal__container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 2rem;
  background: var(--dark-2);
}
.video-placeholder p {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: var(--ff-display);
}
.video-placeholder span {
  font-size: 0.9rem;
  color: rgba(255,255,255,.6);
  font-family: monospace;
  background: rgba(0,0,0,.3);
  padding: 0.5rem 1rem;
  border-radius: 4px;
}
