/* =========================================================
   PLUTUS.CO — финтех-юр-стайл, бордовый бренд, современный
   ========================================================= */

:root {
  /* бренд */
  --wine-950: #2C0810;
  --wine-900: #3D0A12;
  --wine-800: #4F0E1A;
  --wine-700: #6B1622;
  --wine-600: #8B1F2A;
  --wine-500: #B5283A;
  --wine-50:  #FBEDEF;

  /* нейтрали */
  --bg:       #FBF9F6;
  --surface:  #FFFFFF;
  --surface-2:#F4EFE8;
  --line:     #E8E1D7;
  --line-d:   #4A1620;
  --ink:      #1B1014;
  --ink-2:    #5C4148;
  --ink-3:    #8A7077;

  /* акценты */
  --gold:     #D9A441;
  --gold-soft:#F2DDB0;
  --wa:       #25D366;
  --wa-dark:  #128C7E;

  /* радиусы / тени */
  --r-xs: 8px;
  --r-sm: 12px;
  --r:    16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --shadow-1: 0 1px 2px rgba(43,8,16,.04), 0 8px 24px rgba(43,8,16,.05);
  --shadow-2: 0 4px 12px rgba(43,8,16,.08), 0 20px 48px rgba(43,8,16,.10);
  --shadow-3: 0 30px 70px rgba(43,8,16,.18);

  --maxw: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================
   ТИПОГРАФИКА
   ========================================================= */
h1, h2, h3, h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.08;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.18rem; line-height: 1.3; letter-spacing: -.01em; }
h4 { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; }

p { color: var(--ink-2); }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--wine-700);
  background: var(--wine-50);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.kicker--light {
  color: var(--gold);
  background: rgba(217,164,65,.14);
}

.section-h {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 720px;
}
.section-h h2 { margin-bottom: .35em; }
.section-h p { font-size: 1.05rem; color: var(--ink-2); }
.section-h--light h2 { color: #fff; }
.section-h--light p { color: rgba(255,255,255,.7); }

/* =========================================================
   ШАПКА
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,249,246,.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}
.brand__mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--wine-700);
  flex: 0 0 auto;
  transition: transform .25s ease;
}
.brand:hover .brand__mark { transform: rotate(-6deg) scale(1.05); }
.brand--footer .brand__mark { color: var(--gold); }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__text strong {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--ink);
}
.brand__dot { color: var(--wine-600); }
.brand__text em {
  font-style: normal;
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: .04em;
  margin-top: 2px;
}

.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-weight: 600;
  font-size: 15px;
}
.nav__links a {
  color: var(--ink-2);
  transition: color .15s;
  position: relative;
  padding: 4px 0;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a::after {
  content:'';
  position:absolute;
  left:0; right:0; bottom:-2px;
  height:2px;
  background: var(--wine-700);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s;
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--wa);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 6px 16px rgba(37,211,102,.35);
  transition: transform .15s, box-shadow .15s, background .15s;
}
.nav__cta:hover { background: var(--wa-dark); transform: translateY(-1px); }

@media (max-width: 1100px) {
  .brand__text em { display: none; }
}
@media (max-width: 480px) {
  .nav__cta span { display: none; }
  .nav__cta { padding: 11px 14px; }
}

/* =========================================================
   КНОПКИ
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  border: 0;
  white-space: nowrap;
  transition: transform .15s, box-shadow .15s, background .15s, color .15s;
  text-decoration: none;
}
.btn--wa {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 8px 20px rgba(37,211,102,.34);
}
.btn--wa:hover { background: var(--wa-dark); transform: translateY(-1px); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover { background: var(--surface); border-color: var(--ink); }

.btn--xl {
  padding: 18px 28px;
  font-size: 16px;
  border-radius: 14px;
}
.btn--sm { padding: 10px 16px; font-size: 14px; border-radius: 10px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #fbf7ef 100%);
  color: var(--ink);
  overflow: hidden;
  padding: 104px 0 96px;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    radial-gradient(780px 420px at 82% 8%, rgba(217,164,65,.22), transparent 62%),
    radial-gradient(620px 360px at 8% 12%, rgba(107,22,34,.12), transparent 64%),
    linear-gradient(180deg, #fff 0%, #fbf7ef 100%);
}
.hero__bg .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  pointer-events: none;
}
.blob--1 {
  top: -120px; right: -120px;
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(217,164,65,.34), transparent 60%);
}
.blob--2 {
  bottom: -160px; left: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(107,22,34,.16), transparent 60%);
  opacity: .35;
}
.hero__bg .grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(107,22,34,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107,22,34,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 70%);
  opacity: .6;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero__copy { max-width: 620px; }

/* фото-блок Руфинам */
.hero__author {
  position: relative;
  align-self: stretch;
  min-height: 540px;
  display: flex;
  align-items: flex-end;
}
.hero__author-photo {
  position: absolute;
  inset: 0;
  background-image: url('img/rufina-laptop.jpg');
  background-size: auto 165%;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-color: var(--wine-800);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-3);
  overflow: hidden;
}
.hero__author-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, var(--wine-900) 0%, rgba(61,10,18,.85) 8%, rgba(61,10,18,0) 28%),
    linear-gradient(180deg, transparent 60%, rgba(44,8,16,.95) 100%);
  pointer-events: none;
}
.hero__author-card {
  position: relative;
  z-index: 1;
  margin: 0 22px 22px;
  background: rgba(15, 5, 8, .55);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  color: #fff;
}
.hero__author-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}
.hero__author-name {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -.01em;
}
.hero__author-ig {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: var(--gold);
  border: 1px solid rgba(217,164,65,.4);
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 600;
  transition: background .15s, color .15s;
}
.hero__author-ig:hover { background: var(--gold); color: var(--wine-950); }
.hero__author-card p {
  font-size: .88rem;
  color: rgba(255,255,255,.78);
  margin-bottom: 14px;
  line-height: 1.5;
}
.hero__author-stat {
  display: flex;
  gap: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero__author-stat span {
  display: flex;
  flex-direction: column;
  font-size: .72rem;
  color: rgba(255,255,255,.6);
  line-height: 1.2;
}
.hero__author-stat b {
  display: block;
  font-size: 1.05rem;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: -.01em;
  margin-bottom: 2px;
}

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__author { min-height: 460px; max-width: 480px; margin: 0 auto; width: 100%; }
}
@media (max-width: 540px) {
  .hero__author { min-height: 420px; }
  .hero__author-card { margin: 0 12px 14px; padding: 18px 18px; }
  .hero__author-stat { gap: 12px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--wine-700);
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(107,22,34,.12);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.eyebrow__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(217,164,65,.25);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; }
  50%     { opacity: .5; }
}

