/* ====== Токены ====== */
:root {
  --ink: #14151a;
  --ink-soft: #4a4d57;
  --accent: #fb5b28;
  --accent-dark: #d8481c;
  --accent-soft: #fff0e8;
  --paper: #ffffff;
  --paper-alt: #f5f4f2;
  --line: #e4e2de;
  --radius: 10px;
  --radius-lg: 20px;
  --container-width: 1200px;
  --font: 'Manrope', 'Segoe UI', Arial, sans-serif;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --shadow-card: 0 1px 2px rgba(20,21,26,.04), 0 12px 28px -16px rgba(20,21,26,.10);
  --shadow-card-hover: 0 1px 2px rgba(20,21,26,.04), 0 20px 36px -18px rgba(20,21,26,.22);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 112px; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; }

h1, h2, h3, h4 { margin: 0 0 .5em; font-weight: 800; line-height: 1.2; }
p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
}

.band-white { background: var(--paper); }
.band-light { background: var(--paper-alt); }

.section { padding: 40px 0 120px 0; }
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 14px;
}
.section-title { font-size: 34px; margin-bottom: 16px; }
.section-lead { max-width: 640px; font-size: 17px; margin-bottom: 40px; }
.section-note { text-align: center; font-size: 13px; color: var(--ink-soft); opacity: .7; margin: 24px 0 0; }
.section-note--on-dark { color: #8c8c8c; }

.placeholder-text {
  
  font-size: 28px;
  border-radius: 4px;
    font-weight: 500;
}

/* ====== Иконка в цветном бейдже — общий компонент ====== */
.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 16px;
  flex: 0 0 auto;
}
.icon-badge .card__icon { width: 24px; height: 24px; margin: 0; stroke-width: 2; }
.icon-badge--dark { background: rgba(255,255,255,.08); color: #fff; }

/* ====== Кнопки ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background-color .25s var(--ease), border-color .25s var(--ease),
              color .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); box-shadow: 0 10px 24px -8px rgba(251,91,40,.6); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--ink); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--accent); color: #fff; }
.btn-small { padding: 10px 20px; font-size: 14px; }
.btn-large { padding: 18px 40px; font-size: 17px; }
.btn-full { width: 100%; }

/* ====== Шапка ====== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 16px;
}
.logo { display: inline-flex; align-items: center; flex: 0 0 auto; }
.logo-img { max-width: 150px; display: block; }
.main-nav { display: flex; gap: 28px; }
.main-nav a { font-size: 14px; font-weight: 600; color: var(--ink-soft); transition: color .25s var(--ease); }
.main-nav a:hover { color: var(--accent); }
.header-actions { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }

.nav-toggle {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.nav-toggle span {
  position: absolute;
  left: 8px;
  right: 8px;
  top: 50%;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transform: translateY(-50%);
  transition: background-color .25s var(--ease) .05s;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .3s var(--ease), top .15s var(--ease) .15s;
}
.nav-toggle span::before { top: -8px; }
.nav-toggle span::after { top: 8px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; transition-delay: 0s; }
.nav-toggle[aria-expanded="true"] span::before,
.nav-toggle[aria-expanded="true"] span::after {
  top: 0;
  transition: transform .3s var(--ease) .15s, top .15s var(--ease);
}
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: rotate(-45deg); }

/* ====== Верхняя контактная полоса ====== */
.site-topbar { background: #394243; }
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px 24px;
  min-height: 36px;
  padding: 6px 0;
}
.topbar-inner a { font-size: 13px; font-weight: 600; color: #b8b8b8; transition: color .25s var(--ease); display: inline-flex; align-items: center; }
.topbar-inner a:hover { color: var(--accent); }
.topbar-max-logo { width: 47px; height: 15px; display: block; }

/* ====== Херо ====== */
.hero {
  position: relative;
  padding: 96px 0;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right 20%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(90deg,
    rgba(255,255,255,.98) 0%,
    rgba(255,255,255,.94) 30%,
    rgba(255,255,255,.72) 50%,
    rgba(255,255,255,.25) 70%,
    rgba(255,255,255,0) 88%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-copy { max-width: 620px; }

/* ====== Волнистые края секций ======
   Псевдоэлемент ::after у секции ДО стыка: лежит в нижних 72px её собственного
   padding, залит SVG-волной цвета секции ПОСЛЕ. Так стык выглядит волнистым
   без отдельных блоков-разделителей в разметке.
   Цвета залиты как литералы (не var()) — внутри data-URI переменные не работают;
   при смене --paper/--paper-alt/--ink поправить и здесь. */
.section-wave { position: relative; }
.section-wave::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}
.section-wave--to-light::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 72' preserveAspectRatio='none'%3E%3Cpath d='M0,45 C300,-5 900,85 1200,25 L1200,72 L0,72 Z' fill='%23f5f4f2'/%3E%3C/svg%3E");
}
.section-wave--to-white::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 72' preserveAspectRatio='none'%3E%3Cpath d='M0,20 C300,70 900,-10 1200,30 L1200,72 L0,72 Z' fill='%23ffffff'/%3E%3C/svg%3E");
}
.section-wave--to-dark::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 72' preserveAspectRatio='none'%3E%3Cpath d='M0,40 C300,-10 900,80 1200,20 L1200,72 L0,72 Z' fill='%2314151a'/%3E%3C/svg%3E");
}

