/* ==========================================================
   vskrytie-zamkov-almaty.kz — стили
   Mobile-first. Светлая тема, синий + WhatsApp green.
   ========================================================== */

/* RESET */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  color: #1a1a1a;
  background: #fff;
  /* отступ снизу под sticky-CTA, чтобы контент не прятался */
  padding-bottom: calc(76px + env(safe-area-inset-bottom));
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ==========================================================
   БЛОК 1: HERO (шапка)
   ========================================================== */
.hero {
  background: linear-gradient(180deg, #003D7A 0%, #0066CC 100%);
  color: #fff;
  padding: 32px 16px 28px;
  text-align: center;
}

.hero__inner {
  max-width: 720px;
  margin: 0 auto;
}

.hero__title {
  font-size: 1.75rem;       /* 28px на мобильном */
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.hero__lead {
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
  margin: 0 auto 20px;
}

.hero__photo {
  margin-top: 20px;
}

.hero__photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.20);
}

/* Заглушка под фото */
.placeholder {
  background: rgba(255, 255, 255, 0.08);
  border: 2px dashed rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  font-style: italic;
}

/* ==========================================================
   TRUST BADGE (рейтинг + довольные клиенты)
   ========================================================== */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding: 10px 16px 10px 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.trust-badge__avatars {
  display: flex;
  flex-shrink: 0;
}

.trust-badge__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: inherit;
  margin-left: -10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.trust-badge__avatar:first-child { margin-left: 0; }

