/* ============================================================
   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.45 0.02 170);
  --border:     oklch(0.87 0.008 140);
  --max:        oklch(0.3 0.08 155);
  --max-h:      oklch(0.36 0.08 150);
  --vk:         #2787f5;
  --vk-h:       #1a6fd4;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Manrope', system-ui, sans-serif;
  --font-display: var(--ff-display);
  --font-body: var(--ff-body);
  --text-muted: var(--muted);
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);

  --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);
  --cta-start: oklch(0.24 0.08 155);
  --cta-end: oklch(0.34 0.07 145);
  --cta-shadow: 0 12px 24px oklch(0.24 0.08 155 / .28);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(88px + var(--safe-top));
}
body {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  min-height: 100dvh;
  overflow-x: hidden;
  padding-bottom: var(--safe-bottom);
}
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; }
a, button, [role="button"] { -webkit-tap-highlight-color: transparent; }
:where(
  a,
  button,
  summary,
  input,
  select,
  textarea,
  [role="button"],
  [tabindex]:not([tabindex="-1"])
):focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.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; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   TYPOGRAPHY HELPERS
============================================================ */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.75rem;
}
.section-label--light { color: rgba(255,255,255,.84); }

.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;
  min-height: 48px;
  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;
  touch-action: manipulation;
}
.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__icon--max-brand {
  width: 24px;
  height: 24px;
  object-fit: contain;
  object-position: center;
}

.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: linear-gradient(135deg, var(--cta-start) 0%, var(--cta-end) 100%); color: #fff; box-shadow: var(--cta-shadow); }
.btn--max:hover { background: linear-gradient(135deg, var(--max) 0%, var(--max-h) 100%); }

.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: linear-gradient(135deg, var(--cta-start) 0%, var(--cta-end) 100%);
  color: #fff;
  font-size: 1rem;
  padding: 1rem 1.75rem;
  box-shadow: var(--cta-shadow);
}
.btn--hero-primary:hover {
  background: linear-gradient(135deg, var(--max) 0%, var(--max-h) 100%);
  box-shadow: 0 14px 30px rgba(19, 34, 27, 0.24);
}

.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: rgba(255,255,255,.02);
  color: rgba(255,255,255,.92);
  font-size: 0.95rem;
  padding: 0.9rem 1.35rem;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: var(--r-xl);
}
.btn--hero-phone:hover {
  color: #fff;
  border-color: rgba(255,255,255,.44);
  background: rgba(255,255,255,.08);
}

.btn--cta-main {
  background: linear-gradient(135deg, var(--cta-start) 0%, var(--cta-end) 100%);
  color: #fff;
  box-shadow: var(--cta-shadow);
}
.btn--cta-main:hover {
  background: linear-gradient(135deg, var(--max) 0%, var(--max-h) 100%);
  box-shadow: 0 14px 30px rgba(19, 34, 27, 0.24);
}

