/* ═══════════════════ Шрифты (локальные, без CDN) ═══════════════════ */
@font-face {
  font-family: "Golos Text";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/golos-text-cyrillic-400.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Golos Text";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/golos-text-latin-400.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+2122, U+2212;
}
@font-face {
  font-family: "Golos Text";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/golos-text-cyrillic-600.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Golos Text";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/golos-text-latin-600.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+2122, U+2212;
}

/* ═══════════════════ Токены ═══════════════════ */
:root {
  --blue:      #0C447C;   /* основной */
  --blue-dark: #042C53;   /* заголовки */
  --blue-tint: #E6F1FB;   /* фоны блоков */
  --accent:    #D85A30;   /* CTA и цифры экономии */
  --accent-dk: #B8471F;   /* hover / текстовый контраст */
  --white:     #FFFFFF;
  --ink:       #16324F;   /* основной текст */
  --line:      #CFE0F2;   /* тонкие рамки */
  --ph-bg:     #FFE58A;   /* подсветка плейсхолдеров */
  --sky:       #2E7BC4;   /* светлее основного — для градиентов */
  --gold:      #E9B949;   /* тёплый акцент-«премиум» точечно */
  --radius:    16px;
  --radius-sm: 12px;
  --radius-lg: 24px;
  --maxw:      1100px;

  /* Мягкие тени — «дорогой» объём без тяжести */
  --shadow-sm: 0 1px 2px rgba(4,44,83,.06), 0 2px 6px rgba(4,44,83,.05);
  --shadow-md: 0 4px 12px rgba(4,44,83,.08), 0 10px 24px rgba(4,44,83,.06);
  --shadow-lg: 0 12px 28px rgba(4,44,83,.12), 0 24px 60px rgba(4,44,83,.10);
  --shadow-accent: 0 6px 16px rgba(216,90,48,.28);

  /* Фирменные градиенты */
  --grad-blue:   linear-gradient(135deg, #0C447C 0%, #1560A8 55%, #2E7BC4 100%);
  --grad-accent: linear-gradient(135deg, #E9743A 0%, #D85A30 100%);
  --grad-tint:   linear-gradient(180deg, #F3F9FF 0%, #E6F1FB 100%);
}

/* ═══════════════════ База ═══════════════════ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Golos Text", "Segoe UI", Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;          /* база мобайл */
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  padding-bottom: 76px;     /* место под sticky-панель */
}

h1, h2, h3 { color: var(--blue-dark); font-weight: 600; line-height: 1.25; margin: 0 0 .5em; }
h1 { font-size: 32px; letter-spacing: -.01em; }
h2 { font-size: 26px; margin-bottom: .7em; letter-spacing: -.01em; }
h3 { font-size: 20px; }
p  { margin: 0 0 1em; }
a  { color: var(--blue); }

/* Акцентная черта под заголовками секций — фирменный штрих */
.section h2 { position: relative; padding-bottom: 16px; }
.section h2::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 56px; height: 4px; border-radius: 4px; background: var(--grad-accent);
}
.section--cta h2::after { background: linear-gradient(135deg, #E9B949, #E9743A); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 18px; }
.container--narrow { max-width: 760px; }

.section { padding: 44px 0; }
.section--tint { background: var(--grad-tint); }

.note { font-size: 15px; color: #5a7185; margin-top: .6em; }
.lead { font-size: 20px; font-weight: 600; color: var(--blue-dark); }

/* Плейсхолдеры — жёлтый фон, легко ищутся по «[» */
.ph {
  background: var(--ph-bg);
  color: #4a3a00;
  padding: 0 4px;
  border-radius: 4px;
  font-weight: 600;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* ═══════════════════ Кнопки ═══════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 22px;
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color .15s, border-color .15s, color .15s;
}
.btn { transition: background-color .15s, border-color .15s, color .15s, transform .12s, box-shadow .15s; }
.btn--primary { background: var(--grad-accent); color: var(--white); border-color: transparent; box-shadow: var(--shadow-accent); }
.btn--primary:hover { filter: brightness(1.05); box-shadow: 0 10px 22px rgba(216,90,48,.34); }
.btn--primary:active { transform: translateY(1px); }
.btn--outline { background: var(--white); color: var(--blue); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--outline:hover { background: var(--blue-tint); border-color: var(--blue); }
.btn--lg { min-height: 56px; font-size: 19px; }
.btn--block { width: 100%; }
.btn[aria-disabled="true"] { opacity: .8; cursor: default; }

.msg-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.msg-buttons .btn { flex: 1 1 auto; }
.msg-buttons--cta { margin-bottom: 28px; }

/* ═══════════════════ Шапка ═══════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(4,44,83,.04), 0 6px 20px rgba(4,44,83,.06);
  transition: transform .2s ease;
  will-change: transform;
}
.site-header.is-hidden { transform: translateY(-100%); }   /* скрыта при скролле вниз (мобайл) */
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; padding-bottom: 12px; gap: 12px; }
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--blue-dark); }
.logo__img { height: 42px; width: auto; display: block; flex: none; }
.logo__mark { display: none; width: 34px; height: 34px; border-radius: 8px; background: var(--blue); flex: none;
  background-image: radial-gradient(circle at 50% 38%, #fff 0 6px, transparent 7px); }
.logo--nologo .logo__img { display: none; }         /* фолбэк, если img/logo.svg нет */
.logo--nologo .logo__mark { display: block; }
.logo__text { display: flex; flex-direction: column; justify-content: center; line-height: 1.14; min-width: 0; }
.logo__desc { font-size: 10px; font-weight: 600; letter-spacing: .01em; text-transform: uppercase; color: var(--blue); max-width: 15em; }
.logo__name { font-size: 18px; font-weight: 600; letter-spacing: .01em; color: var(--blue-dark); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone { font-weight: 600; font-size: 16px; color: var(--blue); text-decoration: none; white-space: nowrap; }
.header-tg { display: none; }                         /* на мобиле не показываем — есть нижняя панель */
@media (max-width: 559px) {
  .header-phone { display: none; }                    /* освобождаем место под название; звонок есть в нижней панели */
  .logo__desc { font-size: 9px; max-width: 13em; }
  .logo__name { font-size: 16px; }
}

/* ═══════════════════ Hero ═══════════════════ */
.hero {
  position: relative; padding: 26px 0 44px; overflow: hidden;
  background:
    radial-gradient(1100px 480px at 78% -8%, rgba(46,123,196,.16), transparent 60%),
    radial-gradient(760px 420px at -10% 12%, rgba(233,116,58,.10), transparent 55%),
    var(--grad-tint);
}
.hero > .container { position: relative; z-index: 1; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: 14px; letter-spacing: .03em; text-transform: uppercase;
  color: var(--blue-dark); background: rgba(255,255,255,.75); box-shadow: var(--shadow-sm);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 14px; border: 1px solid rgba(255,255,255,.9); }
.hero__eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex: none; }
.hero h1 { font-size: 24px; margin-bottom: .4em; letter-spacing: -0.015em; }   /* узкий мобайл: держим ≤3 строк */
.hero__sub { font-size: 18px; color: var(--ink); margin-bottom: 20px; }
.hero__cta { display: flex; flex-direction: column; gap: 12px; margin: 8px 0 20px; }

/* Мини-таблица цен: базово — карточки (см. блок таблиц ниже), margin для карточек */
.price-mini { margin: 8px 0 6px; }

/* Строка доверия — чипы */
.trust { list-style: none; margin: 4px 0 24px; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.trust li { position: relative; padding: 9px 14px 9px 36px; font-size: 15px; font-weight: 600; color: var(--blue-dark);
  background: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.9); border-radius: 999px; box-shadow: var(--shadow-sm); }
.trust li::before { content: ""; position: absolute; left: 12px; top: 50%; margin-top: -9px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--grad-blue); }
.trust li::after { content: ""; position: absolute; left: 17px; top: 50%; margin-top: -3px; width: 7px; height: 4px;
  border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg); }

/* ═══════════════════ Фото-заглушки ═══════════════════ */
.photo {
  position: relative; margin: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  background:
    radial-gradient(120px 120px at 50% 34%, rgba(46,123,196,.10), transparent 70%),
    var(--grad-tint);
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm) inset;
  min-height: 200px; padding: 22px; color: var(--blue-dark);
}
.photo::before {
  content: ""; width: 46px; height: 46px; margin-bottom: 12px; opacity: .5;
  background: var(--blue); -webkit-mask: center/contain no-repeat; mask: center/contain no-repeat;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Ccircle cx='8.5' cy='10.5' r='1.5'/%3E%3Cpath d='M21 15l-5-5L5 21'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Ccircle cx='8.5' cy='10.5' r='1.5'/%3E%3Cpath d='M21 15l-5-5L5 21'/%3E%3C/svg%3E");
}
.photo figcaption { max-width: 92%; font-size: 13px; line-height: 1.4; }
.photo--hero { min-height: 200px; margin-top: 8px; }
.photo--portrait { min-height: 260px; }
.photo-pair { display: grid; gap: 14px; margin-top: 16px; }
.photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 18px 0; }
.photo-grid .photo { min-height: 130px; }
.map-placeholder {
  margin-top: 18px; min-height: 220px; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--grad-tint); box-shadow: var(--shadow-sm) inset;
}

