/* =============================================
   VIEW-VENTS — Главный файл стилей
   ============================================= */

/* === ПЕРЕМЕННЫЕ === */
:root {
  --primary: #1B3A6B;
  --primary-dark: #122A52;
  --accent: #E8521A;
  --accent-hover: #C94415;
  --text: #222222;
  --text-muted: #666666;
  --bg: #F5F7FA;
  --white: #FFFFFF;
  --border: #E0E4ED;
  --shadow: 0 4px 20px rgba(27, 58, 107, 0.12);
  --radius: 8px;
  --transition: 0.25s ease;
}

/* === СБРОС И БАЗОВЫЕ === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
ul { list-style: none; }

/* === КОНТЕЙНЕР === */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === КНОПКИ === */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 82, 26, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}
.btn-secondary {
  background: var(--primary);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* === ХЕДЕР === */
.header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.logo-icon img { width: 38px; height: 38px; display: block; }
.logo-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}
.logo-text span { color: var(--accent); }

/* Навигация */
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav a:hover, .nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}

/* Dropdown */
.nav-item { position: relative; }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 240px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 200;
}
.dropdown a {
  display: block;
  color: var(--text);
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 0;
}
.dropdown a:hover {
  background: var(--bg);
  color: var(--accent);
}

/* Телефон в хедере */
.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}
.header-phone a {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.header-phone a:hover { color: var(--accent); }
.header-phone span {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  margin-top: 1px;
}

/* Бургер */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Мобильное меню */
.mobile-nav {
  display: none;
  background: var(--primary-dark);
  padding: 16px 20px 20px;
}
.mobile-nav a {
  display: block;
  color: rgba(255,255,255,0.85);
  padding: 10px 0;
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav.open { display: block; }

/* === BREADCRUMBS === */
.breadcrumbs {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}
.breadcrumbs li::after {
  content: '›';
  margin-left: 4px;
  color: var(--border);
}
.breadcrumbs li:last-child::after { display: none; }
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs li:last-child { color: var(--text); font-weight: 500; }

/* Breadcrumb внутри page-hero (тёмный фон) */
.page-hero .breadcrumb,
.page-hero nav.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  margin-bottom: 16px;
}
.page-hero .breadcrumb a,
.page-hero .breadcrumb span {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color var(--transition);
}
.page-hero .breadcrumb a:hover { color: rgba(255, 255, 255, 0.95); }
.page-hero .breadcrumb span:last-child { color: rgba(255, 255, 255, 0.95); font-weight: 500; }
.page-hero .breadcrumb span { color: rgba(255, 255, 255, 0.4); }

/* === HERO === */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #2451A0 100%);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,82,26,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { max-width: 680px; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,82,26,0.2);
  border: 1px solid rgba(232,82,26,0.4);
  color: #FFA07A;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--accent); }
.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat strong {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
}
.hero-stat span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* === СЕКЦИИ === */
.section { padding: 64px 0; }
.section-alt { background: var(--bg); }
.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
}
.section-head { margin-bottom: 40px; }
.section-head.center { text-align: center; }
.section-head.center .section-subtitle { margin-left: auto; margin-right: auto; }

/* === КАРТОЧКИ УСЛУГ === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(27,58,107,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 24px;
}
.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary);
}
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-card .price {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-top: 12px;
}
.service-link:hover { color: var(--accent); gap: 10px; }

/* === ПРЕИМУЩЕСТВА === */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit {
  text-align: center;
  padding: 28px 16px;
}
.benefit-icon {
  font-size: 40px;
  margin-bottom: 14px;
  display: block;
}
.benefit h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.benefit p { font-size: 14px; color: var(--text-muted); }

/* === КАК МЫ РАБОТАЕМ === */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}
.step h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--primary); }
.step p { font-size: 13px; color: var(--text-muted); }

/* === CTA БЛОК === */
.cta-block {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 16px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  right: -50px; top: -50px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(232,82,26,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-block h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-block p {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  margin-bottom: 32px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === СТРАНИЦА УСЛУГИ === */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 48px 0 56px;
}
.page-hero h1 { font-size: 36px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.8); max-width: 640px; }
.page-hero-price {
  display: inline-block;
  background: rgba(232,82,26,0.2);
  border: 1px solid rgba(232,82,26,0.5);
  color: #FFA07A;
  font-size: 14px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* === КОНТЕНТ УСЛУГИ === */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.content-text h2 { font-size: 24px; font-weight: 700; color: var(--primary); margin: 28px 0 12px; }
.content-text h2:first-child { margin-top: 0; }
.content-text p { margin-bottom: 16px; color: var(--text); line-height: 1.7; }
.content-text ul { margin-bottom: 16px; }
.content-text ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: var(--text);
}
.content-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Сайдбар */
.sidebar { position: sticky; top: 88px; }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  margin-bottom: 20px;
}
.sidebar-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
}
.sidebar-card .phone-big {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 6px;
}
.sidebar-card .email-link { font-size: 14px; color: var(--text-muted); }
.sidebar-card .btn { width: 100%; margin-top: 16px; }

