/* =============================================================
   REMONT.COM — личная страница мастера на платформе
   Палитра: slate + cyan + amber (для форм заявки и скидки)
   Шрифты: Manrope (заголовки) + Inter (текст)
   ============================================================= */

:root {
  /* ============================================================
     SUNNY-палитра из HANDOFF.md
     Кремовый фон, янтарный акцент, текст почти-чёрный.
     ============================================================ */

  /* Surfaces */
  --c-bg:           #FAF7F0;        /* тёплый кремовый — фон страницы */
  --c-bg-soft:      #FFF8E8;        /* слегка жёлтый */
  --c-bg-mute:      #FFF1CF;        /* мягкая жёлтая подложка (panel) */
  --c-bg-deep:      #1A1A1A;        /* почти чёрный */
  --c-bg-deep-2:    #0f0f0f;

  /* Borders */
  --c-border:       #EFE6CC;        /* line */
  --c-border-soft:  #F4ECD7;        /* line-soft */
  --c-border-dark:  rgba(255, 255, 255, 0.10);

  /* Ink */
  --c-text:         #1A1A1A;        /* основной текст */
  --c-text-muted:   #3D3A33;        /* вторичный */
  --c-text-soft:    #7A7568;        /* подписи */
  --c-text-on-dark: #FAF7F0;
  --c-text-on-dark-mute: #B8B2A0;

  /* Sunny accent */
  --c-brand-link:   #F0A020;        /* accent-deep — ссылки и важные числа */
  --c-cta:          #F0A020;        /* accent-deep — primary */
  --c-cta-hover:    #D88C18;        /* темнее для hover */
  --c-cta-deep:     #8B5A00;        /* для текста тегов */
  --c-cta-soft:     #FFF1CF;        /* soft подложка под иконки */
  --c-cta-mute:     #FFF8E8;

  /* Жёлтый — для CTA-блоков (форма + скидка) */
  --c-amber-bg:     #FFD24A;        /* верх градиента */
  --c-amber-bg-2:   #F0A020;        /* низ градиента */
  --c-amber-bg-soft: #FFF1CF;
  --c-amber-border: #F0A020;
  --c-amber-text:   #1A1A1A;        /* текст почти-чёрный (НЕ белый на жёлтом) */
  --c-amber-text-2: #3D3A33;
  --c-amber-grad:   linear-gradient(135deg, #FFD24A 0%, #F0A020 100%);

  /* Status */
  --c-online:       #0E8A4F;        /* success */
  --c-online-soft:  #D4F0DD;
  --c-success:      #0E8A4F;
  --c-star:         #E8A23D;

  /* Шрифты — Inter + Inter Tight (display) */
  --ff-display: 'Inter Tight', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ff-text:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --fs-h1: 38px;
  --fs-h2: 28px;
  --fs-h3: 20px;
  --fs-body: 16px;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;
  --r-pill: 999px;

  --sh-card:    0 1px 2px rgba(26, 26, 26, 0.04), 0 4px 16px rgba(26, 26, 26, 0.05);
  --sh-hover:   0 4px 16px rgba(26, 26, 26, 0.10), 0 2px 4px rgba(26, 26, 26, 0.06);
  --sh-cta:     0 4px 18px rgba(240, 160, 32, 0.32);
  --sh-cta-hover: 0 6px 22px rgba(240, 160, 32, 0.40);
  --sh-amber:   0 4px 18px rgba(240, 160, 32, 0.28);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 120ms;
  --t-normal: 220ms;

  --container: 1200px;
  --gutter: 24px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-text);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
h1, h2, h3 { margin: 0; font-family: var(--ff-display); line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; color: var(--c-text); }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); letter-spacing: -0.015em; }
h3 { font-size: var(--fs-h3); font-weight: 700; }
p { margin: 0; }
a { color: var(--c-brand-link); text-decoration: none; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--c-cta-deep); }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.container--narrow { max-width: 920px; }

/* ---------- Шапка ---------- */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--c-border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 200; /* Выше mobile-menu чтобы крестик всегда был виден */
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; flex-direction: column; text-decoration: none; line-height: 1.1; }
.brand:hover { text-decoration: none; }
.brand__name {
  font-family: 'Inter Tight', 'Inter', -apple-system, sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--c-text);
  text-transform: lowercase;
  letter-spacing: -0.05em;       /* -2.4 на font-size 48 → пропорционально */
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.brand__dot {
  display: inline-block;
  width: 0.85em;
  height: 0.85em;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #FFE680 0%, #FFC835 55%, #E6951A 100%);
  margin: 0 0.18em;
  vertical-align: middle;
  flex-shrink: 0;
  /* На размерах ≤16px (мелкий футер/иконки) градиент схлопывается визуально и
     дополнительно — fallback для систем без поддержки conic/radial */
  box-shadow: 0 0 0 0.5px rgba(217, 119, 6, 0.25);
}
.brand__sub { font-size: 11px; font-weight: 500; color: var(--c-text-soft); letter-spacing: 0.04em; text-transform: uppercase; margin-top: 2px; }

.nav { display: flex; gap: 26px; }
.nav a { color: var(--c-text-muted); font-size: 14px; font-weight: 500; transition: color var(--t-fast) var(--ease); }
.nav a:hover { color: var(--c-text); }

/* Phone-pill в стиле HANDOFF: круглая чёрная иконка на жёлтом pill */
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 18px 6px 6px;
  border-radius: 999px;
  background: var(--c-amber-grad);
  color: var(--c-text);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: var(--sh-cta);
  transition: filter var(--t-fast) var(--ease);
  font-variant-numeric: tabular-nums;
}
.header-phone:hover { filter: brightness(1.04); color: var(--c-text); text-decoration: none; }
.header-phone__icon-wrap {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--c-text-muted); /* тёмно-серый, не чёрный — мягче */
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.header-phone:hover .header-phone__icon-wrap { transform: scale(1.06); }
.header-phone__icon-wrap svg { width: 16px; height: 16px; }

