:root {
  --green: #1fb321;
  --green-dark: #156f4b;
  --ink: #222;
  --muted: #666;
  --line: #dfe8df;
  --soft: #f4f8f2;
  --white: #fff;
  --shadow: 0 18px 50px rgba(21, 111, 75, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Geologica", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
}
img, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.container { width: min(100% - 40px, 1240px); margin: 0 auto; }
.section { padding: 90px 0; }
.muted { background: var(--soft); }
.section-dark { color: #fff; background: #13251d; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
}
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(38px, 5vw, 72px); line-height: 1.02; max-width: 760px; margin-bottom: 22px; }
.hero-accent {
  display: inline-block;
  margin-top: .12em;
  color: #fff;
  background: rgba(21,111,75,.86);
  border-radius: 12px;
  padding: .08em .24em .12em;
  font-size: .82em;
  box-shadow: 0 14px 34px rgba(21,111,75,.28);
}
h2 { font-size: clamp(30px, 3.2vw, 48px); line-height: 1.08; margin-bottom: 18px; }
h3 { font-size: 20px; margin-bottom: 10px; }
p { line-height: 1.6; }
.section-head { max-width: 790px; margin-bottom: 34px; }
.section-head p, .section-copy p { color: var(--muted); }
.section-dark p { color: rgba(255,255,255,.82); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  min-height: 86px;
  padding: 10px max(20px, calc((100vw - 1240px) / 2)) 12px;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(31,179,33,.14);
  backdrop-filter: blur(14px);
}
.header-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 16px;
}
.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; }
.logo-img {
  display: block;
  width: auto;
  object-fit: contain;
}
.logo-img-header {
  height: 42px;
}
.logo-img-footer {
  height: 46px;
}
.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
}
.nav {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  color: #334238;
  font-size: 15px;
}
.nav a:hover, .footer-nav a:hover { color: var(--green-dark); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-socials {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
}
.social-icon,
.socials--icons a,
.footer-socials a {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  overflow: hidden;
  transition: transform .2s, opacity .2s;
}
.social-icon:hover,
.socials--icons a:hover,
.footer-socials a:hover {
  transform: translateY(-1px);
  opacity: .9;
}
.social-icon img,
.socials--icons img,
.footer-socials img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.phone {
  font-weight: 700;
  white-space: nowrap;
  transition: color .2s;
}
.phone:hover,
.phone:focus-visible,
.phone:active {
  color: var(--green);
}
.menu-toggle { display: none; }
.icon-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  place-items: center;
  cursor: pointer;
}
.menu-toggle span { width: 18px; height: 2px; background: var(--ink); display: block; margin: 3px auto; }

.button {
  border: 0;
  border-radius: 999px;
  padding: 15px 23px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: transform .2s, background .2s, box-shadow .2s;
  box-shadow: 0 12px 24px rgba(31,179,33,.25);
}
.button:hover { background: var(--green-dark); transform: translateY(-2px); }
.button-small { padding: 11px 16px; font-size: 14px; }
.button-ghost { background: rgba(255,255,255,.14); box-shadow: inset 0 0 0 1px rgba(255,255,255,.45); }
.button-soft { background: #fff; color: var(--green-dark); box-shadow: inset 0 0 0 1px var(--line); }

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - 120px));
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 44px 0 50px;
}
.hero-media, .hero-image, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; }
.hero-overlay { background: linear-gradient(90deg, rgba(7,17,12,.86) 0%, rgba(7,17,12,.64) 48%, rgba(7,17,12,.28) 100%); }
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 430px);
  gap: 54px;
  align-items: center;
}
.hero-copy .lead {
  font-size: 24px;
  line-height: 1.35;
  margin-bottom: 10px;
}
.hero-note {
  max-width: 720px;
  color: #fff;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.14;
  font-weight: 800;
  margin: 0;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0; }
.hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin: 0; max-width: 760px; }
.hero-stats div { border-top: 1px solid rgba(255,255,255,.28); padding-top: 14px; }
.hero-stats dt { font-size: 27px; font-weight: 800; }
.hero-stats dd { margin: 4px 0 0; color: rgba(255,255,255,.75); }

.lead-form, .horizontal-form {
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.lead-form h2, .lead-form h3 { font-size: 25px; margin-bottom: 8px; }
.lead-form p { color: var(--muted); margin-bottom: 18px; }
.lead-form label, .horizontal-form label { display: grid; gap: 8px; color: #35433a; font-size: 14px; }
.lead-form input, .lead-form select, .horizontal-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 52px;
  padding: 0 15px;
  outline: none;
  background: #fff;
}
.lead-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #16734d 50%), linear-gradient(135deg, #16734d 50%, transparent 50%);
  background-position: calc(100% - 18px) 22px, calc(100% - 12px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 34px;
}
.lead-form .button, .horizontal-form .button { min-height: 52px; }
.lead-form > .button { width: 100%; }
.lead-form input:focus, .lead-form select:focus, .horizontal-form input:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(31,179,33,.1); }
.checkbox { grid-template-columns: auto 1fr; align-items: start; margin: 13px 0; }
.checkbox input { width: 18px; margin-top: 2px; }
.checkbox span { font-size: 12px; line-height: 1.4; color: var(--muted); }
.form-status { display: block; min-height: 20px; margin-top: 12px; color: var(--green-dark); font-weight: 700; }

.hero-form {
  width: min(100%, 430px);
  padding: 30px 26px 28px;
  border-radius: 10px;
}
.hero-form h2 {
  font-size: 27px;
  line-height: 1.12;
  margin-bottom: 12px;
}
.hero-form p {
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 22px;
}
.hero-form label:not(.checkbox) {
  gap: 10px;
  font-size: 15px;
  margin-bottom: 24px;
}
.hero-form input[name="phone"] {
  min-height: 52px;
  border-radius: 8px;
}
.hero-form .button {
  min-height: 54px;
  font-size: 16px;
  margin-bottom: 28px;
}
.hero-form .checkbox {
  width: 100%;
  margin: 0;
  align-items: flex-start;
  gap: 10px;
}
.hero-form .checkbox input {
  width: 18px;
  height: 18px;
  margin: 0;
}
.hero-form .checkbox span {
  font-size: 12px;
  line-height: 1.35;
}

