/* ================================================
   ЭВАКУАТОР МОСКВА 24 — Main Stylesheet
   ================================================ */

/* === CSS VARIABLES === */
:root {
  --primary: #1a3a5c;
  --primary-light: #254e7a;
  --accent: #f5a623;
  --accent-dark: #d4891a;
  --text: #2c3e50;
  --text-light: #6b7280;
  --bg: #ffffff;
  --bg-light: #f0f4f8;
  --bg-dark: #0f2030;
  --border: #e5e7eb;
  --success: #16a34a;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.14);
  --font: 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  --container: 1200px;
  --gap: 24px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

/* === LAYOUT === */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section--alt { background: var(--bg-light); }
.section--dark { background: var(--primary); color: #fff; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: 1.2rem; }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { margin-bottom: 12px; }
.section-title p { color: var(--text-light); font-size: 1.05rem; }
.section-title--light h2 { color: #fff; }
.section-title--light p { color: rgba(255,255,255,.7); }
.text-accent { color: var(--accent); }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-size: 1rem; font-weight: 600; cursor: pointer;
  border: 2px solid transparent; transition: all .2s;
  text-decoration: none; white-space: nowrap; line-height: 1;
}
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-ghost { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-ghost:hover { background: var(--primary); color: #fff; }
.btn-call { background: var(--success); color: #fff; border-color: var(--success); }
.btn-call:hover { background: #15803d; border-color: #15803d; }
.btn-lg { padding: 18px 36px; font-size: 1.125rem; }
.btn-full { width: 100%; justify-content: center; }

/* === HEADER === */
.header { position: sticky; top: 0; z-index: 100; background: var(--primary); box-shadow: 0 2px 8px rgba(0,0,0,.2); }
.header__top { background: var(--bg-dark); padding: 6px 0; font-size: .8125rem; color: rgba(255,255,255,.65); }
.header__top .container { display: flex; justify-content: space-between; align-items: center; }
.header__main { padding: 14px 0; }
.header__main .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.header__logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header__logo-icon {
  width: 42px; height: 42px; background: var(--accent); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0;
}
.header__logo-title { font-size: 1.05rem; font-weight: 800; color: #fff; line-height: 1.1; }
.header__logo-sub { font-size: .7rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .06em; }

.header__nav { display: flex; gap: 2px; }
.header__nav a {
  color: rgba(255,255,255,.8); padding: 8px 13px; border-radius: var(--radius);
  font-size: .9rem; transition: all .2s; white-space: nowrap;
}
.header__nav a:hover, .header__nav a.active { color: #fff; background: rgba(255,255,255,.1); }

.header__phone { text-align: right; flex-shrink: 0; }
.header__phone-num { display: block; font-size: 1.25rem; font-weight: 800; color: var(--accent); line-height: 1.1; }
.header__phone-sub { font-size: .7rem; color: rgba(255,255,255,.55); }
.header__menu-btn { display: none; background: none; border: none; color: #fff; cursor: pointer; padding: 8px; font-size: 1.4rem; }

/* === HERO === */
.hero {
  background: linear-gradient(135deg, #0f2030 0%, var(--primary) 60%, #1a4a6c 100%);
  color: #fff; padding: 80px 0; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('../img/hero-bg.jpg') center/cover no-repeat;
  opacity: .08;
}
.hero .container { position: relative; display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: center; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(245,166,35,.15); border: 1px solid rgba(245,166,35,.4);
  color: var(--accent); padding: 6px 14px; border-radius: 100px;
  font-size: .875rem; font-weight: 600; margin-bottom: 20px;
}
.hero__title { font-size: clamp(1.8rem, 4vw, 2.75rem); margin-bottom: 16px; }
.hero__subtitle { font-size: 1.05rem; opacity: .85; margin-bottom: 28px; max-width: 540px; }
.hero__features { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-bottom: 32px; }
.hero__feature { display: flex; align-items: center; gap: 7px; font-size: .9rem; opacity: .9; }
.hero__feature::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg); padding: 28px; backdrop-filter: blur(12px);
}
.hero__card-title { font-size: .8rem; text-transform: uppercase; letter-spacing: .07em; opacity: .6; margin-bottom: 6px; }
.hero__price-from { font-size: .85rem; opacity: .65; }
.hero__price-num { font-size: 2.8rem; font-weight: 900; color: var(--accent); line-height: 1; }
.hero__price-unit { font-size: .8rem; opacity: .6; margin-bottom: 24px; }
.hero__urgency {
  display: flex; align-items: center; gap: 8px;
  font-size: .8125rem; color: #4ade80; margin-top: 12px;
}
.hero__urgency::before {
  content: ''; width: 8px; height: 8px; background: #4ade80;
  border-radius: 50%; flex-shrink: 0; animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }

/* === TRUST BAR === */
.trust-bar { background: var(--bg-light); padding: 24px 0; border-bottom: 1px solid var(--border); }
.trust-bar .container { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item__icon { font-size: 1.75rem; }
.trust-item__value { font-size: 1.1rem; font-weight: 700; color: var(--primary); line-height: 1.1; }
.trust-item__label { font-size: .775rem; color: var(--text-light); }

/* === SERVICE CARDS === */
.service-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  transition: all .2s; display: flex; flex-direction: column;
}
.service-card:hover { box-shadow: var(--shadow); border-color: var(--accent); transform: translateY(-3px); }
.service-card__icon { font-size: 2.25rem; margin-bottom: 14px; }
.service-card__title { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.service-card__desc { font-size: .875rem; color: var(--text-light); flex: 1; line-height: 1.55; margin-bottom: 14px; }
.service-card__price { font-weight: 700; color: var(--accent); font-size: 1.05rem; margin-bottom: 10px; }
.service-card__link { font-size: .875rem; color: var(--primary); font-weight: 600; }
.service-card__link:hover { color: var(--accent); }

/* === STEPS === */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); position: relative; }
.steps::before {
  content: ''; position: absolute; top: 31px; 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: 62px; height: 62px; border-radius: 50%; margin: 0 auto 16px;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 800; position: relative; z-index: 2;
}
.section--alt .step__num { background: var(--primary); }
.step__title { font-weight: 700; margin-bottom: 8px; font-size: 1rem; }
.step__desc { font-size: .875rem; color: var(--text-light); line-height: 1.5; }

/* === PRICE TABLE === */
.price-table-wrap { overflow-x: auto; }
.price-table { width: 100%; border-collapse: collapse; white-space: nowrap; }
.price-table th { background: var(--primary); color: #fff; padding: 14px 20px; text-align: left; font-size: .875rem; }
.price-table td { padding: 13px 20px; border-bottom: 1px solid var(--border); font-size: .9rem; white-space: normal; }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: var(--bg-light); }
.price-table .price-val { text-align: right; font-weight: 700; color: var(--primary); white-space: nowrap; }
.price-table .price-note-cell { color: var(--text-light); font-size: .8125rem; }
.price-note { font-size: .8125rem; color: var(--text-light); margin-top: 14px; line-height: 1.6; }

/* === ADVANTAGES === */
.adv-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 24px;
}
.adv-card__icon { font-size: 2rem; margin-bottom: 14px; }
.adv-card__title { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.adv-card__desc { font-size: .875rem; color: rgba(255,255,255,.7); line-height: 1.55; }

/* === DISTRICTS === */
.district-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
.district-link {
  display: block; padding: 11px 14px; background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--radius);
  font-size: .875rem; color: var(--text); text-align: center;
  transition: all .18s;
}
.district-link:hover { border-color: var(--accent); color: var(--primary); background: #fef9f0; }

/* === REVIEWS === */
.review-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px;
}
.review-card__stars { color: var(--accent); font-size: 1rem; letter-spacing: 2px; margin-bottom: 12px; }
.review-card__text { font-size: .9rem; color: var(--text); margin-bottom: 16px; line-height: 1.65; }
.review-card__author { display: flex; align-items: center; gap: 12px; }
.review-card__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem; flex-shrink: 0;
}
.review-card__name { font-weight: 600; font-size: .875rem; line-height: 1.2; }
.review-card__date { font-size: .75rem; color: var(--text-light); }

/* === FAQ === */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 4px; background: none; border: none; cursor: pointer;
  font-size: 1rem; font-weight: 600; color: var(--text); text-align: left; gap: 16px;
}
.faq-question:hover { color: var(--primary); }
.faq-icon { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 400; transition: transform .2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 4px 18px; font-size: .9375rem; color: var(--text-light); line-height: 1.7; display: none; }
.faq-item.open .faq-answer { display: block; }

/* === CTA SECTION === */
.cta-block { text-align: center; }
.cta-block h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 14px; }
.cta-block p { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-bottom: 32px; }
.cta-block .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-phone { font-size: 1.5rem; font-weight: 800; color: var(--accent); display: block; margin: 6px 0 24px; }

/* === FOOTER === */
.footer { background: var(--bg-dark); color: rgba(255,255,255,.75); }
.footer__main { padding: 56px 0; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer__brand-desc { font-size: .875rem; line-height: 1.65; opacity: .6; margin: 14px 0; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: background .2s;
}
.footer__social a:hover { background: var(--accent); }
.footer__col-title { font-weight: 700; margin-bottom: 16px; font-size: .9375rem; color: #fff; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: .875rem; opacity: .65; transition: opacity .2s; }
.footer__links a:hover { opacity: 1; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8125rem; opacity: .5;
}

/* === INNER PAGE ELEMENTS === */
.breadcrumb { padding: 12px 0; font-size: .875rem; color: var(--text-light); }
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--primary); text-decoration: underline; }
.breadcrumb__sep { margin: 0 8px; opacity: .5; }

.page-header { background: var(--primary); color: #fff; padding: 44px 0; }
.page-header__badge {
  display: inline-block; background: rgba(245,166,35,.2); border: 1px solid rgba(245,166,35,.4);
  color: var(--accent); padding: 4px 12px; border-radius: 100px;
  font-size: .8rem; font-weight: 600; margin-bottom: 14px;
}
.page-header__title { font-size: clamp(1.5rem, 3.5vw, 2.25rem); margin-bottom: 10px; }
.page-header__subtitle { opacity: .75; font-size: 1rem; max-width: 600px; }

.content-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.sidebar { position: sticky; top: 80px; }

.sidebar-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px; margin-bottom: 14px;
}
.sidebar-card--primary { background: var(--primary); color: #fff; border-color: transparent; }
.sidebar-card__title { font-size: 1rem; font-weight: 700; margin-bottom: 14px; }
.sidebar-card--primary .sidebar-card__title { color: #fff; }
.sidebar-phone { display: block; font-size: 1.4rem; font-weight: 800; color: var(--accent); margin-bottom: 14px; line-height: 1.1; }
.sidebar-price-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: .85rem; }
.sidebar-price-row:last-of-type { border-bottom: none; }
.sidebar-price-row strong { color: var(--accent); }
.sidebar-links { display: flex; flex-direction: column; gap: 8px; }
.sidebar-links a {
  display: flex; align-items: center; gap: 8px; padding: 10px 14px;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-size: .875rem; color: var(--text); transition: all .18s;
}
.sidebar-links a:hover { border-color: var(--accent); color: var(--primary); }

.content-text h2 { font-size: 1.45rem; margin: 36px 0 14px; color: var(--primary); }
.content-text h3 { font-size: 1.15rem; margin: 26px 0 10px; }
.content-text p { margin-bottom: 14px; line-height: 1.75; }
.content-text ul, .content-text ol { margin: 0 0 14px 22px; }
.content-text ul { list-style: disc; }
.content-text ol { list-style: decimal; }
.content-text li { margin-bottom: 7px; line-height: 1.65; }
.content-text table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: .9rem; }
.content-text table th { background: var(--primary); color: #fff; padding: 11px 16px; text-align: left; }
.content-text table td { padding: 10px 16px; border-bottom: 1px solid var(--border); }
.content-text .highlight-box {
  background: #fef9f0; border-left: 4px solid var(--accent);
  padding: 16px 20px; border-radius: 0 var(--radius) var(--radius) 0; margin: 20px 0;
}

/* === BLOG CARDS === */
.blog-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all .2s; }
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.blog-card__img { aspect-ratio: 16/9; background: var(--bg-light); overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__body { padding: 18px; }
.blog-card__meta { display: flex; gap: 14px; font-size: .8rem; color: var(--text-light); margin-bottom: 10px; }
.blog-card__cat { background: #eff6ff; color: #1d4ed8; padding: 2px 8px; border-radius: 100px; font-size: .75rem; font-weight: 600; }
.blog-card__title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; line-height: 1.35; }
.blog-card__title a:hover { color: var(--accent); }
.blog-card__excerpt { font-size: .8375rem; color: var(--text-light); line-height: 1.5; }

/* === ARTICLE === */
.article-meta { display: flex; gap: 20px; flex-wrap: wrap; padding: 16px 0; border-bottom: 1px solid var(--border); margin-bottom: 28px; font-size: .875rem; color: var(--text-light); }
.article-toc { background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; margin-bottom: 28px; }
.article-toc__title { font-weight: 700; margin-bottom: 10px; font-size: .9375rem; }
.article-toc ol { margin-left: 18px; list-style: decimal; }
.article-toc li { margin-bottom: 5px; font-size: .875rem; }
.article-toc a { color: var(--primary); }
.article-toc a:hover { text-decoration: underline; }

/* === MISC === */
.badge { display: inline-block; padding: 4px 10px; border-radius: 100px; font-size: .75rem; font-weight: 600; }
.badge-orange { background: #fef3c7; color: #d97706; }
.badge-green { background: #dcfce7; color: #16a34a; }
.badge-blue { background: #eff6ff; color: #1d4ed8; }
.rating-stars { color: var(--accent); letter-spacing: 2px; }

/* === CALLBACK MODAL === */
.cb-modal { position: fixed; inset: 0; z-index: 999; display: flex; align-items: center; justify-content: center; padding: 16px; }
.cb-modal[hidden] { display: none; }
.cb-modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.55); backdrop-filter: blur(3px); }
.cb-modal__box { position: relative; z-index: 1; background: #fff; border-radius: 16px; padding: 32px 28px; max-width: 420px; width: 100%; box-shadow: 0 20px 60px rgba(0,0,0,.25); max-height: 90vh; overflow-y: auto; }
.cb-modal__close { position: absolute; top: 14px; right: 16px; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #9ca3af; line-height: 1; padding: 4px 8px; }
.cb-modal__close:hover { color: #374151; }
.cb-modal__icon { font-size: 2rem; text-align: center; margin-bottom: 10px; }
.cb-modal__title { font-size: 1.35rem; font-weight: 800; text-align: center; color: var(--primary); margin-bottom: 6px; }
.cb-modal__sub { text-align: center; color: var(--text-light); font-size: .9rem; margin-bottom: 22px; }
.cb-form__group { margin-bottom: 14px; }
.cb-form__label { display: block; font-size: .8125rem; font-weight: 600; color: #374151; margin-bottom: 5px; }
.cb-form__input { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: .9375rem; font-family: inherit; transition: border-color .18s; background: #fff; }
.cb-form__input:focus { outline: none; border-color: var(--primary); }
.cb-form__input.error { border-color: #ef4444; }
.cb-form__error { font-size: .8rem; color: #ef4444; margin-top: 4px; min-height: 18px; }
.cb-form__submit { margin-top: 6px; font-size: 1rem; padding: 15px; }
.cb-form__agree { font-size: .75rem; color: #9ca3af; text-align: center; margin-top: 10px; line-height: 1.5; }
.cb-form__agree a { color: #6b7280; text-decoration: underline; }
.cb-success { text-align: center; padding: 12px 0; }
.cb-success__icon { font-size: 2.5rem; margin-bottom: 12px; }
.cb-success__title { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.cb-success__text { color: var(--text-light); font-size: .9375rem; line-height: 1.6; }

/* === FLOATING CALL BUTTON === */
.float-call {
  position: fixed; bottom: 24px; right: 24px; z-index: 990;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--success); color: #fff; border: none;
  font-size: 1.5rem; cursor: pointer; box-shadow: 0 4px 16px rgba(22,163,74,.45);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; animation: pulse-call 2.5s infinite;
}
.float-call:hover { background: #15803d; transform: scale(1.05); }
@keyframes pulse-call {
  0%,100% { box-shadow: 0 4px 16px rgba(22,163,74,.45); }
  50% { box-shadow: 0 4px 28px rgba(22,163,74,.75), 0 0 0 8px rgba(22,163,74,.12); }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero .container { grid-template-columns: 1fr; }
  .hero__card { display: none; }
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}
@media (max-width: 768px) {
  .section { padding: 44px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .header__nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-dark); padding: 16px; flex-direction: column; }
  .header__nav.open { display: flex; }
  .header__menu-btn { display: flex; }
  .header__top { display: none; }
  .trust-bar .container { gap: 24px; justify-content: flex-start; }
  .hero { padding: 52px 0; }
  .hero__actions { flex-direction: column; }
  .district-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__main { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 6px; text-align: center; }
  .cta-block .cta-actions { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .district-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar .container { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero__title { font-size: 1.7rem; }
  .grid-4 { grid-template-columns: 1fr; }
}