/* ---------- Полоса преимуществ ---------- */
.benefits-strip {
  background: var(--c-bg-soft);
  border-bottom: 1px solid var(--c-border);
  padding: 14px 0;
}
.benefits-strip__inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit { display: flex; align-items: center; gap: 14px; }
.benefit__icon {
  width: 46px; height: 46px;
  border-radius: var(--r-md);
  background: var(--c-cta-soft);
  color: var(--c-cta);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.benefit__icon svg { width: 26px; height: 26px; }
.benefit__title { font-weight: 700; font-size: 15px; color: var(--c-text); line-height: 1.3; }
.benefit__sub { font-size: 13px; color: var(--c-text-soft); line-height: 1.3; }

/* ---------- Основной grid с сайдбаром ---------- */
.main { padding: 36px 0 56px; }
.main__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 36px;
  align-items: start;
}
.content { min-width: 0; }
.sidebar {
  position: sticky;
  top: 92px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ---------- Hero ---------- */
.hero { margin-bottom: 28px; }
.hero h1 { font-size: var(--fs-h1); margin-bottom: 22px; max-width: 680px; }

/* Карточка мастера: вертикальный layout, описание и телефон ВО ВСЮ ширину под фото */
.master-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  margin-bottom: 22px;
  transition: box-shadow var(--t-normal) var(--ease);
  box-shadow: var(--sh-card);
}
.master-card:hover { box-shadow: var(--sh-hover); }
.master-card__top {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.master-card__photo {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: var(--r-md);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--c-bg-soft);
}
.master-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.master-card__online {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--c-online);
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.4);
  animation: online-pulse 2.4s ease-out infinite;
}
@keyframes online-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(16, 185, 129, 0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0   rgba(16, 185, 129, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .master-card__online { animation: none; }
}
.master-card__body { display: flex; flex-direction: column; gap: 4px; min-width: 0; flex: 1; }
.master-card__head { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.master-card__name { font-family: var(--ff-display); font-weight: 700; font-size: 17px; color: var(--c-text); }
.master-card__verify {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--c-cta-deep);
  background: var(--c-cta-soft);
  padding: 2px 8px;
  border-radius: var(--r-pill);
}
.master-card__verify svg { width: 11px; height: 11px; }
.master-card__status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--c-success);
  background: var(--c-online-soft);
  padding: 2px 8px;
  border-radius: var(--r-pill);
}
.master-card__status::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--c-online);
  border-radius: 50%;
}
.master-card__meta { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--c-text-soft); flex-wrap: wrap; }
.master-card__rating { display: inline-flex; align-items: center; gap: 3px; font-weight: 600; color: var(--c-text); }
.master-card__rating .star { color: var(--c-star); }
.master-card__desc { font-size: 13px; color: var(--c-text-muted); line-height: 1.55; margin-top: 2px; }

/* ---------- Жёлтый блок-форма "Закажите звонок" ---------- */
.cta-call {
  position: relative;
  background: linear-gradient(135deg, #fcd34d 0%, var(--c-amber-bg) 50%, var(--c-amber-bg-2) 100%);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(217, 119, 6, 0.20);
}
.cta-call__title {
  font-family: var(--ff-display);
  font-size: 23px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--c-amber-text);
  margin-bottom: 18px;
  max-width: 380px;
  position: relative;
  z-index: 2;
}
.cta-call__form { display: flex; gap: 10px; max-width: 480px; flex-wrap: wrap; position: relative; z-index: 2; }
.cta-call__form input[type="tel"] {
  flex: 1 1 220px;
  min-width: 0;
  height: 52px;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.cta-call__form .btn { flex: 0 0 auto; height: 52px; }
.cta-call__terms {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--c-amber-text-2);
  line-height: 1.45;
  max-width: 480px;
  position: relative;
  z-index: 2;
}
.cta-call__terms input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; cursor: pointer; accent-color: var(--c-amber-text); }
.cta-call__terms a { color: var(--c-amber-text); text-decoration: underline; font-weight: 600; }

/* Общий стиль согласия на ПД для форм вне янтарного блока (discount, bottom-CTA) */
.form-terms {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 10px;
  font-size: 11px;
  color: var(--c-text-soft);
  line-height: 1.4;
  text-align: left;
}
.form-terms input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; cursor: pointer; accent-color: var(--c-cta); }
.form-terms a { color: var(--c-text-muted); text-decoration: underline; }

/* SVG иллюстрация универсальных инструментов (ключ + отвёртка крест-накрест) */
.cta-call__tools {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 200px;
  height: 200px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.18;
}
.cta-call__tools svg { width: 100%; height: 100%; }

/* ---------- Поля и кнопки ---------- */
input[type="tel"], input[type="text"], textarea {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  font-family: inherit;
  font-size: 16px;
  color: var(--c-text);
  background: #ffffff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
textarea { height: auto; padding: 12px 16px; line-height: 1.5; resize: vertical; min-height: 80px; }
input[type="tel"]:focus, input[type="text"]:focus, textarea:focus {
  outline: none;
  border-color: var(--c-cta);
  box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.18);
}
input.has-error, textarea.has-error {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.18) !important;
}
/* Старый блок .field-error удалён — используется новый body-level тултип ниже (стрелка вниз через ::after) */

.shake {
  animation: shake 0.42s cubic-bezier(.36,.07,.19,.97) both;
}
@keyframes shake {
  10%, 90% { transform: translateX(-1px); }
  20%, 80% { transform: translateX(2px); }
  30%, 50%, 70% { transform: translateX(-3px); }
  40%, 60% { transform: translateX(3px); }
}
form[data-form] { position: relative; }
input[type="tel"]::placeholder, input[type="text"]::placeholder, textarea::placeholder { color: var(--c-text-soft); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 50px;
  padding: 0 24px;
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease), box-shadow var(--t-normal) var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--c-amber-grad);
  color: var(--c-text);
  box-shadow: var(--sh-cta);
  font-weight: 700;
}
.btn-primary:hover { filter: brightness(1.04); box-shadow: var(--sh-cta-hover); }
.btn-secondary { background: var(--c-bg); color: var(--c-text); border: 1px solid var(--c-border); }
.btn-secondary:hover { background: var(--c-bg-soft); border-color: var(--c-cta); color: var(--c-cta); }
.btn-amber {
  background: #ffffff;
  color: var(--c-amber-text);
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.10), 0 4px 14px rgba(0, 0, 0, 0.08);
}
.btn-amber:hover { background: var(--c-amber-text); color: #ffffff; }
.btn-amber-dark {
  background: var(--c-amber-text);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15), 0 4px 14px rgba(0, 0, 0, 0.10);
}
.btn-amber-dark:hover { background: #000000; }
.btn--block { width: 100%; }

/* ---------- Sidebar ---------- */
.side-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 18px;
  box-shadow: var(--sh-card);
}
.side-card__title {
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-list { display: flex; flex-direction: column; gap: 14px; }
.about-list .benefit__icon { width: 40px; height: 40px; }
.about-list .benefit__icon svg { width: 22px; height: 22px; }
.about-list .benefit__title { font-size: 14px; }
.about-list .benefit__sub { font-size: 12px; }

/* Скидка 20% — блок в сайдбаре, sticky внутри aside */
.side-card--discount {
  background: linear-gradient(160deg, #fcd34d 0%, var(--c-amber-bg) 50%, var(--c-amber-bg-2) 100%);
  border: none;
  padding: 22px 22px 18px;
  box-shadow: 0 4px 20px rgba(217, 119, 6, 0.22);
  position: relative;
  overflow: hidden;
}
.side-card--discount::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(255,255,255,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.side-card--discount__title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 26px;
  color: var(--c-amber-text);
  line-height: 1.1;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
  position: relative;
}
.discount-badge {
  display: inline-block;
  background: var(--c-amber-text);
  color: #ffffff;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 22px;
  padding: 2px 12px;
  border-radius: var(--r-sm);
  margin-left: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);
}
.side-card--discount__sub {
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--c-amber-text);
  margin-bottom: 16px;
  position: relative;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.side-card--discount input[type="tel"] {
  background: #ffffff;
  border: none;
  margin-bottom: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  position: relative;
  width: 100%;
}
.side-card--discount__hint {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-amber-text);
  margin-top: 12px;
  text-align: center;
  opacity: 1;
  position: relative;
}
.side-card__terms {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 10px 0;
  font-size: 11px;
  color: var(--c-amber-text-2);
  line-height: 1.45;
}
.side-card__terms input[type="checkbox"] { margin-top: 2px; cursor: pointer; }
.side-card__terms a { color: var(--c-amber-text); text-decoration: underline; }
.side-card__hint { font-size: 11px; color: var(--c-amber-text-2); margin-top: 10px; text-align: center; opacity: 0.85; }