.hero h1 {
  color: var(--ink);
  max-width: 13ch;
  margin-bottom: 24px;
}
.hero h1 .hl {
  display: inline-block;
  background: linear-gradient(135deg, var(--wine-700), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.lead {
  font-size: 1.13rem;
  color: var(--ink-2);
  max-width: 56ch;
  margin-bottom: 30px;
}
.hero__mobile-line {
  display: none;
}

.hero__signal {
  max-width: 620px;
  margin: -10px 0 24px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(217,164,65,.38);
  border-radius: 16px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 14px 34px rgba(43,8,16,.07);
}
.hero__signal span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(217,164,65,.22);
  color: var(--wine-700);
  font-size: .78rem;
  font-weight: 900;
  white-space: nowrap;
}
.hero__signal b {
  color: var(--ink);
  font-size: .94rem;
  line-height: 1.35;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__cta .btn--wa {
  min-width: 220px;
}
.hero__cta .btn--ghost {
  color: var(--wine-700);
  border-color: rgba(107,22,34,.18);
  background: rgba(255,255,255,.72);
}
.hero__cta .btn--ghost:hover {
  background: #fff;
  border-color: rgba(107,22,34,.36);
}
.hero__quick {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.hero__quick span {
  color: var(--ink-3);
  font-size: .86rem;
  font-weight: 800;
}
.hero__quick button {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(217,164,65,.46);
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  color: var(--wine-700);
  font: inherit;
  font-size: .86rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.hero__quick button:hover,
.hero__quick button:focus-visible {
  transform: translateY(-1px);
  background: rgba(217,164,65,.18);
  border-color: var(--gold);
  outline: none;
}
.hero__route {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 680px;
}
.hero__route div {
  min-height: 86px;
  padding: 14px;
  border: 1px solid rgba(107,22,34,.1);
  border-radius: 14px;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
}
.hero__route span {
  display: block;
  margin-bottom: 8px;
  color: var(--wine-700);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
}
.hero__route b {
  display: block;
  color: var(--ink);
  font-size: .92rem;
  line-height: 1.25;
}

.hero__metrics {
  grid-column: 1 / -1;
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(107,22,34,.1);
}
.metric {
  padding: 32px 24px 0 0;
  position: relative;
}
.metric + .metric {
  padding-left: 24px;
  border-left: 1px solid rgba(255,255,255,.1);
}
.metric__num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(1.65rem, 3.2vw, 2.8rem);
  letter-spacing: -.03em;
  color: var(--wine-700);
  line-height: 1;
  white-space: nowrap;
}
.metric__num .metric__sm {
  font-size: .55em;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}
.metric__lbl {
  margin-top: 12px;
  font-size: .92rem;
  color: var(--ink-2);
  line-height: 1.4;
  max-width: 24ch;
}

@media (max-width: 900px) {
  .hero { padding: 60px 0 80px; }
  .hero__route { grid-template-columns: 1fr; }
  .hero__route div { min-height: auto; }
  .hero__metrics {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 56px;
  }
  .metric { padding: 24px 12px 0 0; }
  .metric:nth-child(odd) { border-left: 0; padding-left: 0; }
  .metric:nth-child(2n) { border-left: 1px solid rgba(107,22,34,.1); padding-left: 20px; }
  .metric:nth-child(n+3) { border-top: 1px solid rgba(107,22,34,.1); margin-top: 24px; padding-top: 24px; }
  .metric__num { font-size: 1.7rem; }
  .metric__lbl { font-size: .85rem; }
}

/* hero trust strip */
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(107,22,34,.1);
  list-style: none;
}
.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .92rem;
  color: var(--ink-2);
}
.hero__trust svg { color: var(--gold); flex: 0 0 auto; }
.hero__trust b { color: var(--wine-700); font-weight: 700; }

/* =========================================================
   ГЛАВНОЕ ЗА 10 СЕКУНД
   ========================================================= */
.clarity {
  padding: 90px 0 96px;
  background:
    radial-gradient(640px 320px at 8% 8%, rgba(217,164,65,.16), transparent 64%),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}
.clarity .section-h {
  max-width: 860px;
}
.clarity__grid {
  display: grid;
  grid-template-columns: 1.18fr 1fr 1fr 1.18fr;
  gap: 14px;
}
.clarity-card {
  position: relative;
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.clarity-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--wine-700), var(--gold));
}
.clarity-card__step {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 14px;
  background: var(--wine-50);
  color: var(--wine-700);
  font-size: .82rem;
  font-weight: 900;
}
.clarity-card small {
  display: block;
  margin-bottom: 10px;
  color: var(--ink-3);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.clarity-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.18rem, 1.7vw, 1.55rem);
  line-height: 1.18;
}
.clarity-card p {
  color: var(--ink-2);
  line-height: 1.55;
}
.clarity-card .btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}
.clarity-card--dark {
  background: rgba(255,255,255,.92);
  border-color: var(--line);
}
.clarity-card--dark .clarity-card__step {
  background: var(--wine-50);
  color: var(--wine-700);
}
.clarity-card--dark small,
.clarity-card--dark p {
  color: var(--ink-2);
}
.clarity-card--dark h3 {
  color: var(--ink);
}
.clarity-card--gold {
  background: linear-gradient(160deg, #fff7e4, #fff);
  border-color: rgba(217,164,65,.4);
}
.clarity__proof {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.clarity__proof > div {
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(107,22,34,.12);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(20,8,14,.06);
}
.clarity__proof b {
  display: block;
  margin-bottom: 6px;
  color: var(--wine-700);
  font-size: 1.35rem;
  line-height: 1;
}
.clarity__proof span {
  color: var(--ink-2);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.35;
}

@media (max-width: 1080px) {
  .clarity__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .clarity { padding: 68px 0; }
  .clarity__grid,
  .clarity__proof {
    grid-template-columns: 1fr;
  }
  .clarity-card {
    min-height: auto;
    padding: 22px;
    border-radius: 14px;
  }
  .clarity-card__step {
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
  }
}

/* =========================================================
   ЧТО РЕШАЕМ
   ========================================================= */
.focus {
  padding: 96px 0;
  background:
    radial-gradient(720px 360px at 90% 12%, rgba(217,164,65,.14), transparent 64%),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}
.focus__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.focus-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.focus-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
  border-color: rgba(107,22,34,.24);
}
.focus-card__n {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 12px;
  background: var(--wine-50);
  color: var(--wine-700);
  font-weight: 900;
  font-size: .8rem;
}
.focus-card h3 {
  margin-bottom: 10px;
}
.focus-card p {
  color: var(--ink-2);
  font-size: .94rem;
  line-height: 1.55;
  margin-bottom: 22px;
}
.focus-card a {
  margin-top: auto;
  color: var(--wine-700);
  font-weight: 900;
  font-size: .92rem;
}
.focus-card a::after {
  content: ' ->';
}
.focus-card--dark {
  background: linear-gradient(160deg, var(--wine-900), var(--wine-950));
  border-color: transparent;
}
.focus-card--dark h3,
.focus-card--dark a { color: #fff; }
.focus-card--dark p { color: rgba(255,255,255,.72); }
.focus-card--dark .focus-card__n {
  background: rgba(217,164,65,.18);
  color: var(--gold);
}

@media (max-width: 980px) {
  .focus__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .focus { padding: 68px 0; }
  .focus__grid { grid-template-columns: 1fr; }
  .focus-card { min-height: auto; }
}

.dont {
  padding: 94px 0;
  background:
    linear-gradient(135deg, rgba(90,19,32,.96), rgba(38,7,14,.98)),
    var(--wine-950);
  color: #fff;
}
.dont__wrap {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.25fr);
  gap: 34px;
  align-items: start;
}
.dont__intro {
  position: sticky;
  top: 96px;
}
.dont__intro h2 {
  color: #fff;
  max-width: 12ch;
  margin: 18px 0 18px;
}
.dont__intro p {
  max-width: 48ch;
  color: rgba(255,255,255,.74);
  line-height: 1.65;
  margin-bottom: 24px;
}
.dont__list {
  display: grid;
  gap: 12px;
}
.dont__list article {
  position: relative;
  min-height: 154px;
  padding: 26px 28px 24px 92px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.dont__list article span {
  position: absolute;
  left: 26px;
  top: 26px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--gold);
  color: var(--wine-950);
  font-weight: 900;
  font-size: .82rem;
}
.dont__list h3 {
  color: #fff;
  margin-bottom: 8px;
}
.dont__list p {
  color: rgba(255,255,255,.68);
  line-height: 1.55;
  max-width: 58ch;
}

@media (max-width: 900px) {
  .dont__wrap { grid-template-columns: 1fr; }
  .dont__intro { position: static; }
  .dont__intro h2 { max-width: 100%; }
}
@media (max-width: 620px) {
  .dont { padding: 68px 0; }
  .dont__list article {
    min-height: auto;
    padding: 22px 20px 22px 78px;
    border-radius: 14px;
  }
  .dont__list article span {
    left: 20px;
    top: 22px;
    width: 40px;
    height: 40px;
  }
}

/* =========================================================
   ЗНАКОМО? (PAIN)
   ========================================================= */
.pain {
  padding: 110px 0;
  background: var(--bg);
}
.pain__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pain__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.pain__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
  border-color: transparent;
}
.pain__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--wine-50);
  color: var(--wine-700);
  margin-bottom: 22px;
}
.pain__card h3 {
  margin-bottom: 8px;
  color: var(--ink);
}
.pain__card p {
  font-size: .94rem;
  color: var(--ink-2);
}

@media (max-width: 1000px) { .pain__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .pain__grid { grid-template-columns: 1fr; } }

/* =========================================================
   ПОДБОР РЕШЕНИЯ
   ========================================================= */