.hero h1 { font-size: 50px; letter-spacing: -.01em; max-width: 640px; }
.hero-lead { font-size: 18px; max-width: 560px; }
.hero-facts { display: flex; align-items: stretch; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero-fact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 1 170px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.hero-fact:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.hero-fact__value { font-size: 19px; line-height: 1.25; font-weight: 800; color: var(--ink); }
.hero-fact__label { font-size: 12px; color: var(--ink-soft); }
.hero-cta { margin-top: 18px; }
.hero-fact__value .placeholder-text {color: #d8481c; font-weight: 800;}

/* ====== Попап формы заявки ====== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20,21,26,.55);
  animation: modal-fade .2s var(--ease);
}
.modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  box-shadow: 0 40px 80px -20px rgba(20,21,26,.4);
  animation: modal-pop .25s var(--ease);
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  background: var(--paper-alt);
  color: var(--ink-soft);
  cursor: pointer;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.modal__close:hover { background: var(--accent-soft); color: var(--accent); }
.modal__close svg { width: 18px; height: 18px; }
@keyframes modal-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modal-pop { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .modal__backdrop, .modal__panel { animation: none; }
}
.lead-form__title { font-size: 22px; margin-bottom: 4px; }
.lead-form__subtitle { font-size: 14px; margin-bottom: 20px; }
.field { display: block; margin-bottom: 16px; }
.field__label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.field input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color .25s var(--ease);
}
.field input:focus { outline: none; border-color: var(--accent); }
.field input.field--invalid { border-color: #d92d20; }
.field__error { display: block; min-height: 18px; font-size: 12px; color: #d92d20; margin-top: 4px; }
.field--honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.lead-form__note { font-size: 12px; color: var(--ink-soft); text-align: center; margin: 12px 0 0; }
.lead-form__status { margin-top: 14px; font-size: 14px; font-weight: 600; min-height: 20px; }
.lead-form__status[data-state="ok"] { color: #16794c; }
.lead-form__status[data-state="error"] { color: #d92d20; }
.btn[disabled] { opacity: .6; cursor: default; transform: none !important; }

/* ====== Закреплённая CTA-панель ====== */
.sticky-cta {
  position: sticky;
  top: 76px;
  z-index: 40;
  background: var(--ink);
  color: #fff;
  transform: translateY(-120%);
  transition: transform .35s var(--ease);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 32px;
}
.sticky-cta__text { font-size: 14px; font-weight: 600; }
.sticky-cta__actions { display: flex; align-items: center; gap: 20px; }
.sticky-cta__max { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: #d9d9d9; }
.sticky-cta__max svg { width: 18px; height: 18px; flex: 0 0 auto; }

/* ====== Счётчик ====== */
.stats { padding: 80px 0;  }
.stats .section-title { margin-bottom: 40px; }
.stat-card {
  text-align: center;
  background: #fff;
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.stat-card .icon-badge {width: 60px;height: 60px;}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); transition: transform .3s var(--ease), box-shadow .3s var(--ease);}
.stat-card .icon-badge { margin: 0 auto 18px; }
.stat-card__value { font-size: 34px; font-weight: 800; color: var(--accent); margin: 0 0 6px; letter-spacing: -.01em; }
.stat-card__label { font-size: 14px; color: var(--ink-soft); margin: 0; }

/* ====== Карточки ====== */
.cards-grid { display: grid; gap: 24px; }
.cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  will-change: transform;
  overflow: hidden;
  position: relative;
}

.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-color: var(--accent);   transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);}
.card--outline { background: #fff; box-shadow: 0 1px 2px rgba(20,21,26,0), 0 12px 28px -16px rgba(20,21,26,0); }
.card--outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
  transition: width .3s var(--ease);
}
.card--outline:hover::before { width: 7px; }
.card--outline h3 {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -.005em;
}
.card--outline p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.cards-grid--numbered { counter-reset: card-number; }
.cards-grid--numbered .card--outline { counter-increment: card-number; padding-right: 64px; }
.cards-grid--numbered .card--outline::after {
  content: counter(card-number, decimal-leading-zero);
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 26px;
  font-weight: 800;
  color: rgba(251, 91, 40, .16);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}