.btn--channel-soft {
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn--channel-soft:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.3);
}
.btn--channel-soft .btn__icon,
.btn--channel-light .btn__icon {
  color: var(--channel-color, currentColor);
}
.btn--channel-soft-tg,
.btn--channel-light-tg { --channel-color: #4db7ff; }
.btn--channel-soft-vk,
.btn--channel-light-vk { --channel-color: #58a6ff; }
.btn--channel-soft-call,
.btn--channel-light-call { --channel-color: #f2c76f; }

.btn--channel-light {
  background: #fff;
  color: var(--dark);
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  justify-content: center;
}
.btn--channel-light:hover {
  background: var(--bg-alt);
  border-color: oklch(0.82 0.012 160);
}

.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); }

/* ============================================================
   HEADER
============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 243, 0.94);
  border-bottom: 1px solid rgba(19, 34, 27, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.header.scrolled {
  border-color: rgba(19, 34, 27, 0.1);
  box-shadow: 0 12px 28px rgba(19, 34, 27, 0.08);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.875rem;
  min-height: 58px;
  padding: 0.45rem 0;
}
.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: 0.55rem;
  min-width: 0;
  margin-left: auto;
  flex-shrink: 0;
  white-space: nowrap;
}
.header__status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(19, 34, 27, 0.09);
  box-shadow: 0 10px 20px rgba(19, 34, 27, 0.06);
}
.header__status-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #2dc36a;
  flex-shrink: 0;
}
.header__status-dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  background: rgba(45, 195, 106, 0.24);
  animation: header-status-pulse 2.6s ease-out infinite;
}
.header__status-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.01em;
}
.header__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(19, 34, 27, 0.1);
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(240, 245, 239, 0.96) 100%);
  box-shadow: 0 12px 24px rgba(19, 34, 27, 0.06);
  font-size: 0.94rem;
  font-weight: 800;
  color: var(--dark);
  white-space: nowrap;
  transition: color 0.2s, transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.header__phone:hover {
  color: var(--forest);
  transform: translateY(-1px);
  border-color: rgba(42, 92, 58, 0.16);
  box-shadow: 0 14px 28px rgba(19, 34, 27, 0.09);
}
.header__right > .header__messenger,
.header__right > .header__messengers {
  display: none !important;
}

/* ── Hamburger ── */
.hamburger {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px;
  border-radius: 13px;
  border: 1px solid rgba(19, 34, 27, 0.1);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 10px 22px rgba(19, 34, 27, 0.06);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.hamburger:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(19, 34, 27, 0.08);
}
.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

@keyframes header-status-pulse {
  0% {
    transform: scale(0.75);
    opacity: 0.55;
  }
  70% {
    transform: scale(1.95);
    opacity: 0;
  }
  100% {
    transform: scale(1.95);
    opacity: 0;
  }
}

/* ============================================================
   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: 44px;
  height: 44px;
  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);
  min-height: 48px;
  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);
  min-height: 44px;
  padding: 0.5rem 0.75rem;
  text-align: center;
  display: block;
  letter-spacing: 0.01em;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: clamp(480px, 85dvh, 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(180deg, rgba(14, 25, 20, 0.68) 0%, rgba(14, 25, 20, 0.54) 52%, rgba(14, 25, 20, 0.62) 100%),
    linear-gradient(90deg, rgba(14, 25, 20, 0.32) 0%, rgba(14, 25, 20, 0.08) 45%, rgba(14, 25, 20, 0.22) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 4.25rem 0 3.25rem;
  width: 100%;
}
.hero__eyebrow {
  font-size: 0.88rem;
  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: 44ch;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1rem;
}
.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,.04);
  border: 1px solid rgba(255,255,255,.14);
  padding: 0.35rem 0.85rem;
  border-radius: var(--r-xl);
  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); }
@media (min-width: 960px) {
  .sit-card:first-child {
    grid-column: span 2;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }
  .sit-card:first-child .sit-card__img {
    height: 100%;
    min-height: 100%;
  }
  .sit-card:first-child .sit-card__body {
    padding: 1.5rem 1.5rem 1.7rem;
  }
}
.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: 1.16 / 1;
  min-height: clamp(260px, 52vw, 400px);
  user-select: none;
  box-shadow: var(--sh-md);
  background: oklch(0.94 0.008 145);
}
.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;
}
/* keyboard focus on Before/After slider */
.ba-slider:focus-visible ~ .ba-handle {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
  border-radius: 50%;
}
.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: 3rem 0 2.5rem;
  background: var(--bg);
}
.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,.85);
  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,.80);
  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;
  min-height: 48px;
  padding: 1.1rem 1.25rem;
  font-size: 1rem;
  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: 2rem;
  align-items: start;
  max-width: none;
}
@media (min-width: 960px) {
  .contact__layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 3rem;
  }
}
.contact__text {
  max-width: 58ch;
}
.contact__lead {
  font-size: 1.04rem;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  margin: 1rem 0 1.5rem;
}
.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.875rem;
  color: rgba(255,255,255,.82);
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  line-height: 1.55;
}
.contact__reassure {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact__reassure li {
  font-size: 0.96rem;
  color: rgba(255,255,255,.78);
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  line-height: 1.55;
}
.contact__reassure li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(255,255,255,.52);
  margin-top: 0.5rem;
}
.contact__aside {
  display: grid;
  gap: 1rem;
}
.contact-card {
  background: linear-gradient(180deg, rgba(255,255,255,.1) 0%, rgba(255,255,255,.06) 100%);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 1.5rem;
  box-shadow: 0 18px 40px oklch(0 0 0 / .18);
  padding: 1.4rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.contact-card__head {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
}
.contact-card__eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}
.contact-card__title {
  font-family: var(--ff-display);
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  line-height: 1.15;
  color: #fff;
}
.contact-card__text {
  font-size: 0.94rem;
  line-height: 1.6;
  color: rgba(255,255,255,.76);
}
.contact-card__channels {
  display: grid;
  gap: 0.75rem;
}
.contact-card__channels .btn {
  justify-content: flex-start;
  white-space: normal;
  line-height: 1.3;
}

/* ── 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,.6);
  padding: 2.5rem 0 1.5rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(160px, 0.7fr) minmax(220px, 0.85fr);
  gap: 2rem 3rem;
  align-items: start;
  margin-bottom: 1.4rem;
}
@media (min-width: 768px) {
  .footer__inner { grid-template-columns: minmax(0, 1.35fr) minmax(160px, 0.7fr) minmax(220px, 0.85fr); }
}
.footer__brand {
  max-width: 420px;
}
.footer__desc {
  font-size: 0.98rem;
  line-height: 1.65;
  margin-top: 1rem;
  max-width: 32ch;
  color: rgba(255,255,255,.72);
}
.footer__links, .footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer__links a, .footer__contacts a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 40px;
  font-size: 1rem;
  color: rgba(255,255,255,.78);
  transition: color 0.2s, transform 0.2s;
}
.footer__links a:hover, .footer__contacts a:hover {
  color: rgba(255,255,255,.96);
  transform: translateX(2px);
}
.footer__phone {
  font-size: 1.15rem !important;
  font-weight: 700;
  color: #fff !important;
  margin-bottom: 0.35rem;
}
.footer__copy {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,.78);
}

/* ============================================================
   HERO OFFER PILLS
============================================================ */
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 1.75rem;
  max-width: 700px;
  align-items: flex-start;
}
.hero__pill {
  display: inline-flex;
  align-items: flex-start;
  flex: 0 1 338px;
  gap: 0.5rem;
  min-height: 56px;
  max-width: 338px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  font-size: 0.87rem;
  font-weight: 600;
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  line-height: 1.45;
  box-shadow: 0 10px 30px oklch(0 0 0 / .12);
}
.hero__pill svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 0.1rem;
}
.hero__pill--primary {
  background: rgba(255,255,255,.17);
  border-color: rgba(255,255,255,.34);
  box-shadow: 0 14px 34px oklch(0 0 0 / .18);
}