.quick-strip { padding: 30px 0; border-bottom: 1px solid var(--line); }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.strip-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  grid-template-rows: auto auto;
  gap: 4px 14px;
  align-items: start;
}
.strip-icon {
  grid-row: 1 / 3;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 22px;
}
.strip-item p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.45; }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.project-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.project-card-image {
  position: relative;
}
.project-card img { aspect-ratio: 1 / 1; width: 100%; object-fit: cover; }
.project-card > div:not(.project-card-image) { padding: 18px; }
.project-card p { color: var(--muted); font-size: 14px; min-height: 44px; }
.discount-badge {
  position: absolute;
  left: 0;
  top: 16px;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  min-width: 72px;
  min-height: 52px;
  padding: 10px 12px;
  background: var(--green);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}
.project-price {
  display: grid;
  gap: 4px;
  margin: 8px 0 18px;
}
.modal-price {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin: 6px 0 18px;
}
.project-price__old,
.modal-price__old {
  color: #333;
  font-size: 15px;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  white-space: nowrap;
}
.project-price__new,
.modal-price__new {
  color: var(--green-dark);
  font-size: 18px;
  line-height: 1.15;
  white-space: nowrap;
}
.project-card .button { width: 100%; padding: 12px 16px; margin-top: 8px; }
.project-card.hidden { display: none; }
.center-actions { display: flex; justify-content: center; margin-top: 28px; }

.horizontal-form {
  margin-top: 40px;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(420px, .9fr);
  gap: 24px;
  align-items: end;
}
.horizontal-form h3 { font-size: clamp(22px, 2.1vw, 30px); margin: 0; }
.horizontal-form > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: end;
}
.horizontal-form .checkbox { grid-column: 1 / -1; margin: 0 0 -2px; }
.horizontal-form .form-status { grid-column: 1 / -1; }
.accent-form {
  border: 1px solid rgba(31,179,33,.28);
  background: linear-gradient(135deg, #ffffff 0%, #f3fbf1 100%);
  box-shadow: 0 22px 54px rgba(31,179,33,.18);
}
.catalog-form {
  position: relative;
  min-height: 360px;
  margin-top: 46px;
  padding: 44px 54px;
  display: grid;
  grid-template-columns: minmax(420px, .48fr) minmax(540px, .52fr);
  gap: 24px;
  align-items: center;
  overflow: visible;
  border-radius: 28px;
  background: #303133;
  color: #fff;
  box-shadow: 0 32px 70px rgba(21,111,75,.14);
}
.catalog-form h3 {
  max-width: 560px;
  margin-bottom: 34px;
  color: #fff;
  font-size: clamp(27px, 2.5vw, 37px);
  line-height: 1.02;
}
.catalog-controls {
  display: grid;
  grid-template-columns: 270px 310px;
  gap: 10px;
  align-items: end;
  margin-bottom: 28px;
}
.catalog-controls label {
  display: grid;
  gap: 14px;
  color: #fff;
  font-size: 18px;
}
.catalog-controls input {
  min-height: 64px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 18px;
  background: transparent;
  color: #fff;
  font-size: 18px;
  padding-left: 28px;
}
.catalog-controls input::placeholder { color: rgba(255,255,255,.7); }
.catalog-controls .button {
  min-height: 64px;
  border-radius: 18px;
  font-size: 18px;
}
.catalog-form .checkbox {
  max-width: 610px;
  margin-top: 24px;
  align-items: start;
  gap: 10px;
}
.catalog-form .checkbox input {
  width: 19px;
  height: 19px;
  margin-top: 1px;
  accent-color: var(--green);
}
.catalog-form .checkbox span {
  color: rgba(255,255,255,.88);
  font-size: 12px;
  line-height: 1.35;
}
.catalog-form .checkbox a {
  color: var(--green);
  text-decoration: underline;
}
.catalog-form .form-status {
  color: #fff;
  margin-top: 10px;
}
.catalog-preview {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 320px;
  pointer-events: none;
}
.catalog-preview-img {
  position: absolute;
  right: -8px;
  top: -58px;
  width: min(92%, 600px);
  height: auto;
  display: block;
}
.viewing-form {
  position: relative;
  min-height: 360px;
  margin-top: 46px;
  padding: 44px 54px;
  display: grid;
  grid-template-columns: minmax(420px, .48fr) minmax(520px, .52fr);
  gap: 24px;
  align-items: center;
  overflow: hidden;
  border-radius: 28px;
  background: #303133;
  color: #fff;
  box-shadow: 0 32px 70px rgba(21,111,75,.14);
}
.viewing-form h3 {
  max-width: 560px;
  margin-bottom: 34px;
  color: #fff;
  font-size: clamp(24px, 2.25vw, 34px);
  line-height: 1.03;
}
.viewing-controls {
  display: grid;
  grid-template-columns: 270px 310px;
  gap: 10px;
  align-items: end;
  margin-bottom: 28px;
}
.viewing-controls label {
  display: grid;
  gap: 14px;
  color: #fff;
  font-size: 18px;
}
.viewing-controls input {
  min-height: 64px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 18px;
  background: transparent;
  color: #fff;
  font-size: 18px;
  padding-left: 28px;
}
.viewing-controls input::placeholder { color: rgba(255,255,255,.7); }
.viewing-controls .button {
  min-height: 64px;
  border-radius: 18px;
  font-size: 18px;
}
.viewing-form .checkbox {
  max-width: 610px;
  margin-top: 24px;
  align-items: start;
  gap: 10px;
}
.viewing-form .checkbox input {
  width: 19px;
  height: 19px;
  margin-top: 1px;
  accent-color: var(--green);
}
.viewing-form .checkbox span {
  color: rgba(255,255,255,.88);
  font-size: 12px;
  line-height: 1.35;
}
.viewing-form .checkbox a {
  color: var(--green);
  text-decoration: underline;
}
.viewing-form .form-status {
  color: #fff;
  margin-top: 10px;
}
.viewing-preview {
  position: relative;
  min-height: 310px;
}
.viewing-preview img {
  position: absolute;
  right: -10px;
  bottom: -18px;
  width: min(92%, 540px);
  max-width: none;
  filter: drop-shadow(0 28px 42px rgba(0,0,0,.28));
}
.mortgage-form {
  position: relative;
  min-height: 360px;
  padding: 44px 54px;
  display: grid;
  grid-template-columns: minmax(420px, .48fr) minmax(520px, .52fr);
  gap: 24px;
  align-items: center;
  overflow: hidden;
  border-radius: 28px;
  background: #303233;
  box-shadow: 0 28px 70px rgba(18,47,31,.18);
}
.mortgage-form .eyebrow {
  color: rgba(255,255,255,.78);
}
.mortgage-form h2 {
  max-width: 620px;
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(27px, 2.5vw, 37px);
  line-height: 1.05;
}
.mortgage-form p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255,255,255,.9);
  font-weight: 700;
}
.mortgage-controls {
  display: grid;
  grid-template-columns: 270px 310px;
  gap: 10px;
  align-items: end;
  margin-bottom: 28px;
}
.mortgage-controls label {
  display: grid;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.mortgage-controls input {
  width: 100%;
  min-height: 64px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 14px;
  padding: 0 28px;
  background: rgba(255,255,255,.04);
  color: #fff;
  outline: none;
}
.mortgage-controls input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(31,179,33,.18);
}
.mortgage-controls .button {
  min-height: 64px;
  border-radius: 14px;
}
.mortgage-form .checkbox {
  max-width: 610px;
  margin-top: 24px;
  align-items: start;
  gap: 10px;
}
.mortgage-form .checkbox input {
  width: 19px;
  height: 19px;
  margin-top: 1px;
  accent-color: var(--green);
}
.mortgage-form .checkbox span {
  color: rgba(255,255,255,.88);
  font-size: 12px;
  line-height: 1.35;
}
.mortgage-form .form-status {
  color: #fff;
  margin-top: 10px;
}
.mortgage-preview {
  position: relative;
  min-height: 320px;
}
.mortgage-preview img {
  position: absolute;
  right: -14px;
  bottom: -48px;
  width: min(94%, 560px);
  max-width: none;
  filter: drop-shadow(0 28px 42px rgba(0,0,0,.28));
}

