:root {
  --ink: #18211f;
  --muted: #5c6964;
  --line: #dfe7e1;
  --paper: #f7faf5;
  --white: #ffffff;
  --green: #237a52;
  --green-dark: #0e3c32;
  --gold: #c98c2f;
  --blue: #247fa4;
  --blue-dark: #14506f;
  --brand-dark: #0e2f31;
  --brand-soft: #edf6f5;
}

* { box-sizing: border-box; }

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, "Helvetica Neue", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(247, 250, 245, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  letter-spacing: 0;
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
  line-height: 1.1;
}

.brand-name {
  font-size: 19px;
  font-weight: 900;
}

.brand-descriptor {
  max-width: 330px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--blue-dark));
  border-radius: 8px;
  font-size: 13px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 15px;
  scrollbar-width: none;
}

.nav::-webkit-scrollbar {
  display: none;
}

.nav a:hover,
.phone:hover,
.messenger:hover {
  color: var(--green);
}

.phone {
  font-weight: 800;
}

.messenger-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.messenger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 34px;
  min-height: 34px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.messenger-icon {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.header-messengers .messenger {
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  padding: 0;
  background: transparent;
  border: 0;
}

.header-messengers .messenger:hover {
  transform: translateY(-1px);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--white);
  background: var(--green);
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.city-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  color: var(--green-dark);
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.city-trigger::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.city-trigger:hover {
  color: var(--green);
}

.city-modal {
  width: min(680px, calc(100vw - 32px));
  max-height: min(760px, calc(100dvh - 32px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(9, 24, 18, 0.28);
  overflow: auto;
  overscroll-behavior: contain;
}

.city-modal::backdrop {
  background: rgba(12, 25, 20, 0.58);
}

.city-modal-inner {
  padding: 28px;
  background: var(--paper);
}

.lead-modal {
  width: min(620px, calc(100vw - 32px));
  max-height: min(680px, calc(100dvh - 32px));
}

.quick-lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  font-size: 15px;
}

.quick-lead-form .modal-head {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}

.lead-modal-copy {
  margin: 10px 0 0;
  max-width: 420px;
  font-size: 16px;
  line-height: 1.45;
  color: var(--muted);
}

.quick-lead-form label:nth-of-type(3),
.quick-lead-form label:nth-of-type(4),
.quick-lead-form .file-field,
.quick-lead-form .button {
  grid-column: 1 / -1;
}

.quick-lead-form label {
  gap: 5px;
}

.quick-lead-form input,
.quick-lead-form textarea {
  min-height: 46px;
  padding: 10px 12px;
  font-size: 16px;
  line-height: 1.2;
}

.quick-lead-form textarea {
  min-height: 84px;
}

.quick-lead-form .file-button {
  min-height: 40px;
  padding: 9px 12px;
}

.quick-lead-form .button {
  width: 100%;
  min-height: 46px;
  padding: 11px 18px;
}

.modal-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.modal-head h2 {
  font-size: 34px;
}

.lead-modal .modal-head h2 {
  font-size: 30px;
  line-height: 1.08;
}

.modal-close {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.city-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  max-height: min(520px, 58vh);
  overflow: auto;
  padding-right: 4px;
}

.city-list button {
  min-height: 42px;
  padding: 8px;
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.city-list button:hover {
  border-color: var(--green);
}

.city-modal-more {
  grid-column: 1 / -1;
  color: var(--white) !important;
  background: var(--green) !important;
  border-color: var(--green) !important;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 58% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 24, 18, 0.82) 0%, rgba(10, 24, 18, 0.54) 45%, rgba(10, 24, 18, 0.12) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 72px clamp(18px, 5vw, 72px) 48px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 790px;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.18;
}

.lead {
  max-width: 700px;
  margin: 24px 0 0;
  font-size: 20px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.primary {
  color: var(--white);
  background: var(--green);
}

.secondary {
  color: var(--white);
  border-color: rgba(255,255,255,0.58);
  background: rgba(255,255,255,0.12);
}

.section > .actions .secondary {
  color: var(--green-dark);
  border-color: rgba(35, 122, 82, 0.32);
  background: var(--white);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 46px 0 0;
}

.stats div {
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 8px;
  background: rgba(255,255,255,0.12);
}

.stats dt {
  font-size: 28px;
  font-weight: 800;
  white-space: nowrap;
}

.stats dd {
  margin: 4px 0 0;
  color: rgba(255,255,255,0.82);
}

.section {
  padding: 86px clamp(18px, 5vw, 72px);
}

.section-head {
  max-width: 860px;
  margin-bottom: 34px;
}

.benefit-grid,
.cards,
.use-grid {
  display: grid;
  gap: 16px;
}

.benefit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefit-grid article,
.service-card,
.use-grid article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.benefit-grid span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--blue);
  font-weight: 800;
}

.split,
.quiz {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 42px;
  align-items: start;
  background: var(--white);
}

.cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card a {
  display: inline-block;
  margin-top: 12px;
  color: var(--green);
  font-weight: 800;
}

.price {
  background: #eef5ef;
}

.price-table {
  display: grid;
  gap: 10px;
}

.price-table > div {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: 18px;
  align-items: center;
  min-height: 68px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.price-table b {
  color: var(--green-dark);
  font-size: 20px;
  white-space: nowrap;
}

.note {
  color: var(--muted);
  font-size: 14px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 170px;
  padding: 24px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 8px;
}

.steps strong,
.steps span {
  display: block;
}

.steps strong {
  margin-bottom: 14px;
  font-size: 24px;
}

.steps span {
  color: rgba(255,255,255,0.78);
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.work-card {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  background: #101815;
  border-radius: 8px;
}

.work-card.featured {
  grid-row: span 2;
  min-height: 576px;
}

.work-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.work-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 4px;
  padding: 44px 18px 18px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(8, 16, 12, 0.88), rgba(8, 16, 12, 0));
}

.work-card strong,
.work-card span {
  display: block;
}

.work-card strong {
  font-size: 18px;
}

.work-card span {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
}

.use-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.city-section {
  background: #eef5ef;
}

.district-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 30px;
}

