/* =============================================
   ПОЖАРБЕЗОПАСНОСТЬ39 — ГЛАВНЫЕ СТИЛИ
   ============================================= */

/* ===== ПЕРЕМЕННЫЕ ===== */
:root {
  --red: #e53935;
  --red-dark: #b71c1c;
  --red-light: #ffebee;
  --orange: #f57c00;
  --orange-dark: #e65100;
  --orange-light: #fff3e0;
  --blue: #1565c0;
  --blue-dark: #0d47a1;
  --blue-light: #e3f2fd;
  --green: #2e7d32;
  --green-dark: #1b5e20;
  --green-light: #e8f5e9;
  --purple: #6a1b9a;
  --purple-light: #f3e5f5;
  --teal: #00695c;
  --teal-light: #e0f2f1;
  --dark: #1a1a2e;
  --dark2: #16213e;
  --gray-900: #212121;
  --gray-700: #424242;
  --gray-500: #757575;
  --gray-300: #e0e0e0;
  --gray-100: #f5f5f5;
  --white: #ffffff;
  --font-main: 'Inter', sans-serif;
  --font-head: 'Montserrat', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 80px 0; }
.bg-light { background: var(--gray-100); }

/* ===== КНОПКИ ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; border-radius: var(--radius); }

.btn-fire {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(229,57,53,0.4);
}
.btn-fire:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(229,57,53,0.5);
}

.btn-danger {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(229,57,53,0.35);
}
.btn-danger:hover { background: var(--red-dark); transform: translateY(-1px); }

.btn-outline-fire {
  border-color: var(--red);
  color: var(--red);
  background: transparent;
}
.btn-outline-fire:hover { background: var(--red); color: var(--white); }

.btn-outline-white {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.25); }

.btn-white-red {
  background: var(--white);
  color: var(--red);
  box-shadow: var(--shadow-md);
}
.btn-white-red:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-white-fire {
  background: var(--white);
  color: var(--red);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-white-fire:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }

.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid currentColor;
  transition: var(--transition);
  color: inherit;
}
.btn-service:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-1px);
}

/* ===== СЕКЦИЯ-ЗАГОЛОВКИ ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  background: var(--red-light);
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 680px;
  margin: 0 auto;
}

/* ===== HEADER ===== */
.site-header { position: sticky; top: 0; z-index: 1000; }

