*,
*::before,
*::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f3f6fb;
  color: #1f2933;
  line-height: 1.6;
}

body.accessible {
  filter: contrast(1.5) grayscale(0.3);
  font-size: 18px;
}

/* ===== ШАПКА ===== */

.site-header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(11,94,179,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.company-name span {
  font-size: 13px;
  color: #6b7280;
  display: block;
}

.company-name strong {
  font-size: 18px;
  color: #0b5eb3;
  display: block;
  font-weight: 700;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-phone { text-align: right; }

.phone-label {
  font-size: 12px;
  color: #6b7280;
  display: block;
  margin-bottom: 2px;
}

.phone-number {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #0b5eb3;
  text-decoration: none;
}

.phone-number:hover { text-decoration: underline; }

.accessibility-btn {
  background: #f0f7ff;
  color: #0b5eb3;
  border: 2px solid #0b5eb3;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
}

.accessibility-btn:hover {
  background: #0b5eb3;
  color: #fff;
}

/* ===== НАВИГАЦИЯ ===== */

.main-nav {
  background: #0b5eb3;
  width: 100%;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
  height: 48px;
  gap: 0;
}

.nav-link {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  box-sizing: border-box;
  transition: background 0.2s, border-color 0.2s;
}

.nav-link:hover {
  background: rgba(255,255,255,0.12);
  border-bottom-color: rgba(255,255,255,0.5);
}

.nav-link.active {
  background: rgba(255,255,255,0.15);
  border-bottom-color: #ffffff;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: stretch;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #fff;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 8px 32px rgba(15,23,42,0.15);
  z-index: 999;
  padding: 6px 0;
  border-top: 3px solid #0b5eb3;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: #1f2933;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  line-height: 1.4;
}

.dropdown-menu a:hover {
  background: #f0f5ff;
  color: #0b5eb3;
}

/* ===== HERO ===== */

.hero {
  background: #f8faff;
  border-bottom: 1px solid #e2e8f4;
  padding: 56px 0 48px;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-text { flex: 1 1 420px; }

.hero-badge {
  display: inline-block;
  background: #e8f0fe;
  color: #0b5eb3;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

.hero-text h1 {
  font-size: 38px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 16px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.7;
  margin: 0 0 28px;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #0b5eb3;
  color: #fff;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: #0a4f99;
  transform: translateY(-1px);
}

.btn-outline {
  background: #fff;
  color: #0b5eb3;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid #0b5eb3;
  transition: background 0.2s, transform 0.15s;
}

.btn-outline:hover {
  background: #e8f0fe;
  transform: translateY(-1px);
}

.hero-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex: 0 0 auto;
}

.stat-card {
  background: #fff;
  border: 2px solid #dbe8fb;
  border-radius: 16px;
  padding: 24px 28px;
  text-align: center;
  min-width: 130px;
  box-shadow: 0 4px 16px rgba(11,94,179,0.08);
  transition: box-shadow 0.2s, transform 0.2s;
}

.stat-card:hover {
  box-shadow: 0 8px 28px rgba(11,94,179,0.15);
  transform: translateY(-3px);
}

.stat-num {
  font-size: 36px;
  font-weight: 800;
  color: #0b5eb3;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.4;
  font-weight: 500;
}

/* ===== ОБЩИЕ СЕКЦИИ ===== */

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 32px;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  color: #0b5eb3;
  margin: 0 0 8px;
}

.section-subtitle {
  font-size: 16px;
  color: #6b7280;
  margin: 0 0 40px;
}

/* ===== УСЛУГИ (главная) ===== */

.services-section { background: #fff; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.service-card {
  background: #f3f6fb;
  border-radius: 20px;
  padding: 32px 24px;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(11,94,179,0.12);
  background: #fff;
}

.service-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #1f2933;
}

.service-card p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}

/* ===== О ПРЕДПРИЯТИИ (главная) ===== */