.district-grid a {
  display: grid;
  min-height: 46px;
  place-items: center;
  padding: 8px;
  color: var(--green-dark);
  font-weight: 900;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.district-grid a:hover,
.district-grid a:focus-visible {
  color: var(--green);
  border-color: rgba(35, 122, 82, 0.32);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

.city-groups {
  display: grid;
  gap: 28px;
}

.city-extra {
  display: grid;
  gap: 28px;
}

.city-group h3 {
  margin-bottom: 14px;
}

.city-more {
  width: fit-content;
  color: var(--white);
  background: var(--green);
}

.city-actions,
.city-section-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.city-section-actions {
  margin-top: 22px;
}

.city-actions .secondary,
.city-section-actions .secondary,
.section-actions .secondary {
  color: var(--green-dark);
  border-color: rgba(35, 122, 82, 0.22);
  background: rgba(255,255,255,0.42);
}

.city-actions .secondary:hover,
.city-section-actions .secondary:hover,
.section-actions .secondary:hover {
  color: var(--green);
  border-color: rgba(35, 122, 82, 0.38);
  background: rgba(255,255,255,0.72);
}

.softglass-proof {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(14, 47, 49, 0.96), rgba(20, 80, 111, 0.9)),
    var(--brand-dark);
}

.softglass-proof .eyebrow,
.softglass-proof h2,
.softglass-proof .section-head p {
  color: inherit;
}

.softglass-proof .section-head p {
  color: rgba(255,255,255,0.76);
}

.reviews-section {
  background: var(--white);
}

.proof-grid,
.review-grid,
.video-grid {
  display: grid;
  gap: 16px;
}

.proof-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-grid article,
.review-grid article,
.video-grid article {
  padding: 22px;
  background: #f7faf7;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.proof-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 28px;
  line-height: 1;
}

.softglass-proof .proof-grid article {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.16);
}

.softglass-proof .proof-grid strong {
  color: #ffffff;
}

.softglass-proof .proof-grid span {
  color: rgba(255,255,255,0.74);
}

.proof-grid span,
.review-grid p,
.video-grid p {
  color: var(--muted);
}

.rating-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, auto)) 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
  padding: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-dark), var(--blue-dark));
  border-radius: 8px;
}

.rating-card div {
  display: grid;
  gap: 2px;
}

