/* =========================================================
   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) {
  .nav__links a[href="#mfo"],
  .nav__links a[href="#istorii"] { display: none; }
}
@media (max-width: 880px) {
  .nav__links { display: none; }
  .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: var(--wine-900);
  color: #fff;
  overflow: hidden;
  padding: 96px 0 110px;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, var(--wine-800) 0%, var(--wine-900) 60%, var(--wine-950) 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, var(--wine-500), transparent 60%);
}
.blob--2 {
  bottom: -160px; left: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(217,164,65,.45), transparent 60%);
  opacity: .35;
}
.hero__bg .grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 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: rgba(255,255,255,.78);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.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: #fff;
  max-width: 14ch;
  margin-bottom: 24px;
}
.hero h1 .hl {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.78);
  max-width: 56ch;
  margin-bottom: 36px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__cta .btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.04);
}
.hero__cta .btn--ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.4);
}

.hero__metrics {
  grid-column: 1 / -1;
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.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: #fff;
  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: rgba(255,255,255,.6);
  line-height: 1.4;
  max-width: 24ch;
}

@media (max-width: 900px) {
  .hero { padding: 60px 0 80px; }
  .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(255,255,255,.1); padding-left: 20px; }
  .metric:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.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(255,255,255,.1);
  list-style: none;
}
.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .92rem;
  color: rgba(255,255,255,.78);
}
.hero__trust svg { color: var(--gold); flex: 0 0 auto; }
.hero__trust b { color: #fff; font-weight: 700; }

/* =========================================================
   ЗНАКОМО? (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; } }

/* =========================================================
   УСЛУГИ
   ========================================================= */
.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: 32px;
  height: 32px;
  border-radius: 8px;
  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;
}
.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, 1fr); } }
@media (max-width: 640px)  { .creditors__grid { grid-template-columns: repeat(2, 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: var(--bg);
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.bubble {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px 20px 20px 4px;
  padding: 24px;
  position: relative;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.bubble:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
  border-color: transparent;
}
.bubble p {
  margin-bottom: 14px;
  font-size: .98rem;
  color: var(--ink);
  line-height: 1.55;
}
.bubble footer {
  font-size: .82rem;
  color: var(--ink-3);
  font-weight: 600;
}

.bubble:nth-child(3n+2) {
  background: var(--wine-900);
  color: #fff;
  border: 0;
  border-radius: 20px 20px 4px 20px;
}
.bubble:nth-child(3n+2) p { color: #fff; }
.bubble:nth-child(3n+2) footer { color: rgba(255,255,255,.55); }

@media (max-width: 900px) { .reviews__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .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 — нижняя панель «WA / Звонок / Direct»
   ========================================================= */
.mbar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 95;
  display: none;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  padding: 6px;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(20, 8, 14, .25), 0 1px 0 rgba(0,0,0,.04) inset;
  transform: translateY(120%);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.mbar.is-visible { transform: translateY(0); }
.mbar__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 9px 4px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink, #321);
  background: transparent;
  transition: background .15s ease;
}
.mbar__btn svg { color: var(--wine-700, #5A1320); }
.mbar__btn--wa { background: linear-gradient(180deg, #25D366, #128C7E); color: #fff; }
.mbar__btn--wa svg { color: #fff; }
.mbar__btn--ig {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}
.mbar__btn--ig svg { color: #fff; }
.mbar__btn:active { transform: scale(.97); }
@media (max-width: 760px) {
  .mbar { display: grid; }
  .floating { display: none !important; }
  body { padding-bottom: 92px; }
}

/* =========================================================
   ШАГИ — интерактивный аккордеон (Как мы работаем)
   ========================================================= */
.steps--interactive { 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: 18px;
  padding: 16px 16px 12px;
  background: linear-gradient(180deg, #fff, #fcf9f6);
  border: 1px solid rgba(20,8,14,.06);
  border-radius: 14px;
}
.calc__chart-h {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.calc__chart-title {
  font-size: 14px;
  font-weight: 600;
  color: rgba(20,8,14,.78);
}
.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: 160px; display: block; }
.calc__chart-foot {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed rgba(20,8,14,.1);
}
.calc__chart-stat { display: flex; flex-direction: column; align-items: flex-start; }
.calc__chart-stat:last-child { align-items: flex-end; }
.calc__chart-stat b {
  font-size: 18px;
  font-weight: 800;
  color: #d94a4a;
}
.calc__chart-stat--good b { color: #25b07a; }
.calc__chart-stat em {
  font-style: normal;
  font-size: 12px;
  color: rgba(20,8,14,.55);
  margin-top: 2px;
}
.calc__chart-arrow { font-size: 22px; color: rgba(20,8,14,.35); font-weight: 700; }

/* =========================================================
   ОТЗЫВЫ — добавки для живых 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;
}