.cards-grid--numbered .card--outline h3 { position: relative; z-index: 1; }

.card__icon {
  display: block;
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 14px;
  stroke-width: 1.75;
}
.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p { font-size: 14px; margin: 0; }
.card p + p { margin-top: 8px; }

/* ====== Этапы ====== */
.stages { position: relative; max-width: 900px; margin: 0 auto; }
.stages::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: var(--line);
  transform: translateX(-50%);
}
.stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  align-items: center;
  gap: 32px;
  padding: 20px 0;
}
.stage__center { display: flex; justify-content: center; }
.stage__num {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--accent);
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
  box-shadow: 0 4px 12px -4px rgba(251,91,40,.35);
}
.stage__side--left { text-align: right; }
.stage__side--right { text-align: left; }
.stage__side h3 { font-size: 19px; margin-bottom: 6px; }
.stage__side p { margin: 0; font-size: 14px; }

/* ====== Гарантии ====== */
.guarantees-panel {
  position: relative;
  background: #fff;
  border-radius: 28px;
  padding: 56px;
  box-shadow: var(--shadow-card-hover);
  overflow: hidden;
}
.guarantees-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 100%);
}
.guarantees-panel__watermark {
  position: absolute;
 top: 17px;
    right: 2px;
    width: 200px;
    height: 200px;
  color: var(--paper-alt);
  stroke-width: 1;
  z-index: 0;
  pointer-events: none;
}
.guarantees-panel__intro {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto 48px;
  text-align: center;
}
.guarantees-panel__intro .section-title { margin-bottom: 8px; }
.guarantees-panel__intro p:not(.eyebrow) { margin: 0; }
.guarantees-panel__list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.guarantee-item {
  padding: 0 24px;
  border-left: 1px solid var(--line);
  text-align: center;
}
.guarantee-item:first-child { border-left: none; padding-left: 0; }
.guarantee-item:last-child { padding-right: 0; }
.guarantee-item .icon-badge { margin: 0 auto 16px; }
.guarantee-item h3 { font-size: 16px; margin-bottom: 8px; }
.guarantee-item p { font-size: 13px; margin: 0; }

/* ====== Стоимость ====== */
.pricing-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  will-change: transform;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover);transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.pricing-card--accent { border-color: var(--accent); border-width: 2px; }
.pricing-card__badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}
.pricing-card .icon-badge { margin-bottom: 4px; }
.pricing-card__price { font-size: 28px; font-weight: 800; color: var(--accent);}
.pricing-card ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: 8px; }
.pricing-card li { font-size: 14px; color: var(--ink-soft); padding-left: 20px; position: relative; }
.pricing-card li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }

.pricing-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  padding: 24px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  flex-wrap: wrap;
  text-align: center;
}
.pricing-note span:first-child { font-size: 15px; color: var(--ink-soft); font-weight: 600; }
.pricing-note span:last-child { font-size: 20px; color: var(--accent); font-weight: 800; }

/* ====== Дополнительно к лицензии ====== */
.audience-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}
.audience-list { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; list-style: none; padding: 0; }
.audience-list li { display: flex; align-items: flex-start; gap: 16px; font-size: 15px; color: var(--ink-soft); }
.audience-list .icon-badge { margin-bottom: 0; width: 44px; height: 44px; border-radius: 12px; }
.audience-list .icon-badge .card__icon { width: 20px; height: 20px; }
.audience-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.lead-form--inline .field { margin-bottom: 14px; }

/* ====== О компании ====== */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-photo {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background-color: var(--paper-alt);
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow-card-hover);
  max-height: 490px;
}
.about-stat-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  max-width: 480px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-hover);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-stat-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
}
.about-fact { display: flex; align-items: center; gap: 14px; }
.about-fact .icon-badge { margin-bottom: 0; width: 44px; height: 44px; border-radius: 12px; }
.about-fact .icon-badge .card__icon { width: 20px; height: 20px; }
.about-fact strong { color: var(--ink); font-size: 15px; }
.about-fact span { font-size: 14px; }

/* ====== Отзывы ====== */
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.review-card__stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 12px; font-size: 20px; }
.review-card__text { font-size: 15px; font-style: italic; }
.review-card__meta { display: flex; align-items: center; gap: 12px; margin-top: 16px; margin-bottom:10px; }
.review-avatar {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}
.review-card__author { font-size: 13px; font-weight: 700; color: var(--ink); margin: 0; }

.review-platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.review-platform-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); transition: transform .3s var(--ease), box-shadow .3s var(--ease);}
.review-platform-card h3 { margin-bottom: 8px; }
.review-platform-card__stars { color: var(--accent); letter-spacing: 2px; font-size: 20px; margin-bottom: 16px; }
.review-platform-card__link { font-size: 14px; font-weight: 700; color: var(--accent); }