.trust-badge__avatar--c1 { background: linear-gradient(135deg, #ff6b6b, #ee5a52); }
.trust-badge__avatar--c2 { background: linear-gradient(135deg, #4ecdc4, #38b2ac); }
.trust-badge__avatar--c3 { background: linear-gradient(135deg, #feca57, #f39c12); }
.trust-badge__avatar--c4 { background: linear-gradient(135deg, #a55eea, #8e44ad); }

.trust-badge__info {
  text-align: left;
  line-height: 1.2;
}

.trust-badge__stars {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #FFD700;
  font-size: 0.9rem;
}

.trust-badge__stars svg {
  width: 14px;
  height: 14px;
}

.trust-badge__stars strong {
  margin-left: 6px;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}

.trust-badge__text {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 500;
}

/* ==========================================================
   БЛОК «УСЛУГИ»
   ========================================================== */
.services {
  padding: 48px 16px;
  background: #ffffff;
}

.services__inner {
  max-width: 760px;
  margin: 0 auto;
}

.services__title {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: #0a1f3a;
  margin-bottom: 20px;
}

.services__article p {
  font-size: 1rem;
  line-height: 1.65;
  color: #2c3e50;
  margin-bottom: 14px;
}

.services__article p:last-child { margin-bottom: 0; }

.services__article strong {
  color: #0a1f3a;
  font-weight: 700;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.service-card {
  background: #f7f9fc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 102, 204, 0.08);
  border-color: #0066CC;
}

.service-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0, 102, 204, 0.10);
  color: #0066CC;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #0a1f3a;
  margin-bottom: 6px;
  line-height: 1.25;
}

.service-card__desc {
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.5;
  flex: 1;
  margin: 0;
}

/* ==========================================================
   БЛОК 2: ЦЕНЫ
   ========================================================== */
.prices {
  padding: 48px 16px;
  background: #f7f9fc;
}

.prices__inner {
  max-width: 760px;
  margin: 0 auto;
}

.prices__title {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: #0a1f3a;
  margin-bottom: 20px;
}

.prices__article p {
  font-size: 1rem;
  line-height: 1.65;
  color: #2c3e50;
  margin-bottom: 14px;
}

.prices__article p:last-child { margin-bottom: 0; }

.prices__article strong {
  color: #0a1f3a;
  font-weight: 700;
}

.prices__subtitle {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0a1f3a;
  margin: 32px 0 14px;
}

.prices__factors {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

.prices__factors li {
  position: relative;
  padding: 14px 16px 14px 44px;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.95rem;
  color: #2c3e50;
  line-height: 1.45;
}

.prices__factors li:last-child { border-bottom: none; }

.prices__factors li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #0066CC;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>");
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.prices__factors strong {
  color: #0a1f3a;
  font-weight: 700;
}

/* Сетка карточек */
.prices__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.price-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 18px 14px;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.price-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.08);
  border-color: #0066CC;
}

.price-card__icon {
  width: 44px;
  height: 44px;
  color: #0066CC;
  margin: 0 auto 12px;
  display: block;
}

.price-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #0a1f3a;
  margin-bottom: 6px;
  line-height: 1.25;
}

.price-card__desc {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.45;
}

/* Таблица цен */
.price-table-wrap {
  margin-top: 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.price-table thead {
  background: linear-gradient(135deg, #0a1f3a, #0066CC);
}

.price-table th {
  padding: 14px 16px;
  text-align: left;
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.price-table th:last-child { text-align: right; }

.price-table td {
  padding: 14px 16px;
  border-top: 1px solid #eef2f7;
  color: #2c3e50;
  line-height: 1.4;
}

.price-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: #0066CC;
  white-space: nowrap;
}

.price-table tbody tr:hover { background: #f7f9fc; }

.price-table__free td {
  background: linear-gradient(90deg, rgba(37, 211, 102, 0.10), rgba(37, 211, 102, 0.02));
}
.price-table__free td:last-child {
  color: #16a34a;
  text-transform: lowercase;
}

.prices__note {
  margin-top: 14px;
  font-size: 0.875rem;
  color: #64748b;
  font-style: italic;
  text-align: center;
}

.prices__more {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 16px;
  background: rgba(0, 102, 204, 0.08);
  color: #0066CC;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
}

.prices__more:hover {
  background: rgba(0, 102, 204, 0.14);
}

.prices__more:active { transform: translateY(1px); }

/* ==========================================================
   ВНУТРЕННИЕ СТРАНИЦЫ — общий top-nav
   ========================================================== */
.page-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid #e5e7eb;
}

.page-header__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.page-header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 0.95rem;
  color: #0a1f3a;
  text-decoration: none;
  line-height: 1.2;
}

.page-header__logo svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* === Бургер-меню для мобильного === */

/* Спрятать чекбокс визуально, но сохранить доступным */
.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Кнопка-бургер (3 полоски) */
.nav-toggle-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  padding: 4px;
  margin: -4px;
  cursor: pointer;
  flex-shrink: 0;
  box-sizing: content-box;
}

.nav-toggle-btn span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: #0a1f3a;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

/* Анимация в крестик при открытии */
.nav-toggle:checked + .nav-toggle-btn span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle:checked + .nav-toggle-btn span:nth-child(2) {
  opacity: 0;
}
.nav-toggle:checked + .nav-toggle-btn span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Контейнер для абсолютного позиционирования дроп-дауна */
.page-header__inner {
  position: relative;
}

/* На мобильном: меню скрыто, открывается дропдауном */
.page-header__nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  right: 0;
  background: #fff;
  padding: 8px;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  gap: 0;
  z-index: 99;
}

.nav-toggle:checked ~ .page-header__nav {
  display: flex;
}

.page-header__nav a {
  display: block;
  padding: 12px 16px;
  color: #2c3e50;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.page-header__nav a:hover { background: #f7f9fc; color: #0066CC; }

.page-header__nav a.is-active {
  color: #0066CC;
  background: rgba(0, 102, 204, 0.08);
}

.page-header__logo span {
  font-size: 0.95rem;
}

/* На десктопе: бургер скрыт, меню — горизонтальная навигация всегда видна */
@media (min-width: 700px) {
  .page-header__inner { padding: 14px 24px; }
  .page-header__logo svg { width: 20px; height: 20px; }
  .page-header__logo span { font-size: 1.05rem; }

  .nav-toggle-btn { display: none; }

  .page-header__nav,
  .nav-toggle:checked ~ .page-header__nav {
    display: flex;
    flex-direction: row;
    position: static;
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    gap: 22px;
  }

  .page-header__nav a {
    padding: 0;
    background: transparent;
    font-size: 0.95rem;
    border-radius: 0;
  }

  .page-header__nav a:hover {
    background: transparent;
    color: #0066CC;
  }

  .page-header__nav a.is-active {
    background: transparent;
  }
}

/* Корневой контейнер для контента внутренних страниц */
.page-main {
  padding: 32px 16px 48px;
}

.page-main__inner {
  max-width: 800px;
  margin: 0 auto;
}

.page-h1 {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #0a1f3a;
  margin-bottom: 18px;
}

.page-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #2c3e50;
  margin-bottom: 28px;
}

.page-h2 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: #0a1f3a;
  margin: 36px 0 14px;
  line-height: 1.25;
}

.page-h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0a1f3a;
  margin: 24px 0 8px;
}

.page-main p {
  font-size: 1rem;
  line-height: 1.65;
  color: #2c3e50;
  margin-bottom: 14px;
}

.page-main p strong {
  color: #0a1f3a;
  font-weight: 700;
}

.page-list {
  margin: 0 0 16px 0;
  padding-left: 0;
  list-style: none;
}

.page-list li {
  position: relative;
  padding: 8px 0 8px 26px;
  font-size: 1rem;
  line-height: 1.6;
  color: #2c3e50;
}

.page-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0066CC;
}

ol.page-list {
  counter-reset: pl;
}

ol.page-list li {
  counter-increment: pl;
  padding-left: 36px;
}

ol.page-list li::before {
  content: counter(pl);
  width: 24px;
  height: 24px;
  background: #0066CC;
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 9px;
  left: 0;
}

.page-list strong {
  color: #0a1f3a;
  font-weight: 700;
}

@media (min-width: 700px) {
  .page-main { padding: 48px 24px 64px; }
  .page-h1 { font-size: 2.25rem; }
  .page-h2 { font-size: 1.625rem; margin-top: 44px; }
  .page-h3 { font-size: 1.2rem; }
}

@media (min-width: 1000px) {
  .page-main { padding: 64px 24px 80px; }
  .page-h1 { font-size: 2.5rem; }
  .page-h2 { font-size: 1.875rem; }
}

/* ==========================================================
   БЛОК 3: ПРОЦЕСС / ТАЙМЛАЙН
   ========================================================== */
.process {
  padding: 48px 16px;
  background: #ffffff;
}

.process__inner {
  max-width: 760px;
  margin: 0 auto;
}

.process__title {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: #0a1f3a;
  margin-bottom: 20px;
}

.process__article p {
  font-size: 1rem;
  line-height: 1.65;
  color: #2c3e50;
  margin-bottom: 14px;
}

.process__article p:last-child { margin-bottom: 0; }

.process__article strong {
  color: #0a1f3a;
  font-weight: 700;
}

.process__subtitle {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0a1f3a;
  margin: 32px 0 18px;
}

/* Вертикальный таймлайн */
.timeline {
  position: relative;
  list-style: none;
  padding: 0 0 0 56px;
  margin: 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, #0066CC 0%, #0066CC 80%, #25D366 100%);
  border-radius: 2px;
}

.timeline__step {
  position: relative;
  margin-bottom: 28px;
}

.timeline__step:last-child { margin-bottom: 0; }

.timeline__icon {
  position: absolute;
  left: -56px;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0066CC;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #0066CC;
  z-index: 1;
}

.timeline__icon svg {
  width: 20px;
  height: 20px;
}

.timeline__step--final .timeline__icon {
  background: #25D366;
  box-shadow: 0 0 0 2px #25D366;
}

.timeline__time {
  display: inline-block;
  padding: 3px 10px;
  background: #0a1f3a;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 6px;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.5px;
}

.timeline__step--final .timeline__time {
  background: #25D366;
}

.timeline__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0a1f3a;
  margin-bottom: 6px;
  line-height: 1.3;
}