/* Прайс в сайдбаре */
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.price-list li:last-child { border-bottom: none; }
.price-list .price-val { font-weight: 700; color: var(--accent); white-space: nowrap; margin-left: 8px; }

/* Связанные услуги в сайдбаре */
.related-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text);
}
.related-links li a::before { content: '→'; color: var(--accent); }
.related-links li a:hover { color: var(--accent); }
.related-links li:last-child a { border-bottom: none; }

/* === ТАБЛИЦА ЦЕН === */
.price-table { width: 100%; border-collapse: collapse; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.price-table th {
  background: var(--primary);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
}
.price-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:nth-child(even) td { background: var(--bg); }
.price-table .td-price { font-weight: 700; color: var(--accent); white-space: nowrap; }

/* === ОБЪЕКТЫ (превью) === */
.objects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.object-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.object-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.object-icon { font-size: 36px; margin-bottom: 14px; }
.object-card h3 { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.object-card p { font-size: 13px; color: var(--text-muted); flex: 1; }
.object-card a { margin-top: 14px; font-size: 13px; font-weight: 600; color: var(--accent); }

/* === FAQ === */
.faq-list { max-width: 800px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg); }
.faq-question .faq-arrow { font-size: 20px; transition: transform var(--transition); }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 20px 18px; }

/* === ПОРТФОЛИО === */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.portfolio-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.portfolio-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.portfolio-img {
  height: 200px;
  background: linear-gradient(135deg, var(--primary) 0%, #2451A0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}
.portfolio-body { padding: 20px; }
.portfolio-body h3 { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.portfolio-meta { font-size: 13px; color: var(--text-muted); }
.portfolio-tag {
  display: inline-block;
  background: var(--bg);
  color: var(--text-muted);
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 12px;
  margin-top: 10px;
  margin-right: 4px;
}

/* === ФОРМА === */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27,58,107,0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 12px; color: var(--text-muted); margin-top: 8px; }

/* === КОНТАКТЫ === */
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-block h2 { font-size: 26px; font-weight: 700; color: var(--primary); margin-bottom: 24px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-item-icon {
  width: 48px; height: 48px;
  background: rgba(27,58,107,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-item-body h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.contact-item-body a, .contact-item-body p { font-size: 15px; color: var(--text-muted); }

/* === БЛОГ === */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.blog-img {
  height: 180px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--border) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.blog-body { padding: 20px; }
.blog-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.blog-body h3 { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 8px; line-height: 1.4; }
.blog-body p { font-size: 13px; color: var(--text-muted); }
.blog-more { margin-top: 12px; font-size: 13px; font-weight: 600; color: var(--accent); }

/* === ФУТЕР === */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  padding: 52px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo { margin-bottom: 16px; }
.footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-contacts a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin-bottom: 8px;
}
.footer-contacts a:hover { color: var(--accent); }
.footer h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 14px; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--accent); }

/* === MODAL === */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: 12px;
  padding: 36px;
  max-width: 480px;
  width: calc(100% - 40px);
  position: relative;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none; border: none;
  font-size: 24px; cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
}
.modal h2 { font-size: 22px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.modal p { font-size: 15px; color: var(--text-muted); margin-bottom: 20px; }

/* === УВЕДОМЛЕНИЕ === */
.toast {
  display: none;
  position: fixed;
  bottom: 30px; right: 30px;
  background: #2d8a4e;
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  z-index: 9999;
  box-shadow: var(--shadow);
  animation: fadeIn 0.3s ease;
}
.toast.show { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* === АДАПТИВ === */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 34px; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .burger { display: flex; }
  .header-phone span { display: none; }
  .header-phone a { font-size: 15px; }
  .hero { padding: 48px 0; }
  .hero h1 { font-size: 26px; }
  .hero-desc { font-size: 15px; }
  .hero-stats { gap: 20px; }
  .section { padding: 48px 0; }
  .section-title { font-size: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .objects-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .contacts-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-block { padding: 36px 24px; }
  .cta-block h2 { font-size: 22px; }
  .form-row { grid-template-columns: 1fr; }
  .price-table { font-size: 13px; }
  .price-table th, .price-table td { padding: 10px 12px; }
}

@media (max-width: 480px) {
  .objects-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
}