/* ═══════════════════ Таблицы цен → карточки (мобайл < 480px) ═══════════════════ */
/* Общее: скрываем thead и разбиваем строки на карточки. */
.cmp, .price-mini { width: 100%; border-collapse: collapse; }
.cmp thead,
.price-mini thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.cmp tbody tr,
.price-mini tbody tr {
  display: block; margin-bottom: 12px; padding: 14px 16px;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--white);
}
.cmp tbody th[scope="row"],
.price-mini tbody th[scope="row"] {
  display: block; font-weight: 600; font-size: 16px; color: var(--blue-dark); text-align: left;
  padding: 0 0 8px; border-bottom: 1px solid var(--line); margin-bottom: 8px;
}
.cmp tbody td,
.price-mini tbody td { display: block; padding: 3px 0; font-size: 16px; }
.cmp tbody td::before,
.price-mini tbody td::before { content: attr(data-label) ": "; color: #5F5E5A; font-weight: 400; }
/* Благовещенск — приглушённый; Хай Лань — жирный тёмно-синий; Экономия — акцент */
.cmp__bl, .price-mini__bl { color: #5F5E5A; }
.cmp__ours, .price-mini__ours { font-weight: 600; color: var(--blue-dark); }
.cmp__save { color: var(--accent); font-weight: 600; }

/* ═══════════════════ Услуги (сетка карточек) ═══════════════════ */
.section-lead { font-size: 17px; color: #5a7185; max-width: 660px; margin: -4px 0 22px; }
.services { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 20px; }
.service-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow-md); transition: transform .16s ease, box-shadow .16s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card__ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 15px; margin-bottom: 14px;
  background: var(--grad-tint); color: var(--blue); border: 1px solid var(--line);
}
.service-card__ico svg { width: 27px; height: 27px; display: block; }
.service-card h3 { margin-bottom: .3em; }
.service-card p { font-size: 15px; line-height: 1.5; color: var(--ink); margin-bottom: .7em; }
.service-card__price {
  font-weight: 600; color: var(--blue-dark); font-size: 15px; margin-bottom: 0;
  padding-top: 13px; border-top: 1px solid var(--line);
}
.service-card__price .accent { color: var(--accent); }

/* Кнопка «Показать цену» */
.price-toggle {
  margin-top: 4px; font-family: inherit; font-size: 15px; font-weight: 600; color: var(--blue);
  background: var(--blue-tint); border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 18px; cursor: pointer; transition: background-color .15s, color .15s, border-color .15s;
}
.price-toggle:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.price-toggle[aria-expanded="true"] { display: none; }

/* ═══════════════════ Статистика / преимущества ═══════════════════ */
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 22px 0 6px; }
.stat {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 16px; text-align: center; box-shadow: var(--shadow-md);
}
.stat__num {
  display: block; font-size: 32px; font-weight: 600; line-height: 1.05; color: var(--blue-dark);
  background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat__label { display: block; margin-top: 8px; font-size: 14px; line-height: 1.35; color: #5a7185; }

/* ═══════════════════ Отзывы ═══════════════════ */
.reviews { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 22px; }
.review { margin: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow-md); }
.review__stars { color: var(--gold); font-size: 18px; letter-spacing: 3px; margin-bottom: 12px; }
.review blockquote { margin: 0 0 14px; font-size: 16px; line-height: 1.55; color: var(--ink); }
.review figcaption { font-size: 15px; color: var(--blue-dark); }
.review figcaption strong { font-weight: 600; }

/* ═══════════════════ Таймлайн (6 шагов) ═══════════════════ */
.timeline { list-style: none; counter-reset: step; margin: 8px 0 0; padding: 0; }
.timeline__item { position: relative; counter-increment: step; padding: 0 0 26px 58px; }
.timeline__item::before {
  content: counter(step); position: absolute; left: 0; top: 0;
  width: 42px; height: 42px; border-radius: 50%; background: var(--grad-blue); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 19px;
  box-shadow: 0 6px 14px rgba(12,68,124,.28); border: 3px solid #fff;
}
.timeline__item::after { content: ""; position: absolute; left: 19px; top: 44px; bottom: 4px; width: 2px; background: var(--line); }
.timeline__item:last-child { padding-bottom: 4px; }
.timeline__item:last-child::after { display: none; }
.timeline__item h3 { margin-bottom: .25em; }
.timeline__item p { margin-bottom: 0; }

.callout { margin-top: 22px; padding: 18px 20px 18px 22px; background: var(--white); border: 1px solid var(--line);
  border-left: 4px solid var(--accent); border-radius: var(--radius); font-size: 16px; box-shadow: var(--shadow-md); }

/* ═══════════════════ CTA-inline / Галина / факты ═══════════════════ */
.cta-inline { margin-top: 22px; padding: 22px; background: var(--grad-tint); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-md); }
.cta-inline p { font-weight: 600; color: var(--blue-dark); }