.gas-orbit {
  position: relative;
  min-height: 620px;
  margin-top: 34px;
  background: radial-gradient(ellipse at center, rgba(218,238,229,.9) 0%, rgba(239,248,243,.72) 42%, rgba(255,255,255,0) 74%);
}
#gas-benefits .section-head {
  max-width: 760px;
}
#gas-benefits .section-head h2 {
  max-width: 100%;
  white-space: normal;
}
.gas-core-img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(48vw, 600px);
  max-width: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}
.gas-point {
  position: absolute;
  z-index: 2;
  width: 360px;
  background: #fff;
  border: 1px solid rgba(42,62,52,.24);
  border-radius: 22px;
  padding: 22px 24px;
  box-shadow: 0 18px 42px rgba(21,111,75,.07);
}
.gas-point h3 {
  margin-bottom: 8px;
  color: #3b3b3d;
  font-size: 20px;
  line-height: 1.18;
}
.gas-point p {
  color: #747474;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.48;
  margin: 0;
}
.p1 { left: 40px; top: 8px; }
.p2 { left: 0; top: 210px; }
.p3 { left: 40px; bottom: 24px; }
.p4 { right: 40px; top: 8px; }
.p5 { right: 0; top: 210px; }
.p6 { right: 40px; bottom: 24px; }

.slider-shell, .offer-slider { display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center; }
.ready-track, .offer-track, .review-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 60px) / 4);
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  padding-bottom: 8px;
}
.offer-track { grid-auto-columns: calc((100% - 60px) / 4); overflow: hidden; }
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-size: 30px;
  color: var(--green-dark);
}

#ready-houses .slider-shell,
#offers .offer-slider {
  position: relative;
  display: block;
}
#ready-houses .ready-track,
#offers .offer-track {
  width: 100%;
}
#ready-houses .slider-btn,
#offers .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}
#ready-houses [data-ready-prev],
#offers [data-slide-prev] {
  left: -70px;
}
#ready-houses [data-ready-next],
#offers [data-slide-next] {
  right: -70px;
}

.timeline { padding: 0; margin: 0; list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.timeline li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 14px;
  row-gap: 10px;
  align-items: center;
}
.timeline span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--green);
  border-radius: 50%;
  font-weight: 800;
  color: #fff;
}
.timeline h3 { margin: 0; }
.timeline p { grid-column: 1 / -1; margin: 0; color: var(--muted); }
.about-grid, .contacts-grid, .final-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.about-grid { grid-template-columns: .82fr 1.18fr; }
.contacts-grid {
  grid-template-columns: 1.05fr .95fr;
  gap: 12px;
  align-items: stretch;
}
.icon-list { padding: 0; list-style: none; display: grid; gap: 12px; margin: 22px 0 0; }
.icon-list li { position: relative; padding-left: 32px; color: #34423a; }
.icon-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
}
.video-embed iframe, .video-card iframe, .map-wrap iframe {
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: #dfe8df;
}
.video-embed iframe { aspect-ratio: 16 / 9; box-shadow: var(--shadow); }