.rating-card strong {
  color: var(--gold);
  font-size: 28px;
  line-height: 1;
}

.rating-card span {
  color: rgba(255,255,255,0.76);
  font-size: 13px;
}

.rating-card .button {
  justify-self: end;
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
}

.stars {
  color: #f3c62f;
  letter-spacing: 0;
}

.review-grid p {
  margin: 0;
}

.review-grid strong {
  color: var(--ink);
}

.video-section,
.partner-section {
  background: var(--brand-soft);
}

.video-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  margin: -22px -22px 16px;
  aspect-ratio: 16 / 9;
  background: var(--brand-dark);
  border-radius: 8px 8px 0 0;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
}

.video-thumb span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  color: var(--white);
  font-weight: 900;
  background: rgba(14, 47, 49, 0.82);
  border-radius: 8px;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.partner-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 36px;
  align-items: start;
}

.partner-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.partner-points span {
  padding: 10px 14px;
  color: var(--brand-dark);
  font-weight: 900;
  background: var(--white);
  border: 1px solid rgba(36, 127, 164, 0.18);
  border-radius: 999px;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.city-grid a {
  display: grid;
  min-height: 42px;
  place-items: center;
  padding: 8px;
  color: var(--green-dark);
  font-weight: 800;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.city-grid a:hover {
  border-color: var(--green);
}

.seo-text {
  background: var(--white);
}

.seo-text p {
  max-width: 980px;
  font-size: 18px;
}

.cities-index {
  background: #eef5ef;
}

.faq details {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-size: 21px;
  font-weight: 800;
}

.faq details p {
  max-width: 860px;
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  background: #eef5ef;
  border: 1px solid var(--line);
  border-radius: 8px;
}

fieldset {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0 0 2px;
  border: 0;
}

legend {
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 800;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.choice-grid label {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #ccd8d0;
  border-radius: 8px;
}

.choice-grid input {
  width: auto;
  accent-color: var(--green);
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid #ccd8d0;
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

.file-field {
  display: grid;
  gap: 8px;
}

.file-button {
  position: relative;
  width: fit-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  color: var(--green-dark);
  font-weight: 900;
  background: var(--white);
  border: 1px dashed rgba(35, 122, 82, 0.34);
  border-radius: 8px;
  cursor: pointer;
}

.file-button:hover {
  color: var(--green);
  border-color: rgba(35, 122, 82, 0.58);
  background: rgba(255, 255, 255, 0.72);
}

.file-button input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.file-hint {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: clamp(28px, 7vw, 120px);
  padding: 44px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--brand-dark);
}

.footer-brand {
  display: grid;
  gap: 18px;
  max-width: 820px;
}

.footer-brand strong {
  font-size: 24px;
}

.footer p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255,255,255,0.72);
}

.footer-badges,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-badges a,
.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  font-weight: 800;
}

.footer-badges a:hover,
.footer-links a:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.34);
  background: rgba(255,255,255,0.1);
}

address {
  display: grid;
  gap: 8px;
  font-style: normal;
  text-align: right;
}

.footer-contacts {
  gap: 14px;
}

.footer-contacts > a {
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}

.footer-messenger-block,
.footer-proof-block {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,0.72);
}

.footer-messengers {
  justify-content: end;
}

.footer-messengers .messenger {
  color: var(--white);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
}

.footer-messengers .messenger-icon {
  width: 22px;
  height: 22px;
  flex-basis: 22px;
}

.footer-messengers .messenger:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.46);
  background: rgba(255,255,255,0.14);
}

.mobile-cta {
  display: none;
}