/* ============================================================
   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;
}
/* contact__layout is now single-column — form-col removed */

/* ============================================================
   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.78rem;
  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,.08);
  color: rgba(255,255,255,.76);
}
.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.9rem;
  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,.8);
  background: rgba(255,255,255,.02);
}
.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,.78);
  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:nth-child(2n) {
  background: linear-gradient(180deg, #fff 0%, oklch(0.975 0.006 150) 100%);
}
.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.78rem;
  font-weight: 700;
  color: var(--dark);
  background: oklch(0.96 0.008 150);
  border: 1px solid oklch(0.9 0.01 150);
  padding: 0.3rem 0.7rem;
  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.82rem; 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);
}
.pricing--early {
  padding-top: 3.25rem;
  border-top: 1px solid rgba(19, 34, 27, 0.08);
}
.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;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: 1rem;
}
.pricing-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 1.4rem 1.25rem;
  border: 1px solid rgba(19, 34, 27, 0.1);
  box-shadow: 0 10px 26px rgba(19, 34, 27, 0.05);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.pricing-card:first-child {
  background: linear-gradient(180deg, #fff 0%, oklch(0.97 0.01 145) 100%);
  border-color: rgba(42, 92, 58, 0.16);
}
.pricing-card:nth-child(3) {
  border-top: 4px solid oklch(from var(--accent) calc(l - 0.08) c h);
}
.pricing-card:hover {
  transform: translateY(-2px);
  border-color: rgba(42, 92, 58, 0.14);
  box-shadow: 0 16px 32px rgba(19, 34, 27, 0.08);
}
.pricing-card__title {
  font-family: var(--ff-display);
  font-size: 1.16rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 0.9rem;
}
.pricing-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pricing-card__list li {
  position: relative;
  padding-left: 0.95rem;
  font-size: 0.94rem;
  line-height: 1.45;
  color: var(--dark-2);
}
.pricing-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}
.pricing-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.5rem;
  text-align: center;
}
.pricing-cta__note {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--dark);
  max-width: 34ch;
}
@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; }
  .pricing-card {
    padding: 1.2rem 1rem;
  }
  .pricing-cta__note {
    font-size: 0.9rem;
  }
}

/* ============================================================
   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);
}
.section-cta__note {
  flex: 1 1 320px;
  max-width: 38ch;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--dark);
}
@media (max-width: 600px) {
  .section-cta { flex-direction: column; }
  .section-cta__note {
    max-width: none;
    text-align: center;
  }
  .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,.78);
  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 {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  margin-inline: -1.25rem;
  padding-inline: 1.25rem;
  padding-bottom: 0.85rem;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 1.25rem;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scrollbar-color: transparent transparent;
}
.cases-carousel::-webkit-scrollbar {
  display: none;
}
.cases-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 1rem;
  align-items: stretch;
}
.case-slide {
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  align-items: start;
  align-content: start;
  height: 100%;
  padding: 1rem;
  background: #fff;
  border-radius: 1.5rem;
  border: 1px solid oklch(0.9 0.01 145);
  box-shadow: 0 20px 50px oklch(0 0 0 / .08);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
@media (min-width: 900px) {
  .case-slide {
    grid-template-columns: 1fr;
  }
}
.case-slide__media {
  width: 100%;
  align-self: start;
}
.case-slide__media .ba-container {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.case-slide__info {
  display: grid;
  gap: 0.95rem;
  align-content: start;
}
.case-slide__title {
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.06;
  min-height: 0;
  max-width: none;
}
.case-slide__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  align-content: start;
}
.case-row {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  min-height: 100%;
  justify-content: flex-start;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  border-radius: 1.15rem;
  background: linear-gradient(180deg, #fff 0%, oklch(0.985 0.004 145) 100%);
}
.case-key {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.case-val {
  font-size: 0.94rem;
  color: var(--text-mid);
  line-height: 1.45;
}
.case-row--result .case-val { color: var(--dark); font-weight: 600; }
.case-row--price { display: none; }
.cases-controls {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.1rem;
}
.cases-btn {
  width: 50px;
  height: 50px;
  border-radius: 999px;
}
.cases-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
.cases-counter {
  min-width: 78px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(19, 34, 27, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--sh-sm);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
}

/* ============================================================
   NEW ELEMENTS — 2026-03-26
============================================================ */