#about {
  background: #fff;
}
.about-block {
  display: grid;
  gap: 34px;
}
.about-main {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(460px, .9fr);
  gap: 56px;
  align-items: center;
}
.about-copy h2 {
  font-size: clamp(52px, 5vw, 72px);
  line-height: .98;
  margin-bottom: 24px;
  color: #333335;
  white-space: normal;
}
.about-copy p {
  max-width: 650px;
  margin: 0 0 0;
  color: #273038;
  font-size: 20px;
  line-height: 1.38;
}
.about-copy p + p {
  margin-top: 2px;
}
.about-video {
  align-self: center;
}
#about .about-video iframe {
  width: 100%;
  min-height: 350px;
  border-radius: 8px;
  box-shadow: none;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
  margin: 0;
}
.about-stats div {
  min-width: 0;
}
.about-stats dt {
  margin: 0 0 12px;
  color: #111;
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 800;
  line-height: 1;
}
.about-stats dt span {
  color: var(--green);
}
.about-stats dd {
  margin: 0;
  color: #5c6466;
  font-size: 17px;
  line-height: 1.35;
}
.review-track { grid-auto-columns: calc((100% - 40px) / 3); }
.video-card {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.video-card iframe { aspect-ratio: 16 / 9; border-radius: 0; }
.video-card figcaption { padding: 14px; color: var(--muted); font-size: 14px; }
.offer-track article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.offer-track img { height: 210px; width: 100%; object-fit: cover; }
.offer-track h3, .offer-track p { margin-left: 20px; margin-right: 20px; }
.offer-track h3 { margin-top: 14px; }
.offer-track p { color: var(--muted); margin-bottom: 10px; }
.offer-track ul {
  flex: 1;
  margin: 0 20px 18px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.offer-track li + li {
  margin-top: 4px;
}
.offer-track li::marker {
  color: var(--green);
}
.offer-more {
  width: calc(100% - 40px);
  margin: 6px 20px 20px;
  min-height: 46px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.25;
  white-space: normal;
}
.final-cta { padding: 72px 0 84px; }

.contacts-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px 26px;
  box-shadow: var(--shadow);
}
.contacts-intro {
  max-width: 520px;
  color: var(--muted);
  margin-bottom: 36px;
}
.contacts-info {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 46px;
}
.contacts-info h3 {
  font-size: 24px;
  margin: 0 0 10px;
}
.contacts-info p {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 28px;
}
.contacts-info a { color: inherit; }
.socials { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.socials a {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: 9px;
}
.socials.socials--icons a {
  width: 30px;
  height: 30px;
  padding: 0;
  background: transparent;
  color: inherit;
  font-size: 0;
}
.map-wrap {
  background: #fff;
  padding: 16px;
}
.map-wrap iframe {
  min-height: 454px;
  height: 100%;
  border-radius: 0;
}
.site-footer { padding: 34px 0; background: #12251d; color: #fff; }
.footer-grid { display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center; }
.footer-nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 18px; color: rgba(255,255,255,.78); font-size: 14px; }
.footer-contacts {
  display: grid;
  gap: 10px;
  justify-items: end;
}
.footer-socials {
  display: flex;
  gap: 8px;
}
.footer-socials a {
  width: 30px;
  height: 30px;
  border-radius: 7px;
}

.thank-hero {
  text-align: center;
  padding: 90px 20px 52px;
}
.thank-hero h1 { margin: 0 auto 14px; }
.thank-hero p { color: var(--muted); font-size: 18px; margin-bottom: 24px; }
.success-icon {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  margin: 0 auto 28px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  font-size: 42px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(31,179,33,.28);
}
.trust-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.yandex-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px 26px;
  display: flex;
  align-items: center;
  gap: 34px;
  background: #fff;
}
.yandex-card > div { display: flex; align-items: center; gap: 14px; }
.trust-icon { color: var(--green); font-size: 28px; }
.stars { color: #f4ba22; letter-spacing: 2px; }
.rating-line b { color: #e32222; }
.socials-block { display: flex; align-items: center; gap: 16px; color: var(--muted); }
.thanks-adv-grid {
  display: grid;
  grid-template-columns: 1fr 330px 1fr;
  gap: 38px;
  align-items: center;
}
.thanks-adv-col { display: grid; gap: 24px; }
.thanks-adv-col article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 8px 16px;
  align-items: start;
}
.thanks-adv-col span {
  grid-row: 1 / 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--soft);
  color: var(--green-dark);
  font-weight: 800;
}
.thanks-adv-col p { color: var(--muted); margin: 0; }
.center-circle {
  position: relative;
  width: 330px;
  height: 330px;
}
.center-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow);
}
.center-circle::before {
  content: "";
  position: absolute;
  inset: -20px;
  border: 1px dashed var(--green);
  border-radius: 50%;
  opacity: .35;
}
.thank-video { max-width: 960px; margin: 0 auto 46px; }
.thanks-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.thanks-stats div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}
.thanks-stats h3 { color: var(--green-dark); }
.thanks-stats p { color: var(--muted); margin: 0; }