.diagnostic {
  padding: 105px 0;
  scroll-margin-top: 88px;
  background:
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}
.diag {
  max-width: 1100px;
  margin: 0 auto;
  scroll-margin-top: 88px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-2);
  overflow: hidden;
}
.diag__progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.diag__step {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 12px 14px;
  background: var(--surface-2);
  color: var(--ink-3);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  text-align: center;
}
.diag__step.is-active {
  background: var(--wine-700);
  color: #fff;
}
.diag__step.is-done {
  background: var(--wine-50);
  color: var(--wine-700);
}
.diag__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  min-height: 560px;
}
.diag__main {
  padding: 42px;
}
.diag__stage {
  animation: diagIn .24s ease both;
}
@keyframes diagIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.diag__stage-head {
  max-width: 640px;
  margin-bottom: 26px;
}
.diag__stage-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--wine-50);
  color: var(--wine-700);
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 14px;
}
.diag__stage h3,
.diag__result h3 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  margin-bottom: 10px;
}
.diag__stage p,
.diag__result p {
  font-size: 1rem;
}
.diag__choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.diag__choices--detail {
  grid-template-columns: 1fr;
  max-width: 760px;
}
.diag-choice {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 118px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
}
.diag-choice:hover,
.diag-choice:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(107,22,34,.32);
  box-shadow: var(--shadow-1);
  outline: none;
}
.diag-choice.is-selected {
  border-color: var(--wine-700);
  background: var(--wine-50);
}
.diag-choice__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--wine-50);
  color: var(--wine-700);
  flex: 0 0 auto;
}
.diag-choice b {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.25;
}
.diag-choice small {
  display: block;
  color: var(--ink-2);
  font-size: .88rem;
  line-height: 1.4;
}
.diag__back {
  margin-top: 20px;
  background: transparent;
  border: 0;
  color: var(--wine-700);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.diag__result {
  max-width: 760px;
}
.diag__summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0;
}
.diag__summary > div {
  min-height: 96px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface-2);
}
.diag__summary span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-3);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.diag__summary b {
  color: var(--wine-700);
  font-size: 1.35rem;
  line-height: 1.15;
}
.diag__todo {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  counter-reset: diagTodo;
}
.diag__todo li {
  position: relative;
  padding: 14px 16px 14px 48px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: #fff;
  color: var(--ink-2);
}
.diag__todo li::before {
  counter-increment: diagTodo;
  content: counter(diagTodo);
  position: absolute;
  left: 14px;
  top: 13px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--wine-700);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
}
.diag__handoff {
  display: grid;
  gap: 5px;
  margin: -8px 0 24px;
  padding: 16px 18px;
  border: 1px solid rgba(37,211,102,.28);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(37,211,102,.12), rgba(255,255,255,.94));
}
.diag__handoff b {
  color: var(--wine-700);
  font-size: 1.04rem;
}
.diag__handoff span {
  color: var(--ink-2);
  line-height: 1.45;
}
.diag__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.diag__side {
  padding: 36px 28px;
  background: linear-gradient(180deg, var(--wine-900), var(--wine-950));
  color: #fff;
}
.diag__side-kicker {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.diag__side-list {
  display: grid;
  gap: 18px;
  list-style: none;
  counter-reset: diagSide;
}
.diag__side-list li {
  position: relative;
  padding-left: 42px;
  color: rgba(255,255,255,.56);
}
.diag__side-list li::before {
  counter-increment: diagSide;
  content: counter(diagSide);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.72);
  font-size: .8rem;
  font-weight: 800;
}
.diag__side-list li.is-active::before,
.diag__side-list li.is-done::before {
  background: var(--gold);
  color: var(--wine-950);
}
.diag__side-list b {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: .95rem;
}
.diag__side-list span {
  display: block;
  font-size: .86rem;
  line-height: 1.45;
}

@media (max-width: 940px) {
  .diag__body { grid-template-columns: 1fr; }
  .diag__side { padding: 26px 28px; }
  .diag__side-list { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .diag__side-list li { padding-left: 0; padding-top: 38px; }
}
@media (max-width: 720px) {
  .diagnostic { padding: 72px 0; }
  .diag__progress { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .diag__step { min-height: 44px; padding: 9px 6px; font-size: .68rem; }
  .diag__main { padding: 26px 18px; }
  .diag__choices { grid-template-columns: 1fr; }
  .diag-choice { min-height: 96px; grid-template-columns: 48px minmax(0, 1fr); padding: 14px; }
  .diag-choice__icon { width: 48px; height: 48px; border-radius: 14px; }
  .diag__summary { grid-template-columns: 1fr; }
  .diag__actions .btn { width: 100%; }
  .diag__side-list { grid-template-columns: 1fr; }
}

/* =========================================================
   УСЛУГИ
   ========================================================= */
.services {
  padding: 110px 0;
  background: var(--surface-2);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  border-color: transparent;
}
.card--accent {
  background: linear-gradient(180deg, var(--wine-900), var(--wine-800));
  color: #fff;
  border-color: transparent;
}
.card--accent h3 { color: #fff; }
.card--accent p { color: rgba(255,255,255,.75); }

.card__h {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.card__num {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--ink-3);
}
.card--accent .card__num { color: rgba(255,255,255,.45); }

.card__tag {
  display: inline-block;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--wine-700);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.card--accent .card__tag { background: rgba(255,255,255,.1); color: var(--gold-soft); }
.card__tag--accent { background: var(--gold) !important; color: var(--wine-900) !important; }

.card__icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--wine-50);
  color: var(--wine-700);
  margin-bottom: 20px;
}
.card--accent .card__icon {
  background: rgba(217,164,65,.18);
  color: var(--gold);
}

.card h3 {
  margin-bottom: 10px;
}
.card > p {
  margin-bottom: 18px;
  font-size: .95rem;
  flex: 0 0 auto;
}

.card__list {
  margin: 0 0 24px;
  font-size: .9rem;
  color: var(--ink);
  flex: 1;
}
.card--accent .card__list { color: rgba(255,255,255,.85); }
.card__list li {
  position: relative;
  padding: 5px 0 5px 22px;
}
.card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 14px; height: 2px;
  background: var(--wine-600);
  border-radius: 2px;
}
.card--accent .card__list li::before { background: var(--gold); }

.card__f {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.card--accent .card__f { border-top-color: rgba(255,255,255,.12); }

.price { display: flex; flex-direction: column; }
.price__amt {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1;
}
.card--accent .price__amt { color: #fff; }
.price__per {
  font-size: .76rem;
  color: var(--ink-3);
  margin-top: 4px;
}
.card--accent .price__per { color: rgba(255,255,255,.5); }

@media (max-width: 1000px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .services__grid { grid-template-columns: 1fr; } }

/* =========================================================
   КАЛЬКУЛЯТОР
   ========================================================= */
.calc {
  padding: 110px 0;
  background:
    radial-gradient(1000px 500px at 80% 0%, var(--wine-50), transparent 60%),
    var(--bg);
}
.calc__widget {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  max-width: 1080px;
  margin: 0 auto;
}
.calc__form {
  padding: 44px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: var(--surface);
}
.field { display: flex; flex-direction: column; }
.field label, .field__lbl-static {
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink-2);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.field__row {
  display: flex;
  align-items: center;
  gap: 18px;
}
.field__out {
  flex: 0 0 auto;
  min-width: 140px;
  text-align: right;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--wine-700);
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.field__scale {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: .74rem;
  color: var(--ink-3);
  font-weight: 600;
}

/* range */
input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--wine-700) var(--p, 30%), var(--surface-2) var(--p, 30%));
  border-radius: 999px;
  outline: none;
  cursor: pointer;
  flex: 1;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--wine-700);
  box-shadow: 0 4px 10px rgba(107,22,34,.25);
  cursor: grab;
  transition: transform .12s;
}
input[type=range]::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.12); }
input[type=range]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--wine-700);
  box-shadow: 0 4px 10px rgba(107,22,34,.25);
  cursor: grab;
}

/* toggles */
.toggles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background: var(--surface-2);
  padding: 4px;
  border-radius: 12px;
}
.toggle {
  display: block;
  text-align: center;
  cursor: pointer;
  position: relative;
}
.toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.toggle span {
  display: block;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink-2);
  transition: background .15s, color .15s;
}
.toggle input:checked + span {
  background: var(--wine-700);
  color: #fff;
  box-shadow: 0 4px 10px rgba(107,22,34,.25);
}