.header-top {
  background: var(--dark2);
  color: var(--white);
  padding: 8px 0;
  font-size: 13px;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.header-contacts {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-weight: 600;
}
.header-phone:hover { color: var(--orange); }
.header-phone i { color: var(--orange); font-size: 11px; }

.header-sep { color: rgba(255,255,255,0.3); }
.header-worktime { color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 5px; }
.header-worktime i { color: var(--orange); }

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.badge-mchs {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(255,87,34,0.25);
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
}

.header-email {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.header-email:hover { color: var(--white); }

.header-nav {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.header-nav.scrolled {
  box-shadow: 0 4px 25px rgba(0,0,0,0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
}
.logo-text { display: flex; flex-direction: column; }
.logo-main { font-family: var(--font-head); font-size: 18px; font-weight: 800; color: var(--dark); line-height: 1.1; }
.logo-main .accent { color: var(--red); }
.logo-main .logo-num { color: var(--orange); }
.logo-sub { font-size: 11px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 1px; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-menu li a {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
}
.nav-menu li a:hover { color: var(--red); background: var(--red-light); }

.nav-cta { font-size: 14px; padding: 10px 20px; flex-shrink: 0; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0d0d1a 0%, #1a1a3e 30%, #2d1b2e 60%, #1a0f0f 100%);
  overflow: hidden;
  padding: 80px 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff4444' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,87,34,0.5);
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-100px) scale(1.5); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(10px);
}
.hero-badge i { color: var(--orange); }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-accent {
  background: linear-gradient(135deg, var(--red), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-location {
  color: rgba(255,255,255,0.7);
  font-size: 0.85em;
}

.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-subtitle strong { color: var(--orange); }

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-stat-num {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-guarantee {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}
.hero-guarantee i { color: #4caf50; margin-right: 4px; }

.hero-call-widget {
  display: none;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-300);
  padding: 20px 0;
  box-shadow: var(--shadow-sm);
}

.trust-bar-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 150px;
}

.trust-icon {
  font-size: 24px;
  color: var(--red);
}

.trust-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--dark); }
.trust-item span { display: block; font-size: 12px; color: var(--gray-500); }

/* ===== БЛОКИ ЗАХВАТА ===== */
.capture-block { padding: 60px 0; }

.capture-orange {
  background: linear-gradient(135deg, #f57c00, #ff8f00);
}

.capture-inner {
  display: flex;
  gap: 48px;
  align-items: center;
}

.capture-text { flex: 1; color: var(--white); }
.capture-text h2 { font-family: var(--font-head); font-size: clamp(22px, 3.5vw, 36px); font-weight: 800; margin-bottom: 12px; }
.capture-text p { font-size: 16px; opacity: 0.9; margin-bottom: 20px; }

.capture-checklist { display: flex; flex-direction: column; gap: 8px; }
.capture-checklist li { display: flex; align-items: center; gap: 8px; font-size: 15px; }
.capture-checklist i { color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.2); border-radius: 50%; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; }

.capture-form {
  flex: 0 0 380px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.capture-form input,
.capture-form select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--dark);
  transition: var(--transition);
  background: var(--gray-100);
}

.capture-form input:focus,
.capture-form select:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
}

.form-privacy { font-size: 11px; color: var(--gray-500); text-align: center; }
.form-privacy a { color: var(--blue); text-decoration: underline; }

/* ===== УСЛУГИ ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  opacity: 0.07;
  transform: translate(30%, -30%);
}

.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.service-card--red { background: linear-gradient(145deg, #fff5f5, #ffe0e0); color: var(--red-dark); border: 1px solid #ffcdd2; }
.service-card--red::before { background: var(--red); }
.service-card--orange { background: linear-gradient(145deg, #fff8f0, #ffe0b2); color: var(--orange-dark); border: 1px solid #ffcc80; }
.service-card--blue { background: linear-gradient(145deg, #f0f4ff, #bbdefb); color: var(--blue-dark); border: 1px solid #90caf9; }
.service-card--green { background: linear-gradient(145deg, #f1f8e9, #c8e6c9); color: var(--green-dark); border: 1px solid #a5d6a7; }
.service-card--purple { background: linear-gradient(145deg, #f8f0ff, #e1bee7); color: var(--purple); border: 1px solid #ce93d8; }
.service-card--teal { background: linear-gradient(145deg, #e0f7fa, #b2dfdb); color: var(--teal); border: 1px solid #80cbc4; }

.service-card-icon {
  font-size: 32px;
  opacity: 0.8;
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}

.service-card p { font-size: 14px; opacity: 0.8; line-height: 1.6; }

.service-list { display: flex; flex-direction: column; gap: 5px; font-size: 13px; }
.service-list li::before { content: '✓ '; font-weight: 700; }

.service-price { font-size: 20px; font-weight: 800; }
.service-price strong { font-size: 24px; }

/* ===== ПРЕИМУЩЕСТВА ===== */
.adv-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.adv-left .section-tag { display: inline-block; margin-bottom: 12px; }
.adv-left .section-title { text-align: left; margin-bottom: 16px; }
.adv-left p { color: var(--gray-500); margin-bottom: 32px; line-height: 1.7; }

.adv-big-numbers {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}

.big-num { display: flex; flex-direction: column; }
.big-num-val { font-family: var(--font-head); font-size: 48px; font-weight: 900; color: var(--red); line-height: 1; }
.big-num-label { font-size: 13px; color: var(--gray-500); margin-top: 4px; }

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

.adv-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-300);
}
.adv-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.adv-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 12px;
}

.adv-icon--red { background: var(--red); }
.adv-icon--orange { background: var(--orange); }
.adv-icon--blue { background: var(--blue); }
.adv-icon--green { background: var(--green); }
.adv-icon--purple { background: var(--purple); }
.adv-icon--teal { background: var(--teal); }

.adv-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.adv-card p { font-size: 13px; color: var(--gray-500); line-height: 1.5; }

/* ===== ОБЪЕКТЫ ===== */
.objects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.obj-card {
  border-radius: var(--radius);
  overflow: hidden;
  height: 250px;
  position: relative;
  cursor: pointer;
}

