/* Бюро Батурина — лендинг «Боты MAX и Telegram» · дизайн-система burobaturina.ru */

:root {
  --bg: #fbf8f6;
  --bg-elevated: #ffffff;
  --bg-card: #ffffff;
  --border: rgba(26, 46, 64, 0.1);
  --text: #1a2e40;
  --text-muted: #445566;
  --accent: #c87a4a;
  --accent-hover: #a05e38;
  --accent-soft: rgba(200, 122, 74, 0.12);
  --gold: #c87a4a;
  --gold-soft: rgba(200, 122, 74, 0.15);
  --success: #2d8a5e;
  --danger: #c53030;
  --radius: 0;
  --radius-lg: 0;
  --header-h: 80px;
  --header-bar: 48px;
  --header-pad: 16px;
  --font: "IBM Plex Sans", Arial, sans-serif;
  --bb-container: 1200px;
  --bb-content: 1160px;
  --bb-gutter: 20px;
  --bb-text-max: 720px;
  --bb-container-narrow: var(--bb-container);
  --bb-gutter-narrow: var(--bb-gutter);
  --bb-container-wide: 1920px;
  --bb-gutter-wide: 120px;
  --shadow: 0 8px 32px rgba(26, 46, 64, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-hover);
}

.container {
  width: 100%;
  max-width: var(--bb-container);
  margin-inline: auto;
  padding-inline: var(--bb-gutter);
}

/* Header — layout; отступы и fixed — bb-nav-services.css, меню — bb-mobile-menu.css */
.bb-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  padding-block: 0;
}

.bb-header__container {
  width: 100%;
  max-width: var(--bb-container-wide);
  margin: 0 auto;
  padding-left: var(--bb-gutter-wide);
  padding-right: var(--bb-gutter-wide);
}

.bb-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: var(--header-bar);
  height: var(--header-bar);
}

.bb-header__logo {
  justify-self: start;
  grid-column: 1;
  display: inline-flex;
  align-items: center;
  align-self: center;
  height: var(--header-bar);
  text-decoration: none;
  line-height: 0;
}

.bb-header__logo:hover {
  opacity: 0.88;
}

/* Размер логотипа — bb-nav-services.css (как на главной) */

.bb-header__burger {
  display: none;
  width: 44px;
  height: var(--header-bar);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 110;
  justify-self: end;
  align-self: center;
  grid-column: 3;
}

.bb-header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.bb-header__nav {
  display: contents;
}

.bb-header__nav-menu {
  grid-column: 2;
  justify-self: center;
  align-self: center;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 40px);
  height: var(--header-bar);
}