.thanks-page {
  overflow: hidden;
}
.thanks-hero-modern {
  position: relative;
  overflow: hidden;
  padding: 82px 0 72px;
  background:
    linear-gradient(90deg, rgba(17,19,21,.92) 0%, rgba(17,19,21,.7) 48%, rgba(17,19,21,.18) 100%),
    url("assets/thanks/thanks-hero-bg.jpg") center/cover no-repeat;
  color: #fff;
}
.thanks-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 650px) minmax(280px, 420px);
  gap: 60px;
  align-items: center;
}
.thanks-success-mark {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  background: linear-gradient(180deg, #55cd24 0%, #0c9447 100%);
  box-shadow: 0 18px 40px rgba(15,163,74,.35);
  color: #fff;
  font-size: 44px;
  font-weight: 900;
}
.thanks-hero-modern h1 {
  margin: 0 0 18px;
  font-size: clamp(46px, 7vw, 86px);
  line-height: .98;
  font-weight: 900;
}
.thanks-hero-modern p {
  max-width: 560px;
  margin: 0 0 28px;
  color: rgba(255,255,255,.82);
  font-size: 21px;
}
.thanks-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.thanks-hero-card {
  padding: 30px;
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.thanks-hero-card h2 {
  margin: 0 0 16px;
  font-size: 31px;
  line-height: 1.15;
  font-weight: 500;
}
.thanks-hero-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}
.thanks-trust-band {
  position: relative;
  z-index: 2;
  margin-top: -34px;
}
.thanks-trust-box {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 26px;
  align-items: center;
  padding: 26px 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}
.thanks-trust-item {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 800;
  font-size: 18px;
}
.thanks-shield {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 28px;
  font-weight: 800;
}
.thanks-bank-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(76px, 1fr));
  align-items: center;
  gap: 16px;
}
.thanks-bank-logos span {
  display: grid;
  place-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.thanks-bank-logos img {
  max-width: 118px;
  max-height: 34px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.thanks-section-title {
  margin: 0 0 36px;
  text-align: center;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 500;
  line-height: 1.08;
}
.thanks-section-title span {
  background: transparent;
  border-radius: 0;
  padding: 0;
}
.thanks-section-subtitle {
  max-width: 720px;
  margin: -20px auto 36px;
  text-align: center;
  color: #8a8f8f;
  font-size: 18px;
}
.thanks-advantages {
  padding-bottom: 36px;
}
.thanks-advantages-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(390px, 470px) minmax(280px, 1fr);
  grid-template-rows: repeat(3, minmax(104px, auto));
  align-items: center;
  gap: 28px 22px;
}
.thanks-adv-list {
  display: contents;
}
.thanks-adv-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: center;
  width: 360px;
  max-width: 100%;
  min-height: 118px;
  padding: 16px 18px;
  border-radius: 8px;
  background: linear-gradient(0deg, rgba(14,15,16,.035), rgba(14,15,16,.035)), #edf6ee;
  box-shadow: 0 18px 38px rgba(14,15,16,.13);
  position: relative;
  z-index: 2;
}
.thanks-advantages-layout > .thanks-adv-list:first-child .thanks-adv-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
}
.thanks-advantages-layout > .thanks-adv-list:first-child .thanks-adv-card:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
  justify-self: end;
}
.thanks-advantages-layout > .thanks-adv-list:first-child .thanks-adv-card:nth-child(3) {
  grid-column: 1;
  grid-row: 3;
  justify-self: end;
}
.thanks-advantages-layout > .thanks-adv-list:last-child .thanks-adv-card:nth-child(1) {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
}
.thanks-advantages-layout > .thanks-adv-list:last-child .thanks-adv-card:nth-child(2) {
  grid-column: 3;
  grid-row: 2;
  justify-self: start;
}
.thanks-advantages-layout > .thanks-adv-list:last-child .thanks-adv-card:nth-child(3) {
  grid-column: 3;
  grid-row: 3;
  justify-self: start;
}
.thanks-adv-card--right {
  grid-template-columns: 1fr 110px;
  text-align: right;
}
.thanks-adv-card img {
  width: 110px;
  height: 86px;
  object-fit: cover;
}
.thanks-adv-card h3 {
  margin: 0 0 7px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.15;
}
.thanks-adv-card h3 span {
  color: var(--green);
}
.thanks-adv-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
}
.thanks-center-photo {
  grid-column: 2;
  grid-row: 1 / 4;
  justify-self: center;
  width: min(100%, 500px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(17,19,21,.12);
}
.thanks-center-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thanks-main-video {
  background: #edf6ee;
}
.thanks-video-frame {
  max-width: 920px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #111;
}
.thanks-video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.thanks-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.thanks-review-card h3 {
  margin: 18px 0 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.22;
}

.mobile-bar { display: none; }
.promo-widget {
  position: fixed;
  right: 24px;
  bottom: 108px;
  z-index: 90;
}
.promo-widget-button {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(25, 111, 75, .14);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 16px 44px rgba(25, 111, 75, .18);
  cursor: pointer;
}
.promo-widget-button::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(25, 111, 75, .1);
  border-radius: 50%;
  pointer-events: none;
}
.promo-widget-button svg {
  width: 52px;
  height: 52px;
  padding: 13px;
  border-radius: 50%;
  background: #59d35f;
  fill: #fff;
}
.promo-popup[hidden] {
  display: none;
}
body.promo-popup-open {
  overflow: hidden;
}
.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 18px;
}
.promo-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 15, 10, .68);
}
.promo-popup-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) minmax(280px, .85fr);
  width: min(920px, 94vw);
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .32);
}
.promo-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.promo-popup-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.promo-popup-form {
  align-content: center;
  padding: 42px 34px 34px;
  border-radius: 0;
  box-shadow: none;
}
.promo-popup-form h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  margin-bottom: 12px;
}
.promo-popup-form p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.35;
}
.promo-popup-form .button {
  width: 100%;
  margin: 0 0 16px;
}
.promo-popup-form label:not(.checkbox) {
  margin-bottom: 12px;
}
.promo-popup-form .checkbox {
  margin: 0;
}
.promo-popup-form .form-status {
  min-height: 18px;
  margin-top: 8px;
}
.modal {
  border: 0;
  border-radius: 8px;
  width: min(90vw, 760px);
  height: fit-content;
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
.modal::backdrop { background: rgba(5,15,10,.65); }
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  cursor: pointer;
  font-size: 28px;
  z-index: 2;
}
.modal-content {
  padding: 14px 16px 12px;
  max-height: calc(100dvh - 32px);
  overflow: visible;
}
.project-modal-grid {
  display: grid;
  grid-template-columns: minmax(220px, 310px) 1fr;
  gap: 14px 18px;
  align-items: start;
}
.project-modal-grid > *,
.modal-media {
  min-width: 0;
}
.modal-media {
  position: relative;
}
.modal-main-img {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  cursor: zoom-in;
}
.project-modal-grid .eyebrow { margin-bottom: 8px; }
.project-modal-grid h2 {
  font-size: clamp(22px, 1.8vw, 27px);
  line-height: 1.05;
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}
.project-modal-grid p:not(.eyebrow) {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.38;
  margin-bottom: 10px;
  overflow-wrap: anywhere;
  font-weight: 400;
}
.modal-price {
  margin: 2px 0 14px;
}
.modal-price__old {
  font-size: 18px;
}
.modal-price__new {
  font-size: 24px;
  font-weight: 700;
}
.thumb-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 56px;
  gap: 7px;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  margin-top: 8px;
  padding-bottom: 6px;
  scrollbar-width: thin;
}
.thumb-row button {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.thumb-row img {
  aspect-ratio: 1 / 1;
  width: 56px;
  object-fit: cover;
  border-radius: 4px;
  border: 2px solid transparent;
}
.thumb-row button.active img { border-color: var(--green); }
.modal-table { width: 100%; border-collapse: collapse; margin: 10px 0 0; }
.modal-table td { border-bottom: 1px solid var(--line); padding: 7px 0; font-weight: 400; }
.modal-table td:last-child { overflow-wrap: anywhere; }
.modal-table strong { font-weight: 600; }
.modal-lead {
  grid-column: 1 / -1;
  margin-top: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
  align-items: end;
  padding: 18px 22px 16px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(25,91,62,.08);
}
.modal-lead h3 {
  grid-column: 1 / -1;
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 2px;
}
.modal-lead-description {
  grid-column: 1 / -1;
  margin: -4px 0 2px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}
.modal-lead .checkbox, .modal-lead .form-status { grid-column: 1 / -1; }
.modal-lead .checkbox {
  margin: 10px 0 0;
  align-items: center;
}
.modal-lead .checkbox input {
  width: 18px;
  height: 18px;
  margin: 0;
}
.modal-lead .button,
.modal-lead input[name="phone"] {
  min-height: 48px;
}
.modal-lead .button {
  padding: 12px 18px;
  font-size: 15px;
  white-space: nowrap;
}
.modal-lead .form-status {
  min-height: 0;
  margin-top: 0;
}
.modal-lead .checkbox span { font-size: 12px; }
.modal-lead--offer {
  grid-template-columns: minmax(210px, 1.2fr) minmax(160px, .75fr) minmax(220px, 1fr);
  align-items: end;
}
.modal-lead--offer .button,
.modal-lead--offer input[name="phone"],
.modal-lead--offer select {
  min-height: 48px;
}
.modal-lead--offer .button {
  width: 100%;
  padding-left: 14px;
  padding-right: 14px;
}

.image-zoom {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  border: 0;
  padding: 28px;
  margin: 0;
  background: transparent;
  overflow: hidden;
}
.image-zoom[open] {
  display: grid;
  place-items: center;
}
.image-zoom::backdrop {
  background: rgba(5,15,10,.82);
}
.image-zoom img {
  max-width: min(94vw, 1120px);
  max-height: 90dvh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,.42);
}
.image-zoom-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  z-index: 1;
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s, transform .6s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  .menu-toggle { display: block; }
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 76px;
    gap: 0;
  }
  .header-top {
    grid-column: 1 / -1;
    grid-row: 1;
    grid-template-columns: auto 1fr auto;
    padding-right: 58px;
  }
  .header-socials {
    display: none;
  }
  .menu-toggle {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    justify-self: end;
    z-index: 2;
  }
  .nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 78px;
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 18px;
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .header-actions { justify-self: end; }
  .header-actions .button { display: none; }
  .hero-grid, .about-grid, .contacts-grid, .final-grid { grid-template-columns: 1fr; }
  .about-main {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
  .projects-grid { grid-template-columns: repeat(3, 1fr); }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .gas-orbit {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding-top: 330px;
  }
  .gas-core-img {
    top: 0;
    width: min(76vw, 520px);
    transform: translateX(-50%);
  }
  .gas-point {
    position: static;
    width: auto;
  }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .ready-track, .review-track { grid-auto-columns: calc((100% - 20px) / 2); }
  #ready-houses [data-ready-prev],
  #offers [data-slide-prev] {
    left: -22px;
  }
  #ready-houses [data-ready-next],
  #offers [data-slide-next] {
    right: -22px;
  }
}