/* ====== FAQ ====== */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 100%; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: 0 1px 2px rgba(20,21,26,0), 0 12px 28px -16px rgba(20,21,26,0);
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.faq-item:hover { box-shadow: var(--shadow-card); border-color: var(--accent);  transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.faq-item summary {
  position: relative;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  list-style: none;
  padding-right: 36px;
  transition: color .25s var(--ease);
}
.faq-item summary:hover { color: var(--accent);}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: var(--accent);
  font-weight: 800;
  font-size: 26px;
  line-height: 1;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item > .faq-item__content {
  display: block;
  height: 0;
  overflow: hidden;
  transition: height .3s var(--ease);
}
.faq-item__content p { margin: 14px 0 0; font-size: 14px; }

/* ====== Финальный CTA ====== */
.final-cta__inner { text-align: center; }
.final-cta h2 { font-size: 30px; max-width: 560px; margin: 0 auto 28px; }

/* ====== Футер ====== */
.site-footer { background: var(--ink); color: #d9d9d9; padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-col { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.footer-col h4 { color: #fff; font-size: 14px; margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: #b8b8b8; transition: color .25s var(--ease); }
.footer-col a:hover { color: var(--accent); }
.footer-max-link { display: inline-flex; align-items: center; color: #b8b8b8; transition: color .25s var(--ease); }
.footer-max-link:hover { color: var(--accent); }
.footer-max-logo { width: 63px; height: 20px; }
.logo-img--footer { height: 30px; margin-bottom: 12px; }
.footer-requisites { font-size: 12px; line-height: 1.6; color: #8c8c8c; margin: 0; }
.footer-hours { font-size: 14px; line-height: 1.6; color: #b8b8b8; margin: 0; }
.footer-col--cta { justify-content: flex-start; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 13px;
  color: #8c8c8c;
}
.footer-top-link { font-weight: 700; color: #d9d9d9; transition: color .25s var(--ease); }
.footer-top-link:hover { color: var(--accent); }

/* ====== Анимации ====== */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
[data-animate].is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-animate] { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card:hover, .pricing-card:hover, .review-card:hover { transform: none; }
  .faq-item > .faq-item__content { transition: none; }
}

/* ====================================================================
 * Адаптивная вёрстка — резиновая сетка с переносом блоков на узких экранах
 * ==================================================================== */

@media (max-width: 1240px) {
  .container { padding: 0 24px; }
}

@media (max-width: 960px) {
  .cards-grid--3, .cards-grid--4 { grid-template-columns: repeat(2, 1fr); }

  .about-layout, .audience-layout { grid-template-columns: 1fr; gap: 40px; }

  .guarantees-panel__list { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .guarantee-item { border-left: none; border-top: 1px solid var(--line); padding: 24px 12px 0; }
  .guarantee-item:first-child, .guarantee-item:nth-child(2) { border-top: none; padding-top: 0; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .stage { display: flex; align-items: flex-start; gap: 20px; padding: 16px 0; }
  .stage__side:empty { display: none; }
  .stage__side--left, .stage__side--right { flex: 1 1 auto; text-align: left; }
  .stage__center { order: -1; flex: 0 0 auto; }
  .stages::before { left: 28px; }

  .hero h1 { font-size: 40px; }
}

@media (max-width: 1100px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-card);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s var(--ease);
  }
  .main-nav.is-open { max-height: 480px; }
  .main-nav a { padding: 14px 24px; border-top: 1px solid var(--line); }

  .sticky-cta__max { display: none; }
}

@media (max-width: 700px) {
  .cards-grid--3, .cards-grid--4 { grid-template-columns: 1fr; }

  .section { padding: 32px 0 72px; }
  .section-title { font-size: 26px; }
  .section-lead { font-size: 15px; margin-bottom: 28px; }

  .hero { display: block; position: relative; min-height: 0; padding: 0 0 32px; overflow: visible; }
  .hero-bg { position: relative; display: block; width: 100%; height: 120px; }
  .hero-overlay { display: none; }
  .hero-inner { position: relative; margin-top: -52px; }
  .hero .eyebrow {
    background: rgba(255,255,255,.95);
    padding: 7px 16px;
    border-radius: 999px;
    box-shadow: var(--shadow-card);
    margin-bottom: 30px;
  }
  .hero h1 { font-size: 28px; max-width: 100%; }
  .hero-lead { max-width: 100%; }
  .hero-copy { max-width: 100%; background: none; box-shadow: none; padding: 0; }
  .hero-facts { flex-direction: column; }
  .hero-fact { flex: 0 1 auto; }

  .topbar-inner { justify-content: center; text-align: center; }

  .guarantees-panel { padding: 32px 20px; }
  .guarantees-panel__list { grid-template-columns: 1fr; row-gap: 24px; }
  .guarantee-item { border-top: 1px solid var(--line); padding: 24px 0 0; }
  .guarantee-item:first-child { border-top: none; padding-top: 0; }
  .guarantees-panel__watermark { width: 140px; height: 140px; }

  .stage { grid-template-columns: 44px 1fr; }
  .stage__num { width: 44px; height: 44px; font-size: 15px; }
  .stages::before { left: 22px; }

  .pricing-note { flex-direction: column; gap: 8px; padding: 20px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .sticky-cta__inner { flex-direction: column; gap: 8px; padding: 10px 20px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 26px; }
  .hero-inner { margin-top: -48px; }
  .section-title { font-size: 22px; }
  .modal__panel { padding: 28px 20px 24px; }
  .guarantees-panel { padding: 24px 16px; }
  .about-stat-card { padding: 18px; }
  .about-photo {max-height: 380px;}
}
@media (max-width: 380px) {
  .logo-img { max-width: 120px;}
}