.bb-header__nav-link {
  display: inline-flex;
  align-items: center;
  height: var(--header-bar);
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.bb-header__nav-link:hover,
.bb-header__nav-link.is-active {
  color: var(--text);
}

.bb-header__nav-inner {
  display: contents;
}

.bb-header__nav-top {
  display: none;
}

.bb-header__nav-logo {
  display: none;
}

.bb-header__inner {
  position: relative;
}

.bb-header__nav-group {
  display: contents;
}

.bb-header__nav-group .bb-header__nav-contacts {
  position: absolute;
  right: var(--bb-gutter);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  height: var(--header-bar);
  width: auto;
  margin: 0;
  padding: 0;
}

.bb-header__phone {
  display: inline-flex;
  align-items: center;
  height: var(--header-bar);
  color: var(--text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.bb-header__phone:hover {
  color: var(--accent);
}

.bb-header__messengers {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bb-header__icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.bb-header__icon-btn:hover {
  opacity: 0.82;
}

.bb-header__icon-img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

@media (max-width: 1199px) {
  .bb-header__container {
    max-width: var(--bb-container-narrow);
    padding-left: var(--bb-gutter-narrow);
    padding-right: var(--bb-gutter-narrow);
  }

  .bb-header__inner {
    grid-template-columns: 1fr auto;
  }

  .bb-header__burger {
    display: block;
  }

  .bb-header.is-menu-open .bb-header__burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .bb-header.is-menu-open .bb-header__burger span:nth-child(2) {
    opacity: 0;
  }

  .bb-header.is-menu-open .bb-header__burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (min-width: 1200px) and (max-width: 1919px) {
  .bb-header__container {
    max-width: var(--bb-container-narrow);
    padding-left: var(--bb-gutter-narrow);
    padding-right: var(--bb-gutter-narrow);
  }
}

/* Buttons — дизайн-система Бюро (как bb-hero__btn на burobaturina.ru) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 56px;
  padding: 0 28px;
  font-family: inherit;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
}

.btn:hover {
  transform: none;
}

.btn--primary {
  min-width: 240px;
  background: var(--accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--accent-hover);
  color: #fff;
}

.btn--secondary {
  min-width: 240px;
  background: transparent;
  color: var(--text);
  border: none;
}

.btn--secondary:hover {
  color: var(--accent);
}

.btn--secondary span[aria-hidden="true"] {
  transition: transform 0.2s ease;
}

.btn--secondary:hover span[aria-hidden="true"] {
  transform: translateX(3px);
}

.btn--ghost {
  min-width: 240px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.btn--gold {
  background: var(--accent);
  color: #fff;
}

.btn--gold:hover {
  background: var(--accent-hover);
  color: #fff;
}

.btn--lg {
  min-height: 56px;
  padding: 0 28px;
  font-size: 18px;
}

.btn--block {
  width: 100%;
  min-width: 0;
}

/* Hero — см. /assets/css/bb-hero.css (#bb-hero-root.bb-hero--service) */

@media (min-width: 1200px) {
  .section__head,
  .section__head--wide {
    max-width: var(--bb-text-max);
  }

  .section__title,
  .section__desc {
    max-width: var(--bb-text-max);
  }

  .market-disclaimer {
    max-width: var(--bb-text-max);
  }

  .solution-strip__text {
    max-width: var(--bb-text-max);
  }

  .solution-strip__title {
    max-width: var(--bb-text-max);
  }
}

.hero__note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.hero__card-title {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.funnel-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.funnel-steps li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  font-size: 0.95rem;
}

.funnel-steps__num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.funnel-steps__arrow {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.25rem;
  line-height: 1;
}

/* Hero — превью Telegram и MAX */
.hero__messengers {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
}

.messenger-device {
  width: min(168px, 42vw);
  border-radius: 28px;
  padding: 8px;
  background: #0a0a0a;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.messenger-device--max {
  transform: translateY(12px) scale(0.96);
}

.messenger-device__bar {
  height: 22px;
  border-radius: 14px 14px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.messenger-device__bar--tg {
  background: #2aabee;
  color: #fff;
}

.messenger-device__bar--max {
  background: linear-gradient(135deg, #5b4fcf, #3d8bfd);
  color: #fff;
}

.messenger-device__screen {
  background: #17212b;
  border-radius: 0 0 20px 20px;
  padding: 10px 8px 12px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.messenger-device--max .messenger-device__screen {
  background: #1a1f2e;
}

.msg-bubble {
  max-width: 92%;
  padding: 7px 10px;
  border-radius: 10px;
  font-size: 0.65rem;
  line-height: 1.35;
}

.msg-bubble--in {
  align-self: flex-start;
  background: #242f3d;
  color: #e8edf4;
  border-bottom-left-radius: 3px;
}

.msg-bubble--out {
  align-self: flex-end;
  background: #2b5278;
  color: #fff;
  border-bottom-right-radius: 3px;
}

.msg-kb {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.msg-kb span {
  display: block;
  text-align: center;
  padding: 6px;
  border-radius: 6px;
  background: #242f3d;
  color: #6ab2f2;
  font-size: 0.6rem;
  font-weight: 600;
}

/* Блок «рынок — бегущая лента логотипов» */
.section--market {
  padding-bottom: 64px;
}

.section--market .container:first-child {
  margin-bottom: 2.5rem;
}

.market-wall {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.market-wall__row {
  border-bottom: 1px solid rgba(26, 46, 64, 0.06);
}

.market-wall__row:first-child {
  border-top: 1px solid rgba(26, 46, 64, 0.06);
}

.market-wall__track {
  overflow: hidden;
}

.market-wall__inner {
  display: flex;
  width: max-content;
  will-change: transform;
}

.market-wall__track--left .market-wall__inner {
  animation: marketMarqueeLeft var(--marquee-duration, 48s) linear infinite;
}

.market-wall__track--right .market-wall__inner {
  animation: marketMarqueeRight var(--marquee-duration, 48s) linear infinite;
}

.market-wall__group {
  display: flex;
  flex-shrink: 0;
}

.market-wall__cell {
  flex: 0 0 clamp(128px, 11vw, 168px);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(72px, 8vw, 88px);
  padding: 1rem 1.25rem;
  border-right: 1px solid rgba(26, 46, 64, 0.06);
}

.market-wall__placeholder {
  display: block;
  width: min(72%, 100px);
  height: clamp(20px, 2.5vw, 26px);
  border-radius: 4px;
  background: rgba(26, 46, 64, 0.08);
}

.market-wall__cell:has(.market-wall__logo) .market-wall__placeholder {
  display: none;
}

.market-wall__logo {
  display: block;
  width: auto;
  height: auto;
  max-width: min(72%, 120px);
  max-height: clamp(26px, 3.5vw, 36px);
  object-fit: contain;
  opacity: 1;
  transition: transform 0.25s ease;
}

.market-wall__logo--mark {
  max-width: clamp(36px, 4.5vw, 48px);
  max-height: clamp(36px, 4.5vw, 48px);
  border-radius: 8px;
}

.market-wall__logo--wide {
  max-width: min(88%, 148px);
  max-height: clamp(32px, 4vw, 44px);
}

.market-wall__cell:hover .market-wall__logo {
  transform: scale(1.06);
}

@keyframes marketMarqueeLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes marketMarqueeRight {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .market-wall__inner {
    animation: none !important;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }

  .market-wall__group + .market-wall__group {
    display: none;
  }

  .market-wall {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

.section--market .market-disclaimer {
  margin: 2rem 0 0;
}

.market-disclaimer {
  max-width: var(--bb-text-max);
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-muted);
  text-align: left;
}

@media (max-width: 1199px) {
  #market .section__head {
    text-align: left;
    margin-inline: 0;
  }

  #market .section__desc {
    margin-inline: 0;
  }
}

/* Блок «Зачем бот» */
.pain-cards {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .pain-cards {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.pain-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pain-card__num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  opacity: 0.12;
  letter-spacing: -0.04em;
  user-select: none;
  pointer-events: none;
}

.pain-card__tag {
  margin: 0;
  padding: 1.35rem 1.35rem 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.pain-card__title {
  margin: 0;
  padding: 0 3rem 0.75rem 1.35rem;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.32;
  color: var(--text);
}

.pain-card__scene {
  margin: 0;
  flex: 1;
  padding: 0 1.35rem 1.25rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  font-style: normal;
  border: 0;
}

@media (min-width: 768px) {
  .pain-card__scene {
    min-height: 5.75rem;
  }
}

.pain-card__outcome {
  margin: 0;
  margin-top: auto;
  padding: 1.1rem 1.35rem 1.2rem;
  background: var(--accent-soft);
  border: 0;
  border-top: 1px solid rgba(200, 122, 74, 0.28);
  box-shadow: inset 3px 0 0 var(--accent);
}

.pain-card__outcome-label {
  display: block;
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.pain-card__outcome-hit {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.38;
  color: var(--text);
  letter-spacing: -0.01em;
}

.pain-card__outcome-text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.solution-strip {
  display: grid;
  gap: 2rem;
  background: var(--text);
  color: #fff;
  padding: 2rem;
  border: 1px solid var(--text);
}

@media (min-width: 900px) {
  .solution-strip {
    grid-template-columns: 1fr min(340px, 36%);
    align-items: stretch;
    padding: 2.5rem;
  }
}

.solution-strip__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
}

.solution-strip__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.solution-strip__text {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: var(--bb-text-max);
}

.solution-strip__points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.solution-strip__points li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.solution-strip__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.solution-strip__aside {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 2rem 1.75rem;
  background: var(--bg);
  color: var(--text);
  border: none;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
}

.solution-strip__offer-tag {
  margin: 0 0 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.solution-strip__price {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
  white-space: nowrap;
}

.solution-strip__hook {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}

.solution-strip__note {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.solution-strip__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: auto;
}

.solution-strip__actions .btn {
  min-height: 56px;
  width: 100%;
  min-width: 0;
  font-size: 18px;
  font-weight: 500;
}

.solution-strip .btn--primary {
  background: var(--accent);
  min-width: 0;
  font-weight: 600;
}

.solution-strip .btn--primary:hover {
  background: var(--accent-hover);
}

.solution-strip .btn--secondary {
  color: var(--text);
  border-color: var(--border);
  background: #fff;
  min-width: 0;
}

.solution-strip .btn--secondary:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: #fff;
}

@media (max-width: 1199px) {
  .solution-strip__aside {
    text-align: center;
    padding: 1.75rem 1.5rem;
  }

  .solution-strip__price {
    white-space: normal;
  }

  .solution-strip__text,
  .solution-strip__title {
    max-width: none;
  }
}

@media (max-width: 767px) {
  .pain-card__num {
    font-size: 1.75rem;
  }

  .pain-card__scene {
    min-height: 0;
  }

  .solution-strip {
    padding: 1.5rem;
  }
}

/* Оффер в блоке болей — legacy, не используется */
.pain-offer {
  background: var(--accent-soft);
  border: 1px solid rgba(200, 122, 74, 0.25);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.pain-offer p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
}

.pain-offer strong {
  color: var(--text);
}

/* Sections — ритм как на burobaturina.ru */
.section {
  padding: 80px 0;
}

@media (max-width: 1199px) {
  .section {
    padding: 64px 0;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 48px 0;
  }
}

.section--alt {
  background: #fff;
  border-block: 1px solid var(--border);
}

/* Лендинг: клиенты и процесс — оба на белом, линия между ними лишняя */
#clients + #steps.bb-process.section--alt {
  border-block-start: none;
}

.section-cta {
  padding: 0;
}

.section-cta__inner {
  display: flex;
  justify-content: center;
  padding: 32px 0 40px;
}

.section-cta__btn {
  min-height: 52px;
  min-width: 16rem;
  padding: 0 28px;
  font-size: 16px;
  font-weight: 600;
}

.section__head {
  max-width: var(--bb-text-max);
  margin-bottom: 2.5rem;
}

.section__head--wide {
  max-width: var(--bb-text-max);
}

.section__label {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.section__title {
  margin: 0 0 16px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.section__desc {
  margin: 0;
  color: var(--text-muted);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 959px) {
  .section__title {
    font-size: 40px;
  }

  .section__desc {
    font-size: 18px;
  }
}

@media (max-width: 639px) {
  .section__title {
    font-size: 28px;
  }

  .section__desc {
    font-size: 16px;
  }
}

/* Problem cards */
.cards-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cards-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .cards-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  border-radius: 10px;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}

.card__title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.card__text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Блок «Что делаете» — нумерованные карточки */
.product-features {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .product-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: stretch;
  }
}

.product-feature {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: left;
}

.product-feature__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: var(--radius);
}

.product-feature__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.product-feature__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text);
}

.product-feature__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* Product cards — иллюстрации и центрированный текст */
.product-cards {
  gap: 1.25rem;
}

.card--product {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  padding: 0 0 1.75rem;
  overflow: hidden;
}

.card__media {
  margin: 0;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #fbf8f6;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
}

.card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.card--product .card__media {
  margin-bottom: 1.25rem;
}

.card--product .card__title {
  margin: 0 1.25rem 0.65rem;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.card--product .card__text {
  max-width: none;
  margin: 0 1.25rem;
  padding: 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

.card--product .card__cta {
  width: auto;
  max-width: none;
  margin: 1.25rem 1.25rem 0;
}

/* Блок «Кому» */
.audience-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }
}

.audience-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 1.75rem 1.5rem 32px;
  overflow: hidden;
}

.audience-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  opacity: 0.35;
}

.audience-card--highlight {
  border-color: rgba(200, 122, 74, 0.35);
  box-shadow: 0 0 0 1px var(--accent-soft), var(--shadow);
}

.audience-card--highlight::before {
  opacity: 1;
}

.audience-card__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.audience-card__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent);
}

.audience-card__tag {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.audience-card__title {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.audience-card__examples {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 0.75rem;
  padding: 0;
  list-style: none;
}

.audience-card__pair {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 0;
  border: 1px solid var(--border);
  overflow: hidden;
}

.audience-card__problem,
.audience-card__solution {
  padding: 1rem 1rem 1rem 0.95rem;
}

.audience-card__problem {
  background: rgba(26, 46, 64, 0.04);
  border-bottom: 1px solid var(--border);
}

.audience-card__solution {
  background: #fff;
  box-shadow: inset 3px 0 0 var(--accent);
}

.audience-card__pair-label {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.audience-card__solution .audience-card__pair-label {
  color: var(--accent);
}

.audience-card__pair-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
}

.audience-card__problem .audience-card__pair-text {
  color: var(--text-muted);
}

.audience-card__solution .audience-card__pair-text {
  font-weight: 600;
  color: var(--text);
}

.audience-card__text {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.audience-card__hook {
  margin: 0 0 1.1rem;
  padding: 0.85rem 1rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text);
  background: rgba(26, 46, 64, 0.04);
  border-left: 3px solid var(--accent);
}

.audience-card__delivers {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.audience-card__delivers li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.5rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text);
}

.audience-card__delivers li:last-child {
  margin-bottom: 0;
}

.audience-card__delivers li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.audience-card__examples li {
  padding: 0.3rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
}

.audience-card__package {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text-muted);
}

.audience-card__package a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

.audience-card__package a:hover {
  color: #a05e38;
  text-decoration: underline;
}

.audience-card__cta {
  margin-top: 1.25rem;
}

.audience-foot {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
  padding: 1.75rem 1.5rem;
  background: var(--accent-soft);
  border: 1px solid rgba(200, 122, 74, 0.25);
}

@media (min-width: 768px) {
  .audience-foot {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

.audience-foot__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.audience-foot__text {
  margin: 0;
  max-width: 36rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.audience-foot__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex-shrink: 0;
  width: 100%;
}

@media (min-width: 480px) {
  .audience-foot__actions {
    flex-direction: row;
    width: auto;
  }
}

.audience-foot__actions .btn {
  min-height: 56px;
  min-width: 11rem;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .audience-card {
    padding: 1.5rem 1.25rem 1.25rem;
  }

  .audience-foot {
    text-align: center;
  }

  .audience-foot__actions {
    align-items: stretch;
  }

  .audience-foot__actions .btn {
    width: 100%;
    min-width: 0;
  }
}

/* Packages */
.packages {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .packages {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.package {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
}

.package--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-soft), var(--shadow);
}

.package__badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
}

.package__name {
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.package__price {
  margin: 0 0 1rem;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.package__price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.package__term {
  margin: -0.35rem 0 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

.package__list {
  flex: 1;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.package__list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: var(--text-muted);
}

.package__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.package .btn {
  margin-top: auto;
}

/* Пакеты с градацией объёма (лендинг) */
.packages--tiered .package--tier-start {
  padding: 1.5rem;
}

.packages--tiered .package--tier-start .package__list li {
  font-size: 0.92rem;
}

.packages--tiered .package--tier-business {
  border-color: rgba(200, 122, 74, 0.28);
}

.packages--tiered .package--tier-max {
  border-color: rgba(200, 122, 74, 0.5);
  box-shadow: 0 0 0 1px var(--accent-soft), var(--shadow);
  padding: 2rem 1.75rem;
}

.packages--tiered .package--tier-max .package__name {
  font-size: 1.35rem;
}

.packages--tiered .package--tier-max .package__price {
  font-size: 2rem;
}

.packages--tiered .package--tier-max .package__list li {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.6rem;
}

@media (min-width: 1024px) {
  .packages--tiered .package--tier-max {
    transform: translateY(-4px);
  }
}

/* Modules calculator */
.modules-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .modules-layout {
    grid-template-columns: minmax(520px, 1fr) 280px;
    align-items: start;
  }
}

.packages-note {
  margin: 2rem 0 0;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 52rem;
  background: var(--bg-alt, #f9f7f4);
  border-left: 3px solid var(--accent, #c87a4a);
  border-radius: 0 8px 8px 0;
}

.packages-note a {
  color: var(--navy, #1a2e40);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(200, 122, 74, 0.45);
  text-underline-offset: 3px;
}

.packages-note a:hover {
  color: var(--accent, #c87a4a);
}

.packages-note strong {
  color: var(--navy, #1a2e40);
  font-weight: 600;
}

.compare-table-wrap {
  overflow-x: auto;
  margin-bottom: 1rem;
}

.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.compare-table th,
.compare-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.compare-table thead th {
  background: rgba(26, 46, 64, 0.04);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}

.compare-table thead th:nth-child(3) {
  color: var(--accent);
  background: rgba(200, 122, 74, 0.1);
}

.compare-table tbody th[scope="row"] {
  font-weight: 600;
  color: var(--text);
  width: 22%;
}

.compare-table td:nth-child(3) {
  background: rgba(200, 122, 74, 0.06);
}

.compare-note {
  margin: 0;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 52rem;
  line-height: 1.5;
}

.platform-picker {
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: var(--bg-elevated, #fff);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.platform-picker__title {
  margin: 0 0 0.35rem;
  font-weight: 600;
  font-size: 1.05rem;
}

.platform-picker__desc {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.platform-picker__options {
  display: grid;
  gap: 0.65rem;
}

.platform-picker__option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.platform-picker__option:hover {
  background: rgba(26, 46, 64, 0.03);
}

.platform-picker__option:has(input:checked) {
  border-color: var(--accent, #c87a4a);
  background: rgba(200, 122, 74, 0.06);
}

.platform-picker__option input {
  margin-top: 0.2rem;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--accent, #c87a4a);
}

.platform-picker__option-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.platform-picker__option-body strong {
  font-size: 1.05rem;
}

.platform-picker__price {
  font-weight: 600;
  color: var(--text, #1a2e40);
}

.platform-picker__option-body small {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.modules-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 1rem;
}

.modules-table__col-check {
  width: 2.75rem;
}

.modules-table__col-option {
  width: 11.5rem;
}

.modules-table__col-price {
  width: 6.75rem;
}

.modules-table th,
.modules-table td {
  padding: 0.85rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.modules-table th:first-child,
.modules-table td:first-child {
  padding-left: 0;
  padding-right: 0.5rem;
  width: 2.75rem;
}

.modules-table th:last-child,
.modules-table td:last-child {
  padding-left: 1rem;
  padding-right: 0.25rem;
  white-space: nowrap;
  text-align: right;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--text);
}

.modules-table td:nth-child(2) strong {
  display: block;
  line-height: 1.35;
}

.modules-table td:nth-child(3) {
  color: var(--text-muted);
  line-height: 1.45;
  padding-right: 1rem;
}

.modules-table th {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.module-row {
  cursor: pointer;
  transition: background 0.15s;
}

.module-row:hover {
  background: rgba(26, 46, 64, 0.03);
}

.module-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
}

.compare-table-hint {
  display: none;
  margin: 0 0 0.75rem;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.compare-table-hint span {
  color: var(--accent);
}

@media (max-width: 767px) {
  .compare-table-hint {
    display: block;
  }

  .modules-table thead {
    display: none;
  }

  .modules-table,
  .modules-table tbody,
  .modules-table tr,
  .modules-table td {
    display: block;
    width: 100%;
  }

  .modules-table {
    border: 0;
  }

  .module-row {
    margin-bottom: 0.75rem;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
  }

  .module-row td {
    padding: 0;
    border: 0;
  }

  .module-row td:first-child {
    margin-bottom: 0.65rem;
  }

  .module-row td:nth-child(2) {
    margin-bottom: 0.35rem;
    font-size: 1.05rem;
  }

  .module-row td:nth-child(3) {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.45;
  }

  .module-row td:nth-child(4) {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
  }

  .calc-panel {
    position: static;
  }
}

.calc-panel__label {
  margin: 0 0 0.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.calc-panel {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.calc-panel__total {
  margin: 0 0 0.25rem;
  font-size: 2rem;
  font-weight: 800;
}

.calc-panel__hint {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.calc-panel__list {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  font-size: 0.95rem;
  color: var(--text-muted);
  min-height: 3rem;
}

.calc-panel__list li {
  margin-bottom: 0.35rem;
}

/* Niches */
.niches {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .niches {
    grid-template-columns: repeat(2, 1fr);
  }
}

.niche-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.niche-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.niche-card__mods {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
}

/* Case */
.case-block {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .case-block {
    grid-template-columns: 1fr 1fr;
  }
}

.case-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}

.stat__value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
}

.stat__label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.demo-frame {
  aspect-ratio: 16/10;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  padding: 2rem;
  text-align: center;
}

.demo-frame p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Steps */
.steps {
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  counter-increment: step;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.step::before {
  content: counter(step);
  display: block;
  width: 32px;
  height: 32px;
  margin-bottom: 0.75rem;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
  font-size: 0.9rem;
  line-height: 32px;
  text-align: center;
}

.step h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
}

.step p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* FAQ — burobaturina.ru bb-faq */
#faq.bb-faq {
  --bb-bg: #ffffff;
  --bb-navy: #1a2e40;
  --bb-gray: #445566;
  --bb-accent: #c87a4a;
  --bb-line: #eeeeee;
  background: var(--bb-bg);
  color: var(--bb-navy);
  width: 100%;
  scroll-margin-top: 88px;
}

#faq .bb-faq__container {
  max-width: var(--bb-container);
  margin: 0 auto;
  padding: 80px var(--bb-gutter);
}

#faq .bb-faq__intro {
  max-width: 560px;
  margin: 0 0 48px;
}

#faq .bb-faq__title {
  margin: 0 0 16px;
  color: var(--bb-navy);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

#faq .bb-faq__lead {
  margin: 0;
  max-width: 560px;
  color: var(--bb-gray);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

#faq .bb-faq__list {
  margin: 0;
  padding: 0;
}

#faq .bb-faq__item {
  margin: 0;
  border-top: 1px solid var(--bb-line);
}

#faq .bb-faq__item:last-child {
  border-bottom: 1px solid var(--bb-line);
}

#faq .bb-faq__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 27px 0;
  list-style: none;
  cursor: pointer;
  user-select: none;
}

#faq .bb-faq__summary::-webkit-details-marker {
  display: none;
}

#faq .bb-faq__question {
  flex: 1;
  min-width: 0;
  color: var(--bb-navy);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
}

#faq .bb-faq__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #222222;
  transition: background-color 0.2s ease, transform 0.3s ease;
}

#faq .bb-faq__summary:hover .bb-faq__icon,
#faq .bb-faq__summary:focus-visible .bb-faq__icon {
  background-color: var(--bb-line);
}

#faq .bb-faq__item[open] .bb-faq__icon {
  transform: rotate(-45deg);
}

#faq .bb-faq__answer {
  padding: 0 56px 20px 0;
}

#faq .bb-faq__answer p {
  margin: 0;
  color: var(--bb-gray);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}

#faq .bb-faq__link {
  color: var(--bb-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

#faq .bb-faq__link:hover {
  color: #a05e38;
}

@media (max-width: 1199px) {
  #faq .bb-faq__container {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

@media (max-width: 959px) {
  #faq .bb-faq__intro {
    margin-bottom: 40px;
  }

  #faq .bb-faq__title {
    font-size: 40px;
  }

  #faq .bb-faq__lead {
    font-size: 18px;
  }

  #faq .bb-faq__question {
    font-size: 20px;
  }
}