/* H1 two-line split */
.hero__h1-offer {
  display: block;
  font-size: 0.52em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.68);
  margin-top: 0.35em;
  line-height: 1.4;
  max-width: 44ch;
  font-style: normal;
}

/* Header messenger icons — hidden on mobile, show on desktop */
.header__messengers {
  display: none;
  gap: 0.375rem;
}
@media (min-width: 960px) {
  .header__messengers {
    display: flex;
    align-items: center;
  }
}
.header__messenger {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(17, 34, 25, 0.04);
  box-shadow: inset 0 0 0 1px rgba(17, 34, 25, 0.08);
  color: var(--text-muted);
  transition: background 0.15s, color 0.15s, transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
}
.header__messenger:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--accent);
}
.header__messenger svg {
  width: 17px;
  height: 17px;
}
.header__messenger--vk {
  color: #4f9cff;
}
.header__messenger--vk:hover {
  background: rgba(79, 156, 255, 0.12);
  transform: translateY(-1px);
}
.header__messenger--call {
  color: #25D366;
}
.header__messenger--call:hover {
  background: rgba(37, 211, 102, 0.12);
  transform: translateY(-1px);
}
.header__messenger--tg {
  color: #24A1DE;
}
.header__messenger--tg:hover {
  background: rgba(36, 161, 222, 0.12);
  transform: translateY(-1px);
}
.header__messenger--max {
  color: var(--accent);
}
.header__messenger--max:hover {
  background: oklch(from var(--accent) l c h / 0.1);
}

/* 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.95rem;
  letter-spacing: 0.04em;
}
.hero__trust-text {
  font-size: 0.875rem;
  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-alt);
}
.calc__wrap {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 2.5rem 2.25rem;
  display: grid;
  gap: 2rem;
  border: 1px solid oklch(from var(--dark) l c h / 0.06);
  box-shadow: var(--sh-sm);
}
@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: translateY(-2px);
}
.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 ────────────────────────────────── */