.obj-card--office { background: linear-gradient(135deg, #1565c0, #42a5f5); }
.obj-card--warehouse { background: linear-gradient(135deg, #e65100, #ffb74d); }
.obj-card--mall { background: linear-gradient(135deg, #6a1b9a, #ba68c8); }
.obj-card--hotel { background: linear-gradient(135deg, #00695c, #4db6ac); }
.obj-card--school { background: linear-gradient(135deg, #2e7d32, #81c784); }
.obj-card--hospital { background: linear-gradient(135deg, #c62828, #ef9a9a); }
.obj-card--restaurant { background: linear-gradient(135deg, #f57f17, #fff176); }
.obj-card--cottage { background: linear-gradient(135deg, #37474f, #90a4ae); }

.obj-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: var(--white);
  transition: var(--transition);
}

.obj-card:hover .obj-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 100%);
}

.obj-icon {
  font-size: 40px;
  margin-bottom: auto;
  opacity: 0.6;
  align-self: flex-start;
  padding-top: 20px;
  transition: var(--transition);
}

.obj-card:hover .obj-icon { opacity: 1; transform: scale(1.1); }

.obj-overlay h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.obj-overlay p { font-size: 12px; opacity: 0.8; line-height: 1.4; margin-bottom: 10px; }

.obj-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(255,255,255,0.2);
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.3);
}

/* ===== АВАРИЙНЫЙ БЛОК ===== */
.capture-red {
  background: linear-gradient(135deg, #b71c1c, #e53935);
}

.emergency-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.emergency-icon {
  font-size: 56px;
  color: var(--white);
  opacity: 0.9;
  animation: pulse-icon 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-icon {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.emergency-text { flex: 1; color: var(--white); }
.emergency-text h2 { font-family: var(--font-head); font-size: clamp(22px, 3vw, 32px); font-weight: 800; margin-bottom: 8px; }
.emergency-text p { font-size: 16px; opacity: 0.9; }
.emergency-text strong { color: #ffcc80; }

.emergency-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.emergency-note { font-size: 12px; color: rgba(255,255,255,0.7); }

.pulse-btn {
  animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
  70% { box-shadow: 0 0 0 15px rgba(255,255,255,0); }
}

/* ===== ЭТАПЫ ===== */
.stages-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stage-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-300);
  transition: var(--transition);
  position: relative;
}

.stage-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--red);
  transform: translateY(-3px);
}

.stage-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 900;
  color: var(--red-light);
  line-height: 1;
  flex-shrink: 0;
  -webkit-text-stroke: 2px var(--red);
}

.stage-body { flex: 1; }
.stage-icon { font-size: 20px; color: var(--red); margin-bottom: 8px; }
.stage-body h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.stage-body p { font-size: 13px; color: var(--gray-500); line-height: 1.6; margin-bottom: 10px; }

.stage-time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  background: var(--orange-light);
  padding: 4px 10px;
  border-radius: 50px;
}

/* ===== ОБОРУДОВАНИЕ / ТАБЛИЦЫ ===== */
.equipment-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  margin-bottom: 48px;
}

.equipment-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

.equipment-table caption {
  font-size: 14px;
  color: var(--gray-500);
  padding: 12px;
  caption-side: bottom;
  text-align: left;
}

.equipment-table thead {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: var(--white);
}

.equipment-table th {
  padding: 16px 20px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.equipment-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-300);
  font-size: 14px;
  color: var(--gray-700);
  vertical-align: middle;
}

.equipment-table tbody tr:hover { background: var(--gray-100); }
.equipment-table tbody tr:last-child td { border-bottom: none; }

.eq-icon { font-size: 18px; margin-right: 8px; }
.eq-icon--smoke { color: var(--gray-500); }
.eq-icon--heat { color: var(--red); }
.eq-icon--combo { color: var(--purple); }
.eq-icon--flame { color: var(--orange); }
.eq-icon--manual { color: var(--blue); }
.eq-icon--linear { color: var(--teal); }
.eq-icon--gas { color: var(--green); }

.brands-section { text-align: center; }
.brands-title { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 24px; }
.brands-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-300);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.brand-item:hover { border-color: var(--red); color: var(--red); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.brand-item i { font-size: 24px; color: var(--red); }

/* ===== ЦЕНЫ ===== */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
  align-items: start;
}

.price-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--gray-300);
  background: var(--white);
  transition: var(--transition);
  position: relative;
}

.price-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.price-card--featured { border-color: var(--red); transform: scale(1.03); }
.price-card--featured:hover { transform: scale(1.03) translateY(-5px); }

.price-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 0 0 10px 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-card-header {
  padding: 32px 24px 24px;
  text-align: center;
  color: var(--white);
}

.price-header--basic { background: linear-gradient(135deg, #546e7a, #78909c); }
.price-header--standard { background: linear-gradient(135deg, var(--red-dark), var(--red)); }
.price-header--premium { background: linear-gradient(135deg, #4a148c, #7b1fa2); }

.price-plan {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
  margin-bottom: 8px;
}

.price-val {
  font-size: 18px;
  margin-bottom: 4px;
}
.price-val strong { font-family: var(--font-head); font-size: 40px; font-weight: 900; }

.price-area {
  font-size: 13px;
  opacity: 0.8;
}

.price-features {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-700);
}

.price-features li i.fa-check { color: var(--green); }
.price-feature--no { opacity: 0.4; text-decoration: line-through; }
.price-feature--no i { color: var(--gray-500); }

.price-features .btn { margin-top: 8px; }

.price-factors h3 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
}

.factors-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.factors-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

.factors-table caption {
  font-size: 13px;
  color: var(--gray-500);
  padding: 10px;
  caption-side: bottom;
  text-align: left;
}

.factors-table thead {
  background: linear-gradient(135deg, #37474f, #546e7a);
  color: var(--white);
}

.factors-table th {
  padding: 14px 20px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
}

.factors-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-300);
  font-size: 14px;
  color: var(--gray-700);
}

.factors-table tbody tr:hover { background: var(--gray-100); }
.factors-table tbody tr:last-child td { border-bottom: none; }

.price-impact {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}
.price-impact--high { background: #ffebee; color: var(--red); }
.price-impact--med { background: #fff3e0; color: var(--orange); }
.price-impact--low { background: #e8f5e9; color: var(--green); }

/* ===== ЛИД-ФОРМА ===== */
.lead-section {
  background: linear-gradient(135deg, #0d0d1a 0%, #1a1a3e 50%, #2d1b2e 100%);
}

.lead-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.section-tag--white {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.2);
}

.lead-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.lead-desc { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 28px; }

.lead-guarantees {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.lead-g-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
}
.lead-g-item i { color: #4caf50; }

.lead-contacts { display: flex; flex-direction: column; gap: 12px; }

.lead-phone, .lead-wa {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  transition: var(--transition);
}
.lead-phone:hover { background: rgba(255,255,255,0.15); }
.lead-wa:hover { background: rgba(37,211,102,0.2); }

.lead-phone i { font-size: 20px; color: var(--orange); }
.lead-wa i { font-size: 24px; color: #25d366; }

.lead-phone span, .lead-wa span { display: block; font-size: 12px; opacity: 0.6; }
.lead-phone strong, .lead-wa strong { display: block; font-size: 17px; font-weight: 700; }

.lead-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.lead-form h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
  text-align: center;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--dark);
  transition: var(--transition);
  background: var(--gray-100);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(229,57,53,0.1);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--gray-500);
}

.form-check input[type="checkbox"] {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: var(--red);
  flex-shrink: 0;
}

.form-check a { color: var(--blue); text-decoration: underline; }

/* ===== ГЕОГРАФИЯ ===== */
.geography-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.geo-cities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.geo-city {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-300);
  transition: var(--transition);
}
.geo-city:hover { border-color: var(--red); box-shadow: var(--shadow-sm); }

.geo-city--main {
  background: linear-gradient(135deg, var(--red-light), #fff);
  border-color: var(--red);
  grid-column: span 2;
}

.geo-city i { color: var(--red); margin-top: 2px; }
.geo-city--main i { font-size: 18px; }
.geo-city strong { display: block; font-size: 14px; font-weight: 700; color: var(--dark); }
.geo-city span { display: block; font-size: 12px; color: var(--gray-500); }

.geo-map-block {
  position: sticky;
  top: 80px;
}

.geo-map-placeholder {
  background: linear-gradient(135deg, var(--dark2), var(--dark));
  border-radius: var(--radius);
  padding: 48px 32px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.geo-map-placeholder > i {
  font-size: 64px;
  color: var(--red);
  margin-bottom: 20px;
  display: block;
}

.geo-map-placeholder h3 { font-family: var(--font-head); font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.geo-map-placeholder p { font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 24px; line-height: 1.6; }

.geo-stats {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 28px;
}

.geo-stat { display: flex; flex-direction: column; }
.geo-stat strong { font-family: var(--font-head); font-size: 28px; font-weight: 900; color: var(--orange); }
.geo-stat span { font-size: 12px; color: rgba(255,255,255,0.6); }

/* ===== НОРМАТИВЫ ===== */
.norms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.norm-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-300);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.norm-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-3px); }

.norm-icon {
  font-size: 24px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.norm-body h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.norm-body p { font-size: 13px; color: var(--gray-500); line-height: 1.5; }

/* ===== ОТЗЫВЫ ===== */
.reviews-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: -12px;
}
.stars { color: #ffc107; font-size: 20px; }
.reviews-rating span { font-size: 14px; color: var(--gray-500); }
.reviews-rating strong { color: var(--dark); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-300);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.review-stars { color: #ffc107; font-size: 15px; }

.review-card blockquote {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.6;
  font-style: italic;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-300);
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.review-author strong { display: block; font-size: 14px; font-weight: 700; color: var(--dark); }
.review-obj { display: block; font-size: 12px; color: var(--gray-500); }

/* ===== FAQ ===== */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
}

.faq-column { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-300);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-item.active { border-color: var(--red); box-shadow: var(--shadow-md); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  transition: var(--transition);
}
.faq-question:hover { color: var(--red); }
.faq-item.active .faq-question { color: var(--red); }

.faq-arrow { font-size: 13px; color: var(--red); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.active .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.active .faq-answer { max-height: 400px; }

.faq-answer div {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.7;
  border-top: 1px solid var(--gray-300);
  padding-top: 14px;
}

/* ===== SEO-ТЕКСТ ===== */
.seo-text-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.seo-text-main h2 {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
}

.seo-text-main h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 28px 0 12px;
}

.seo-text-main p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 14px;
}

.seo-text-main strong { color: var(--red-dark); }

.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-300);
}

.widget-cta { background: linear-gradient(135deg, var(--red-dark), var(--red)); color: var(--white); border: none; }
.widget-cta h4 { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.widget-cta p { font-size: 14px; opacity: 0.85; margin-bottom: 16px; }
.widget-cta .btn { background: var(--white); color: var(--red); }
.widget-cta .btn:hover { background: var(--gray-100); }

.widget-keywords h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 14px; }
.widget-keywords ul { display: flex; flex-direction: column; gap: 8px; }
.widget-keywords li { font-size: 13px; color: var(--gray-700); padding-left: 16px; position: relative; }
.widget-keywords li::before { content: '→'; position: absolute; left: 0; color: var(--red); }

.license-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-300);
}
.license-badge:last-child { border-bottom: none; padding-bottom: 0; }
.license-badge:first-child { padding-top: 0; }
.license-badge i { font-size: 24px; color: var(--red); }
.license-badge strong { display: block; font-size: 14px; font-weight: 700; color: var(--dark); }
.license-badge span { display: block; font-size: 12px; color: var(--gray-500); }

/* ===== КОНТАКТЫ ===== */
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contact-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  text-align: center;
  color: var(--white);
  transition: var(--transition);
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.contact-card--phone { background: linear-gradient(135deg, var(--red-dark), var(--red)); }
.contact-card--location { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); }
.contact-card--email { background: linear-gradient(135deg, var(--orange-dark), var(--orange)); }
.contact-card--social { background: linear-gradient(135deg, #00695c, #00897b); }

.contact-card > i { font-size: 36px; opacity: 0.9; margin-bottom: 14px; display: block; }
.contact-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.contact-card a { display: block; font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.contact-card a:hover { opacity: 0.8; text-decoration: underline; }
.contact-card span { display: block; font-size: 12px; opacity: 0.7; margin-top: 8px; }
.contact-card p { font-size: 14px; line-height: 1.5; }

/* ===== ФИНАЛЬНЫЙ CTA ===== */
.final-cta {
  background: linear-gradient(135deg, var(--red-dark), var(--red), var(--orange));
  padding: 80px 0;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.final-cta-text h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}
.final-cta-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  line-height: 1.6;
}

.final-cta-actions { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-logo i { color: var(--red); }
.footer-logo strong { color: var(--orange); }

.footer-col--main p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.6); }

.footer-license {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--orange);
}

.footer-col h5 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--orange); padding-left: 4px; }