@media (max-width: 639px) {
  #faq .bb-faq__container {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  #faq .bb-faq__title {
    font-size: 28px;
  }

  #faq .bb-faq__lead {
    font-size: 16px;
  }

  #faq .bb-faq__summary {
    padding: 15px 0 14px;
  }

  #faq .bb-faq__question {
    font-size: 18px;
  }

  #faq .bb-faq__answer {
    padding: 0 0 15px;
  }

  #faq .bb-faq__answer p {
    font-size: 14px;
  }
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
}

.contact-aside h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
}

.contact-aside ul {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.contact-aside li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-aside li strong {
  color: var(--text);
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.form-row {
  margin-bottom: 1rem;
}

.form-row--2 {
  display: grid;
  gap: 1rem;
}

@media (min-width: 560px) {
  .form-row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

input.is-invalid,
select.is-invalid,
textarea.is-invalid {
  border-color: var(--danger);
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.form-error {
  display: none;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: var(--danger);
}

.form-error.is-visible {
  display: block;
}

.checkbox-row {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.checkbox-row input {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-row label {
  margin: 0;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-success {
  display: none;
  padding: 1.25rem;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius);
  margin-top: 1rem;
}

.form-success.is-visible {
  display: block;
}

.form-success p {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

/* Footer — burobaturina.ru bb-footer */
#bb-footer.bb-footer {
  --bb-bg: #ffffff;
  --bb-navy: #1a2e40;
  --bb-gray: #445566;
  --bb-muted: #8899aa;
  --bb-line: #eeeeee;
  --bb-accent: #c87a4a;
  background: var(--bb-bg);
  color: var(--bb-navy);
  width: 100%;
  border-top: 1px solid var(--bb-line);
}

#bb-footer .bb-footer__container {
  max-width: var(--bb-container);
  margin: 0 auto;
  padding: 40px var(--bb-gutter) 32px;
}

#bb-footer .bb-footer__main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--bb-line);
}

#bb-footer .bb-footer__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

#bb-footer .bb-footer__logo-img {
  display: block;
  width: auto;
  height: 40px;
  max-width: none;
  object-fit: contain;
  object-position: left center;
}

#bb-footer .bb-footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 40px;
}

#bb-footer .bb-footer__nav-link {
  color: var(--bb-gray);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

#bb-footer .bb-footer__nav-link:hover {
  color: var(--bb-navy);
}

#bb-footer .bb-footer__contacts {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-self: end;
}