/* ---------- Секции ---------- */
.section { padding: 56px 0; }
.section--soft { background: var(--c-bg-soft); }
.section--tight { padding: 36px 0 0; }
.section--inline { padding: 40px 0 0; }
.section--inline:first-child { padding-top: 0; }
/* FAQ – единственная секция с белой карточкой-обёрткой */
#faq.section--inline {
  margin-top: 24px;
  padding: 28px 32px;
  background: #ffffff;
  border: 1px solid var(--c-border-soft);
  border-radius: var(--r-lg);
}
#faq.section--inline > .section__title { margin-top: 0; }
.section h2 { font-size: var(--fs-h2); }
.section__title { font-size: var(--fs-h2); margin-bottom: 24px; }
.section__title--center { text-align: center; }

/* Шаги работы (4 шага) */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-border) 20%, var(--c-border) 80%, transparent);
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step__num {
  width: 60px; height: 60px;
  margin: 0 auto 16px;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  color: var(--c-cta);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 24px;
  transition: transform var(--t-normal) var(--ease), box-shadow var(--t-normal) var(--ease), background var(--t-normal) var(--ease), color var(--t-normal) var(--ease), border-color var(--t-normal) var(--ease);
}
.step:hover .step__num { transform: scale(1.05); box-shadow: var(--sh-cta); background: var(--c-cta); color: #fff; border-color: var(--c-cta); }
.step__title { font-family: var(--ff-display); font-weight: 700; font-size: 16px; margin-bottom: 6px; color: var(--c-text); }
.step__text { font-size: 13px; color: var(--c-text-muted); line-height: 1.5; }

/* Чем я отличаюсь (3 карточки) */
.why-me-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card { text-align: center; padding: 0 4px; }
.why-card__icon {
  width: 60px; height: 60px;
  margin: 0 auto 16px;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  color: var(--c-cta);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform var(--t-normal) var(--ease), box-shadow var(--t-normal) var(--ease), background var(--t-normal) var(--ease), color var(--t-normal) var(--ease), border-color var(--t-normal) var(--ease);
}
.why-card__icon svg { width: 26px; height: 26px; }
.why-card:hover .why-card__icon { transform: scale(1.05); box-shadow: var(--sh-cta); background: var(--c-cta); color: #fff; border-color: var(--c-cta); }
.why-card__title { font-family: var(--ff-display); font-weight: 700; font-size: 16px; margin-bottom: 8px; color: var(--c-text); }
.why-card__text { font-size: 13px; color: var(--c-text-muted); line-height: 1.5; }

@media (max-width: 991.98px) {
  .why-me-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-card {
    text-align: left;
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-areas: "icon title" "icon text";
    column-gap: 14px;
    row-gap: 4px;
    align-items: start;
    padding: 0;
  }
  .why-card__icon { width: 48px; height: 48px; margin: 0; grid-area: icon; }
  .why-card__icon svg { width: 22px; height: 22px; }
  .why-card__title { margin-bottom: 0; grid-area: title; align-self: center; }
  .why-card__text { grid-area: text; }
}

/* ---------- Прайс ---------- */
.price-wrap {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-card);
}
.price-group { border-bottom: 1px solid var(--c-border); }
.price-group:last-child { border-bottom: none; }
.price-group__head {
  background: var(--c-bg-soft);
  padding: 12px 22px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-group__head svg { width: 14px; height: 14px; color: var(--c-cta); }
.price__row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 12px 22px;
  border-top: 1px solid var(--c-border-soft);
  transition: background var(--t-fast) var(--ease);
  gap: 16px;
}
.price__row:hover { background: var(--c-bg-soft); }
.price__label { font-size: 14px; color: var(--c-text); }
.price__value { font-size: 14px; font-weight: 700; color: var(--c-text); white-space: nowrap; font-variant-numeric: tabular-nums; }
.price__value--free { color: var(--c-success); background: var(--c-online-soft); padding: 2px 9px; border-radius: var(--r-pill); font-size: 12px; }
.price-note { margin-top: 14px; text-align: center; font-size: 13px; color: var(--c-text-soft); }

/* Скрытые строки прайса (раскрываются по кнопке) */
.price__row--hidden { display: none; }
.price-wrap.is-expanded .price__row--hidden { display: grid; }
.price-expand {
  display: block;
  margin: 14px auto 0;
  padding: 0 28px;
  height: 44px;
}
.price-wrap.is-expanded + .price-expand { display: none; }

/* ---------- Гарантия в чеке ---------- */
.guarantee {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.guarantee__list { display: flex; flex-direction: column; gap: 12px; }
.guarantee__item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  align-items: start;
  background: #ffffff;
  border: 1px solid var(--c-border-soft);
  border-radius: var(--r-md);
  padding: 16px 18px;
}
.guarantee__icon {
  width: 50px; height: 50px;
  border-radius: var(--r-md);
  background: var(--c-cta-soft);
  color: var(--c-cta);
  display: grid;
  place-items: center;
}
.guarantee__icon svg { width: 26px; height: 26px; }
.guarantee__title { font-family: var(--ff-display); font-weight: 700; font-size: 16px; margin-bottom: 4px; color: var(--c-text); }
.guarantee__text { font-size: 13px; color: var(--c-text-muted); line-height: 1.55; }

.receipt {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: var(--sh-card);
  position: relative;
  font-variant-numeric: tabular-nums;
  max-width: 380px;
  margin: 0 auto;
}
.receipt::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 12px;
  background-image:
    linear-gradient(45deg, transparent 33.33%, var(--c-bg) 33.33%, var(--c-bg) 66.66%, transparent 66.66%),
    linear-gradient(-45deg, transparent 33.33%, var(--c-bg) 33.33%, var(--c-bg) 66.66%, transparent 66.66%);
  background-size: 14px 14px;
  background-position: 0 100%;
}
.receipt__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px dashed var(--c-border); }
.receipt__title { font-family: var(--ff-display); font-weight: 700; font-size: 13px; }
.receipt__id { font-size: 11px; color: var(--c-text-soft); }
.receipt__rows { display: flex; flex-direction: column; gap: 6px; }
.receipt__row { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; align-items: baseline; }
.receipt__row span:first-child { color: var(--c-text-muted); flex: 1 1 auto; min-width: 0; }
.receipt__row span:last-child { color: var(--c-text); font-weight: 600; flex: 0 0 auto; white-space: nowrap; }
.receipt__total { margin-top: 12px; padding-top: 12px; border-top: 1px dashed var(--c-border); display: flex; justify-content: space-between; font-family: var(--ff-display); font-size: 16px; font-weight: 800; }
.receipt__guarantee {
  margin-top: 14px;
  padding: 10px 12px;
  background: var(--c-online-soft);
  color: var(--c-success);
  border-radius: var(--r-md);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.receipt__guarantee svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ---------- Отзывы ---------- */
.reviews-head { display: flex; align-items: center; gap: 20px; margin-bottom: 24px; flex-wrap: wrap; }
.reviews-head__rating { display: inline-flex; align-items: center; gap: 8px; font-family: var(--ff-display); font-size: 28px; font-weight: 800; color: var(--c-text); }
.reviews-head__rating .star { color: var(--c-star); font-size: 26px; }
.reviews-head__count { color: var(--c-text-muted); font-size: 14px; }
.reviews-head__count strong { color: var(--c-text); font-weight: 700; }
.reviews-head__verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--c-success);
  background: var(--c-online-soft);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-weight: 600;
}
.reviews-head__verified svg { width: 12px; height: 12px; }

.reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.review {
  background: #ffffff;
  border: 1px solid var(--c-border-soft);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  transition: box-shadow var(--t-normal) var(--ease), transform var(--t-normal) var(--ease);
}
.review:hover { box-shadow: var(--sh-card); transform: translateY(-1px); }
.review__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 6px; }
.review__author { display: flex; align-items: center; gap: 10px; min-width: 0; }
.review__avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--c-cta-soft);
  color: var(--c-cta);
  display: grid;
  place-items: center;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.review__name { font-family: var(--ff-display); font-weight: 700; font-size: 14px; color: var(--c-text); }
.review__date { font-size: 12px; color: var(--c-text-soft); font-variant-numeric: tabular-nums; flex-shrink: 0; }
.review__stars { color: var(--c-star); font-size: 13px; letter-spacing: 1px; margin-bottom: 6px; }
.review__text { color: var(--c-text-muted); font-size: 13.5px; line-height: 1.55; }

.review__reply {
  margin-top: 12px;
  padding: 10px 12px;
  background: var(--c-bg-soft);
  border-left: 3px solid var(--c-cta);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.review__reply-head { display: flex; align-items: center; gap: 6px; margin-bottom: 4px; font-size: 11px; font-weight: 600; color: var(--c-cta-deep); }
.review__reply-head svg { width: 11px; height: 11px; }
.review__reply-text { font-size: 13px; color: var(--c-text-muted); line-height: 1.5; }

.reviews-more { display: block; margin: 22px auto 0; }
/* Доп. отзывы — скрыты по умолчанию, показываются по клику на кнопку «Показать ещё» */
.review--hidden { display: none; }

/* ---------- Форма комментария ---------- */
.comment-form {
  margin-top: 32px;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--sh-card);
}
.comment-form__head { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.comment-form__head svg { width: 22px; height: 22px; color: var(--c-cta); }
.comment-form__title { font-family: var(--ff-display); font-size: 18px; font-weight: 700; color: var(--c-text); }
.comment-form__sub { font-size: 13px; color: var(--c-text-soft); margin-bottom: 16px; }

.comment-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.comment-form__rating { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.comment-form__rating-label { font-size: 13px; color: var(--c-text-muted); }
.comment-form__stars { display: flex; gap: 4px; }
.comment-form__stars button {
  background: none;
  border: none;
  font-size: 22px;
  color: var(--c-border);
  cursor: pointer;
  padding: 2px;
  line-height: 1;
  transition: color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.comment-form__stars button:hover { transform: scale(1.15); }
.comment-form__stars button.is-active { color: var(--c-star); }
.comment-form__terms { display: flex; align-items: flex-start; gap: 8px; margin: 10px 0 14px; font-size: 11px; color: var(--c-text-soft); line-height: 1.45; }
.comment-form__terms input[type="checkbox"] { margin-top: 2px; cursor: pointer; }
.comment-form__terms a { color: var(--c-cta-deep); text-decoration: underline; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; border-top: 1px solid var(--c-border); }
.faq-item { border-bottom: 1px solid var(--c-border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-text);
  text-align: left;
  cursor: pointer;
  transition: color var(--t-fast) var(--ease);
}
.faq-q:hover { color: var(--c-cta); }
.faq-q__icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--c-bg-soft);
  display: grid;
  place-items: center;
  font-size: 17px;
  color: var(--c-text-muted);
  transition: transform var(--t-normal) var(--ease), background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.faq-item.is-open .faq-q__icon { transform: rotate(45deg); background: var(--c-cta); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--t-normal) var(--ease); }
.faq-item.is-open .faq-a { max-height: 500px; }
.faq-a__inner { padding: 0 0 20px; color: var(--c-text-muted); font-size: 14px; line-height: 1.65; max-width: 660px; }

/* ---------- Финальный CTA ---------- */
.bottom-cta { text-align: center; }
.bottom-cta__lead {
  margin: -16px auto 18px;
  font-size: 15px;
  color: var(--c-text-muted);
  max-width: 460px;
}
.bottom-cta__form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; }
.bottom-cta__form input[type="tel"] { flex: 1 1 240px; height: 54px; font-size: 16px; }
.bottom-cta__form .btn { height: 54px; padding: 0 28px; }

.bottom-cta__divider {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 380px;
  margin: 26px auto 18px;
  color: var(--c-text-soft);
  font-size: 13px;
}
.bottom-cta__divider::before,
.bottom-cta__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--c-border);
}

.bottom-cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 26px;
  color: var(--c-text);
}
.bottom-cta__phone:hover { color: var(--c-cta); text-decoration: none; }
.bottom-cta__phone svg { width: 24px; height: 24px; color: var(--c-cta); }
.bottom-cta__hours { margin-top: 6px; font-size: 13px; color: var(--c-text-soft); }