.footer-contacts { display: flex; flex-direction: column; gap: 10px; }
.footer-contacts a, .footer-contacts address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-style: normal;
}
.footer-contacts a:hover { color: var(--orange); }
.footer-contacts i { color: var(--red); font-size: 14px; margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--orange); }
.footer-seo-text { font-size: 12px; color: rgba(255,255,255,0.3); max-width: 800px; margin: 8px auto 0; }

/* ===== КНОПКА ВВЕРХ ===== */
.scroll-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.scroll-top:hover { background: var(--red-dark); transform: translateY(-3px); }

/* ===== ПЛАВАЮЩИЙ ЗВОНОК ===== */
.floating-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(229,57,53,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  z-index: 999;
  animation: float-pulse 3s ease-in-out infinite;
}

@keyframes float-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(229,57,53,0.5), 0 0 0 0 rgba(229,57,53,0.4); }
  50% { box-shadow: 0 8px 30px rgba(229,57,53,0.6), 0 0 0 10px rgba(229,57,53,0); }
}

/* ===== МОДАЛКА ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}
.modal-overlay.active { display: flex; }

.modal-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  animation: modal-in 0.3s ease;
  box-shadow: var(--shadow-lg);
}

@keyframes modal-in {
  from { transform: scale(0.8) translateY(-20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.modal-icon { font-size: 64px; color: #4caf50; margin-bottom: 16px; }
.modal-box h3 { font-family: var(--font-head); font-size: 24px; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.modal-box p { font-size: 16px; color: var(--gray-700); margin-bottom: 24px; line-height: 1.6; }
.modal-box strong { color: var(--red); }

/* ===== АНИМАЦИИ ПОЯВЛЕНИЯ ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .objects-grid { grid-template-columns: repeat(2, 1fr); }
  .norms-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .adv-layout { grid-template-columns: 1fr; }
  .adv-big-numbers { justify-content: flex-start; }
  .seo-text-layout { grid-template-columns: 1fr; }
  .contacts-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section-title { font-size: 24px; }

  .header-top { display: none; }

  .nav-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--gray-300);
    z-index: 999;
    gap: 4px;
  }
  .nav-menu.open { display: flex; }
  .nav-menu li a { display: block; padding: 12px 16px; border-radius: var(--radius-sm); font-size: 16px; }
  .nav-cta { display: none; }
  .burger { display: flex; }

  .hero { min-height: auto; padding: 60px 0; }
  .hero-stats { gap: 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .trust-bar-inner { justify-content: flex-start; gap: 12px; }
  .trust-item { min-width: 140px; }

  .capture-inner { flex-direction: column; }
  .capture-form { flex: none; width: 100%; }

  .services-grid { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: 1fr; }
  .objects-grid { grid-template-columns: 1fr 1fr; }
  .stages-wrapper { grid-template-columns: 1fr; }

  .price-grid { grid-template-columns: 1fr; }
  .price-card--featured { transform: none; }

  .lead-layout { grid-template-columns: 1fr; }
  .lead-form { padding: 24px; }

  .geography-layout { grid-template-columns: 1fr; }
  .geo-cities-grid { grid-template-columns: 1fr 1fr; }

  .norms-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .contacts-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .final-cta-inner { flex-direction: column; text-align: center; }
  .final-cta-actions { justify-content: center; }
  .final-cta-actions .btn { flex: 1; justify-content: center; }

  .emergency-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .objects-grid { grid-template-columns: 1fr; }
  .contacts-grid { grid-template-columns: 1fr; }
  .hero-badges { display: none; }
  .geo-cities-grid { grid-template-columns: 1fr; }
  .geo-city--main { grid-column: span 1; }
  .price-features { padding: 16px; }
  .lead-form { padding: 20px 16px; }
}