.calc__result {
  background: linear-gradient(160deg, var(--wine-900), var(--wine-950));
  color: #fff;
  padding: 44px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.calc__result::before {
  content:'';
  position:absolute;
  inset:0;
  background: radial-gradient(500px 300px at 100% 0%, rgba(217,164,65,.18), transparent 60%);
  pointer-events: none;
}
.result__hero {
  text-align: center;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 22px;
  position: relative;
}
.result__lbl {
  display: block;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 10px;
}
.result__amt {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.result__sub {
  display: block;
  margin-top: 10px;
  font-size: .9rem;
  color: rgba(255,255,255,.6);
}
.result__rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  position: relative;
}
.result__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255,255,255,.12);
  font-size: .92rem;
  color: rgba(255,255,255,.7);
}
.result__row b {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
}
.result__row--save b { color: var(--gold); }
.result__row--save span::before {
  content: '✓';
  color: var(--gold);
  margin-right: 6px;
  font-weight: 800;
}
.result__note {
  margin-top: 14px;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  text-align: center;
  position: relative;
}

@media (max-width: 900px) {
  .calc__widget { grid-template-columns: 1fr; }
  .calc__form { padding: 28px; gap: 24px; }
  .calc__result { padding: 32px 28px; }
  .field__out { font-size: 1.2rem; min-width: 110px; }
}

/* =========================================================
   С КЕМ РАБОТАЕМ
   ========================================================= */
.creditors {
  padding: 110px 0;
  background: var(--surface-2);
}
.creditors__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}
.ctab {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink-2);
  padding: 12px 22px;
  border-radius: 999px;
  font-family: inherit;
  font-size: .92rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.ctab:hover { background: var(--bg); border-color: var(--ink-2); color: var(--ink); }
.ctab.is-active {
  background: var(--wine-900);
  border-color: var(--wine-900);
  color: #fff;
}

.creditors__grid {
  display: none;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.creditors__grid.is-active {
  display: grid;
  animation: fadeIn .3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.ctile {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 14px 16px;
  border-radius: 12px;
  text-align: left;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
  transition: transform .15s, box-shadow .15s, border-color .15s;
  cursor: default;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
}
.ctile:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-1);
  border-color: var(--wine-600);
}
.ctile__logo {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: var(--c, var(--wine-700));
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: -.01em;
  box-shadow: 0 2px 6px rgba(0,0,0,.12);
  font-family: 'Manrope', sans-serif;
  position: relative;
  overflow: hidden;
}
/* Реальная иконка с домена кредитора — поверх буквы.
   Если onerror удалит <img>, под ней остаётся буквенный плейсхолдер. */
.ctile__logo--img {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.08), 0 0 0 1px rgba(20,8,14,.06) inset;
}
.ctile__img {
  position: absolute;
  inset: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  object-fit: contain;
  display: block;
}
.ctile--more {
  background: var(--wine-50);
  color: var(--wine-700);
  border-color: transparent;
  font-style: italic;
}
.ctile--cat {
  grid-column: 1 / -1;
  background: transparent;
  border: 0;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 22px 0 8px;
  font-weight: 700;
}
.ctile--cat:hover { transform: none; box-shadow: none; }

.creditors__note {
  text-align: center;
  margin-top: 32px;
  color: var(--ink-2);
  font-size: .98rem;
}
.creditors__note a {
  color: var(--wine-700);
  font-weight: 700;
  border-bottom: 1px dashed var(--wine-700);
}
.creditors__note a:hover { color: var(--wine-600); }

@media (max-width: 1000px) { .creditors__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 760px)  { .creditors__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* =========================================================
   ИСТОРИИ
   ========================================================= */
.stories {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--wine-900), var(--wine-950));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stories::before {
  content:'';
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 500px at 50% 0%, rgba(217,164,65,.1), transparent 60%);
  pointer-events: none;
}
.stories > .container { position: relative; }

.stories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.story {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: background .2s, transform .2s, border-color .2s;
}
.story:hover {
  background: rgba(255,255,255,.06);
  transform: translateY(-3px);
  border-color: rgba(217,164,65,.3);
}
.story__h {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 20px;
}
.story__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--wine-600));
  color: var(--wine-950);
  font-weight: 800;
  font-size: 1.2rem;
  flex: 0 0 auto;
}
.story__h strong {
  display: block;
  color: #fff;
  font-weight: 700;
}
.story__h span {
  display: block;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
}
.story h3 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 1.1rem;
}
.story__before, .story__after {
  font-size: .92rem;
  line-height: 1.55;
  margin-bottom: 12px;
  padding-left: 14px;
  border-left: 2px solid rgba(255,255,255,.1);
}
.story__before {
  color: rgba(255,255,255,.55);
}
.story__before b { color: var(--wine-500); margin-right: 4px; }
.story__after {
  color: rgba(255,255,255,.85);
  border-left-color: var(--gold);
}
.story__after b { color: var(--gold); margin-right: 4px; }

.story__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.story__stats > div {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  line-height: 1.3;
}
.story__stats span {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 2px;
  letter-spacing: -.02em;
}

@media (max-width: 1000px) { .stories__grid { grid-template-columns: 1fr; } }

/* =========================================================
   INSTAGRAM
   ========================================================= */
.ig {
  padding: 110px 0;
  background:
    radial-gradient(800px 500px at 100% 0%, rgba(236,72,153,.06), transparent 60%),
    radial-gradient(700px 500px at 0% 100%, rgba(245,158,11,.06), transparent 60%),
    var(--bg);
}
.ig__inner {
  max-width: 1080px;
}
.ig__profile {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.ig__avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  padding: 3px;
  background: conic-gradient(from 0deg, #F58529, #DD2A7B, #8134AF, #515BD4, #F58529);
  flex: 0 0 auto;
}
.ig__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 30%;
  border: 3px solid var(--bg);
}
.ig__meta { flex: 1; min-width: 0; }
.ig__handle {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.ig__name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}
.ig__name svg {
  background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF);
  color: #fff;
  border-radius: 8px;
  padding: 3px;
  width: 26px;
  height: 26px;
}
.ig__name span {
  border-bottom: 1px dashed transparent;
  transition: border-color .15s, color .15s;
}
.ig__name:hover span { color: #DD2A7B; border-color: #DD2A7B; }
.ig__follow {
  background: linear-gradient(135deg, #F58529, #DD2A7B);
  color: #fff;
  border: 0;
}
.ig__follow:hover { color: #fff; opacity: .9; transform: translateY(-1px); }

.ig__title {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  margin-bottom: 12px;
  letter-spacing: -.01em;
  color: var(--ink);
}
.ig__bio {
  font-size: .95rem;
  color: var(--ink-2);
  line-height: 1.55;
}
.ig__bio b { color: var(--ink); }

.ig__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
.ig__post {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--surface-2);
  cursor: pointer;
  transition: transform .2s;
}
.ig__post:hover { transform: translateY(-3px); }
.ig__post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease, filter .25s;
}
.ig__post:hover img { transform: scale(1.05); filter: brightness(.6); }
.ig__post-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 8px;
  padding: 16px;
  color: #fff;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.6) 100%);
  pointer-events: none;
}
.ig__post-overlay svg { opacity: .8; }
.ig__post-overlay span:not(:first-child),
.ig__post-overlay > span:nth-child(2) {
  font-size: .85rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.005em;
}
.ig__post-overlay span:nth-child(2) {
  font-size: .85rem;
  font-weight: 700;
}

.ig__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF, #515BD4);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 22px rgba(221,42,123,.28);
  transition: transform .15s, box-shadow .15s;
}
.ig__cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(221,42,123,.4); }

@media (max-width: 720px) {
  .ig__profile { flex-direction: column; text-align: center; gap: 20px; }
  .ig__avatar { width: 90px; height: 90px; }
  .ig__handle { justify-content: center; }
  .ig__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .ig__post-overlay { padding: 12px; }
  .ig__post-overlay span:nth-child(2) { font-size: .75rem; }
}

/* =========================================================
   КАК РАБОТАЕМ
   ========================================================= */
.howto {
  padding: 110px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  list-style: none;
  counter-reset: step;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 12%; right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--wine-600) 0 8px, transparent 8px 16px);
  opacity: .25;
  z-index: 0;
}
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  position: relative;
  transition: background .2s, transform .2s, border-color .2s, box-shadow .2s;
  z-index: 1;
}
.step:hover {
  transform: translateY(-3px);
  border-color: var(--wine-600);
  box-shadow: var(--shadow-2);
}
.step__n {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, var(--wine-700), var(--wine-900));
  color: var(--gold);
  line-height: 1;
  margin-bottom: 18px;
  box-shadow: 0 6px 14px rgba(107,22,34,.25);
}
.step h3 { color: var(--ink); margin-bottom: 8px; }
.step p { color: var(--ink-2); font-size: .92rem; }

@media (max-width: 900px) { .steps::before { display: none; } }

@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }

/* =========================================================
   ОТЗЫВЫ
   ========================================================= */