/* ---------- Футер ---------- */
.site-footer {
  padding: 44px 0 28px;
  background: var(--c-bg-deep);
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.65;
}
.site-footer a { color: rgba(255, 255, 255, 0.85); }
.site-footer a:hover { color: var(--c-cta); }
.footer__cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; margin-bottom: 28px; }
.footer__brand { display: flex; flex-direction: column; gap: 6px; }
.footer__brand .brand__name { color: #fff; font-size: 22px; display: inline-flex; }
.footer__brand-sub {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 6px;
  max-width: 320px;
  line-height: 1.45;
  display: block;
}
.footer__phone { font-size: 16px; font-weight: 700; }
.footer__hours { color: rgba(255, 255, 255, 0.55); font-size: 13px; }
.footer__doclinks {
  margin-top: 12px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}
.footer__doclinks a { color: rgba(255, 255, 255, 0.55); text-decoration: underline; }
.footer__doclinks a:hover { color: var(--c-cta); }
.footer__doclinks-sep { margin: 0 6px; opacity: 0.4; }
.footer__col-title { color: #fff; font-family: var(--ff-display); font-weight: 700; margin-bottom: 12px; font-size: 14px; }
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: 5px; font-size: 13px; }
.footer__legal { padding-top: 20px; font-size: 12px; color: rgba(255, 255, 255, 0.45); line-height: 1.6; }
.footer__legal p { margin-bottom: 8px; }
.footer__legal a { color: inherit; text-decoration: none; }
.footer__legal a:hover { color: rgba(255, 255, 255, 0.70); text-decoration: underline; }
.advertiser-link { display: inline-block; font-size: 11px; color: rgba(255, 255, 255, 0.40); text-decoration: underline; margin-top: 6px; cursor: pointer; }
.advertiser-link:hover { color: var(--c-cta); }

/* ---------- Sticky bottom bar ---------- */
.sticky-bar { display: none; }

/* ---------- Модалка ---------- */
.modal {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(15, 23, 42, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.modal.is-open { display: flex; animation: modal-fade 0.2s var(--ease); }
@keyframes modal-fade { from { opacity: 0; } to { opacity: 1; } }
.modal__dialog {
  background: #fff;
  max-width: 460px; width: 100%;
  border-radius: var(--r-xl);
  padding: 30px 28px 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  position: relative;
  animation: modal-pop 0.25s var(--ease);
}
@keyframes modal-pop { from { transform: scale(0.96); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal__close {
  position: absolute; top: 10px; right: 10px;
  background: none; border: none; font-size: 26px;
  color: var(--c-text-soft); cursor: pointer; line-height: 1;
  width: 36px; height: 36px; border-radius: 50%;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.modal__close:hover { background: var(--c-bg-soft); color: var(--c-text); }
.modal__title { font-family: var(--ff-display); font-size: 19px; margin-bottom: 14px; }
.modal__body p { font-size: 14px; color: var(--c-text-muted); line-height: 1.6; margin-bottom: 10px; }
.modal__legal { margin: 14px 0; padding: 14px 16px; background: var(--c-bg-soft); border-radius: var(--r-md); font-size: 13px; }
.modal__legal div { display: flex; justify-content: space-between; gap: 12px; padding: 4px 0; }
.modal__legal dt { color: var(--c-text-soft); margin: 0; }
.modal__legal dd { color: var(--c-text); margin: 0; font-weight: 700; font-variant-numeric: tabular-nums; }
.modal__note { font-size: 12px; color: var(--c-text-soft); margin-top: 14px; line-height: 1.55; }
.modal__contact { font-size: 13px; margin-top: 12px; }

/* ---------- Утилиты ---------- */
.fade-in { animation: fadeUp 0.5s var(--ease) both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.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; }

/* ---------- Адаптивность ---------- */
@media (max-width: 1199.98px) {
  :root { --fs-h1: 32px; --fs-h2: 26px; }
}
@media (max-width: 991.98px) {
  :root { --fs-h1: 28px; --fs-h2: 24px; }
  .main__grid { grid-template-columns: 1fr; }
  .sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .side-card { flex: 1 1 280px; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .steps::before { display: none; }
  .guarantee { grid-template-columns: 1fr; gap: 28px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 767.98px) {
  :root { --fs-h1: 24px; --fs-h2: 20px; --fs-h3: 17px; --gutter: 16px; }
  body { padding-bottom: 78px; }

  .site-header { padding: 10px 0; }
  .nav { display: none; }
  .header-phone__text { display: none; }
  .brand__name { font-size: 18px; }
  .brand__sub { font-size: 10px; }

  .benefits-strip { padding: 10px 0; }
  .benefits-strip__inner { grid-template-columns: 1fr; gap: 8px; }

  .main { padding: 22px 0 28px; }
  .hero h1 { font-size: 24px; }
  .master-card { padding: 12px; gap: 12px; }
  .master-card__photo { width: 64px; height: 64px; }
  .master-card__name { font-size: 15px; }

  .cta-call { padding: 22px 20px; }
  .cta-call__title { font-size: 19px; margin-bottom: 14px; max-width: 100%; }
  .cta-call__form { flex-direction: column; }
  .cta-call__form .btn { width: 100%; }
  .cta-call__tools { width: 130px; height: 130px; right: -14px; bottom: -14px; opacity: 0.22; }

  .sidebar { flex-direction: column; }
  .side-card { flex: 1 1 100%; }

  .section { padding: 36px 0; }
  .section__head { margin-bottom: 24px; }
  .steps { grid-template-columns: 1fr; gap: 18px; }
  .step { display: grid; grid-template-columns: 60px 1fr; text-align: left; gap: 14px; align-items: start; }
  .step__num { margin: 0; }

  .price__row { padding: 11px 16px; }
  .price-group__head { padding: 11px 16px; }

  .guarantee { gap: 24px; }
  .review { padding: 14px 16px; }

  .comment-form__row { grid-template-columns: 1fr; }

  .bottom-cta__form { flex-direction: column; }
  .bottom-cta__form .btn { width: 100%; }

  .footer__cols { grid-template-columns: 1fr; gap: 22px; }

  
  .sticky-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid var(--c-border);
    backdrop-filter: blur(10px);
    z-index: 99;
    box-shadow: 0 -4px 14px rgba(15, 23, 42, 0.06);
  }
  .sticky-bar .btn { height: 46px; font-size: 14px; padding: 0 14px; }
}

/* ============================================================
   ДОПОЛНИТЕЛЬНЫЕ ЭЛЕМЕНТЫ
   ============================================================ */

/* ---------- Мобильная жёлтая полоса с телефоном ---------- */
.mobile-phone-bar {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #fcd34d 0%, var(--c-amber-bg) 50%, var(--c-amber-bg-2) 100%);
  color: var(--c-amber-text);
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  border-bottom: 1px solid var(--c-amber-border);
  letter-spacing: -0.005em;
  transition: filter var(--t-fast) var(--ease);
}
.mobile-phone-bar:hover { color: var(--c-amber-text); text-decoration: none; filter: brightness(1.05); }
.mobile-phone-bar svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ---------- Мобильная крупная CTA-кнопка ---------- */
.mobile-hero-cta {
  display: none;
  margin: 18px 0 22px;
}
.mobile-hero-cta .btn { width: 100%; }
.mobile-hero-cta__sub {
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
  color: var(--c-text-soft);
  font-weight: 500;
}

/* ---------- Мобильные буллеты (внутри hero) ---------- */
.benefits-mobile {
  display: none;
  flex-direction: column;
  gap: 14px;
  margin: 18px 0 6px;
  padding: 18px;
  background: var(--c-bg-soft);
  border-radius: var(--r-lg);
}

/* Большая кнопка для мобильной CTA */
.btn--large {
  height: 56px !important;
  font-size: 17px !important;
  padding: 0 28px !important;
  letter-spacing: -0.005em;
}

/* ---------- Cookie-bar — на ПК fixed снизу, на мобильном — в потоке вверху ---------- */
.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  background: var(--c-bg-soft);
  border-top: 1px solid var(--c-border);
  padding: 14px 0;
  box-shadow: 0 -6px 18px rgba(15, 23, 42, 0.08);
  animation: cookie-bar-up 0.35s var(--ease) 0.2s both;
}
.cookie-bar.is-hidden { display: none !important; }
@keyframes cookie-bar-up {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
@keyframes cookie-bar-down {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}
.cookie-bar.is-hidden { display: none; }
.cookie-bar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.cookie-bar__text {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.5;
  flex: 1 1 auto;
}
.cookie-bar__text a {
  color: var(--c-text);
  text-decoration: underline;
  font-weight: 500;
}
.cookie-bar__text a:hover { color: var(--c-cta); }
.cookie-bar__btn {
  flex-shrink: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 14px;
  border: 1px solid var(--c-amber-border);
  border-radius: var(--r-sm);
  padding: 10px 22px;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.cookie-bar__btn:hover {
  background: var(--c-amber-bg);
  color: var(--c-amber-text);
}

/* ============================================================
   БУРГЕР-МЕНЮ + МОБИЛЬНОЕ МЕНЮ
   ============================================================ */
/* Бургер в стиле эталона: 3 простых линии, без фона */
.burger {
  display: none;
  width: 32px;
  height: 28px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.burger > span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #0f172a !important; /* slate-900 — гарантированно тёмный, виден на белой шапке */
  border-radius: 2px;
  transition: transform var(--t-normal) var(--ease), opacity var(--t-fast) var(--ease), top var(--t-normal) var(--ease);
}
.burger > span:nth-child(1) { top: 4px; }
.burger > span:nth-child(2) { top: 12.5px; }
.burger > span:nth-child(3) { top: 21px; }
.burger:active { opacity: 0.7; }
.burger.is-open > span:nth-child(1) { top: 12.5px; transform: rotate(45deg); }
.burger.is-open > span:nth-child(2) { opacity: 0; }
.burger.is-open > span:nth-child(3) { top: 12.5px; transform: rotate(-45deg); }

/* Меню как обычный dropdown ВНУТРИ шапки — без position:fixed,
   без stacking-context конфликтов. Просто max-height transition. */
.mobile-menu {
  background: #ffffff;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-normal) var(--ease);
}
.mobile-menu.is-open {
  max-height: 480px;
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}
/* Когда меню открыто — убираем нижнюю границу шапки, чтобы не получить две полосы подряд.
   :has() работает в современных браузерах; .menu-open вешается из JS как fallback. */
.site-header:has(.mobile-menu.is-open),
.site-header.menu-open { border-bottom-color: transparent; }
/* Первая ссылка тоже без верхней границы (border-bottom у каждой ссылки уже есть) */
.mobile-menu a:first-child { border-top: none; }
.mobile-menu__inner { padding: 0; }
.mobile-menu a {
  display: block;
  padding: 16px var(--gutter);
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--c-text);
  text-decoration: none;
  border-bottom: 1px solid var(--c-border-soft);
}
.mobile-menu a:last-child { border-bottom: none; padding-bottom: 18px; }
.mobile-menu a:active { background: var(--c-bg-soft); color: var(--c-cta); }

/* ============================================================
   MOBILE — единые правила до 991px (не 767!)
   Это ключевая правка: на устройствах между 768 и 991px
   тоже работает мобильная вёрстка (как у эталона)
   ============================================================ */
@media (max-width: 991.98px) {
  /* Шапка */
  .nav { display: none !important; }
  .header-phone { display: none !important; }
  .burger { display: block !important; }

  /* Mobile-полоса с телефоном — показываем */
  .mobile-phone-bar { display: flex !important; }

  /* Скрываем десктопную полосу преимуществ — мобильная в hero */
  .benefits-strip { display: none !important; }
  .benefits-mobile { display: flex !important; }

  /* Включаем мобильную крупную CTA */
  .mobile-hero-cta { display: block !important; }

  /* Полностью скрываем sidebar — буллеты и скидка дублируют */
  .sidebar { display: none !important; }

  /* Однонгколоночный grid */
  .main__grid { grid-template-columns: 1fr !important; }

  /* Input высоту прибиваем гвоздями */
  .cta-call__form input[type="tel"],
  .bottom-cta__form input[type="tel"],
  .side-card--discount input[type="tel"] {
    height: 52px !important;
    min-height: 52px !important;
    max-height: 52px !important;
    flex: 0 0 auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Шаги — двухколоночная сетка */
  .step {
    grid-template-columns: 60px 1fr !important;
    grid-template-rows: auto auto !important;
    column-gap: 16px !important;
    row-gap: 4px !important;
  }
  .step__num { grid-row: 1 / 3 !important; margin: 0 !important; align-self: start; }
  .step__title { grid-column: 2 !important; grid-row: 1 !important; margin-bottom: 0 !important; }
  .step__text { grid-column: 2 !important; grid-row: 2 !important; }
}

/* Доп.
/* ============================================================
   ЯРКИЙ STICKY BAR + СКРЫТИЕ CHEK НА МОБИЛЕ + БУРГЕР
   ============================================================ */

/* Яркий sticky bottom bar на мобиле */
@media (max-width: 991.98px) {
  .sticky-bar {
    background: #ffffff !important;
    padding: 8px 10px !important;
    grid-template-columns: 1fr 1.4fr !important;
    box-shadow: 0 -6px 18px rgba(15, 23, 42, 0.10) !important;
  }
  .sticky-bar .btn {
    height: 50px !important;
    font-size: 15px !important;
    border-radius: var(--r-md) !important;
    font-weight: 700;
  }
  .sticky-bar .btn-secondary {
    background: var(--c-bg-soft) !important;
    color: var(--c-cta) !important;
    border: 1.5px solid var(--c-cta) !important;
  }
  .sticky-bar .btn-secondary:hover { background: var(--c-cta-soft) !important; }
  .sticky-bar .btn-amber-dark {
    background: var(--c-amber-grad) !important;
    color: var(--c-text) !important;
    font-weight: 700 !important;
    box-shadow: var(--sh-cta) !important;
  }
  .sticky-bar .btn-amber-dark:hover { filter: brightness(1.04); }
  .sticky-bar svg { width: 18px; height: 18px; }

  /* Скрываем чек-иллюстрацию */
  .receipt { display: none !important; }
  .guarantee { grid-template-columns: 1fr !important; }
}

/* ============================================================
   ФУТЕР ПЕРЕДЕЛАН — крупный телефон по центру (как у эталона)
   ============================================================ */
.footer__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  padding-bottom: 28px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--c-border-dark);
}
.footer__nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__nav a { color: rgba(255, 255, 255, 0.75); font-family: var(--ff-display); font-weight: 600; font-size: 14px; text-decoration: none; }
.footer__nav a:hover { color: var(--c-cta); }

.footer__contact { text-align: center; }
.footer__phone-big {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--c-cta);
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}
.footer__phone-big:hover { color: #fb923c; text-decoration: none; }
.footer__phone-big svg { width: 26px; height: 26px; }
.footer__hours-big {
  margin-top: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.footer__brand-block { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.footer__brand-block .brand__name { color: #fff; font-size: 22px; }
.footer__brand-block .footer__brand-sub {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
}

/* Адаптив футера */
@media (max-width: 991.98px) {
  .footer__top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }
  .footer__nav { justify-content: center; }
  .footer__brand-block { align-items: center; }
  .footer__phone-big { font-size: 32px; }
  .footer__hours-big { font-size: 15px; }
}
@media (max-width: 480px) {
  .footer__phone-big { font-size: 26px; gap: 8px; }
  .footer__phone-big svg { width: 22px; height: 22px; }
  .footer__nav { gap: 16px; font-size: 13px; }
}

/* ============================================================
   МОДАЛКА: Спасибо за отзыв (success)
   ============================================================ */
.modal__dialog--success { text-align: center; padding: 36px 28px 28px; }
.modal__icon-success {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  background: var(--c-online-soft);
  color: var(--c-success);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.modal__icon-success svg { width: 32px; height: 32px; }
.modal__dialog--success .modal__title { font-size: 22px; margin-bottom: 12px; }
.modal__dialog--success .modal__body p { font-size: 14px; color: var(--c-text-muted); margin-bottom: 10px; }
.modal__ok { margin-top: 20px; min-width: 140px; }

/* ============================================================
   FINAL OVERRIDES: гарантированное скрытие бургера на десктопе
   и sidebar на мобильном (специфичность через двойной селектор)
   ============================================================ */

/* Desktop ≥992px: бургер невиден ВООБЩЕ */
@media (min-width: 992px) {
  .burger { display: none !important; }
  .mobile-menu { display: none !important; }
  .mobile-phone-bar { display: none !important; }
}

/* Mobile <992px: sidebar и его карточки скрыты гарантированно */
@media (max-width: 991.98px) {
  .sidebar,
  aside.sidebar,
  .main aside.sidebar,
  .main__grid > aside.sidebar,
  .side-card,
  .side-card--plus,
  .side-card--discount {
    display: none !important;
  }
}

/* ============================================================
   MOBILE FIX: master-card — фото больше, описание во всю ширину
   + скрытие жёлтой формы консультации (cta-call)
   ============================================================ */
@media (max-width: 991.98px) {
  .master-card {
    flex-wrap: wrap !important;
    gap: 14px !important;
    padding: 16px !important;
  }
  .master-card__photo {
    width: 96px !important;
    height: 96px !important;
    flex-shrink: 0;
  }
  .master-card__body {
    flex: 1 1 calc(100% - 110px);
    min-width: 0;
  }
  .master-card__desc {
    flex-basis: 100%;
    width: 100%;
    font-size: 14px;
    line-height: 1.55;
    margin-top: 4px;
  }

  /* Скрываем форму консультации на мобильной — её заменяют:
     1) Жёлтая полоса с телефоном вверху
     2) Большая кнопка «Вызвать мастера»
     3) Sticky bottom bar */
  .cta-call { display: none !important; }
}

/* ============================================================
   ВЫДЕЛЕННЫЙ ТЕЛЕФОН В КАРТОЧКЕ МАСТЕРА
   ============================================================ */
.master-card__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--c-text);
  text-decoration: none;
  background: var(--c-cta-soft);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  align-self: flex-start;
  font-variant-numeric: tabular-nums;
  transition: background var(--t-fast) var(--ease), filter var(--t-fast) var(--ease);
}
.master-card__phone:hover {
  background: var(--c-amber-bg);
  color: var(--c-text);
  text-decoration: none;
}
.master-card__phone svg { color: var(--c-cta); flex-shrink: 0; }

/* Описание — на всю ширину под топом */
.master-card__desc {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.55;
  margin: 0;
}

/* На мобильном: фото крупнее, всё та же структура */
@media (max-width: 991.98px) {
  .master-card { padding: 14px; gap: 12px; }
  .master-card__top { gap: 14px; }
  .master-card__photo {
    width: 96px !important;
    height: 96px !important;
  }

  .master-card__phone {
    font-size: 17px;
    padding: 10px 16px;
    align-self: center;
    justify-content: center;
  }
}

/* MOBILE ORDER: прайс сразу после hero */
@media (max-width: 991.98px) {
  .content {
    display: flex;
    flex-direction: column;
  }
  .content > .hero       { order: 1; }
  .content > #price      { order: 2; }
  .content > #why-me     { order: 3; }
  .content > #brands     { order: 4; }
  .content > #how        { order: 5; }
  .content > #guarantee  { order: 6; }
  .content > #reviews    { order: 7; }
  .content > #faq        { order: 8; }
  .content > #contacts   { order: 9; }

  /* FAQ — компактнее на мобильном */
  #faq.section--inline {
    padding: 20px 18px;
    margin-top: 16px;
    border-radius: var(--r-md);
  }
}

/* ============================================================
   COOKIE-BAR: на мобильном вверху страницы (в потоке),
   на десктопе fixed внизу как было
   ============================================================ */
@media (max-width: 991.98px) {
  .cookie-bar {
    position: relative !important;
    bottom: auto !important;
    z-index: auto !important;
    border-top: none !important;
    border-bottom: 1px solid var(--c-border);
    box-shadow: none !important;
    backdrop-filter: none !important;
    background: var(--c-bg-soft) !important;
    animation: cookie-bar-down 0.35s var(--ease) 0.3s both;
  }
  .cookie-bar__inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .cookie-bar__btn {
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
  }
  /* Убираем отступ снизу для cookie-bar — он больше не fixed bottom.
     Но sticky-bar остаётся внизу — body padding-bottom: 78px (уже есть). */
  body.has-cookie-bar { padding-bottom: 78px; }
}

/* ============================================================
   FIELD-ERROR TOOLTIP — body-level, позиционируется JS
   Висит НАД полем, не закрывая его. Маленькая стрелка вниз.
   ============================================================ */
.field-error {
  position: absolute;
  background: #ef4444;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--r-sm);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.28);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.18s var(--ease), transform 0.18s var(--ease);
  pointer-events: none;
  z-index: 9999;
  white-space: nowrap;
  max-width: 90vw;
}
.field-error::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 18px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #ef4444;
}
.field-error.is-visible {
  opacity: 1;
  transform: translateY(0);
}

input.has-error, textarea.has-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.14) !important;
}

/* ============================================================
   БРЕНДЫ — chips + исключения
   ============================================================ */
.brands__lead {
  font-size: 15px;
  color: var(--c-text-muted);
  line-height: 1.5;
  margin: 0 0 18px;
}
.brands__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  margin-bottom: 18px;
}
.brand-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--r-pill);
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--c-text);
  letter-spacing: -0.005em;
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.brand-chip:hover {
  background: var(--c-cta-soft);
  border-color: var(--c-amber-border);
}
@media (max-width: 991.98px) {
  .brands__chips { gap: 5px 6px; margin-bottom: 14px; }
  .brand-chip { padding: 4px 9px; font-size: 12px; }
}
.brands__exceptions {
  margin-top: 14px;
  padding: 14px 18px;
  background: var(--c-bg-soft);
  border-radius: var(--r-md);
}
.brands__exceptions summary {
  cursor: pointer;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--c-text);
  list-style: none;
  outline: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.brands__exceptions summary::-webkit-details-marker { display: none; }