.btn--hero-primary {
  animation: none;
}
@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 {
  background-image: none;
  background-size: auto;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: currentColor;
  color: var(--forest);
  animation: none;
}
@media (prefers-reduced-motion: reduce) {
  .section-label {
    background-image: none;
    -webkit-text-fill-color: currentColor;
    color: var(--forest);
    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) ──────── */

/* ── Header & footer logo name ───────────────────────────── */
.header__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  min-width: 0;
}
.header__logo .logo-icon {
  display: none;
}
.header__logo .header__logo-name {
  display: block;
  font-family: var(--ff-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
@media (max-width: 380px) {
  .header__logo .header__logo-name { display: 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 ────────────────────────────── */


/* ============================================================
   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 ────────── */

/* ── 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 ─────────────── */

/* ── Cases grid: single column on small mobile ───────────── */
@media (max-width: 599px) {
  .cases-track {
    gap: 1rem;
  }
  .case-slide__meta {
    grid-template-columns: 1fr;
  }
  .case-slide__title {
    min-height: 0;
    max-width: none;
  }
}

/* ── 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;
  }
}

@media (max-width: 980px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
  .footer__brand {
    max-width: none;
  }
}

@media (max-width: 599px) {
  .footer {
    padding: 2rem 0 1.25rem;
  }
  .footer__desc {
    font-size: 0.92rem;
    max-width: none;
  }
  .footer__links a,
  .footer__contacts a {
    min-height: 44px;
    font-size: 0.94rem;
  }
  .footer__phone {
    font-size: 1.02rem !important;
  }
  .footer__legal-block {
    font-size: 0.76rem;
    gap: 0.3rem 0.85rem;
  }
  .footer__copy {
    font-size: 0.78rem;
  }
}


/* ============================================================
   STICKY BAR REDESIGN — 2026-03-26
============================================================ */

/* ============================================================
   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: 44px;
  height: 44px;
  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;
}

/* ============================================================
   REDESIGN — 2026-03-28
============================================================ */

/* ── Hero trust: remove pill, keep stars floating ── */
.hero__trust {
  background: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  padding: 0 !important;
  gap: 0.04rem !important;
  margin-bottom: 1rem;
  align-items: center;
  display: inline-flex;
  flex-wrap: wrap;
  row-gap: 0.2rem;
}
.hero__trust-rating {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--ff-body);
  margin-left: 0.75rem;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.22);
}

/* ── Sticky bar: Max button dominant ── */

/* ── Hide old sticky bar (replaced) ── */

/* ============================================================
   CONVERSION TUNE-UP — CTA hierarchy and contact channels
============================================================ */

.hero__channel-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.hero__channel-links .btn {
  font-size: 0.92rem;
  padding: 0.85rem 1.1rem;
}

.drawer__quick-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}
.drawer__quick-links .btn {
  width: 100%;
  padding: 0.8rem 0.55rem;
  font-size: 0.82rem;
}

.contact__channels {
  flex-direction: column !important;
  align-items: flex-start;
  gap: 0.9rem;
}
.contact__secondary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  width: 100%;
}
.contact__secondary-actions .btn {
  flex: 1 1 160px;
  justify-content: center;
}
.contact__microcopy {
  color: rgba(255,255,255,.82);
}
.contact__reassure li {
  color: rgba(255,255,255,.78);
}
.contact__reassure li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.52);
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.sticky-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + var(--safe-bottom));
  z-index: 180;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem;
  border-radius: 22px;
  background: rgba(17, 23, 21, 0.92);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 40px rgba(0,0,0,.24);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.sticky-bar__primary {
  flex: 1 1 auto;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--cta-start) 0%, var(--cta-end) 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: var(--cta-shadow);
}
.sticky-bar__primary:hover {
  background: linear-gradient(135deg, var(--max) 0%, var(--max-h) 100%);
}
.sticky-bar__secondary {
  display: flex;
  gap: 0.45rem;
}
.sticky-bar__primary svg,
.sticky-bar__icon svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.sticky-bar__icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);
  text-decoration: none;
}
.sticky-bar__icon:hover {
  background: rgba(255,255,255,.14);
}
.sticky-bar__icon--tg { color: #4db7ff; }
.sticky-bar__icon--vk { color: #58a6ff; }
.sticky-bar__icon--call { color: #f2c76f; }

@media (min-width: 768px) {
  .sticky-bar {
    display: none;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: calc(92px + var(--safe-bottom));
  }
}

@media (max-width: 560px) {
  .hero__channel-links .btn {
    flex: 1 1 calc(50% - 0.375rem);
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .sticky-bar {
    left: 10px;
    right: 10px;
    bottom: 10px;
    gap: 0.5rem;
    padding: 0.55rem;
  }
  .sticky-bar__primary {
    font-size: 0.92rem;
    padding: 0.85rem 0.9rem;
  }
  .sticky-bar__icon {
    width: 42px;
    height: 42px;
  }
}

/* ============================================================
   SIDE MESSENGER BAR — expanding pills
============================================================ */

/* Desktop: vertical column, right edge, pills expand left on hover */
.side-bar {
  position: fixed;
  right: 12px;
  top: 50%;
  transform: translateY(calc(-50% + 18px));
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.32s ease, transform 0.32s ease, visibility 0.32s ease;
}
.side-bar--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(-50%);
}

/* Each button: label (hidden) + icon (always visible) */
.side-bar__btn {
  display: flex;
  align-items: center;
  min-height: 48px;
  height: 48px;
  border-radius: 24px;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 4px 16px oklch(0 0 0 / .22);
  cursor: pointer;
  transition: box-shadow 0.2s, filter 0.2s;
  touch-action: manipulation;
}
.side-bar__btn:hover {
  box-shadow: 0 6px 24px oklch(0 0 0 / .3);
  filter: brightness(1.06);
}
.side-bar__btn:focus-visible {
  outline: 3px solid rgba(255,255,255,.85);
  outline-offset: 2px;
}

/* Label: hidden by default, slides in from right on hover */
.side-bar__btn-label {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: var(--ff-body);
  letter-spacing: 0.01em;
  padding-left: 0;
  padding-right: 0;
  opacity: 0;
  transition: max-width 0.34s cubic-bezier(0.4, 0, 0.2, 1),
              padding   0.34s cubic-bezier(0.4, 0, 0.2, 1),
              opacity   0.18s ease 0.1s;
}
.side-bar__btn:hover .side-bar__btn-label,
.side-bar__btn:focus-visible .side-bar__btn-label {
  max-width: 148px;
  padding-left: 14px;
  padding-right: 4px;
  opacity: 1;
}

/* Icon: fixed 46×46 circle, always visible */
.side-bar__btn-icon {
  min-width: 48px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.side-bar__btn-icon svg {
  width: 22px;
  height: 22px;
}
.side-bar__brand-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  object-position: center;
}
.side-bar__btn--max {
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
.side-bar__btn--max .side-bar__btn-label {
  min-height: 48px;
  display: flex;
  align-items: center;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--cta-start) 0%, var(--cta-end) 100%);
  box-shadow: 0 6px 20px oklch(0 0 0 / .24);
}
.side-bar__btn--max .side-bar__btn-icon {
  min-width: 48px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px oklch(0 0 0 / .24);
}
.side-bar__btn--max .side-bar__brand-icon {
  width: 100%;
  height: 100%;
  display: block;
}

/* Colors */
.side-bar__btn--phone { background: #25D366; }
.side-bar__btn--tg    { background: #24A1DE; }
.side-bar__btn--vk    { background: #0077FF; }

/* Mobile: floating right column, icons only */
@media (max-width: 767px) {
  .header__inner {
    min-height: 60px;
  }
  .hero__content {
    padding: 4rem 0 3rem;
  }
  .hero__trust-rating {
    margin-left: 0.5rem;
    font-size: 0.86rem;
  }
  .hero__pill {
    width: 100%;
    max-width: none;
    min-height: auto;
    flex: 0 0 auto;
    padding: 0.8rem 0.95rem;
    font-size: 0.84rem;
  }
  .btn--hero-phone {
    background: rgba(255,255,255,.08);
  }
  .side-bar {
    top: auto;
    right: max(10px, env(safe-area-inset-right));
    bottom: calc(18px + env(safe-area-inset-bottom));
    left: auto;
    width: auto;
    transform: translateY(18px);
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    border-top: 0;
  }
  .side-bar--visible {
    transform: translateY(0);
  }
  .side-bar__btn {
    width: 48px;
    height: 48px;
    flex: none;
    border-radius: 999px;
    box-shadow: 0 6px 18px oklch(0 0 0 / .24);
    justify-content: center;
  }
  .side-bar__btn-label { display: none; }
  .side-bar__btn-icon {
    width: 48px;
    height: 48px;
  }
  .side-bar__btn--max {
    background: transparent;
  }
  .side-bar__btn--max .side-bar__btn-icon {
    border-radius: 14px;
  }
  .side-bar__btn:hover,
  .side-bar__btn:focus-visible { box-shadow: none; filter: brightness(1.08); }
  body { padding-bottom: var(--safe-bottom); }
}

@media (min-width: 768px) {
  body { padding-bottom: var(--safe-bottom); }
}

@media (prefers-reduced-motion: reduce) {
  .side-bar__btn-label { transition: none; }
  .side-bar__btn       { transition: none; }
}

/* ── Hero: compact pills text tweak ── */
.hero__pill span { line-height: 1.35; }

/* ============================================================
   CONVERSION POLISH — 2026-03-28
============================================================ */

.btn--max {
  background: linear-gradient(135deg, var(--cta-start) 0%, var(--cta-end) 100%);
  box-shadow: 0 10px 28px oklch(0.24 0.08 155 / .26);
}
.btn--max:hover {
  background: linear-gradient(135deg, var(--max) 0%, var(--max-h) 100%);
}
.btn--vk {
  background: #1677f2;
  box-shadow: 0 10px 24px rgba(22, 119, 242, 0.22);
}
.btn--vk:hover {
  background: #0f6ad8;
}

.header__logo {
  flex: 0 1 auto;
  min-width: 0;
}
.header__logo-image {
  display: block;
  width: auto;
  height: 40px;
  max-width: min(34vw, 152px);
  border-radius: 1rem;
  box-shadow: 0 0 0 1px rgba(19, 34, 27, 0.08), 0 8px 22px rgba(19, 34, 27, 0.08);
  background: #fff;
}

.pricing--early {
  padding-top: 0;
}
.pricing--early .price-list {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  overflow: hidden;
}
.pricing--early .price-row__val {
  font-size: 1.08rem;
}

.letters-grid--slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 72vw);
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 1rem;
  overflow-x: auto;
  margin-inline: -1.25rem;
  padding-inline: 1.25rem;
  padding-bottom: 0.5rem;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(25, 42, 32, 0.18) transparent;
}
.letters-grid--slider .letter-card {
  min-width: 0;
  display: flex;
  height: 100%;
  scroll-snap-align: start;
}
.letters-grid--slider .letter-card figure {
  width: 100%;
  height: 100%;
}
.letters-grid--slider .letter-card img {
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: #f7f7f2;
  padding: 0.35rem;
}
.letters-grid--slider .letter-card figcaption {
  min-height: 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder__trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.25rem 0 1rem;
}
.founder__trust-points span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(19, 34, 27, 0.05);
  border: 1px solid rgba(19, 34, 27, 0.08);
  color: var(--dark);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.equip-cards {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.equip-card--feature {
  background: #fff;
  border: 1px solid rgba(19, 34, 27, 0.08);
}
.equip-card--feature .equip-card__name {
  color: var(--forest);
}

.footer__legal {
  color: rgba(255,255,255,0.62);
}

@media (min-width: 768px) {
  .letters-grid--slider {
    grid-auto-columns: minmax(248px, 280px);
  }
}

@media (max-width: 767px) {
  .header__logo-image {
    height: 32px;
    width: 32px;
    max-width: 32px;
    flex-shrink: 0;
  }
  .header__inner {
    gap: 0.45rem;
    min-height: 56px;
  }
  .header__right {
    gap: 0.38rem;
  }
  .header__status {
    display: none;
  }
  .header__phone {
    min-height: 44px;
    padding: 0.5rem 0.85rem;
    font-size: 0.84rem;
  }
  .hamburger {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 12px;
  }
  .cases-carousel,
  .letters-grid--slider {
    margin-inline: -1rem;
    padding-inline: 1rem;
  }
  .cases-track {
    grid-auto-columns: 100%;
  }
  .case-slide {
    gap: 1rem;
    padding: 0.9rem;
  }
  .case-slide__title {
    font-size: 1.16rem;
  }
  .founder__trust-points span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .equip-cards {
    grid-template-columns: 1fr 1fr;
  }
  .footer__copy {
    gap: 0.4rem;
  }
  .side-bar {
    right: max(8px, env(safe-area-inset-right));
    bottom: calc(16px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 390px) {
  .header__phone {
    min-height: 44px;
    padding-inline: 0.72rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 540px) {
  .equip-cards {
    grid-template-columns: 1fr;
  }
  .letters-grid--slider {
    grid-auto-columns: 76vw;
  }
}

/* ============================================================
   ROUND 4 — CRO POLISH
============================================================ */

/* ── Before/After: clip-path approach fixes image stretching ── */
.ba-before {
  width: 100%;
  overflow: visible;
  clip-path: inset(0 50% 0 0);
}
.ba-before img {
  width: 100%;
  min-width: unset;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}

/* ── Reviews: horizontal carousel ── */
.reviews-grid {
  display: grid;
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, min(88vw, 360px));
  align-items: stretch;
  overflow-x: auto;
  margin-inline: -1.25rem;
  padding-inline: 1.25rem;
  padding-inline-end: 3rem;
  padding-bottom: 0.75rem;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(25, 42, 32, 0.18) transparent;
}
.review-card {
  scroll-snap-align: start;
  height: 100%;
}

/* ── Cases carousel: trailing peek ── */
.cases-carousel {
  padding-inline-end: 1.25rem;
}

/* ── Letters carousel: trailing peek ── */
.letters-grid--slider {
  padding-inline-end: 3rem;
}

/* ── Section-CTA: tighter spacing ── */
.section-cta {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
}

/* ── Footer real logo ── */
.footer__logo-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  filter: none;
  display: block;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.footer__brand a {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}
.footer__logo-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255,255,255,.96);
  line-height: 1.2;
}

/* ── Footer legal block ── */
.footer__legal-block {
  margin-top: 0.25rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.1rem;
  font-size: 0.84rem;
  color: rgba(255,255,255,.62);
  line-height: 1.6;
}
.footer__legal-block a {
  color: rgba(255,255,255,.82);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer__legal-block a:hover {
  color: rgba(255,255,255,.96);
}

/* ============================================================
   TRUST STRIP
============================================================ */
.trust-strip {
  background: var(--dark-2);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 1.1rem 0;
}
.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
}
.trust-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255,255,255,.82);
  white-space: nowrap;
}
.trust-strip__item--accent {
  color: rgba(255,255,255,.92);
  font-weight: 700;
}
.trust-strip__icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.85;
}
.trust-strip__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  flex-shrink: 0;
}
@media (max-width: 680px) {
  .trust-strip__dot { display: none; }
  .trust-strip__inner {
    gap: 0.45rem 0.8rem;
    justify-content: flex-start;
  }
  .trust-strip__item { font-size: 0.78rem; }
}
@media (max-width: 400px) {
  .trust-strip__inner { justify-content: center; }
}