.timeline__desc {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #2c3e50;
  margin: 0;
}

/* Блок гарантий */
.process__guarantees {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #f7f9fc;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

.process__guarantees li {
  position: relative;
  padding: 14px 16px 14px 48px;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.95rem;
  color: #2c3e50;
  line-height: 1.45;
}

.process__guarantees li:last-child { border-bottom: none; }

.process__guarantees li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #25D366;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>");
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ==========================================================
   БЛОК 4: БЕЗ ПОВРЕЖДЕНИЙ (методы вскрытия)
   ========================================================== */
.method {
  padding: 48px 16px;
  background: #f7f9fc;
}

.method__inner {
  max-width: 760px;
  margin: 0 auto;
}

.method__title {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: #0a1f3a;
  margin-bottom: 20px;
}

.method__article p {
  font-size: 1rem;
  line-height: 1.65;
  color: #2c3e50;
  margin-bottom: 14px;
}

.method__article p:last-child { margin-bottom: 0; }

.method__article strong {
  color: #0a1f3a;
  font-weight: 700;
}

.method__subtitle {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0a1f3a;
  margin: 32px 0 18px;
}

/* Фото блока «Без повреждений» */
.method__photo {
  margin: 24px 0 8px;
}

.method__photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

/* (старая заглушка удалена — фото на месте) */

/* Сравнение Профи vs Дядя Вася */
.compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.compare__col {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 18px 16px;
}

.compare__col--good {
  border-color: rgba(37, 211, 102, 0.4);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.08);
}

.compare__col--bad {
  border-color: rgba(239, 68, 68, 0.3);
  background: #fffbfb;
}

.compare__header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  color: #0a1f3a;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.compare__header svg {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  padding: 4px;
  flex-shrink: 0;
}

.compare__col--good .compare__header svg {
  background: #25D366;
  color: #fff;
}

.compare__col--bad .compare__header svg {
  background: #ef4444;
  color: #fff;
}

.compare__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compare__col li {
  padding: 8px 0;
  font-size: 0.93rem;
  line-height: 1.45;
  color: #2c3e50;
}

.compare__col li strong {
  color: #0a1f3a;
  font-weight: 600;
}

/* 4 метода — карточки */
.method__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.method-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 18px 14px;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}

.method-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.08);
  border-color: #0066CC;
}

.method-card__icon {
  width: 40px;
  height: 40px;
  color: #0066CC;
  margin-bottom: 12px;
  display: block;
}

.method-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0a1f3a;
  margin-bottom: 6px;
  line-height: 1.25;
}

.method-card__desc {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.5;
}