.reviews {
  padding: 110px 0;
  background:
    radial-gradient(720px 360px at 8% 0%, rgba(217,164,65,.16), transparent 62%),
    linear-gradient(180deg, #fff 0%, var(--bg) 48%, var(--surface-2) 100%);
  position: relative;
  overflow: hidden;
}
.reviews .container {
  position: relative;
  z-index: 1;
}
.reviews .section-h {
  max-width: 780px;
}
.reviews__summary {
  max-width: 860px;
  margin: -22px auto 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.reviews__summary > div {
  min-height: 88px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-1);
}
.reviews__summary b {
  display: block;
  margin-bottom: 4px;
  color: var(--wine-700);
  font-size: 1.35rem;
  line-height: 1;
}
.reviews__summary span {
  display: block;
  color: var(--ink-2);
  font-size: .86rem;
  font-weight: 700;
  line-height: 1.35;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.bubble {
  min-height: 210px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(90,19,32,.12);
  border-radius: 18px;
  padding: 30px 26px 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(43,8,16,.07);
  transition: transform .2s, box-shadow .2s, border-color .2s, background .2s;
}
.bubble::before {
  content: '“';
  position: absolute;
  top: -14px;
  left: 18px;
  color: rgba(107,22,34,.12);
  font-size: 6.5rem;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}
.bubble::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--wine-700), var(--gold));
  opacity: .75;
}
.bubble:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
  border-color: rgba(107,22,34,.24);
}
.bubble p {
  margin-bottom: 14px;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.62;
  position: relative;
  z-index: 1;
}
.bubble footer {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--wine-50);
  color: var(--wine-700);
  font-size: .78rem;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.bubble:nth-child(3n+2) {
  background: linear-gradient(160deg, var(--wine-900), var(--wine-950));
  color: #fff;
  border-color: transparent;
}
.bubble:nth-child(3n+2)::before { color: rgba(217,164,65,.16); }
.bubble:nth-child(3n+2) p { color: #fff; }
.bubble:nth-child(3n+2) footer {
  background: rgba(255,255,255,.1);
  color: var(--gold-soft);
}

@media (max-width: 900px) { .reviews__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) {
  .reviews__summary { grid-template-columns: 1fr; margin-top: -10px; }
  .reviews__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  padding: 110px 0;
  background: var(--surface-2);
}
.faq__wrap {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: start;
}
.faq__intro { position: sticky; top: 100px; }
.faq__intro h2 { margin-bottom: 16px; }
.faq__intro p {
  margin-bottom: 24px;
  color: var(--ink-2);
}
.faq__list { display: flex; flex-direction: column; gap: 10px; }

.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 4px 24px;
  transition: border-color .2s, box-shadow .2s;
}
.faq details[open] {
  border-color: var(--wine-700);
  box-shadow: var(--shadow-1);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 32px 18px 0;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  position: relative;
  transition: color .15s;
}
.faq summary:hover { color: var(--wine-700); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  width: 14px; height: 14px;
  border-right: 2.5px solid var(--wine-700);
  border-bottom: 2.5px solid var(--wine-700);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .2s;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq details p {
  padding: 0 0 22px;
  color: var(--ink-2);
  font-size: .96rem;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

@media (max-width: 900px) {
  .faq__wrap { grid-template-columns: 1fr; gap: 40px; }
  .faq__intro { position: static; text-align: center; }
}

/* =========================================================
   ФИНАЛЬНЫЙ CTA
   ========================================================= */
.cta-final {
  padding: 110px 0;
  background: var(--wine-950);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 100% 0%, rgba(217,164,65,.12), transparent 60%),
    radial-gradient(700px 500px at 0% 100%, rgba(181,40,58,.3), transparent 60%);
}
.cta-final__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}
.cta-final__copy h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 18px;
}
.cta-final__copy p {
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
  max-width: 50ch;
  margin-bottom: 32px;
}
.cta-final__btns { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-final .btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,.22);
}
.cta-final .btn--ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.5);
}

.cta-final__stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ctaStat {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-left: 3px solid var(--gold);
  padding: 22px 24px;
  border-radius: 0 var(--r) var(--r) 0;
  font-size: .95rem;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: baseline;
  gap: 18px;
}
.ctaStat span {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -.02em;
  line-height: 1;
  flex: 0 0 auto;
}