@media (max-width: 960px) {
  .topbar {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .benefit-grid,
  .proof-grid,
  .review-grid,
  .video-grid,
  .steps,
  .work-gallery,
  .city-grid,
  .district-grid,
  .city-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rating-card,
  .partner-section {
    grid-template-columns: 1fr;
  }

  .rating-card .button {
    justify-self: start;
  }

  .work-card.featured {
    grid-row: span 1;
    min-height: 360px;
  }

  .split,
  .quiz {
    grid-template-columns: 1fr;
  }

  .price-table > div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 78px;
  }

  .topbar {
    min-height: auto;
    transition: padding 0.2s ease, box-shadow 0.2s ease;
  }

  .brand-descriptor {
    max-width: 220px;
    font-size: 11px;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .phone {
    font-size: 16px;
    text-align: right;
  }

  .header-messengers {
    gap: 6px;
  }

  .header-messengers .messenger {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
  }

  .proof-grid,
  .review-grid,
  .video-grid,
  .rating-card {
    grid-template-columns: 1fr;
  }

  .proof-grid article,
  .review-grid article,
  .video-grid article {
    padding: 18px;
  }

  .video-thumb {
    margin: -18px -18px 14px;
  }

  .partner-points span {
    width: 100%;
    border-radius: 8px;
  }

  .menu-toggle {
    display: none;
  }

  body.is-compact-header .topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding: 8px 12px;
    box-shadow: 0 10px 28px rgba(24, 33, 31, 0.14);
  }

  body.is-compact-header .brand,
  body.is-compact-header .city-trigger {
    display: none;
  }

  body.is-compact-header .header-actions {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 10px;
  }

  body.is-compact-header .phone {
    text-align: left;
    font-size: 15px;
  }

  body.is-compact-header .header-messengers .messenger {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
  }

  body.is-compact-header .menu-toggle {
    display: inline-flex;
  }

  body.is-compact-header .nav {
    display: none;
    order: 2;
    width: 100%;
    padding: 10px 0 2px;
    overflow-x: auto;
  }

  body.is-compact-header.is-menu-open .nav {
    display: flex;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    padding-top: 38px;
    padding-bottom: 34px;
  }

  h1 {
    font-size: 34px;
    line-height: 1.02;
  }

  .lead {
    margin-top: 18px;
    font-size: 16px;
  }

  .actions {
    margin-top: 22px;
  }

  .button {
    width: 100%;
  }

  .file-button {
    width: 100%;
  }

  .stats,
  .benefit-grid,
  .cards,
  .steps,
  .use-grid,
  .work-gallery,
  .city-grid,
  .district-grid,
  .city-list,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .modal-head h2 {
    font-size: 28px;
  }

  .city-modal-inner {
    padding: 20px;
  }

  .lead-modal {
    width: calc(100vw - 24px);
    max-height: calc(100dvh - 72px);
  }

  .lead-modal .city-modal-inner {
    padding: 14px;
  }

  .lead-modal .modal-head {
    gap: 10px;
    margin-bottom: 0;
  }

  .lead-modal .modal-head h2 {
    font-size: 22px;
    line-height: 1.08;
  }

  .lead-modal-copy {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.42;
  }

  .quick-lead-form {
    grid-template-columns: 1fr;
    gap: 10px;
    font-size: 14px;
  }

  .quick-lead-form input,
  .quick-lead-form textarea {
    min-height: 42px;
    padding: 9px 11px;
    font-size: 15px;
  }

  .quick-lead-form textarea {
    min-height: 68px;
  }

  .quick-lead-form .file-button {
    min-height: 38px;
    padding: 8px 11px;
    font-size: 14px;
  }

  .quick-lead-form .button {
    min-height: 44px;
    padding: 10px 16px;
  }

  body.is-lead-open .mobile-cta {
    display: none;
  }

  .work-card,
  .work-card.featured {
    min-height: 320px;
  }

  .stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 24px;
  }

  .stats div {
    padding: 10px;
  }

  .stats dt {
    font-size: 18px;
  }

  .stats dd {
    font-size: 12px;
    line-height: 1.25;
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  address {
    text-align: left;
  }

  .footer-brand {
    max-width: none;
  }

  .footer-badges,
  .footer-links {
    display: none;
  }

  .footer-contacts > a {
    font-size: 22px;
  }

  .footer-messengers {
    justify-content: start;
  }

  .mobile-cta {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    background: rgba(14, 47, 49, 0.94);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 18px;
    box-shadow: 0 16px 45px rgba(0,0,0,0.28);
    backdrop-filter: blur(12px);
  }

  .mobile-cta a {
    display: grid;
    min-height: 42px;
    place-items: center;
    padding: 8px 6px;
    color: var(--white);
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 900;
    text-align: center;
  }

  .mobile-cta a:nth-child(2) {
    background: var(--green);
  }

  .mobile-cta a:nth-child(3) {
    background: var(--blue-dark);
  }
}