/* Гарантия — финальная плашка */
.method__guarantee {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 28px;
  padding: 18px 18px;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.06), rgba(37, 211, 102, 0.04));
  border: 1px solid rgba(0, 102, 204, 0.18);
  border-radius: 14px;
}

.method__guarantee svg {
  width: 32px;
  height: 32px;
  color: #0066CC;
  flex-shrink: 0;
  margin-top: 2px;
}

.method__guarantee p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #2c3e50;
  margin: 0;
}

.method__guarantee strong {
  color: #0a1f3a;
  font-weight: 700;
}

/* ==========================================================
   БЛОК 5: ПО ЗАКОНУ РК
   ========================================================== */
.legal {
  padding: 48px 16px;
  background: #ffffff;
}

.legal__inner {
  max-width: 760px;
  margin: 0 auto;
}

.legal__title {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: #0a1f3a;
  margin-bottom: 20px;
}

.legal__article p {
  font-size: 1rem;
  line-height: 1.65;
  color: #2c3e50;
  margin-bottom: 14px;
}

.legal__article p:last-child { margin-bottom: 0; }

.legal__article strong {
  color: #0a1f3a;
  font-weight: 700;
}

.legal__subtitle {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0a1f3a;
  margin: 32px 0 16px;
}

/* Списки документов */
.docs {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #f7f9fc;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

.docs li {
  position: relative;
  padding: 14px 16px 14px 52px;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.95rem;
  color: #2c3e50;
  line-height: 1.5;
}

.docs li:last-child { border-bottom: none; }

.docs li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Документы которые приносит клиент — синий с иконкой документа */
.docs--accept li::before {
  background-color: #0066CC;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6zm-1 7V3.5L18.5 9H13z'/></svg>");
}

/* Документы которые получает клиент — зелёный с галочкой */
.docs--give li::before {
  background-color: #25D366;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>");
}

/* Блок «Когда правила гнутся» */
.emergency {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 32px;
  padding: 20px 20px;
  background: linear-gradient(135deg, rgba(254, 202, 87, 0.20) 0%, rgba(243, 156, 18, 0.06) 100%);
  border: 1px solid rgba(243, 156, 18, 0.40);
  border-radius: 14px;
}

.emergency svg {
  width: 36px;
  height: 36px;
  color: #d97706;
  flex-shrink: 0;
  margin-top: 2px;
}

.emergency__content { flex: 1; }

.emergency__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0a1f3a;
  margin-bottom: 8px;
  line-height: 1.3;
}

.emergency__content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #2c3e50;
}

/* ==========================================================
   БЛОК 6: КАКИЕ ЗАМКИ ВСКРЫВАЕМ
   ========================================================== */
.locks {
  padding: 48px 16px;
  background: #f7f9fc;
}

.locks__inner {
  max-width: 760px;
  margin: 0 auto;
}

.locks__title {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: #0a1f3a;
  margin-bottom: 20px;
}

.locks__article p {
  font-size: 1rem;
  line-height: 1.65;
  color: #2c3e50;
  margin-bottom: 14px;
}

.locks__article p:last-child { margin-bottom: 0; }

.locks__article strong {
  color: #0a1f3a;
  font-weight: 700;
}

.locks__subtitle {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0a1f3a;
  margin: 32px 0 16px;
}

/* Фото блока «Какие замки вскрываем» */
.locks__photo {
  margin: 24px 0 8px;
}

.locks__photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

/* Сетка брендов */
.brands {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.brand-tile {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 14px;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}

.brand-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 102, 204, 0.08);
  border-color: #0066CC;
}

.brand-tile__name {
  font-size: 1rem;
  font-weight: 700;
  color: #0a1f3a;
  margin-bottom: 4px;
}

.brand-tile__desc {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.4;
}

/* Список нестандартных случаев */
.cases {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

.cases li {
  position: relative;
  padding: 14px 16px 14px 50px;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.95rem;
  color: #2c3e50;
  line-height: 1.5;
}

.cases li:last-child { border-bottom: none; }

.cases li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #0066CC;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>");
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Закрывающая плашка «Если вашего случая нет» */
.locks__notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 32px;
  padding: 20px 20px;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.08), rgba(0, 102, 204, 0.02));
  border: 1px solid rgba(0, 102, 204, 0.20);
  border-radius: 14px;
}

.locks__notice svg {
  width: 36px;
  height: 36px;
  color: #0066CC;
  flex-shrink: 0;
  margin-top: 2px;
}

.locks__notice-content { flex: 1; }

.locks__notice-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0a1f3a;
  margin-bottom: 8px;
  line-height: 1.3;
}

.locks__notice-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #2c3e50;
}

/* ==========================================================
   БЛОК 7: ЧТО ДЕЛАТЬ С ЗАМКОМ ПОСЛЕ ВСКРЫТИЯ
   ========================================================== */