/* ============================================================
   HEADER CTA (Max button — tablet/desktop only)
============================================================ */
.header__cta-max {
  display: none;
}
@media (min-width: 600px) {
  .header__cta-max {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 44px;
    padding: 0 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cta-start) 0%, var(--cta-end) 100%);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: var(--cta-shadow);
  }
  .header__cta-max:hover {
    background: linear-gradient(135deg, var(--max) 0%, var(--max-h) 100%);
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(19, 34, 27, 0.24);
  }
  .header__cta-max:focus-visible {
    outline: 2px solid var(--max);
    outline-offset: 2px;
  }
  .header__cta-max .btn__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }
  .header__phone {
    font-size: 1.04rem;
    font-weight: 800;
    padding: 0.5rem 1.05rem;
  }
}

/* ============================================================
   FLOATING AVATAR VIDEO
=========================================================== */
.floating-avatar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.floating-avatar-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.floating-avatar-container {
  position: fixed;
  top: 72px;
  right: 16px;
  bottom: auto;
  left: auto;
  z-index: 1001;
  display: block;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  animation: pulseAvatar 2.5s infinite;
  cursor: pointer;
  width: 140px;
  height: 140px;
}

.floating-avatar-container:hover:not(.is-expanded) {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  animation: none;
}

.floating-avatar-container.is-expanded {
  top: 50%;
  right: auto;
  left: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
  width: min(340px, 88vw);
  height: min(340px, 88vw);
  border-radius: 16px;
  animation: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.floating-avatar-container.is-expanded .floating-avatar-video {
  border-radius: 12px;
}

.floating-avatar-video {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  border: 4px solid #fff;
  transition: all 0.4s ease;
}

.floating-avatar-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, background 0.2s ease;
  z-index: 1002;
}
.floating-avatar-close:hover {
  background: rgba(0, 0, 0, 0.8);
}
.floating-avatar-close svg {
  width: 16px;
  height: 16px;
}