#bb-footer .bb-footer__phone {
  color: var(--bb-navy);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

#bb-footer .bb-footer__phone:hover {
  color: var(--bb-accent);
}

#bb-footer .bb-footer__messengers {
  display: flex;
  align-items: center;
  gap: 10px;
}

#bb-footer .bb-footer__icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

#bb-footer .bb-footer__icon-btn:hover {
  opacity: 0.82;
}

#bb-footer .bb-footer__icon-img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

#bb-footer .bb-footer__meta {
  padding-top: 24px;
}

#bb-footer .bb-footer__legal a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

#bb-footer .bb-footer__legal a:hover {
  color: #1a2e40;
  text-decoration: underline;
}

#bb-footer .bb-footer__legal {
  margin: 0 0 16px;
  color: var(--bb-muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
}

#bb-footer .bb-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
}

#bb-footer .bb-footer__copy {
  margin: 0;
  color: var(--bb-muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
}

#bb-footer .bb-footer__policy {
  color: var(--bb-muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.2s ease;
}

#bb-footer .bb-footer__policy:hover {
  color: var(--bb-navy);
}

@media (max-width: 959px) {
  #bb-footer .bb-footer__main {
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
  }

  #bb-footer .bb-footer__nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  #bb-footer .bb-footer__nav > .bb-footer__nav-link {
    display: block;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid #eeeeee;
    font-size: 17px;
    white-space: normal;
  }

  #bb-footer .bb-footer__nav-group {
    width: 100%;
    gap: 16px;
    padding: 0;
    border-bottom: none;
  }

  #bb-footer .bb-footer__nav-group .bb-footer__nav-link {
    display: block;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid #eeeeee;
    font-size: 17px;
    white-space: normal;
  }

  #bb-footer .bb-footer__contacts {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 16px;
    padding: 0 0 14px;
  }
}