.brands__exceptions summary::before {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--c-text-muted);
  border-bottom: 2px solid var(--c-text-muted);
  transform: rotate(-45deg);
  transition: transform var(--t-fast) var(--ease);
  flex-shrink: 0;
}
.brands__exceptions[open] summary::before { transform: rotate(45deg); }
.brands__exceptions-body {
  margin-top: 10px;
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.6;
}
.brands__exceptions-body p { margin: 0 0 8px; }
.brands__exceptions-body p:last-child { margin-bottom: 0; }

/* ============================================================
   PRICE — лид и примечание
   ============================================================ */
.price__lead {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.5;
  margin: 0 0 16px;
}
.price__note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--c-text-soft);
  line-height: 1.5;
}

/* ============================================================
   SIDE-CARD: spec-таблица "О мастере"
   ============================================================ */
.side-card--specs {
  background: #ffffff;
  border: 1px solid var(--c-border-soft);
  border-radius: var(--r-lg);
  padding: 18px 20px;
}
.specs {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}
.specs__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--c-border-soft);
  font-size: 13.5px;
  line-height: 1.4;
}
.specs__row:last-child { border-bottom: none; }
.specs__row dt {
  color: var(--c-text-soft);
  font-weight: 500;
  flex-shrink: 0;
}
.specs__row dd {
  margin: 0;
  color: var(--c-text);
  font-weight: 600;
  text-align: right;
  font-family: var(--ff-display);
  letter-spacing: -0.005em;
}