.floating-avatar-container.is-expanded .floating-avatar-close {
  opacity: 1;
  pointer-events: auto;
}

.floating-avatar-hint {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  backdrop-filter: blur(2px);
}
.cases-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.cases-btn {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(19, 34, 27, 0.12);
  color: var(--dark);
  box-shadow: var(--sh-sm);
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s, color 0.18s;
}
.cases-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: var(--sh-md);
  border-color: rgba(42, 92, 58, 0.18);
  color: var(--forest);
}
.cases-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.cases-btn svg {
  width: 18px;
  height: 18px;
}
.cases-counter {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-mid);
}
.floating-avatar-container:hover:not(.is-expanded) .floating-avatar-hint {
  opacity: 1;
}

@keyframes pulseAvatar {
  0% { box-shadow: 0 0 0 0 rgba(45, 195, 106, 0.3); }
  70% { box-shadow: 0 0 0 10px rgba(45, 195, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(45, 195, 106, 0); }
}

/* Floating avatar: smaller, less aggressive */
.floating-avatar-container {
  width: 100px;
  height: 100px;
  animation: pulseAvatar 4s infinite;
}

@media (max-width: 768px) {
  .floating-avatar-container:not(.is-expanded) {
    top: 68px;
    right: 12px;
    bottom: auto;
    left: auto;
    width: 72px;
    height: 72px;
  }
}

/* ============================================================
   CRO CONVERSION — ROUND 6 (2026-03-31)
============================================================ */

/* ── Hero micro-trust block ── */
.hero__micro-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem 0.6rem;
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,.76);
  line-height: 1.5;
}
.hero__micro-sep {
  color: rgba(255,255,255,.44);
  font-size: 0.7rem;
}
@media (max-width: 500px) {
  .hero__micro-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
  }
  .hero__micro-sep { display: none; }
}