@media (max-width: 639px) {
  #bb-footer .bb-footer__container {
    padding-top: 32px;
    padding-bottom: 28px;
  }

  #bb-footer .bb-footer__phone {
    font-size: 16px;
  }

  #bb-footer .bb-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.is-open {
  display: flex;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.modal__dialog {
  position: relative;
  width: min(100%, 440px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.modal__title {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
}

.modal__text {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* bb-contacts — как на burobaturina.ru */
#contacts.bb-contacts,
#contacts.bb-contacts * {
  box-sizing: border-box;
}

#contacts.bb-contacts {
  --bb-bg: #f9f7f4;
  --bb-navy: #1a2e40;
  --bb-gray: #445566;
  --bb-muted: #8899aa;
  --bb-accent: #c87a4a;
  --bb-accent-hover: #a05e38;
  --bb-line: #e8e4df;
  --bb-container: 1200px;
  --bb-gutter: 20px;
  background: var(--bb-bg);
  color: var(--bb-navy);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  width: 100%;
  scroll-margin-top: 88px;
}

#contacts .bb-contacts__container {
  max-width: var(--bb-container);
  margin: 0 auto;
  padding: 80px var(--bb-gutter);
}

#contacts .bb-contacts__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
  gap: 48px 56px;
  align-items: start;
}