@media (max-width: 900px) {
  .cta-final__inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-final__btns .btn { flex: 1; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--wine-950);
  color: rgba(255,255,255,.7);
  padding: 80px 0 30px;
  font-size: .92rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer__row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.brand--footer .brand__text strong { color: #fff; }
.brand--footer .brand__text em { color: rgba(255,255,255,.45); }
.footer__lead {
  margin-top: 18px;
  max-width: 320px;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}
.footer h4 {
  color: var(--gold);
  margin-bottom: 16px;
}
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: rgba(255,255,255,.7);
  transition: color .15s;
}
.footer ul a:hover { color: #fff; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .footer__row { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 540px) {
  .footer__row { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; }
}

/* =========================================================
   ПЛАВАЮЩАЯ КНОПКА
   ========================================================= */
.floating {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(37,211,102,.45);
  animation: pulse 2.4s ease-out infinite;
  transition: transform .15s;
}
.floating:hover { transform: scale(1.08); animation: none; }
@keyframes pulse {
  0%   { box-shadow: 0 12px 28px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); }
  70%  { box-shadow: 0 12px 28px rgba(37,211,102,.45), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 12px 28px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}
@media (max-width: 540px) {
  .floating { width: 56px; height: 56px; right: 14px; bottom: 14px; }
}

/* =========================================================
   УТИЛИТЫ
   ========================================================= */
::selection { background: var(--wine-700); color: #fff; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* =========================================================
   STICKY MOBILE BAR — современный паттерн:
   primary WhatsApp + два иконочных secondary action'а
   ========================================================= */
.mbar {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  z-index: 95;
  display: none;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 18px;
  box-shadow:
    0 18px 50px rgba(20, 8, 14, .22),
    0 2px 6px rgba(20, 8, 14, .08),
    0 0 0 1px rgba(255, 255, 255, .35) inset;
  transform: translateY(140%);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.mbar.is-visible { transform: translateY(0); }

/* Primary CTA — WhatsApp с лейблом */
.mbar__primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: #fff;
  background: linear-gradient(180deg, #25D366 0%, #1eb858 100%);
  box-shadow:
    0 6px 18px rgba(37, 211, 102, .42),
    0 1px 0 rgba(255, 255, 255, .3) inset,
    0 -1px 0 rgba(0, 0, 0, .08) inset;
  transition: transform .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.mbar__primary:active {
  transform: scale(.97);
  box-shadow: 0 3px 10px rgba(37, 211, 102, .35);
}
.mbar__primary svg { color: #fff; flex: 0 0 auto; }

/* Secondary icon buttons — нейтрально-стеклянные с цветной иконкой */
.mbar__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  text-decoration: none;
  background: rgba(20, 8, 14, .04);
  transition: background .15s ease, transform .15s ease;
  position: relative;
}
.mbar__icon:hover  { background: rgba(20, 8, 14, .07); }
.mbar__icon:active { transform: scale(.94); background: rgba(20, 8, 14, .1); }
.mbar__icon--phone svg { color: var(--wine-700, #5A1320); }
.mbar__icon--ig {
  background: linear-gradient(135deg, rgba(240, 148, 51, .12), rgba(220, 39, 67, .12), rgba(188, 24, 136, .12));
}
.mbar__icon--ig:hover {
  background: linear-gradient(135deg, rgba(240, 148, 51, .22), rgba(220, 39, 67, .22), rgba(188, 24, 136, .22));
}
.mbar__icon--ig svg {
  color: #dc2743;
}

@media (max-width: 760px) {
  .mbar { display: grid; }
  .floating { display: none !important; }
  body { padding-bottom: 92px; }
}
@media (max-width: 360px) {
  /* На совсем тесных — лейбл WhatsApp короче */
  .mbar__primary span { font-size: 13px; }
}

/* =========================================================
   ШАГИ — интерактивный аккордеон (Как мы работаем)
   Перебиваем grid из старого .steps на вертикальный стек —
   тогда раскрытие шага не оставляет пустых столбцов рядом.
   ========================================================= */
.steps--interactive {
  display: block !important;
  grid-template-columns: none !important;
  grid-template-rows: none !important;
  gap: 0 !important;
  margin: 0 auto;
  max-width: 760px;
  padding: 0;
  list-style: none;
}
.steps--interactive .step {
  background: #fff;
  border: 1px solid rgba(20,8,14,.08);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}
.steps--interactive .step.is-open {
  box-shadow: 0 12px 30px rgba(90, 19, 32, .12);
  border-color: rgba(90, 19, 32, .25);
}
.step__head {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px 18px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
}
.step__head:hover { background: rgba(90, 19, 32, .03); }
.step__head .step__n {
  flex: 0 0 auto;
  font-weight: 800;
  font-size: 18px;
  color: var(--wine-700, #5A1320);
  background: rgba(90, 19, 32, .08);
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 10px;
}
.step__head-text { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.step__title { font-size: 17px; font-weight: 700; }
.step__time { font-size: 13px; color: rgba(20,8,14,.55); font-weight: 500; }
.step__chev { transition: transform .25s ease; color: rgba(20,8,14,.45); flex: 0 0 auto; }
.step.is-open .step__chev { transform: rotate(180deg); }
.step__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.step.is-open .step__body { max-height: 600px; }
.step__body > p { margin: 0 0 8px; padding: 0 18px; color: rgba(20,8,14,.78); }
.step__details {
  margin: 0 0 16px;
  padding: 0 18px 0 36px;
  list-style: disc;
  color: rgba(20,8,14,.78);
  font-size: 14.5px;
  line-height: 1.55;
}
.step__details li { margin: 4px 0; }

/* =========================================================
   ГРАФИК В КАЛЬКУЛЯТОРЕ — линейный «остаток долга»
   ========================================================= */
.calc__chart {
  margin-top: 22px;
  padding: 18px 18px 16px;
  background: linear-gradient(180deg, #fff, #fcf9f6);
  border: 1px solid rgba(20,8,14,.06);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(20,8,14,.04);
}
.calc__chart-h {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.calc__chart-title {
  font-size: 15px;
  font-weight: 700;
  color: rgba(20,8,14,.85);
}
.calc__chart-legend {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12.5px;
  color: rgba(20,8,14,.6);
}
.legend-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}
.legend-dot--bad { background: #d94a4a; }
.legend-dot--good { background: #25b07a; }
#calcChart {
  width: 100%;
  height: auto;
  aspect-ratio: 600/240;
  display: block;
}

/* Простой и понятный сравнительный бар вместо SVG-графика */
.calc__bars {
  display: grid;
  gap: 16px;
  padding: 8px 0 6px;
}
.cbar { display: grid; gap: 8px; }
.cbar__hd {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.cbar__lbl {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(20,8,14,.78);
}
.cbar__val {
  font-size: 17px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.01em;
}
.cbar--bad  .cbar__val { color: #c43838; }
.cbar--good .cbar__val { color: #1f8f63; }
.cbar__track {
  height: 14px;
  background: rgba(20,8,14,.05);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.cbar__fill {
  height: 100%;
  border-radius: 8px;
  transition: width .9s cubic-bezier(.2,.8,.2,1);
  position: relative;
}
.cbar--bad .cbar__fill {
  background: linear-gradient(90deg, #e6614e, #d94a4a);
  box-shadow: 0 0 0 1px rgba(217,74,74,.25) inset;
}
.cbar--good .cbar__fill {
  background: linear-gradient(90deg, #2dc287, #1f8f63);
  box-shadow: 0 0 0 1px rgba(31,143,99,.25) inset;
}
.cbar--good .cbar__fill::after {
  /* галочка-«готово» в конце зелёной полосы */
  content: '✓';
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-weight: 900;
  font-size: 11px;
}
/* Две стат-карточки под полосами — «быстрее / экономия» */
.calc__bars-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}
.bfst {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 0 10px;
  padding: 12px 14px;
  background: linear-gradient(180deg, rgba(31, 143, 99, .08), rgba(31, 143, 99, .03));
  border: 1px solid rgba(31, 143, 99, .16);
  border-radius: 12px;
}
.bfst__icon {
  grid-row: 1 / span 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #fff;
  color: #1f8f63;
  box-shadow: 0 2px 6px rgba(31, 143, 99, .15);
}
.bfst__num {
  font-size: 19px;
  font-weight: 800;
  color: #1f6347;
  letter-spacing: -.01em;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.bfst__lbl {
  font-size: 12px;
  font-weight: 500;
  color: rgba(31, 99, 71, .75);
  margin-top: 2px;
}

/* Сравнительные карточки «было / стало» */
.calc__compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
  margin-top: 14px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(20,8,14,.06);
}
.cmp {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  position: relative;
}
.cmp--bad  { background: linear-gradient(180deg, rgba(217,74,74,.04), rgba(217,74,74,.10)); }
.cmp--good { background: linear-gradient(180deg, rgba(37,176,122,.04), rgba(37,176,122,.10)); }
.cmp__lbl {
  font-size: 12px;
  font-weight: 600;
  color: rgba(20,8,14,.55);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.cmp__num {
  font-size: 24px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
  margin-top: 2px;
}
.cmp--bad  .cmp__num { color: #c43838; }
.cmp--good .cmp__num { color: #1f8f63; }
.cmp__sub {
  font-size: 12.5px;
  color: rgba(20,8,14,.6);
  font-weight: 500;
}
.cmp__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  color: rgba(20,8,14,.35);
}
@media (max-width: 540px) {
  .calc__compare { grid-template-columns: 1fr; }
  .cmp__arrow { padding: 4px 0; transform: rotate(90deg); }
}

/* Полоса «экономия» */
.calc__savings {
  margin-top: 12px;
  padding: 12px 16px;
  background: linear-gradient(90deg, var(--gold, #C8A45E), #b78d3c);
  color: #fff;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(200,164,94,.25);
}
.calc__savings-lbl {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  opacity: .92;
}
#saveTotal {
  font-size: 22px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

/* =========================================================
   ОТЗЫВЫ — галерея скриншотов + лайтбокс
   ========================================================= */
.reviews__shots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto 34px;
  max-width: 980px;
}
.shot {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 10px solid #fff;
  background: linear-gradient(160deg, var(--wine-900), var(--wine-950));
  border-radius: 24px;
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 9/12;
  box-shadow: 0 16px 42px rgba(20,8,14,.18);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.shot:hover  {
  transform: translateY(-4px) scale(1.01);
  border-color: var(--gold-soft);
  box-shadow: 0 24px 54px rgba(20,8,14,.24);
}
.shot:active { transform: translateY(-1px) scale(.995); }
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.shot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(20,8,14,.04) 0%, transparent 42%, rgba(20,8,14,.48) 100%);
  pointer-events: none;
}
.shot__badge,
.shot__zoom {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 800;
  line-height: 1;
}
.shot__badge {
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,.92);
  color: var(--wine-700);
}
.shot__zoom {
  right: 12px;
  bottom: 12px;
  background: var(--wa);
  color: #fff;
  box-shadow: 0 8px 18px rgba(37,211,102,.28);
}
@media (max-width: 760px) {
  .reviews__shots { grid-template-columns: 1fr 1fr; gap: 10px; }
  .reviews__shots .shot:nth-child(3) { grid-column: span 2; aspect-ratio: 16/11; }
  .shot { border-width: 7px; border-radius: 18px; }
}
@media (max-width: 420px) {
  .reviews__shots { grid-template-columns: 1fr; }
  .reviews__shots .shot:nth-child(3) { grid-column: auto; aspect-ratio: 9/12; }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 4, 6, .94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity .2s ease;
}
.lightbox.is-open { display: flex; opacity: 1; }
.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0,0,0,.5);
  animation: lbZoom .25s cubic-bezier(.2,.8,.2,1);
  user-select: none;
  -webkit-user-drag: none;
}
@keyframes lbZoom {
  from { transform: scale(.92); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.lightbox__close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background .15s ease, transform .15s ease;
  z-index: 5;
}
.lightbox__close:hover { background: rgba(255,255,255,.22); transform: scale(1.05); }

/* Стрелки навигации (только в режиме карусели) */
.lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: none;
  place-items: center;
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background .15s ease, transform .15s ease;
  z-index: 5;
}
.lightbox.is-carousel .lightbox__nav { display: grid; }
.lightbox__nav--prev { left: 18px; }
.lightbox__nav--next { right: 18px; }
.lightbox__nav:hover { background: rgba(255,255,255,.22); }
.lightbox__nav:active { transform: translateY(-50%) scale(.94); }

.lightbox__counter {
  position: fixed;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 14px;
  background: rgba(255,255,255,.1);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -.01em;
  font-variant-numeric: tabular-nums;
  backdrop-filter: blur(8px);
  display: none;
}
.lightbox.is-carousel .lightbox__counter { display: block; }

@media (max-width: 760px) {
  .lightbox__nav {
    width: 44px; height: 44px;
    bottom: 18px; top: auto; transform: none;
  }
  .lightbox__nav--prev { left: 18px; }
  .lightbox__nav--next { right: 18px; }
  .lightbox__nav:active { transform: scale(.94); }
}

/* =========================================================
   РЕЗУЛЬТАТЫ — галерея 54 закрытых дел
   ========================================================= */
.results {
  padding: 110px 0;
  background:
    radial-gradient(780px 360px at 92% 8%, rgba(217,164,65,.16), transparent 62%),
    linear-gradient(180deg, var(--bg, #fbf6ef), #fff);
}
.results .section-h h2 b { color: var(--wine-700, #5A1320); }
.results__top {
  max-width: 1100px;
  margin: -12px auto 28px;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 14px;
}
.topcase {
  position: relative;
  min-height: 250px;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  background: var(--wine-900);
  cursor: zoom-in;
  text-align: left;
  box-shadow: 0 18px 38px rgba(20,8,14,.17);
  transition: transform .2s ease, box-shadow .2s ease;
}
.topcase:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(20,8,14,.23);
}
.topcase img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.02) contrast(1.02);
}
.topcase::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,8,14,.08) 0%, rgba(20,8,14,.08) 38%, rgba(20,8,14,.78) 100%);
  pointer-events: none;
}
.topcase__label,
.topcase b,
.topcase small {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
}
.topcase__label {
  top: 16px;
  right: auto;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--wine-700);
  font-size: .76rem;
  font-weight: 900;
}
.topcase b {
  bottom: 42px;
  color: #fff;
  font-size: 1.18rem;
  line-height: 1.18;
}
.topcase small {
  bottom: 18px;
  color: rgba(255,255,255,.72);
  font-size: .84rem;
  font-weight: 700;
}
.results__panel {
  max-width: 980px;
  margin: -20px auto 26px;
  display: grid;
  gap: 16px;
}
.results__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.results__stats > div {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow-1);
}
.results__stats b {
  display: block;
  color: var(--wine-700);
  font-size: 1.45rem;
  line-height: 1;
  margin-bottom: 6px;
}
.results__stats span {
  display: block;
  color: var(--ink-2);
  font-size: .86rem;
  font-weight: 700;
  line-height: 1.3;
}
.results__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.rfilter {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-2);
  font: inherit;
  font-size: .9rem;
  font-weight: 800;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}
.rfilter:hover {
  transform: translateY(-1px);
  border-color: var(--wine-700);
  color: var(--wine-700);
}
.rfilter.is-active {
  background: var(--wine-700);
  border-color: var(--wine-700);
  color: #fff;
}
.results__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 12px;
}
.rcard {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--wine-900, #2c0810);
  border-radius: 18px;
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 4/5;
  box-shadow: 0 12px 30px rgba(20,8,14,.13);
  transition: transform .25s ease, box-shadow .25s ease;
}
.rcard:hover  { transform: translateY(-3px) scale(1.01); box-shadow: 0 16px 32px rgba(20,8,14,.18); }
.rcard:active { transform: translateY(-1px) scale(.995); }
.rcard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.rcard::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(20,8,14,.18) 0%, transparent 28%, rgba(20,8,14,.56) 100%);
  pointer-events: none;
  transition: opacity .25s ease;
}
.rcard:hover::after { opacity: .6; }

/* Бейдж с номером дела в углу */
.rcard__num {
  position: absolute;
  top: 10px; left: 10px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--wine-700);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  letter-spacing: -.01em;
  font-variant-numeric: tabular-nums;
  z-index: 1;
}
.rcard__type {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 1;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(20,8,14,.72);
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

/* Скрытые карточки (после первых 12) */
@keyframes rcardIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.results__more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.results__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  font-size: 15px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.results__more:hover { background: var(--wine-50, #faf2f3); border-color: var(--wine-700, #5A1320); }
.results__more:active { transform: scale(.97); }
.results__more.is-hidden { display: none; }
.results__more svg { transition: transform .25s ease; }

/* Адаптив */
@media (max-width: 1100px) { .results__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 760px)  {
  .results { padding: 64px 0; }
  .results__top {
    grid-template-columns: 1fr;
    margin: -6px auto 22px;
  }
  .topcase,
  .topcase--wide {
    min-height: 220px;
    border-radius: 14px;
  }
  .results__stats { grid-template-columns: 1fr; }
  .results__filters { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .rfilter { flex: 0 0 auto; }
  .results__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .rcard { border-radius: 12px; }
  .results__more { padding: 12px 18px; font-size: 14px; }
}
@media (max-width: 380px) { .results__grid { grid-template-columns: 1fr; } }

/* =========================================================
   ШЛИФОВКА MOBILE (≤760px) и ULTRA-MOBILE (≤420px)
   ========================================================= */
@media (max-width: 760px) {
  /* Контейнер плотнее по бокам */
  .container { padding-left: 16px; padding-right: 16px; }

  /* Заголовки секций — компактнее, но читабельно */
  .section-h { margin-bottom: 28px; }
  .section-h h2 { font-size: clamp(1.55rem, 5.5vw, 2rem); line-height: 1.18; letter-spacing: -.02em; }
  .section-h p  { font-size: .96rem; line-height: 1.55; }
  .kicker { font-size: .72rem; padding: 5px 12px; }

  /* Hero: mobile-first, без перегруза в первом экране */
  .hero { padding: 34px 0 46px; }
  .hero h1 {
    font-size: clamp(1.62rem, 7vw, 2.15rem);
    line-height: 1.08;
    max-width: 12ch;
    margin-bottom: 12px;
  }
  .lead {
    display: none;
  }
  .hero__mobile-line {
    display: block;
    margin: 0 0 18px;
    color: var(--ink-2);
    font-size: 1rem;
    line-height: 1.42;
    max-width: 34ch;
  }
  .hero__signal {
    display: none;
  }
  .eyebrow {
    font-size: .68rem;
    padding: 6px 10px;
    margin-bottom: 14px;
    max-width: 100%;
  }

  .hero__quick {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 0;
  }
  .hero__quick span {
    grid-column: 1 / -1;
    color: var(--ink);
    font-size: .94rem;
  }
  .hero__quick button {
    min-height: 58px;
    padding: 12px 10px;
    border-radius: 16px;
    background: rgba(255,255,255,.88);
    color: var(--wine-700);
    border-color: rgba(107,22,34,.14);
    font-size: .9rem;
    line-height: 1.2;
    box-shadow: 0 8px 22px rgba(43,8,16,.06);
  }
  .hero__quick button:first-of-type {
    background: var(--wine-50);
    color: var(--wine-700);
    border-color: rgba(107,22,34,.22);
  }

  .hero__cta {
    margin-top: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero__cta .btn { width: 100%; justify-content: center; padding: 14px 16px; }
  .hero__cta .btn--ghost { display: none; }
  .hero__route,
  .hero__trust,
  .hero__metrics {
    display: none;
  }

  /* Видео-блок Руфинам ниже первого выбора */
  .hero__author {
    margin-top: 28px;
    min-height: min(500px, 66vh);
    aspect-ratio: 9/14;
  }
  .hero__author-stat { gap: 14px; flex-wrap: wrap; }
  .hero__author-stat span b { font-size: 1.05rem; }
  .hero__author-card { padding: 16px 16px; margin: 0 10px 10px; }
  .hero__author p { font-size: .9rem; line-height: 1.45; }
  /* Видео тянется до краёв блока, без чёрных полос */
  .hero__author-video > video { object-position: center 30%; }

  /* Боль — меньше padding в карточках */
  .pain { padding: 64px 0; }
  .pain__grid { gap: 12px; }
  .pain__card { padding: 18px; }
  .pain__icon { width: 44px; height: 44px; margin-bottom: 14px; }
  .pain__card h3 { font-size: 1.05rem; margin-bottom: 6px; }
  .pain__card p { font-size: .9rem; line-height: 1.5; }

  /* Калькулятор — ещё компактнее */
  .calc { padding: 64px 0; }
  .calc__form { padding: 22px !important; gap: 20px; }
  .calc__result { padding: 22px !important; }
  .result__amt { font-size: 1.85rem; }
  .field label, .field__lbl-static { font-size: .88rem; }

  /* График — меньше padding */
  .calc__chart { padding: 14px 12px; border-radius: 14px; }
  .calc__chart-h { margin-bottom: 10px; }
  .calc__chart-title { font-size: 13px; }
  .calc__chart-legend { font-size: 11.5px; gap: 10px; }
  .cmp { padding: 12px 14px; }
  .cmp__num { font-size: 20px; }
  .cmp__sub { font-size: 11.5px; }
  .calc__savings { padding: 10px 14px; }
  .calc__savings-lbl { font-size: 11.5px; }
  #saveTotal { font-size: 18px; }

  /* Услуги/секции */
  .services { padding: 64px 0; }
  .services__grid { gap: 14px; }
  .card { padding: 22px; }

  /* Истории */
  .stories { padding: 64px 0; }

  /* Кредиторы */
  .creditors { padding: 64px 0; }

  /* Instagram-блок */
  .ig { padding: 64px 0; }
  .ig__grid { gap: 8px; }
  .ig__title { font-size: 1.25rem; line-height: 1.3; }
  .ig__bio { font-size: .85rem; line-height: 1.5; }

  /* Шаги — заголовки шагов плотнее */
  .howto { padding: 64px 0; }
  .step__head { padding: 14px 14px; gap: 10px; }
  .step__head .step__n { width: 32px; height: 32px; font-size: 15px; }
  .step__title { font-size: 15px; }
  .step__time { font-size: 12px; }
  .step__body > p { padding: 0 14px; font-size: .92rem; }
  .step__details { padding: 0 14px 0 30px; font-size: 13.5px; }

  /* Отзывы */
  .reviews { padding: 64px 0; }
  .reviews__grid { gap: 12px; }
  .bubble { padding: 16px 18px; font-size: .92rem; line-height: 1.55; }

  /* FAQ — тап-таргеты больше */
  .faq { padding: 64px 0; }
  .faq__list summary { padding: 16px 14px; font-size: .96rem; line-height: 1.4; }
  .faq__list details p { padding: 0 14px 14px; font-size: .92rem; line-height: 1.55; }

  /* Финальный CTA / footer — учёт sticky-bar */
  .footer { padding: 36px 0 110px; font-size: .88rem; }

  /* Lightbox — отступы по краям меньше */
  .lightbox { padding: 12px; }
  .lightbox__close { width: 38px; height: 38px; top: 12px; right: 12px; }
}

/* Очень узкие экраны */
@media (max-width: 420px) {
  .container { padding-left: 14px; padding-right: 14px; }

  .section-h h2 { font-size: 1.4rem; }
  .hero h1 { font-size: 1.45rem; line-height: 1.2; }
  .lead { font-size: .94rem; }

  .hero__author { min-height: min(540px, 76vh); aspect-ratio: 9/14; }
  .hero__author-stat { gap: 10px; }
  .hero__author-stat span { font-size: .76rem; flex: 1 1 30%; }
  .hero__author-stat span b { font-size: .98rem; display: block; }

  /* Метрики — в одну колонку чтобы не сплющивались */
  .hero__metrics { grid-template-columns: 1fr 1fr; }
  .metric:nth-child(n+3) { margin-top: 18px; padding-top: 18px; }
  .metric__num { font-size: 1.45rem !important; }

  /* На совсем маленьких — IG-грид в 2 колонки тоже OK, но gap тоньше */
  .ig__grid { gap: 6px; }

  /* Кнопки в карточках услуг */
  .card__f { flex-direction: column; align-items: flex-start; gap: 12px; }
  .card__f .btn { width: 100%; justify-content: center; }

  /* Hero CTA — меньше padding в кнопках */
  .hero__cta .btn { padding: 12px 14px; font-size: .95rem; }

  /* Mbar — на узких экранах WhatsApp становится короче */
  .mbar__primary { font-size: 13.5px; padding: 11px 12px; gap: 8px; }
  .mbar__icon { width: 44px; height: 44px; }

  /* Sticky bar поправляет body padding под безопасную зону */
  body { padding-bottom: 84px; }
}

/* Тапабельность всех ссылок-кнопок: minimum 44×44 рекомендация Apple HIG */
@media (max-width: 760px) {
  .btn { min-height: 44px; }
}

/* =========================================================
   ГАМБУРГЕР-МЕНЮ — раскрывает nav__links на мобиле
   ========================================================= */
.nav__burger {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
  margin-left: 6px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  -webkit-tap-highlight-color: transparent;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink, #2a1a1f);
  border-radius: 2px;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), opacity .15s ease;
  transform-origin: center;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(.4); }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 8, 14, .5);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 88;
}
.nav__overlay.is-open { opacity: 1; pointer-events: auto; }

/* nowrap чтобы пункты и WA-кнопка никогда не ломались на узком десктопе */
.nav__links a,
.nav__cta { white-space: nowrap; }

/* Гамбургер выезжает на ≤1100px — захватывает планшетный диапазон */
@media (max-width: 1100px) {
  .nav__burger { display: inline-flex; }
  .nav__links {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 64px;
    left: 12px; right: 12px;
    background: #fff;
    padding: 10px;
    gap: 2px;
    box-shadow: 0 24px 60px rgba(20, 8, 14, .25);
    border-radius: 16px;
    transform: translateY(-12px) scale(.96);
    opacity: 0;
    pointer-events: none;
    transition: transform .28s cubic-bezier(.2,.8,.2,1), opacity .22s ease;
    z-index: 90;
    max-height: calc(100vh - 86px);
    overflow-y: auto;
  }
  .nav__links.is-open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__links a {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink, #2a1a1f);
    text-decoration: none;
    border-bottom: 1px solid rgba(20,8,14,.05);
  }
  .nav__links a:last-child { border-bottom: 0; }
  .nav__links a:hover,
  .nav__links a:active { background: rgba(90, 19, 32, .05); }
  .nav__links a::after { display: none; }
}

/* =========================================================
   ОТЗЫВЫ — добавки для живых IG-цитат
   ========================================================= */
.bubble.bubble--ig {
  position: relative;
  background: #fff;
  border-color: rgba(225, 70, 110, .15);
}
.bubble.bubble--ig::before {
  content: '';
  position: absolute;
  top: 14px; right: 16px;
  width: 22px; height: 22px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-radius: 6px;
  opacity: .85;
}
.bubble__user {
  font-size: 13px;
  color: var(--wine-700, #5A1320);
  font-weight: 600;
  margin-bottom: 4px;
}
.bubble__user::before { content: '@'; opacity: .5; }
.bubble.bubble--ig footer {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: rgba(20,8,14,.5);
  font-size: 12.5px;
  margin-top: 6px;
}
.bubble.bubble--ig footer:hover { color: var(--wine-700, #5A1320); }

/* =========================================================
   СЧЁТЧИКИ — табличные числа во время анимации
   ========================================================= */
.metric__num[data-target] .metric__val,
.hero__author-stat b[data-target] {
  font-variant-numeric: tabular-nums;
}

/* =========================================================
   ВИДЕО-ПРИВЕТСТВИЕ В HERO
   .hero__author-video — оверрайд background-image заглушки
   ========================================================= */
.hero__author-video {
  background: var(--wine-900) !important;
}
.hero__author-video > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Кнопка звука — справа сверху на видео */
.hero__author-sound {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  background: rgba(15, 5, 8, .55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  transition: transform .15s ease, background .15s ease;
}
.hero__author-sound:hover { background: rgba(15, 5, 8, .75); transform: scale(1.06); }
.hero__author-sound:active { transform: scale(.95); }
.hero__author-sound.is-on { background: var(--wine-700, #5A1320); }
/* Ссылка в Instagram — слева сверху на видео */
.hero__author-link {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: rgba(15, 5, 8, .55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  transition: background .15s ease;
}
.hero__author-link:hover { background: rgba(15, 5, 8, .8); }
/* Тонкий пульс вокруг кнопки звука пока он выключен — намекает «нажми» */
.hero__author-sound:not(.is-on)::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .55);
  animation: heroSoundPulse 2s ease-out infinite;
  pointer-events: none;
}
@keyframes heroSoundPulse {
  0%   { transform: scale(0.95); opacity: .9; }
  70%  { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}
@media (max-width: 760px) {
  .hero__author-sound { width: 38px; height: 38px; top: 10px; right: 10px; }
  .hero__author-link { font-size: 11px; padding: 6px 9px; top: 10px; left: 10px; }
}