.galina { display: grid; gap: 18px; }
.galina__phone { font-size: 18px; }
.galina__phone strong { color: var(--blue-dark); }

.facts { list-style: none; margin: 6px 0 0; padding: 0; }
.facts li { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 17px; }
.facts li strong { color: var(--blue-dark); }

/* ═══════════════════ FAQ ═══════════════════ */
.faq details { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); margin-bottom: 12px;
  box-shadow: var(--shadow-sm); transition: box-shadow .15s, border-color .15s; }
.faq details[open] { box-shadow: var(--shadow-md); border-color: var(--blue-tint); }
.faq summary {
  list-style: none; cursor: pointer; padding: 16px 46px 16px 18px; position: relative;
  font-weight: 600; font-size: 18px; color: var(--blue-dark); min-height: 52px; display: flex; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  font-size: 26px; font-weight: 400; color: var(--blue); line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq__body { padding: 0 18px 16px; }
.faq__body p { margin-bottom: 0; }

/* ═══════════════════ Финальный CTA + форма ═══════════════════ */
.section--cta {
  background:
    radial-gradient(700px 320px at 85% 0%, rgba(46,123,196,.35), transparent 60%),
    radial-gradient(600px 300px at 0% 100%, rgba(233,116,58,.20), transparent 55%),
    var(--grad-blue);
}
.section--cta h2 { color: #fff; }
.section--cta .lead { color: #E6F1FB; }
.lead-form { background: var(--white); border-radius: var(--radius-lg); padding: 26px 20px; box-shadow: var(--shadow-lg); }
.lead-form__title { font-weight: 600; color: var(--blue-dark); margin-bottom: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 16px; font-weight: 600; color: var(--blue-dark); margin-bottom: 6px; }
.field__opt { font-weight: 400; color: #5a7185; }
.field input, .field textarea {
  width: 100%; font-family: inherit; font-size: 18px; color: var(--ink);
  padding: 13px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff;
  min-height: 52px;
}
.field textarea { min-height: 84px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: 3px solid rgba(12,68,124,.35); outline-offset: 1px; border-color: var(--blue); }
.form-status { margin: 14px 0 0; font-weight: 600; color: var(--blue-dark); min-height: 1.4em; }

/* ═══════════════════ Подвал ═══════════════════ */
.site-footer { background: var(--grad-blue); color: #dce9f7; padding: 36px 0 44px; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.site-footer a { color: #fff; }
.footer-links { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; font-weight: 600; }
.disclaimer { color: #fff; font-size: 16px; margin-bottom: .6em; }
.footer-fineprint { font-size: 14px; color: #b9d1ec; margin: 0; }
.ph-link { display: inline-block; }

/* ═══════════════════ Sticky-панель (мобайл) ═══════════════════ */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: flex; background: rgba(255,255,255,.92); border-top: 1px solid var(--line);
  backdrop-filter: saturate(180%) blur(10px); -webkit-backdrop-filter: saturate(180%) blur(10px);
  box-shadow: 0 -6px 20px rgba(4,44,83,.10);
  padding: 6px; gap: 6px;
  padding-bottom: calc(6px + env(safe-area-inset-bottom));
}
.sticky-bar__btn {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; min-height: 56px; text-decoration: none; font-size: 13px; font-weight: 600;
  color: var(--blue-dark); border-radius: 10px; background: var(--blue-tint);
}
.sticky-bar__ico { display: flex; align-items: center; justify-content: center; color: var(--blue); }
.sticky-bar__ico svg { width: 23px; height: 23px; display: block; }

/* ═══════════════════ Таблицы цен → снова таблицы (≥ 480px) ═══════════════════ */
@media (min-width: 520px) {
  .services { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .reviews { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 480px) {
  .cmp thead, .price-mini thead { position: static; width: auto; height: auto; clip: auto; }
  .cmp, .price-mini { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
  .cmp thead th, .price-mini thead th {
    background: var(--grad-blue); color: #fff; font-weight: 600; text-align: left; padding: 13px 16px; font-size: 16px;
  }
  .cmp thead th:nth-child(n+2), .price-mini thead th:nth-child(n+2) { text-align: right; }
  .cmp tbody tr, .price-mini tbody tr { display: table-row; margin: 0; padding: 0; border: none; border-radius: 0; background: none; }
  .cmp tbody th[scope="row"], .price-mini tbody th[scope="row"] {
    display: table-cell; border: none; border-bottom: 1px solid var(--line); padding: 13px 16px;
    font-weight: 400; color: var(--ink); vertical-align: middle; font-size: 16px;
  }
  .cmp tbody td, .price-mini tbody td {
    display: table-cell; text-align: right; padding: 13px 16px; border-bottom: 1px solid var(--line);
    vertical-align: middle; white-space: nowrap; font-size: 16px;
  }
  .cmp tbody td::before, .price-mini tbody td::before { content: none; }
  .cmp tbody tr:last-child th, .cmp tbody tr:last-child td,
  .price-mini tbody tr:last-child th, .price-mini tbody tr:last-child td { border-bottom: none; }
  .cmp tbody tr:nth-child(even) { background: #f5faff; }

  /* Колонка «Хай Лань» — выигрышная: жирная, тёмно-синяя, голубой фон, акцентная линия в шапке */
  .col-ours { border-bottom: 3px solid var(--accent); }
  .cmp__ours, .price-mini__ours { font-weight: 600; color: var(--blue-dark); background: var(--blue-tint); }
  .cmp tbody tr:nth-child(even) .cmp__ours { background: var(--blue-tint); }
  .cmp__bl, .price-mini__bl { color: #5F5E5A; }
  .cmp__save { color: var(--accent); font-weight: 600; }
}

/* ═══════════════════ Планшет / десктоп ═══════════════════ */
@media (min-width: 720px) {
  body { font-size: 20px; padding-bottom: 0; }        /* sticky-панель скрыта — убираем отступ */
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  .hero h1 { font-size: 42px; }
  .section { padding: 64px 0; }
  .hero { padding: 44px 0 64px; }
  .container { padding: 0 32px; }

  .hero__cta { flex-direction: row; }
  .hero__cta .btn { flex: 0 1 auto; }
  .trust { flex-direction: row; flex-wrap: wrap; gap: 20px; }
  .cmp thead th, .price-mini thead th, .cmp tbody td, .price-mini tbody td,
  .cmp tbody th[scope="row"], .price-mini tbody th[scope="row"] { font-size: 18px; padding: 14px 16px; }

  .photo-pair { grid-template-columns: 1fr 1fr; }
  .photo-grid { grid-template-columns: repeat(3, 1fr); }
  .services { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .reviews { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .stat__num { font-size: 38px; }
  .galina { grid-template-columns: 300px 1fr; align-items: start; }
  .photo--portrait { min-height: 320px; }

  .sticky-bar { display: none; }
}

/* Мобайл/десктоп-граница для шапки: кнопка Telegram видна, шапка не прячется */
@media (min-width: 768px) {
  .site-header.is-hidden { transform: none; }
  .header-tg { display: inline-flex; min-height: 40px; padding: 8px 16px; font-size: 15px; }
  .logo__desc { font-size: 11px; max-width: 20em; }
  .logo__name { font-size: 20px; }
}

@media (min-width: 1000px) {
  .hero__cta .btn { min-width: 240px; }
}

/* ═══════════════════ Плавные появления при скролле ═══════════════════ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); }
.reveal.is-visible { opacity: 1; transform: none; }
/* лёгкий стаггер внутри групп (карточки, шаги) */
.reveal[data-d="1"] { transition-delay: .06s; }
.reveal[data-d="2"] { transition-delay: .12s; }
.reveal[data-d="3"] { transition-delay: .18s; }
.reveal[data-d="4"] { transition-delay: .24s; }

/* Уважение к prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