#contacts .bb-contacts__intro {
  margin: 0 0 32px;
}

#contacts .bb-contacts__title {
  margin: 0 0 16px;
  color: var(--bb-navy);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

#contacts .bb-contacts__lead {
  margin: 0;
  max-width: 520px;
  color: var(--bb-gray);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

#contacts .bb-contacts__channels {
  margin: 0 0 28px;
}

#contacts .bb-contacts__channels-label {
  margin: 0 0 12px;
  color: var(--bb-gray);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

#contacts .bb-contacts__messengers {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 20px;
}

#contacts .bb-contacts__messenger {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid var(--bb-line);
  color: var(--bb-navy);
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#contacts .bb-contacts__messenger:hover {
  border-color: var(--bb-accent);
  box-shadow: 0 4px 20px rgba(26, 46, 64, 0.06);
}

#contacts .bb-contacts__messenger-icon {
  flex-shrink: 0;
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

#contacts .bb-contacts__messenger-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

#contacts .bb-contacts__messenger-name {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

#contacts .bb-contacts__messenger-hint {
  color: var(--bb-muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
}

#contacts .bb-contacts__messenger-arrow {
  flex-shrink: 0;
  color: var(--bb-accent);
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s ease;
}

#contacts .bb-contacts__messenger:hover .bb-contacts__messenger-arrow {
  transform: translateX(3px);
}