.aftercare {
  padding: 48px 16px;
  background: #ffffff;
}

.aftercare__inner {
  max-width: 760px;
  margin: 0 auto;
}

.aftercare__title {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: #0a1f3a;
  margin-bottom: 20px;
}

.aftercare__article p {
  font-size: 1rem;
  line-height: 1.65;
  color: #2c3e50;
  margin-bottom: 14px;
}

.aftercare__article p:last-child { margin-bottom: 0; }

.aftercare__article strong {
  color: #0a1f3a;
  font-weight: 700;
}

.aftercare__subtitle {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0a1f3a;
  margin: 32px 0 18px;
}

/* Три сценария — карточки */
.aftercare__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.aftercare-card {
  background: #f7f9fc;
  border: 1px solid #e2e8f0;
  border-top: 4px solid #0066CC;
  border-radius: 14px;
  padding: 20px 18px;
  transition: transform 0.15s, box-shadow 0.15s;
}

.aftercare-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.aftercare-card--keep    { border-top-color: #25D366; }
.aftercare-card--recode  { border-top-color: #f59e0b; }
.aftercare-card--replace { border-top-color: #0066CC; }

.aftercare-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e2e8f0;
}

.aftercare-card__head svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.aftercare-card--keep   .aftercare-card__head svg { color: #25D366; }
.aftercare-card--recode .aftercare-card__head svg { color: #f59e0b; }
.aftercare-card--replace .aftercare-card__head svg { color: #0066CC; }

.aftercare-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0a1f3a;
  line-height: 1.25;
}

.aftercare-card__row {
  font-size: 0.92rem;
  line-height: 1.5;
  color: #2c3e50;
  margin-bottom: 10px;
}

.aftercare-card__row:last-child { margin-bottom: 0; }

.aftercare-card__label {
  display: inline-block;
  font-weight: 700;
  color: #0a1f3a;
  margin-right: 4px;
}

.aftercare__finalnote {
  margin-top: 24px;
  padding: 16px 18px;
  background: #f7f9fc;
  border-left: 3px solid #0066CC;
  border-radius: 0 10px 10px 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #2c3e50;
  font-style: italic;
}

/* ==========================================================
   БЛОК «ОТЗЫВЫ»
   ========================================================== */
.reviews {
  padding: 48px 16px;
  background: #f7f9fc;
}

.reviews__inner {
  max-width: 880px;
  margin: 0 auto;
}

.reviews__title {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: #0a1f3a;
  margin-bottom: 14px;
}

.reviews__lead {
  font-size: 1rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 22px;
}

/* Aggregate rating bar */
.reviews__aggregate {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  margin-bottom: 28px;
}

.reviews__aggregate-stars {
  display: flex;
  gap: 2px;
  color: #FFD700;
}

.reviews__aggregate-stars svg {
  width: 22px;
  height: 22px;
}

.reviews__aggregate-text {
  font-size: 0.95rem;
  color: #2c3e50;
  line-height: 1.4;
}

.reviews__aggregate-text strong {
  color: #0a1f3a;
  font-weight: 800;
  font-size: 1.05rem;
}

/* Сетка отзывов */
.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

/* Карточка отзыва */
.review-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px 18px;
  transition: transform 0.15s, box-shadow 0.15s;
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
}

.review-card__stars {
  display: flex;
  gap: 2px;
  color: #FFD700;
  margin-bottom: 12px;
}

.review-card__stars svg {
  width: 18px;
  height: 18px;
}

.review-card__star--empty {
  color: #e2e8f0;
}

.review-card__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #2c3e50;
  margin: 0 0 16px;
  padding: 0;
  font-style: italic;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid #eef2f7;
}

.review-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.review-card__avatar--c1 { background: linear-gradient(135deg, #ff6b6b, #ee5a52); }
.review-card__avatar--c2 { background: linear-gradient(135deg, #4ecdc4, #38b2ac); }
.review-card__avatar--c3 { background: linear-gradient(135deg, #feca57, #f39c12); }
.review-card__avatar--c4 { background: linear-gradient(135deg, #a55eea, #8e44ad); }

.review-card__meta { line-height: 1.3; }

.review-card__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0a1f3a;
  margin-bottom: 2px;
}

.review-card__details {
  font-size: 0.82rem;
  color: #64748b;
}

/* ==========================================================
   БЛОК «БЛОГ» — превью статей
   ========================================================== */
.blog {
  padding: 48px 16px;
  background: #ffffff;
}

.blog__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.blog__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.blog__title {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: #0a1f3a;
}

.blog__all {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0066CC;
  text-decoration: none;
  white-space: nowrap;
}

.blog__all:hover { text-decoration: underline; }

.blog__lead {
  font-size: 1rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 24px;
  max-width: 760px;
}

.blog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.blog-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  border-color: #0066CC;
}

.blog-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

/* Обложка-плейсхолдер с иконкой и градиентом */
.blog-card__cover {
  position: relative;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card__cover svg {
  width: 64px;
  height: 64px;
  opacity: 0.7;
}

/* Реальное фото внутри обложки — заполняет всю область */
.blog-card__cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Цветовые варианты обложек */
.blog-card--c1 .blog-card__cover {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
}
.blog-card--c1 .blog-card__cover svg { color: #f59e0b; }

.blog-card--c2 .blog-card__cover {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}
.blog-card--c2 .blog-card__cover svg { color: #ef4444; }

.blog-card--c3 .blog-card__cover {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}
.blog-card--c3 .blog-card__cover svg { color: #0066CC; }

.blog-card__category {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.95);
  color: #0a1f3a;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 6px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.blog-card__body {
  padding: 18px 18px 20px;
}

.blog-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  color: #0a1f3a;
  margin-bottom: 10px;
}

.blog-card__excerpt {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #475569;
  margin-bottom: 14px;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #64748b;
}

.blog-card__sep { color: #cbd5e1; }

/* ==========================================================
   БЛОК «РАЙОНЫ АЛМАТЫ»
   ========================================================== */
.areas {
  padding: 48px 16px;
  background: #f7f9fc;
}

.areas__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.areas__title {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: #0a1f3a;
  margin-bottom: 20px;
}

.areas__article p {
  font-size: 1rem;
  line-height: 1.65;
  color: #2c3e50;
  margin-bottom: 14px;
}

.areas__article p:last-child { margin-bottom: 0; }

.areas__article strong {
  color: #0a1f3a;
  font-weight: 700;
}

.areas__subtitle {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0a1f3a;
  margin: 32px 0 18px;
}

/* Сетка карточек районов */
.areas__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.area-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 18px 16px;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}

.area-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 102, 204, 0.08);
  border-color: #0066CC;
}

.area-card__icon {
  width: 28px;
  height: 28px;
  color: #0066CC;
  margin-bottom: 10px;
}

.area-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0a1f3a;
  margin-bottom: 8px;
  line-height: 1.25;
}

.area-card__desc {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 10px;
}

.area-card__time {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(0, 102, 204, 0.10);
  color: #0066CC;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 6px;
  letter-spacing: 0.2px;
}

/* Пригороды — теги */
.areas__suburbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.suburb-tag {
  display: inline-block;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  font-size: 0.9rem;
  color: #2c3e50;
  font-weight: 600;
}

.areas__suburbs-note {
  font-size: 0.875rem;
  color: #64748b;
  font-style: italic;
  margin: 0;
}

/* ==========================================================
   БЛОК «FAQ»
   ========================================================== */
.faq {
  padding: 48px 16px;
  background: #ffffff;
}

.faq__inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq__title {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: #0a1f3a;
  margin-bottom: 14px;
}

.faq__lead {
  font-size: 1rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 24px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Аккордеон-элемент */
.faq__item {
  background: #f7f9fc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.faq__item[open] {
  background: #fff;
  border-color: #0066CC;
  box-shadow: 0 4px 14px rgba(0, 102, 204, 0.08);
}

.faq__question {
  position: relative;
  padding: 16px 52px 16px 18px;
  font-size: 1rem;
  font-weight: 700;
  color: #0a1f3a;
  cursor: pointer;
  line-height: 1.4;
  list-style: none;
  user-select: none;
}

/* Спрятать дефолтный треугольник */
.faq__question::-webkit-details-marker { display: none; }
.faq__question::marker { display: none; content: ''; }

/* Кастомный плюс/минус-индикатор */
.faq__question::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  width: 22px;
  height: 22px;
  margin-top: -11px;
  border-radius: 50%;
  background: rgba(0, 102, 204, 0.10);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230066CC'><path d='M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z'/></svg>");
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.2s, background 0.2s;
}

.faq__item[open] .faq__question::after {
  transform: rotate(45deg);
  background-color: rgba(0, 102, 204, 0.18);
}

.faq__question:hover { color: #0066CC; }

.faq__answer {
  padding: 0 18px 18px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #2c3e50;
}

.faq__answer strong {
  color: #0a1f3a;
  font-weight: 700;
}

/* ==========================================================
   БЛОК «КОНТАКТЫ»
   ========================================================== */
.contacts {
  padding: 48px 16px;
  background: #f7f9fc;
}

.contacts__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.contacts__title {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: #0a1f3a;
  margin-bottom: 14px;
}

.contacts__lead {
  font-size: 1rem;
  line-height: 1.6;
  color: #2c3e50;
  margin-bottom: 24px;
  max-width: 760px;
}

.contacts__lead strong {
  color: #0a1f3a;
  font-weight: 700;
}

.contacts__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* Карточка контактов */
.contacts__card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 8px 0;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid #eef2f7;
}

.contact-row:last-child { border-bottom: none; }

.contact-row__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 102, 204, 0.10);
  color: #0066CC;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-row__icon svg {
  width: 24px;
  height: 24px;
}

.contact-row__icon--wa {
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
}

.contact-row__body { flex: 1; min-width: 0; }

.contact-row__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #64748b;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-row__value {
  display: block;
  font-size: 1rem;
  color: #0a1f3a;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  word-break: break-word;
}

.contact-row__value--big {
  font-size: 1.25rem;
  letter-spacing: 0.3px;
}

a.contact-row__value:hover { color: #0066CC; }

.contact-row__hint {
  margin-top: 4px;
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.45;
}

/* Карта зоны обслуживания (Яндекс.Карты embed) */
.contacts__map {
  display: flex;
  flex-direction: column;
}

.contacts__map-frame {
  width: 100%;
  min-height: 320px;
  flex: 1;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  display: block;
  background: #f1f5f9;
}

.contacts__map-caption {
  margin: 12px 0 0;
  font-size: 0.875rem;
  color: #64748b;
  font-style: italic;
  text-align: center;
}

/* ==========================================================
   INLINE CTA (универсальный блок призыва — Hero + после блоков)
   ========================================================== */
.cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  color: #fff;
  transition: transform 0.1s, box-shadow 0.15s, opacity 0.15s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.cta__btn:active { transform: translateY(1px); }
.cta__btn:hover  { box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18); }

.cta__btn svg { width: 22px; height: 22px; flex-shrink: 0; }

.cta__btn--call { background: #0066CC; }
.cta__btn--call:hover { background: #0052a3; }

.cta__btn--wa { background: #25D366; }
.cta__btn--wa:hover { background: #1ebe57; }

/* CTA в Hero — две кнопки сразу под лидом, без обёртки */
.cta--hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 6px;
  margin-bottom: 8px;
}

/* CTA-карточка после блоков контента */
.cta--card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
  padding: 22px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
  border: 1px solid rgba(0, 102, 204, 0.18);
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.06);
}

.cta__text {
  font-size: 1rem;
  line-height: 1.5;
  color: #0a1f3a;
  font-weight: 500;
  margin: 0;
  text-align: center;
}

.cta__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* ==========================================================
   STICKY BOTTOM CTA
   ========================================================== */
.cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  z-index: 999;
}

.cta-bar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;          /* комфортная зона тапа на мобильном */
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  color: #fff;
  transition: transform 0.1s ease, opacity 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.cta-bar__btn:active {
  transform: translateY(1px);
  opacity: 0.95;
}

.cta-bar__btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.cta-bar__btn--call    { background: #0066CC; }
.cta-bar__btn--call:hover    { background: #0052a3; }

.cta-bar__btn--wa      { background: #25D366; }
.cta-bar__btn--wa:hover      { background: #1ebe57; }

/* ==========================================================
   PLANCHETTES (планшет)
   ========================================================== */
@media (min-width: 600px) {
  .hero {
    padding: 56px 24px 40px;
  }
  .hero__title  { font-size: 2.25rem; }   /* 36px */
  .hero__lead   { font-size: 1.125rem; }  /* 18px */

  .services { padding: 64px 24px; }
  .services__title { font-size: 1.875rem; }
  .services__grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }

  .prices { padding: 64px 24px; }
  .prices__title { font-size: 1.875rem; }
  .prices__grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }

  .process { padding: 64px 24px; }
  .process__title { font-size: 1.875rem; }

  .method { padding: 64px 24px; }
  .method__title { font-size: 1.875rem; }
  .compare { grid-template-columns: 1fr 1fr; gap: 16px; }
  .method__grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }

  /* CTA на планшете+ — текст и кнопки в один ряд */
  .cta--card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 28px;
  }
  .cta__text { text-align: left; flex: 1; }
  .cta--card .cta__buttons { flex-shrink: 0; min-width: 320px; }

  .legal { padding: 64px 24px; }
  .legal__title { font-size: 1.875rem; }

  .locks { padding: 64px 24px; }
  .locks__title { font-size: 1.875rem; }
  .brands { grid-template-columns: repeat(3, 1fr); gap: 12px; }

  .aftercare { padding: 64px 24px; }
  .aftercare__title { font-size: 1.875rem; }
  .aftercare__grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }

  .reviews { padding: 64px 24px; }
  .reviews__title { font-size: 1.875rem; }
  .reviews__grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  .blog { padding: 64px 24px; }
  .blog__title { font-size: 1.875rem; }
  .blog__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .areas { padding: 64px 24px; }
  .areas__title { font-size: 1.875rem; }
  .areas__grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }

  .faq { padding: 64px 24px; }
  .faq__title { font-size: 1.875rem; }

  .contacts { padding: 64px 24px; }
  .contacts__title { font-size: 1.875rem; }
  .contacts__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}

/* ==========================================================
   DESKTOP
   ========================================================== */
@media (min-width: 900px) {
  .hero {
    padding: 72px 24px 56px;
  }
  .hero__title  { font-size: 2.75rem; }   /* 44px */
  .hero__lead   { font-size: 1.25rem; max-width: 640px; }

  .services { padding: 80px 24px; }
  .services__title { font-size: 2.125rem; margin-bottom: 28px; }
  .services__article p { font-size: 1.05rem; }
  .service-card { padding: 22px 18px; }

  .prices { padding: 80px 24px; }
  .prices__title { font-size: 2.125rem; margin-bottom: 28px; }
  .prices__article p { font-size: 1.05rem; }
  .prices__subtitle { font-size: 1.3rem; margin-top: 40px; }
  .price-card { padding: 24px 18px; }
  .price-card__icon { width: 52px; height: 52px; }
  .price-card__title { font-size: 1.05rem; }

  .process { padding: 80px 24px; }
  .process__title { font-size: 2.125rem; margin-bottom: 28px; }
  .process__article p { font-size: 1.05rem; }
  .process__subtitle { font-size: 1.3rem; margin-top: 40px; }
  .timeline__title { font-size: 1.15rem; }
  .timeline__desc { font-size: 1rem; }

  .method { padding: 80px 24px; }
  .method__title { font-size: 2.125rem; margin-bottom: 28px; }
  .method__article p { font-size: 1.05rem; }
  .method__subtitle { font-size: 1.3rem; margin-top: 40px; }
  .compare__col { padding: 24px 22px; }
  .method-card { padding: 22px 16px; }
  .method-card__icon { width: 48px; height: 48px; }
  .method__guarantee { padding: 22px 24px; }
  .method__guarantee svg { width: 40px; height: 40px; }

  .legal { padding: 80px 24px; }
  .legal__title { font-size: 2.125rem; margin-bottom: 28px; }
  .legal__article p { font-size: 1.05rem; }
  .legal__subtitle { font-size: 1.3rem; margin-top: 40px; }
  .emergency { padding: 24px 28px; }
  .emergency svg { width: 44px; height: 44px; }

  .locks { padding: 80px 24px; }
  .locks__title { font-size: 2.125rem; margin-bottom: 28px; }
  .locks__article p { font-size: 1.05rem; }
  .locks__subtitle { font-size: 1.3rem; margin-top: 40px; }
  .brands { grid-template-columns: repeat(5, 1fr); gap: 14px; }
  .brand-tile { padding: 16px 14px; }
  .locks__notice { padding: 24px 28px; }
  .locks__notice svg { width: 44px; height: 44px; }

  .aftercare { padding: 80px 24px; }
  .aftercare__title { font-size: 2.125rem; margin-bottom: 28px; }
  .aftercare__article p { font-size: 1.05rem; }
  .aftercare__subtitle { font-size: 1.3rem; margin-top: 40px; }
  .aftercare-card { padding: 24px 22px; }
  .aftercare-card__head svg { width: 32px; height: 32px; }

  .reviews { padding: 80px 24px; }
  .reviews__title { font-size: 2.125rem; }
  .reviews__lead { font-size: 1.05rem; }
  .reviews__grid { grid-template-columns: repeat(3, 1fr); }
  .review-card { padding: 24px 22px; }

  .blog { padding: 80px 24px; }
  .blog__title { font-size: 2.125rem; }
  .blog__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .blog-card__cover svg { width: 72px; height: 72px; }
  .blog-card__body { padding: 22px 22px 24px; }
  .blog-card__title { font-size: 1.2rem; }

  .areas { padding: 80px 24px; }
  .areas__title { font-size: 2.125rem; margin-bottom: 28px; }
  .areas__article p { font-size: 1.05rem; }
  .areas__subtitle { font-size: 1.3rem; margin-top: 40px; }
  .areas__grid { gap: 16px; }
  .area-card { padding: 22px 20px; }

  .faq { padding: 80px 24px; }
  .faq__title { font-size: 2.125rem; }
  .faq__lead { font-size: 1.05rem; }
  .faq__question { font-size: 1.075rem; padding: 20px 60px 20px 24px; }
  .faq__answer { padding: 0 24px 22px; font-size: 1rem; }

  .contacts { padding: 80px 24px; }
  .contacts__title { font-size: 2.125rem; }
  .contacts__lead { font-size: 1.05rem; }
  .contact-row { padding: 18px 22px; }
  .contact-row__value--big { font-size: 1.4rem; }

  /* Sticky CTA — компактная плашка по центру внизу */
  .cta-bar {
    left: 50%;
    transform: translateX(-50%);
    max-width: 480px;
    border-top: none;
    border: 1px solid #e5e7eb;
    border-radius: 16px 16px 0 0;
  }
}