.about-section { background: #f3f6fb; }

.about-inner {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.about-text { flex: 1 1 400px; }

.about-text p {
  font-size: 15px;
  color: #374151;
  line-height: 1.8;
  margin: 0 0 16px;
}

.about-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.about-link-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  background: #0b5eb3;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}

.about-link-btn:hover { background: #0a4f99; }

.about-contacts {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-block h3 {
  font-size: 13px;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 6px;
}

.contact-block p {
  font-size: 15px;
  color: #1f2933;
  margin: 0;
  line-height: 1.5;
}

.contact-block a {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #0b5eb3;
  text-decoration: none;
}

.contact-block a:hover { text-decoration: underline; }

/* ===== НОВОСТИ (главная) ===== */

.news-section { background: #fff; }

.news-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.news-all-link {
  font-size: 15px;
  color: #0b5eb3;
  text-decoration: none;
  font-weight: 600;
}

.news-all-link:hover { text-decoration: underline; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.news-card {
  background: #f3f6fb;
  border-radius: 16px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  display: block;
  border: 1px solid #e8f0fe;
  transition: all 0.3s;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(11,94,179,0.10);
  background: #fff;
}

.news-date {
  font-size: 13px;
  color: #6b7280;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.news-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1f2933;
  margin: 0 0 10px;
  line-height: 1.4;
}

.news-card p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}

/* ===== ФУТЕР ===== */

.site-footer {
  background: #0b2d6b;
  color: #cce0ff;
  padding: 32px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  opacity: 0.9;
}

.footer-left strong {
  display: block;
  font-size: 15px;
  color: #fff;
}

.footer-left p {
  margin: 4px 0 0;
  font-size: 13px;
  opacity: 0.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer-links a {
  font-size: 14px;
  color: #93c5fd;
  text-decoration: none;
}

.footer-links a:hover { color: #fff; }

/* ===== ВНУТРЕННИЕ СТРАНИЦЫ ===== */

.inner-page { padding: 40px 32px 64px; }

.inner-page-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 24px;
}

.breadcrumb a { color: #0b5eb3; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

.page-title {
  font-size: 36px;
  font-weight: 800;
  color: #0b5eb3;
  margin: 0 0 32px;
}

.subsection-title {
  font-size: 22px;
  font-weight: 700;
  color: #1f2933;
  margin: 32px 0 16px;
}

/* ===== ИНФО БАННЕР ===== */

.info-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #e6f1ff;
  border-left: 4px solid #0b5eb3;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.6;
}

.info-banner-icon { font-size: 28px; flex-shrink: 0; }
.info-banner a { color: #0b5eb3; font-weight: 600; }

/* ===== ТЕКСТОВАЯ КАРТОЧКА ===== */

.text-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(15,23,42,0.07);
  border: 1px solid #e8f0fe;
  margin-bottom: 16px;
}

.text-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #374151;
  margin: 0 0 16px;
}

.text-card p:last-child { margin-bottom: 0; }

/* ===== ПОДРАЗДЕЛЫ ===== */

.sublinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.sublink-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 8px 24px rgba(15,23,42,0.07);
  border: 1px solid #e8f0fe;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.3s;
  position: relative;
}

.sublink-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(11,94,179,0.12);
  border-color: #0b5eb3;
}

.sublink-icon { font-size: 36px; }

.sublink-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #0b5eb3;
  margin: 0;
}

.sublink-card p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

.sublink-arrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-size: 20px;
  color: #0b5eb3;
  opacity: 0;
  transition: opacity 0.2s;
}

.sublink-card:hover .sublink-arrow { opacity: 1; }

/* ===== ДОКУМЕНТЫ ===== */

.docs-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.docs-section-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: 0 4px 16px rgba(15,23,42,0.06);
  border: 1px solid #e8f0fe;
  border-left: 4px solid #0b5eb3;
}

.docs-section-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #1f2933;
  margin: 0 0 12px;
}

.docs-list {
  margin: 0;
  padding-left: 20px;
}

.docs-list li {
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 6px;
}

/* ===== ФАЙЛЫ ===== */

.files-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.file-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 4px 16px rgba(15,23,42,0.06);
  border: 1px solid #e8f0fe;
  text-decoration: none;
  transition: all 0.2s;
}

.file-item:hover {
  border-color: #0b5eb3;
  box-shadow: 0 8px 24px rgba(11,94,179,0.12);
  transform: translateX(4px);
}

.file-icon { font-size: 28px; }

.file-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.file-name {
  font-size: 15px;
  font-weight: 600;
  color: #1f2933;
}

.file-ext {
  font-size: 12px;
  color: #6b7280;
  font-weight: 600;
  text-transform: uppercase;
}

.file-download { font-size: 20px; color: #0b5eb3; }

/* ===== ВАКАНСИИ ===== */

.vacancies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.vacancy-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(15,23,42,0.07);
  border: 1px solid #e8f0fe;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vacancy-card:hover {
  box-shadow: 0 8px 32px rgba(11,94,179,0.13);
  transform: translateY(-2px);
}

.vacancy-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #0b5eb3;
  margin: 0;
  line-height: 1.4;
}