#contacts .bb-contacts__alt {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

#contacts .bb-contacts__alt-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#contacts .bb-contacts__alt-label {
  color: var(--bb-muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
}

#contacts .bb-contacts__alt-value {
  color: var(--bb-navy);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.2s ease;
}

#contacts .bb-contacts__alt-value:hover {
  color: var(--bb-accent);
}

#contacts .bb-contacts__points {
  margin: 0;
  padding: 20px 0 0 24px;
  border-top: 1px solid var(--bb-line);
  color: var(--bb-gray);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}

#contacts .bb-contacts__point {
  margin-bottom: 10px;
}

#contacts .bb-contacts__point:last-child {
  margin-bottom: 0;
}

#contacts .bb-contacts__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px;
  background: #ffffff;
  border: 1px solid var(--bb-line);
}

#contacts .bb-contacts__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#contacts .bb-contacts__label {
  color: var(--bb-navy);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

#contacts .bb-contacts__input,
#contacts .bb-contacts__textarea,
#contacts .bb-contacts__select {
  width: 100%;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--bb-line);
  border-radius: 0;
  background: #ffffff;
  color: var(--bb-navy);
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  transition: border-color 0.2s ease;
}

#contacts .bb-contacts__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238899aa' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

#contacts .bb-contacts__textarea {
  min-height: 112px;
  resize: vertical;
}

#contacts .bb-contacts__input::placeholder,
#contacts .bb-contacts__textarea::placeholder {
  color: var(--bb-muted);
}

#contacts .bb-contacts__input:focus,
#contacts .bb-contacts__textarea:focus,
#contacts .bb-contacts__select:focus {
  outline: none;
  border-color: var(--bb-accent);
}

#contacts .bb-contacts__input--invalid,
#contacts .bb-contacts__select--invalid {
  border-color: var(--bb-accent);
}

#contacts .bb-contacts__phone-wrap {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--bb-line);
  background: #ffffff;
  transition: border-color 0.2s ease;
}

#contacts .bb-contacts__phone-wrap:focus-within {
  border-color: var(--bb-accent);
}

#contacts .bb-contacts__phone-wrap--invalid {
  border-color: var(--bb-accent);
}

#contacts .bb-contacts__phone-prefix {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 14px 12px 14px 16px;
  border-right: 1px solid var(--bb-line);
  background: #fbf9f7;
  color: var(--bb-navy);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

#contacts .bb-contacts__input--phone {
  flex: 1;
  min-width: 0;
  border: 0;
  padding-left: 12px;
}

#contacts .bb-contacts__input--phone:focus {
  border-color: transparent;
}

#contacts .bb-contacts__required {
  color: var(--bb-accent);
}

#contacts .bb-contacts__field-error,
#contacts .bb-contacts__form-error {
  margin: 0;
  color: var(--bb-accent);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

#contacts .bb-contacts__field-error[hidden],
#contacts .bb-contacts__form-error[hidden] {
  display: none;
}

#contacts .bb-contacts__note {
  margin: -6px 0 0;
  color: var(--bb-muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
}

#contacts .bb-contacts__link {
  color: var(--bb-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

#contacts .bb-contacts__link:hover {
  color: var(--bb-accent-hover);
}

#contacts .bb-contacts__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  margin: 0;
  padding: 14px 24px;
  border: 0;
  border-radius: 0;
  background: var(--bb-accent);
  color: #ffffff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

#contacts .bb-contacts__submit:hover:not(:disabled) {
  background: var(--bb-accent-hover);
}

#contacts .bb-contacts__submit:disabled {
  opacity: 0.72;
  cursor: wait;
}

#contacts .bb-contacts__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 40px 28px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #fbf9f7 100%);
  border: 1px solid var(--bb-line);
  animation: bb-contacts-success-in 0.35s ease;
}

@keyframes bb-contacts-success-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#contacts .bb-contacts__success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(200, 122, 74, 0.14);
  color: var(--bb-accent);
}