/* ============================================================
   MASTER-CARD: расширенное описание + CTA-строка
   ============================================================ */
.master-card__desc p {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.55;
  margin: 0 0 8px;
}
.master-card__desc p:last-child { margin-bottom: 0; }
.master-card__cta-line {
  color: var(--c-text) !important;
  font-weight: 600;
  font-family: var(--ff-display);
  font-size: 14.5px !important;
  padding-top: 4px;
}

/* ============================================================
   ГЛАВНАЯ СТРАНИЦА (/ — платформа частных мастеров)
   Стили для home-hero, categories-grid, masters-grid, become-master,
   pickup-modal. Не конфликтуют с /stiral/.
   ============================================================ */

.home-page .home-main { padding-bottom: 40px; }

/* HERO главной */
.home-hero {
  background: linear-gradient(135deg, #FFE49E 0%, #FFC871 60%, #F0A020 100%);
  padding: 60px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.home-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 800;
  color: var(--c-text);
  line-height: 1.15;
  max-width: 880px;
  margin: 0 auto 16px;
  letter-spacing: -0.02em;
}
.home-hero__sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--c-text);
  opacity: 0.9;
  max-width: 720px;
  margin: 0 auto 36px;
}
.home-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 760px;
  margin: 0 auto 36px;
}
.stat {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--r-md);
  padding: 14px 8px;
  backdrop-filter: blur(4px);
}
.stat__num {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 24px;
  color: var(--c-text);
  line-height: 1;
  margin-bottom: 4px;
}
.stat__label {
  font-size: 12px;
  color: var(--c-text);
  opacity: 0.75;
  line-height: 1.3;
}
.home-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Общие отступы секций главной */
.home-section { padding-top: 50px; padding-bottom: 10px; }
.home-section .section__title { margin-top: 0; }
.section__sub {
  font-size: 15px;
  color: var(--c-text-muted);
  line-height: 1.5;
  margin: -10px 0 28px;
}
.section__sub--center { text-align: center; }