/* ── Hero mini-process (3 шага) ── */
.hero__mini-process {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-lg);
  padding: 0.65rem 1rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  flex-wrap: wrap;
  row-gap: 0.4rem;
}
.hero__mini-step {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,.82);
  font-weight: 600;
}
.hero__mini-num {
  width: 20px;
  height: 20px;
  background: var(--accent);
  color: oklch(0.14 0.04 65);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
  flex-shrink: 0;
  line-height: 1;
}
.hero__mini-arrow {
  width: 18px;
  height: 8px;
  color: rgba(255,255,255,.3);
  flex-shrink: 0;
}
@media (max-width: 420px) {
  .hero__mini-process { display: none; }
}

/* ── Case price badge ── */
.case-price-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: oklch(0.93 0.02 145);
  border: 1px solid oklch(0.85 0.04 145);
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.45rem 0.78rem;
  border-radius: var(--r-xl);
  line-height: 1.3;
  align-self: flex-start;
}
.case-price-badge svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: var(--forest);
}

/* ── Pricing CTA honest note ── */
.pricing-cta__honest {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.25rem;
  font-style: italic;
}

/* ── Letters: reduce visual weight ── */
.letters {
  padding: 6rem 0;
  margin-top: 0.5rem;
}
.letters .section-head {
  opacity: 0.8;
}
.letters-grid--slider {
  max-height: 380px;
}
.letters-grid--slider .letter-card img {
  max-height: 240px;
}

/* ── Sections: more breathing room (~25% increase) ── */
.situations  { padding: 6rem 0; }
.risk        { padding: 6rem 0; }
.pricing     { padding: 6rem 0; }
.process     { padding: 6rem 0; }
.services    { padding: 6rem 0; }
.cases       { padding: 6rem 0; }
.reviews     { padding: 6rem 0; }
.founder     { padding: 6rem 0; }
.b2b         { padding: 6rem 0; }
.faq         { padding: 6rem 0; }
.contact     { padding: 6.5rem 0; }

/* ── Section titles: slightly larger ── */
.section-title {
  font-size: clamp(1.7rem, 3.8vw, 2.6rem);
}

/* ── Stronger CTA button contrast ── */
.btn--primary {
  background: var(--forest);
  box-shadow: 0 6px 20px oklch(0.22 0.09 155 / .4);
}
.btn--primary:hover {
  background: oklch(0.28 0.09 155);
  box-shadow: 0 8px 24px oklch(0.22 0.09 155 / .5);
  transform: translateY(-2px);
}
.btn--cta-main {
  box-shadow: 0 8px 24px oklch(0.24 0.08 155 / .38);
}
.btn--cta-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px oklch(0.24 0.08 155 / .48);
}
.btn--hero-primary {
  font-size: 1.05rem;
  padding: 1.05rem 1.9rem;
}

/* ── Case slides: zoom on photo hover ── */
.case-slide .ba-container img {
  transition: transform 0.4s ease;
}
.case-slide:hover .ba-after img {
  transform: scale(1.03);
}

/* ── Review cards: hover lift ── */
.review-card {
  transition: box-shadow 0.25s, transform 0.25s;
}
.review-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
}

/* ── Serv cards: stronger hover ── */
.serv-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-3px);
}

/* ── Case slide card hover ── */
.case-slide {
  transition: box-shadow 0.25s, transform 0.25s;
}
.case-slide:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .case-slide { transition: none; }
  .review-card { transition: box-shadow 0.25s; }
}