#contacts .bb-contacts__success-title {
  margin: 0;
  color: var(--bb-navy);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

#contacts .bb-contacts__success-text,
#contacts .bb-contacts__success-hint {
  margin: 0;
  max-width: 320px;
  color: var(--bb-gray);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}

#contacts .bb-contacts__success-hint {
  margin-top: 4px;
  font-size: 14px;
  color: var(--bb-muted);
}

#contacts .bb-contacts__success-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
}

#contacts .bb-contacts__success-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--bb-line);
  background: #ffffff;
  color: var(--bb-navy);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

#contacts .bb-contacts__success-action:hover {
  border-color: var(--bb-accent);
  color: var(--bb-accent);
  box-shadow: 0 4px 16px rgba(26, 46, 64, 0.06);
}

#contacts .bb-contacts__success[hidden],
#contacts .bb-contacts__form--sent .bb-contacts__field,
#contacts .bb-contacts__form--sent .bb-contacts__submit,
#contacts .bb-contacts__form--sent .bb-contacts__note,
#contacts .bb-contacts__form--sent .bb-contacts__form-error {
  display: none;
}

#contacts .bb-contacts__form--sent .bb-contacts__success {
  display: flex;
}

@media (max-width: 1199px) {
  #contacts .bb-contacts__container {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

@media (max-width: 959px) {
  #contacts .bb-contacts__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  #contacts .bb-contacts__title {
    font-size: 40px;
  }

  #contacts .bb-contacts__lead {
    font-size: 18px;
  }
}

@media (max-width: 639px) {
  #contacts .bb-contacts__container {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  #contacts .bb-contacts__title {
    font-size: 28px;
  }

  #contacts .bb-contacts__lead {
    font-size: 16px;
  }

  #contacts .bb-contacts__alt {
    grid-template-columns: 1fr;
  }

  #contacts .bb-contacts__form {
    padding: 24px 20px;
  }
}

/* Compare — три карточки вместо таблицы */
.compare-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (min-width: 900px) {
  .compare-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.compare-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.compare-card--us {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(200, 122, 74, 0.15);
  background: #fff;
}

.compare-card__label {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.compare-card--us .compare-card__label {
  color: var(--accent);
}

.compare-card__title {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

.compare-card__list {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  flex: 1;
}

.compare-card__list li {
  position: relative;
  margin: 0 0 0.65rem;
  padding-left: 1.1rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.compare-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.55;
}

.compare-card--us .compare-card__list li {
  color: var(--text);
}

.compare-card__foot {
  margin: 0;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.compare-card__foot--accent {
  color: var(--accent);
  font-weight: 600;
}

/* Process — bb-process как на burobaturina.ru */
#steps.bb-process {
  --bb-bg: #ffffff;
  --bb-navy: #1a2e40;
  --bb-gray: #445566;
  --bb-muted: #6b7a8a;
  --bb-accent: #c87a4a;
  --bb-line: #eeeeee;
  background: var(--bb-bg);
  color: var(--bb-navy);
  scroll-margin-top: 88px;
}

#steps .bb-process__container {
  width: 100%;
  max-width: var(--bb-container);
  margin: 0 auto;
  padding: 80px var(--bb-gutter);
}

#steps .bb-process__intro {
  max-width: 720px;
  margin-bottom: 48px;
}

#steps .bb-process__title {
  margin: 0 0 16px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

#steps .bb-process__lead {
  margin: 0;
  max-width: 620px;
  color: var(--bb-gray);
  font-size: 20px;
  line-height: 1.5;
}

#steps .bb-process__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

#steps .bb-process__step {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  column-gap: 104px;
  align-items: start;
  margin-left: 360px;
  padding: 20px 0 24px;
  border-bottom: 1px solid var(--bb-line);
}

#steps .bb-process__step:first-child {
  border-top: 1px solid var(--bb-line);
}

#steps .bb-process__step:last-child {
  border-bottom: none;
}

#steps .bb-process__num {
  color: var(--bb-accent);
  font-size: 80px;
  font-weight: 500;
  line-height: 1.1;
}

#steps .bb-process__step-title {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
}

#steps .bb-process__desc {
  margin: 0 0 16px;
  max-width: 480px;
  color: var(--bb-gray);
  font-size: 17px;
  line-height: 1.53;
}

#steps .bb-process__duration {
  margin: 0;
  color: var(--bb-muted);
  font-size: 16px;
}

@media (max-width: 1199px) {
  #steps .bb-process__container {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  #steps .bb-process__step {
    margin-left: 0;
    column-gap: 32px;
  }
}

@media (max-width: 959px) {
  #steps .bb-process__title {
    font-size: 40px;
  }

  #steps .bb-process__lead {
    font-size: 18px;
  }

  #steps .bb-process__step-title {
    font-size: 24px;
  }

  #steps .bb-process__num {
    font-size: 64px;
  }
}

@media (max-width: 767px) {
  #steps .bb-process__container {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  #steps .bb-process__title {
    font-size: 28px;
  }

  #steps .bb-process__lead {
    font-size: 16px;
  }

  #steps .bb-process__step {
    grid-template-columns: 56px minmax(0, 1fr);
    column-gap: 16px;
    padding: 16px 0 20px;
  }

  #steps .bb-process__num {
    font-size: 48px;
  }

  #steps .bb-process__step-title {
    font-size: 22px;
  }

  #steps .bb-process__desc {
    max-width: none;
    font-size: 16px;
  }
}

/* Audience — карточки */
.audience-card {
  padding-bottom: 32px;
}
