/* ===== Переменные темы ===== */
:root {
  --bg: #f7f3ee;
  --surface: #ffffff;
  --surface-2: #fdfaf6;
  --ink: #2b2522;
  --ink-soft: #6b625b;
  --wood: #a47148;
  --wood-dark: #7c5230;
  --accent: #cf6a3c;        /* CTA terracotta */
  --accent-hover: #b9572d;
  --border: #e6ddd2;
  --dark: #2b2522;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(43, 37, 34, .08);
  --shadow-lg: 0 20px 50px rgba(43, 37, 34, .14);
  --container: 1140px;
  --space: clamp(3rem, 6vw, 5.5rem);
}

/* ===== Сброс ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Onest", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

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

/* ===== Кнопки ===== */
.btn {
  --bg: var(--accent);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border: 0; border-radius: 999px;
  font: 600 1rem/1 "Onest", sans-serif;
  background: var(--bg); color: #fff; cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  box-shadow: 0 8px 20px rgba(207, 106, 60, .28);
}
.btn:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--accent); color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 2px var(--border); }
.btn--ghost:hover { background: rgba(0,0,0,.04); }
.btn--lg { padding: 15px 28px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ===== Плейсхолдеры картинок ===== */
.ph {
  background:
    repeating-linear-gradient(45deg, #efe6da 0 12px, #e9ded0 12px 24px);
  border: 2px dashed #d8c9b6;
  border-radius: var(--radius);
  color: #9a8567;
  display: grid; place-items: center;
  text-align: center; font-weight: 600;
  min-height: 160px; padding: 14px;
}

/* ===== Шапка ===== */
.header { position: sticky; top: 0; z-index: 50; background: var(--surface); box-shadow: 0 1px 0 var(--border); }
.header__inner { display: flex; align-items: center; gap: 16px; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.15rem; }
.brand__logo { font-size: 1.5rem; }
.header__phone { font-weight: 700; margin-left: auto; white-space: nowrap; }
.header__cta { display: inline-flex; }

.burger { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  background: transparent; border: 0; cursor: pointer; align-items: center; justify-content: center; }
.burger span { width: 24px; height: 2px; background: var(--ink); transition: .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav { border-top: 1px solid var(--border); }
.nav__inner { display: flex; flex-wrap: wrap; gap: 6px 22px; padding-block: 12px; }
.nav a { font-weight: 500; color: var(--ink-soft); }
.nav a:hover { color: var(--wood-dark); }

/* ===== Герой ===== */
.hero { padding-block: var(--space); background:
    radial-gradient(1200px 500px at 80% -10%, rgba(164,113,72,.12), transparent 60%), var(--bg); }
.hero__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.hero__eyebrow { color: var(--wood-dark); font-weight: 700; letter-spacing: .02em; margin-bottom: 14px; }
.hero__title { font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.08; font-weight: 800; letter-spacing: -.01em; }
.hero__text { color: var(--ink-soft); font-size: 1.15rem; margin-top: 18px; max-width: 52ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 26px; color: var(--ink-soft); font-weight: 500; }
/* ===== Герой: картинка ===== */
.hero__media .ph--hero { min-height: 360px; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.hero__img { width: 100%; height: auto; display: block; border-radius: var(--radius); box-shadow: var(--shadow-lg); }

/* ===== Мессенджеры (кластер) ===== */
.messengers { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.messengers__label { color: var(--ink-soft); font-size: .95rem; margin-right: 4px; }
.ms {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px; border-radius: 999px;
  font-weight: 700; font-size: .95rem; color: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
  transition: transform .15s ease, opacity .15s ease;
}
.ms:hover { transform: translateY(-1px); opacity: .92; }
.ms--wa { background: #25d366; }
.ms--tg { background: #2aabee; }
.ms--vb { background: #7360f2; }
.ms--max { background: linear-gradient(135deg, #6a5cff 0%, #8a3dff 100%); }

/* ===== Секции ===== */
.section { padding-block: var(--space); }
.section--muted { background: var(--surface); }
.section--dark { background: var(--dark); color: #f4ece2; }
.section__title { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; letter-spacing: -.01em; }
.section__title--light { color: #fff; }
.section__lead { color: var(--ink-soft); margin-top: 10px; margin-bottom: 36px; max-width: 60ch; }
.section--dark .section__lead { color: #cdbdb0; }

/* ===== Карточки категорий ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px; box-shadow: var(--shadow); transition: transform .15s ease, box-shadow .15s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card .ph { min-height: 150px; margin-bottom: 14px; font-size: 1.05rem; }
.card img { width: 100%; height: 160px; object-fit: cover; border-radius: calc(var(--radius) - 2px); margin-bottom: 14px; display: block; }
.card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.card p { color: var(--ink-soft); font-size: .98rem; }

/* ===== Преимущества ===== */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.feature { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.feature__icon { font-size: 1.8rem; margin-bottom: 10px; }
.feature h3 { font-size: 1.12rem; margin-bottom: 6px; }
.feature p { color: var(--ink-soft); font-size: .98rem; }

/* ===== Шаги ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 36px; counter-reset: step; }
.steps li { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.steps__num { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
  background: var(--accent); color: #fff; font-weight: 800; margin-bottom: 12px; }
.steps h3 { font-size: 1.1rem; margin-bottom: 6px; }
.steps p { color: var(--ink-soft); font-size: .96rem; }

/* ===== Галерея ===== */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery__item { margin: 0; min-height: 0; }
.gallery__item img {
  width: 100%; height: 220px; object-fit: cover; display: block;
  border-radius: var(--radius); background: var(--surface-2);
  box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease;
}
.gallery__item img:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery__item figcaption { margin-top: 8px; font-size: .9rem; color: var(--ink-soft); font-weight: 600; }

/* ===== Отзывы ===== */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; }
.review { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow); }
.review blockquote { font-size: 1.05rem; font-style: italic; }
.review figcaption { margin-top: 14px; color: var(--wood-dark); font-weight: 700; }

/* ===== Тендеры ===== */
.tenders__toolbar { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.tenders__count { color: var(--ink-soft); font-weight: 600; font-size: .95rem; }
.tenders__filters { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 8px 16px; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--border); background: var(--surface); color: var(--ink-soft);
  font: 600 .9rem "Onest", sans-serif; transition: background .15s, color .15s, border-color .15s;
}
.chip:hover { color: var(--wood-dark); border-color: var(--wood); }
.chip.is-active { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: 0 6px 14px rgba(207,106,60,.25); }

.tenders { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.tender {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 10px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.tender:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.tender__top { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.tender__status {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 999px; font-weight: 700; font-size: .8rem; white-space: nowrap;
}
.tender__status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.tender__status--accept { background: #e7f6ec; color: #1d8a47; }
.tender__status--soon   { background: #fff3e0; color: #c2620a; }
.tender__status--done   { background: #efe9e4; color: #6b625b; }
.tender__status--won    { background: #e6edff; color: #2a4fb5; }
.tender__law { color: var(--ink-soft); font-size: .8rem; font-weight: 600; padding: 3px 10px; background: var(--surface-2); border-radius: 999px; }
.tender h3 { font-size: 1.08rem; line-height: 1.35; }
.tender__meta { display: grid; gap: 4px; color: var(--ink-soft); font-size: .9rem; }
.tender__meta strong { color: var(--ink); font-weight: 600; }
.tender__footer { display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 6px; border-top: 1px dashed var(--border); }
.tender__price { font-size: 1.15rem; font-weight: 800; color: var(--wood-dark); font-variant-numeric: tabular-nums; }
.tender__deadline { font-size: .85rem; color: var(--ink-soft); }
.tender__deadline--urgent { color: #c2620a; font-weight: 700; }
.tender__link { font-weight: 700; color: var(--accent); white-space: nowrap; }
.tender__link:hover { color: var(--accent-hover); }
.tenders__empty { color: var(--ink-soft); font-style: italic; padding: 24px; text-align: center; }
.link { color: var(--accent); font-weight: 700; border-bottom: 1px solid currentColor; }
.link:hover { color: var(--accent-hover); }

/* ===== CTA + форма ===== */
.cta__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.cta__lead { color: #cdbdb0; font-size: 1.1rem; margin-top: 14px; max-width: 46ch; }
.cta__contacts { margin-top: 22px; display: grid; gap: 8px; }
.cta__contacts a { color: #fff; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.25); }

.form { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 24px; backdrop-filter: blur(6px); }
.form__row { margin-bottom: 14px; }
.form label { display: block; font-size: .9rem; color: #e7d9cb; margin-bottom: 6px; font-weight: 600; }
.form input, .form textarea {
  width: 100%; padding: 13px 14px; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.95);
  font: 400 1rem "Onest", sans-serif; color: var(--ink);
}
.form input:focus, .form textarea:focus { outline: 2px solid var(--accent); border-color: transparent; }
.form__note { font-size: .8rem; color: #b6a597; margin-top: 10px; }
.form__success { color: #ffd9bf; font-weight: 700; margin-top: 12px; }
.form__hp { display: none !important; }
.form__row.is-invalid input, .form__row.is-invalid textarea { border-color: #e53935; outline: 2px solid #e53935; }
.form__error { color: #e53935; font-size: .8rem; margin-top: 6px; min-height: 1px; }

/* ===== Контакты ===== */
.contacts { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.contacts__list { display: grid; gap: 10px; margin-top: 18px; }
.contacts__list a { color: var(--wood-dark); font-weight: 700; }
.ph--map { min-height: 280px; }

/* ===== Реквизиты ===== */
.req {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 26px; margin-top: 36px;
}
.req__head { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.req__brand { font-size: 1.35rem; font-weight: 800; }
.req__brand-sub { color: var(--ink-soft); font-size: .95rem; margin-top: 4px; }
.req__grid { display: grid; grid-template-columns: max-content 1fr; gap: 10px 24px; margin: 0; }
.req__grid dt { color: var(--ink-soft); font-weight: 600; }
.req__grid dd { margin: 0; font-weight: 500; word-break: break-word; }
.req__grid dd a { color: var(--wood-dark); font-weight: 700; }
.req__note { color: var(--ink-soft); font-weight: 500; }
.req__codes { margin-top: 22px; border-top: 1px dashed var(--border); padding-top: 16px; }
.req__codes summary { cursor: pointer; font-weight: 700; color: var(--wood-dark); }
.req__codes-grid { display: grid; grid-template-columns: repeat(2, max-content 1fr); gap: 8px 20px; margin: 14px 0 0; }
.req__codes-grid dt { color: var(--ink-soft); font-weight: 600; }
.req__codes-grid dd { margin: 0; font-variant-numeric: tabular-nums; }

/* ===== Подвал ===== */
.footer { background: #221d1a; color: #cdbdb0; padding-block: 28px; }
.footer__inner { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
.footer .brand__name { color: #fff; }
.footer__copy { font-size: .92rem; }
.footer__up { color: var(--accent); font-weight: 700; }

/* ===== Плавающая WhatsApp ===== */
.wa-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; font-size: 1.7rem;
  display: grid; place-items: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, .45);
  transition: transform .15s ease;
}
.wa-fab:hover { transform: scale(1.07); }

/* ===== Адаптив ===== */
@media (max-width: 960px) {
  .hero__inner, .cta__inner, .contacts { grid-template-columns: 1fr; }
  .cards, .features, .reviews { grid-template-columns: repeat(2, 1fr); }
  .tenders { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .hero__media { order: -1; }
  .hero__media .ph--hero { min-height: 240px; }
  .booths { grid-template-columns: repeat(2, 1fr); }
  .gallery-booths { grid-template-columns: repeat(2, 1fr); }
  .specgrid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .header__phone { display: none; }
  .header__cta { display: none; }
  .burger { display: flex; margin-left: auto; }
  .nav { display: none; }
  .nav.open { display: block; }
  .nav__inner { flex-direction: column; padding-bottom: 18px; }
  .nav__inner a { display: block; padding: 8px 0; font-size: 1.05rem; }
  .cards, .features, .reviews, .gallery, .steps { grid-template-columns: 1fr; }
  .booths { grid-template-columns: 1fr; }
  .gallery-booths { grid-template-columns: 1fr; }
  .req__grid { grid-template-columns: 1fr; gap: 4px 0; }
  .req__grid dt { margin-top: 8px; }
  .req__codes-grid { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
  .messengers { width: 100%; }
  .ms { flex: 1 1 auto; justify-content: center; }
}

/* ===== Герой кабин (тёмный акцент без правого фото-блока) ===== */
.hero--booth { background:
    radial-gradient(900px 420px at 15% -10%, rgba(207,106,60,.14), transparent 60%), var(--bg); }

/* ===== Навигация: ссылка-возврат ===== */
.nav__alt { margin-left: auto; color: var(--accent) !important; font-weight: 700 !important; }
.nav__alt:hover { color: var(--accent-hover) !important; }

/* ===== Каталог кабин ===== */
.booths { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.booth {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.booth:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.booth__ph { min-height: 180px; border-radius: 0; border: 0; border-bottom: 2px dashed #d8c9b6; font-size: 1.05rem; }
.booth__img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.booth__body { padding: 20px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.booth__head { display: flex; flex-wrap: wrap; gap: 8px; align-items: baseline; justify-content: space-between; }
.booth__head h3 { font-size: 1.2rem; }
.booth__tag {
  font-size: .78rem; font-weight: 700; color: var(--wood-dark);
  background: #f1e6d8; padding: 4px 10px; border-radius: 999px; white-space: nowrap;
}
.booth__desc { color: var(--ink-soft); font-size: .96rem; }
.booth__specs { display: grid; gap: 6px; margin: 2px 0; }
.booth__specs li { display: flex; justify-content: space-between; gap: 10px; font-size: .9rem; padding-bottom: 6px; border-bottom: 1px dashed var(--border); }
.booth__specs span { color: var(--ink-soft); }
.booth__specs b { font-weight: 600; text-align: right; }
.booth__footer { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 6px; }
.booth__price { font-size: 1.2rem; font-weight: 800; color: var(--wood-dark); font-variant-numeric: tabular-nums; }
.booth--custom { background: var(--surface-2); border-style: dashed; }
.booth--custom .booth__ph { background: repeating-linear-gradient(45deg, #efe6da 0 12px, #ece2d4 12px 24px); }
.booths__note { color: var(--ink-soft); font-size: .9rem; margin-top: 20px; }

/* ===== Блок скачивания каталога ===== */
.catalog-download { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 28px; background: var(--surface); border: 1px solid var(--border); border-left: 4px solid var(--accent); border-radius: var(--radius); padding: 26px 30px; box-shadow: var(--shadow); }
.catalog-download__text h3 { font-size: 1.15rem; margin-bottom: 6px; }
.catalog-download__text p { color: var(--ink-soft); font-size: .95rem; }
.catalog-download .btn { white-space: nowrap; flex-shrink: 0; }

/* ===== Галерея кабин ===== */
.gallery-booths { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 36px; }
.gallery-booths img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); transition: transform .15s ease; cursor: zoom-in; }
.gallery-booths img:hover { transform: scale(1.02); }
.gallery-booths figure { margin: 0; }
.gallery-booths__cap { font-size: .82rem; color: #888; text-align: center; margin-top: 6px; line-height: 1.3; padding: 0 4px; }

/* ===== Характеристики (карточки + таблица) ===== */
.specgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; }
.speccard { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.speccard h3 { font-size: 1.12rem; margin-bottom: 12px; }
.checklist { display: grid; gap: 8px; }
.checklist li { position: relative; padding-left: 26px; color: var(--ink-soft); font-size: .96rem; }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 800; }

.speccompare { margin-top: 36px; overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }
.compare { width: 100%; border-collapse: collapse; background: var(--surface); min-width: 560px; }
.compare th, .compare td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: .95rem; }
.compare thead th { background: var(--surface-2); font-weight: 700; color: var(--ink); }
.compare tbody tr:last-child td { border-bottom: 0; }
.compare td:first-child { font-weight: 600; }
.compare td:nth-child(5) { font-weight: 700; color: var(--wood-dark); }

/* ===== FAQ ===== */
.faq { display: grid; gap: 12px; margin-top: 28px; max-width: 820px; }
.faq__item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 4px 20px; box-shadow: var(--shadow); }
.faq__item summary { cursor: pointer; font-weight: 600; padding: 16px 0; list-style: none; position: relative; padding-right: 28px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--accent); font-weight: 700; line-height: 1; }
.faq__item[open] summary::after { content: "−"; }
.faq__item p { color: var(--ink-soft); padding-bottom: 16px; }

/* ===== Страница модели (детальная) ===== */
.modelbar { display: flex; flex-wrap: wrap; gap: 14px 36px; margin: 24px 0; }
.modelbar__stat b { display: block; font-size: 1.5rem; font-weight: 800; color: var(--wood-dark); }
.modelbar__stat span { font-size: .82rem; color: var(--ink-soft); }
.booth__more { display: inline-block; color: var(--accent); font-weight: 700; font-size: .9rem; margin-bottom: 4px; }
.booth__more:hover { text-decoration: underline; }
.booth__head h3 a { color: inherit; text-decoration: none; }
.spec-full { width: 100%; border-collapse: collapse; margin-top: 8px; }
.spec-full td { padding: 10px 14px; border-bottom: 1px solid var(--border); font-size: .93rem; vertical-align: top; }
.spec-full td:first-child { color: var(--ink-soft); width: 45%; }
.spec-full td:last-child { font-weight: 600; }
.spec-full tr:last-child td { border-bottom: 0; }
.model-selected { display: inline-block; background: var(--surface-2); border: 1px solid var(--border); border-radius: 999px; padding: 6px 16px; font-size: .88rem; font-weight: 700; color: var(--wood-dark); margin-bottom: 16px; }

/* ===== Печать реквизитов ===== */
@media print {
  body * { visibility: hidden; }
  #reqCard, #reqCard * { visibility: visible; }
  #reqCard { position: absolute; left: 0; top: 0; width: 100%; box-shadow: none; border: 0; padding: 0; }
  .req__print { display: none; }
  .req__codes, .req__codes-grid { display: block !important; }
  .req__codes summary { list-style: none; }
  .req__codes-grid { margin-top: 10px; }
  .float-cta { display: none !important; }
}

/* ===== SEO-текст ===== */
.seo-text { max-width: 820px; }
.seo-text p { color: var(--ink-soft); margin-bottom: 14px; }
.seo-text h3 { font-size: 1.2rem; font-weight: 700; margin: 28px 0 12px; color: var(--ink); }
.seo-text strong { color: var(--ink); font-weight: 600; }
.seo-list { list-style: none; margin: 12px 0 20px; }
.seo-list li { position: relative; padding-left: 24px; margin-bottom: 8px; color: var(--ink-soft); }
.seo-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 800; }

/* ===== Плавающие кнопки CTA (мобайл) ===== */
.float-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  display: flex; gap: 1px; background: var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,.12);
  transform: translateY(100%); transition: transform .3s ease;
}
.float-cta.show { transform: translateY(0); }
.float-cta__btn {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 10px 4px; font-size: .72rem; font-weight: 600; color: #fff;
  text-decoration: none; background: var(--dark);
}
.float-cta__btn span { line-height: 1; }
.float-cta__btn--phone { background: var(--accent); }
.float-cta__btn--wa { background: #25D366; }
.float-cta__btn--tg { background: #229ED9; flex: 0 0 56px; }
.float-cta__btn:hover { opacity: .9; color: #fff; }

@media (max-width: 768px) {
  body { padding-bottom: 56px; }
}
@media (min-width: 769px) {
  .float-cta { display: none; }
}