/* Плитка категорий 4×3 на десктопе */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.cat-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 22px 20px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  text-decoration: none;
  color: var(--c-text);
  transition: transform var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease);
}
.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-card-hover);
  border-color: var(--c-amber-border);
  text-decoration: none;
}
.cat-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--c-amber-bg);
  border-radius: var(--r-md);
  color: var(--c-cta);
}
.cat-card__icon svg { width: 28px; height: 28px; }
.cat-card__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--c-text);
  line-height: 1.3;
}
.cat-card__price {
  font-size: 13px;
  color: var(--c-text-muted);
  font-weight: 600;
}

/* Витрина мастеров 4×3 на десктопе */
.masters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.master-tile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  text-decoration: none;
  color: var(--c-text);
  transition: transform var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease);
}
.master-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-card-hover);
  border-color: var(--c-amber-border);
  text-decoration: none;
}
.master-tile__photo {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--c-bg-soft);
}
.master-tile__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.master-tile__online {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--c-online);
  border: 2px solid #fff;
  animation: online-pulse 2.4s ease-out infinite;
}
.master-tile__body {
  min-width: 0;
  flex: 1;
}
.master-tile__name {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--c-text);
}
.master-tile__cat {
  font-size: 12.5px;
  color: var(--c-text-muted);
  margin: 2px 0 4px;
}
.master-tile__meta {
  font-size: 11.5px;
  color: var(--c-text-soft);
}
.master-tile__meta .star { color: #F59E0B; }

/* Стать мастером — двухколоночный */
.home-section--become { background: var(--c-bg-soft); }
.become-master {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: start;
  padding: 32px 0;
}
.become-master__info { color: var(--c-text); }
.become-master__info .section__title { margin-bottom: 14px; }
.become-master__text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--c-text-muted);
  margin-bottom: 16px;
}
.become-master__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.become-master__list li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  color: var(--c-text);
  line-height: 1.5;
}
.become-master__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  background: var(--c-cta);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}
.become-master__form {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 24px;
  border: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.become-master__form-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 19px;
  margin: 0 0 8px;
  color: var(--c-text);
}
.become-master__form .btn { margin-top: 6px; }

/* Pickup-форма в модалке */
.pickup-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

/* Большая кнопка для hero */
.btn--large {
  font-size: 16px;
  padding: 14px 28px;
  height: auto;
}

/* МОБИЛЬНЫЕ ПРАВКИ */
@media (max-width: 991.98px) {
  .home-hero { padding: 36px 0 44px; }
  .home-hero__sub { font-size: 15px; margin-bottom: 24px; }
  .home-hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 24px;
  }
  .stat__num { font-size: 20px; }
  .stat__label { font-size: 11px; }

  .home-section { padding-top: 30px; padding-bottom: 6px; }

  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cat-card { padding: 16px 14px; gap: 6px; }
  .cat-card__icon { width: 40px; height: 40px; }
  .cat-card__icon svg { width: 24px; height: 24px; }
  .cat-card__title { font-size: 14px; }
  .cat-card__price { font-size: 12px; }

  .masters-grid { grid-template-columns: 1fr; gap: 10px; }
  .master-tile { padding: 12px; }
  .master-tile__photo { width: 56px; height: 56px; }

  .become-master {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 22px 0;
  }
  .become-master__form { padding: 18px; }
}