@media (min-width: 681px) {
  .section-head { max-width: none; }
  .section-head h2,
  .section-copy h2,
  .final-grid h2,
  .about-grid h2,
  .contacts-card h2,
  .thank-hero h1 {
    white-space: nowrap;
  }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1240px); }
  .site-header {
    min-height: 68px;
    padding: 10px 14px;
    gap: 10px;
    grid-template-columns: 1fr;
  }
  .header-top {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    padding-right: 52px;
  }
  .site-header .logo {
    grid-column: 1;
    grid-row: 1;
    gap: 7px;
  }
  .site-header .logo-img-header {
    height: 42px;
  }
  .site-header .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }
  .site-header .header-actions .button {
    display: none;
  }
  .site-header .phone {
    font-size: 0;
    font-weight: 800;
  }
  .site-header .phone::after {
    content: "+7 (925) 346-58-58";
    font-size: 15px;
  }
  .site-header .menu-toggle {
    position: absolute;
    top: 12px;
    right: 14px;
  }
  .section { padding: 64px 0; }
  .hero { min-height: auto; padding: 52px 0 42px; }
  .hero-overlay { background: linear-gradient(180deg, rgba(7,17,12,.86), rgba(7,17,12,.55)); }
  h1 { font-size: 38px; }
  .hero-form {
    padding: 22px 26px 20px;
  }
  .hero-form h2 {
    font-size: 27px;
    margin-bottom: 10px;
  }
  .hero-form p {
    font-size: 13px;
    line-height: 1.38;
    margin-bottom: 10px;
  }
  .hero-form label:not(.checkbox) {
    gap: 6px;
    margin-bottom: 10px;
    font-size: 14px;
  }
  .hero-form input,
  .hero-form input[name="phone"] {
    min-height: 50px;
  }
  .hero-form .button {
    min-height: 52px;
    margin: 8px 0 18px;
  }
  .hero-form .checkbox {
    width: 100%;
    margin: 0;
    align-items: flex-start;
    gap: 10px;
  }
  .hero-form .checkbox span {
    font-size: 11px;
    line-height: 1.28;
  }
  .hero-form .form-status {
    min-height: 0;
    margin-top: 6px;
  }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .strip-item { grid-template-columns: 1fr; text-align: center; justify-items: center; padding: 14px 8px; border: 1px solid var(--line); border-radius: 8px; }
  .strip-icon { grid-row: auto; }
  .projects-grid, .timeline, .gas-orbit { grid-template-columns: 1fr; }
  .horizontal-form { grid-template-columns: 1fr; }
  .horizontal-form > div { grid-template-columns: 1fr; }
  .catalog-form {
    min-height: auto;
    margin-top: 44px;
    padding: 30px 20px;
    grid-template-columns: 1fr;
    border-radius: 18px;
    overflow: hidden;
  }
  .catalog-form h3 { font-size: 28px; }
  .catalog-controls { grid-template-columns: 1fr; }
  .catalog-preview {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: 210px;
    margin-top: -10px;
  }
  .catalog-preview-img {
    right: -18px;
    top: -10px;
    width: 102%;
  }
  .viewing-form {
    min-height: auto;
    margin-top: 44px;
    padding: 30px 20px;
    grid-template-columns: 1fr;
    border-radius: 18px;
  }
  .viewing-form h3 { font-size: 28px; }
  .viewing-controls { grid-template-columns: 1fr; }
  .viewing-preview {
    min-height: 210px;
    margin-top: -10px;
  }
  .viewing-preview img {
    right: -18px;
    bottom: -18px;
    width: 102%;
  }
  .mortgage-form {
    min-height: auto;
    padding: 30px 20px;
    grid-template-columns: 1fr;
    border-radius: 18px;
  }
  .mortgage-form h2 { font-size: 28px; }
  .mortgage-controls { grid-template-columns: 1fr; }
  .mortgage-preview {
    min-height: 210px;
    margin-top: 10px;
  }
  .mortgage-preview img {
    right: -18px;
    bottom: -18px;
    width: 102%;
  }
  #gas-benefits .section-head {
    max-width: 100%;
  }
  #gas-benefits .section-head h2 {
    font-size: 30px;
    line-height: 1.45;
  }
  .gas-orbit {
    margin-top: 18px;
    padding-top: 270px;
    gap: 12px;
    background: radial-gradient(ellipse at 50% 180px, rgba(218,238,229,.95) 0%, rgba(239,248,243,.76) 48%, rgba(255,255,255,0) 78%);
  }
  .gas-core-img {
    width: min(92vw, 360px);
    top: 0;
    transform: translateX(-50%);
  }
  .gas-point {
    border-radius: 22px;
    padding: 18px 18px;
    transform: none;
  }
  .gas-point h3 { font-size: 20px; }
  .gas-point p { font-size: 15px; }
  .gas-point:nth-child(even) { transform: none; }
  .about-block {
    gap: 26px;
  }
  .about-main {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .about-copy h2 {
    font-size: 38px;
    line-height: 1.04;
  }
  .about-copy p {
    font-size: 17px;
    line-height: 1.45;
  }
  .about-stats {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .about-stats dt {
    font-size: 32px;
    margin-bottom: 6px;
  }
  .about-stats dd {
    font-size: 15px;
  }
  #about .about-video {
    display: block;
    width: 100%;
    margin-top: 24px;
    opacity: 1;
    transform: none;
    grid-column: 1;
    order: 2;
  }
  #about .video-embed iframe {
    display: block;
    width: 100%;
    min-height: 0;
    height: 200px;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    background: #111;
  }
  .slider-shell, .offer-slider { grid-template-columns: 1fr; }
  .slider-btn { display: none; }
  .ready-track, .review-track, .offer-track {
    grid-auto-columns: 86%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    overscroll-behavior-x: contain;
    padding-right: 44px;
    cursor: grab;
    user-select: none;
  }
  .ready-track.is-dragging,
  .review-track.is-dragging,
  .offer-track.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    scroll-behavior: auto;
  }
  .ready-track.is-dragging *,
  .review-track.is-dragging *,
  .offer-track.is-dragging * {
    pointer-events: none;
  }
  .review-track iframe {
    pointer-events: none;
  }
  .offer-track {
    overflow-x: auto;
  }
  .ready-track > *, .review-track > *, .offer-track > * {
    scroll-snap-align: start;
  }
  #offers .offer-more {
    width: calc(100% - 32px);
    margin: 8px 16px 18px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .promo-widget {
    right: 18px;
    bottom: 92px;
  }
  .promo-widget-button {
    width: 64px;
    height: 64px;
  }
  .promo-widget-button svg {
    width: 44px;
    height: 44px;
    padding: 11px;
  }
  .promo-popup {
    padding: 14px;
    align-items: end;
  }
  .promo-popup-card {
    grid-template-columns: 1fr;
    width: min(390px, 100%);
    max-height: calc(100dvh - 28px);
    overflow-y: auto;
  }
  .promo-popup-media img {
    aspect-ratio: 16 / 11;
    min-height: 0;
    height: auto;
  }
  .promo-popup-form {
    padding: 24px 20px 20px;
  }
  .promo-popup-form h2 {
    font-size: 26px;
  }
  .promo-popup-form p {
    margin-bottom: 16px;
    font-size: 15px;
  }
  .promo-popup-form .button {
    min-height: 54px;
    font-size: 15px;
  }
  .promo-popup-form label:not(.checkbox) {
    margin-bottom: 14px;
  }
  .promo-popup-form .checkbox span {
    font-size: 11px;
  }
  .modal {
    width: min(calc(100vw - 20px), 430px);
    max-height: calc(100dvh - 16px);
    margin: auto;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .modal-close {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 10;
  }
  .project-modal-grid {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    gap: 14px;
  }
  .project-modal-grid h2 {
    font-size: clamp(17px, 5.2vw, 20px);
    line-height: 1.05;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
  }
  .modal-content {
    width: 100%;
    padding: 16px;
    max-height: none;
    overflow-x: hidden;
  }
  .modal-media,
  .modal-main-img,
  .modal-table,
  .modal-lead {
    max-width: 100%;
  }
  .thumb-row {
    grid-auto-columns: 54px;
    gap: 7px;
    overflow-x: auto;
    padding-bottom: 7px;
  }
  .modal-lead {
    grid-template-columns: 1fr;
    padding: 18px 16px;
    gap: 12px;
  }
  .modal-price {
    display: grid;
    gap: 4px;
    align-items: start;
    max-width: 100%;
  }
  .modal-price__old,
  .modal-price__new {
    white-space: normal;
  }
  .modal-price__new {
    font-size: 22px;
  }
  .modal-table td {
    padding: 6px 0;
    font-size: 14px;
  }
  .modal-table strong {
    font-size: 14px;
  }
  .image-zoom {
    padding: 14px;
  }
  .image-zoom img {
    max-width: 94vw;
    max-height: 86dvh;
  }
  .footer-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .contacts-info { grid-template-columns: 1fr; gap: 12px; }
  .contacts-card { padding: 26px 20px; }
  .map-wrap { padding: 8px; }
  .map-wrap iframe { min-height: 360px; }
  .trust-grid, .yandex-card, .yandex-card > div, .socials-block { justify-content: center; text-align: center; }
  .yandex-card { flex-direction: column; }
  .thanks-adv-grid { grid-template-columns: 1fr; }
  .center-circle { width: 250px; height: 250px; margin: 0 auto; grid-row: 1; }
  .thanks-stats { grid-template-columns: 1fr; }
  .thanks-hero-modern {
    padding: 54px 0 58px;
  }
  .thanks-hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .thanks-success-mark {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    font-size: 36px;
  }
  .thanks-hero-modern h1 {
    font-size: 42px;
  }
  .thanks-hero-modern p {
    font-size: 17px;
  }
  .thanks-hero-buttons {
    flex-direction: column;
  }
  .thanks-hero-card {
    padding: 22px;
    border-radius: 18px;
  }
  .thanks-hero-card h2 {
    font-size: 24px;
  }
  .thanks-trust-box {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .thanks-trust-item {
    font-size: 16px;
  }
  .thanks-bank-logos {
    grid-template-columns: repeat(2, 1fr);
  }
  .thanks-bank-logos span {
    min-height: 48px;
    padding: 8px 10px;
  }
  .thanks-bank-logos img {
    max-width: 112px;
    max-height: 30px;
  }
  .thanks-section-title {
    font-size: 34px;
    margin-bottom: 24px;
  }
  .thanks-section-subtitle {
    margin-top: -10px;
    font-size: 16px;
  }
  .thanks-advantages-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 20px;
  }
  .thanks-adv-list {
    display: grid;
    gap: 16px;
  }
  .thanks-advantages-layout > .thanks-adv-list:first-child .thanks-adv-card:nth-child(1),
  .thanks-advantages-layout > .thanks-adv-list:first-child .thanks-adv-card:nth-child(2),
  .thanks-advantages-layout > .thanks-adv-list:first-child .thanks-adv-card:nth-child(3),
  .thanks-advantages-layout > .thanks-adv-list:last-child .thanks-adv-card:nth-child(1),
  .thanks-advantages-layout > .thanks-adv-list:last-child .thanks-adv-card:nth-child(2),
  .thanks-advantages-layout > .thanks-adv-list:last-child .thanks-adv-card:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
    transform: none;
  }
  .thanks-center-photo {
    grid-column: auto;
    grid-row: 1;
    width: min(420px, 88vw);
    margin: 0 auto;
  }
  .thanks-advantages-layout > .thanks-adv-list:first-child {
    grid-row: 2;
  }
  .thanks-advantages-layout > .thanks-adv-list:last-child {
    grid-row: 3;
  }
  .thanks-adv-card,
  .thanks-adv-card--right {
    grid-template-columns: 92px minmax(0, 1fr);
    width: 100%;
    text-align: left;
    gap: 14px;
    padding: 16px;
    align-items: center;
  }
  .thanks-adv-card > div,
  .thanks-adv-card--right > div {
    min-width: 0;
  }
  .thanks-adv-card--right img {
    order: -1;
  }
  .thanks-adv-card img {
    width: 92px;
    height: 74px;
  }
  .thanks-adv-card h3 {
    font-size: 18px;
    line-height: 1.12;
  }
  .thanks-adv-card p {
    font-size: 13px;
    line-height: 1.32;
  }
  .thanks-reviews-grid {
    grid-template-columns: 1fr;
  }
  .mobile-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: max(10px, env(safe-area-inset-bottom));
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    background: rgba(255,255,255,.95);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px;
    box-shadow: var(--shadow);
  }
  .mobile-bar a, .mobile-bar button {
    border: 0;
    border-radius: 999px;
    padding: 11px 8px;
    background: var(--green);
    color: #fff;
    font-weight: 700;
    text-align: center;
    font-size: 13px;
  }
  body { padding-bottom: 96px; }
}