.vacancy-card p {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

.vacancy-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.tag-salary { background: #d1fae5; color: #065f46; }
.tag-exp    { background: #e8f0fe; color: #0b5eb3; }
.tag-special{ background: #fef3c7; color: #92400e; }

.vacancy-cta {
  background: linear-gradient(135deg, #0b5eb3 0%, #1a7fd4 100%);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  color: #fff;
}

.vacancy-cta h2 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 8px;
}

.vacancy-cta p {
  font-size: 15px;
  opacity: 0.85;
  margin: 0 0 24px;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.cta-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.cta-primary   { background: #fff; color: #0b5eb3; }
.cta-secondary {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}

/* ===== НОВОСТИ (страница) ===== */

.news-filter {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.news-filter-btn {
  padding: 8px 22px;
  border-radius: 20px;
  border: 2px solid #0b5eb3;
  background: transparent;
  color: #0b5eb3;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}

.news-filter-btn:hover { background: #e8f0fe; }

.news-filter-btn.active {
  background: #0b5eb3;
  color: #fff;
}

.news-year-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-full-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 4px 20px rgba(15,23,42,0.07);
  border: 1px solid #e8f0fe;
  transition: box-shadow 0.2s;
}

.news-full-card:hover {
  box-shadow: 0 8px 32px rgba(11,94,179,0.12);
}

.news-full-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.news-full-date { font-size: 13px; color: #6b7280; font-weight: 500; }

.news-full-tag {
  background: #e8f0fe;
  color: #0b5eb3;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
}

.news-full-title {
  font-size: 18px;
  font-weight: 700;
  color: #0b5eb3;
  margin: 0 0 12px;
  line-height: 1.4;
}

.news-full-text {
  font-size: 15px;
  color: #374151;
  line-height: 1.75;
  margin: 0 0 10px;
}

.news-full-text:last-child { margin-bottom: 0; }
.news-full-text a { color: #0b5eb3; text-decoration: underline; }

.news-pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 36px;
}

.news-page {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 2px solid #e8f0fe;
  font-size: 14px;
  font-weight: 700;
  color: #0b5eb3;
  cursor: pointer;
  transition: background 0.15s;
}

.news-page:hover { background: #e8f0fe; }

.news-page.active {
  background: #0b5eb3;
  color: #fff;
  border-color: #0b5eb3;
}

/* ===== РЕКВИЗИТЫ ===== */

.requisites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.req-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 8px 24px rgba(15,23,42,0.07);
  border: 1px solid #e8f0fe;
}

.req-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0b5eb3;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e8f0fe;
}

.req-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid #f3f6fb;
  font-size: 14px;
}

.req-row:last-child { border-bottom: none; }
.req-row span { color: #6b7280; flex-shrink: 0; min-width: 80px; }
.req-row strong { color: #1f2933; text-align: right; font-weight: 600; }

/* ===== ПОСТАВЩИКАМ ===== */

.suppliers-eis {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(15,23,42,0.07);
  border: 1px solid #e8f0fe;
  margin: 24px 0;
}

.eis-icon { font-size: 48px; flex-shrink: 0; }

.eis-content h3 { font-size: 18px; font-weight: 700; color: #1f2933; margin: 0 0 8px; }
.eis-content p  { font-size: 15px; color: #6b7280; margin: 0 0 20px; line-height: 1.6; }

.eis-btn {
  display: inline-block;
  background: #0b5eb3;
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.eis-btn:hover {
  background: #0a4d96;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11,94,179,0.3);
}

/* ===== ИСТОРИЧЕСКАЯ СПРАВКА ===== */

.history-timeline {
  position: relative;
  padding-left: 32px;
  margin-bottom: 48px;
}

.history-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: linear-gradient(180deg, #0b5eb3, #93c5fd);
  border-radius: 999px;
}

.timeline-item {
  position: relative;
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  align-items: flex-start;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -39px;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #0b5eb3;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #0b5eb3;
}

.timeline-year {
  font-size: 18px;
  font-weight: 800;
  color: #0b5eb3;
  white-space: nowrap;
  min-width: 80px;
  padding-top: 2px;
}

.timeline-content {
  background: #fff;
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: 0 4px 16px rgba(15,23,42,0.06);
  border: 1px solid #e8f0fe;
  flex: 1;
}

.timeline-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #374151;
  margin: 0;
}

.history-photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.history-photo {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(15,23,42,0.08);
  border: 1px solid #e8f0fe;
}

.history-photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.history-photo p {
  font-size: 13px;
  color: #6b7280;
  padding: 12px 16px;
  margin: 0;
  line-height: 1.4;
}

/* ===== ГЛОССАРИЙ ===== */

.glossary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.glossary-item {
  background: #fff;
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: 0 4px 16px rgba(15,23,42,0.06);
  border: 1px solid #e8f0fe;
  border-top: 3px solid #0b5eb3;
}

.glossary-item h4 { font-size: 15px; font-weight: 700; color: #0b5eb3; margin: 0 0 8px; }
.glossary-item p  { font-size: 14px; color: #374151; line-height: 1.6; margin: 0; }

/* ===== ДОЖДЕВАЯ КАНАЛИЗАЦИЯ — СТАТИСТИКА ===== */

.rainwater-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1;
}

/* ===== ПОДКЛЮЧЕНИЕ К СЕТЯМ ===== */

.connection-list { padding-left: 20px; margin: 0; }

.connection-list li {
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 10px;
}

.connection-list li:last-child { margin-bottom: 0; }

/* ===== ПРОЕКТНАЯ ДОКУМЕНТАЦИЯ ===== */

.review-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.review-info-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(15,23,42,0.07);
  border: 1px solid #e8f0fe;
  text-align: center;
}

.review-info-icon { font-size: 36px; margin-bottom: 12px; }

.review-info-card h3 { font-size: 15px; font-weight: 700; color: #0b5eb3; margin: 0 0 8px; }
.review-info-card p  { font-size: 14px; color: #374151; margin: 0 0 4px; line-height: 1.5; }
.review-info-card a  { font-size: 15px; font-weight: 700; color: #0b5eb3; text-decoration: none; }
.review-info-card a:hover { text-decoration: underline; }

.tech-requirements { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }

.tech-req-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: 0 4px 16px rgba(15,23,42,0.06);
  border: 1px solid #e8f0fe;
}

.tech-req-num {
  width: 36px;
  height: 36px;
  background: #0b5eb3;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}

.tech-req-item strong { display: block; font-size: 15px; color: #1f2933; margin-bottom: 4px; }
.tech-req-item p      { font-size: 14px; color: #6b7280; margin: 0; line-height: 1.5; }

.normative-list { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }

.normative-item {
  background: #f3f6fb;
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
  border-left: 3px solid #0b5eb3;
}

/* ===== ТОПОСЪЁМКИ ===== */

.topo-steps { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }

.topo-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(15,23,42,0.06);
  border: 1px solid #e8f0fe;
}

.topo-step-num {
  width: 40px;
  height: 40px;
  background: #0b5eb3;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
}

.topo-step-content h3 { font-size: 16px; font-weight: 700; color: #1f2933; margin: 0 0 6px; }
.topo-step-content p  { font-size: 14px; color: #6b7280; margin: 0; line-height: 1.6; }

/* ===== АДАПТИВНОСТЬ ===== */

@media (max-width: 1024px) {
  .nav-inner { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .nav-inner::-webkit-scrollbar { display: none; }
  .nav-link { font-size: 13px; padding: 0 10px; }
}

@media (max-width: 768px) {
  .header-inner { flex-direction: column; padding: 16px; gap: 12px; }
  .header-right  { flex-direction: column; gap: 12px; width: 100%; align-items: stretch; text-align: center; }
  .header-phone  { text-align: center; }
  .hero { padding: 36px 0 32px; }
  .hero-inner { flex-direction: column; gap: 32px; }
  .hero-text h1 { font-size: 28px; }
  .hero-stats { justify-content: center; }
  .stat-card { min-width: 110px; padding: 18px 20px; }
  .stat-num  { font-size: 28px; }
  .section-inner { padding: 40px 16px; }
  .section-title { font-size: 24px; }
  .inner-page { padding: 24px 16px 40px; }
  .page-title { font-size: 26px; }
  .about-inner { gap: 32px; }
  .about-contacts { flex: 1 1 100%; }
  .news-section-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .suppliers-eis { flex-direction: column; gap: 16px; padding: 20px; }
  .history-timeline { padding-left: 24px; }
  .timeline-item { flex-direction: column; gap: 8px; }
  .docs-sections { grid-template-columns: 1fr; }
  .requisites-grid { grid-template-columns: 1fr; }
  .req-row { flex-direction: column; gap: 4px; }
  .req-row strong { text-align: left; }
  .review-info-grid { grid-template-columns: 1fr; }
  .vacancies-grid { grid-template-columns: 1fr; }
  .vacancy-cta { padding: 28px 20px; }
  .news-full-card { padding: 20px 16px; }
  .news-full-title { font-size: 16px; }
  .rainwater-stats { grid-template-columns: 1fr; }
  .glossary-grid { grid-template-columns: 1fr; }
  .history-photos { grid-template-columns: 1fr; }
  .sublinks-grid { grid-template-columns: 1fr; }
  .text-card { padding: 20px; }
}

@media (max-width: 480px) {
  .logo { width: 48px; height: 48px; }
  .company-name strong { font-size: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
}
