﻿/* ===== Бурение 8. Скелет с текстом.html style block 1 ===== */
:root {
  --header-bg: #fbfdfe;
  --header-text: #05070d;
  --header-muted: #334155;
  --header-accent: #075b63;
  --header-border: rgba(7, 91, 99, 0.12);
  --header-border-strong: rgba(7, 91, 99, 0.22);
  --header-shadow: 0 8px 30px rgba(15, 23, 42, 0.035);
  --header-container: 1040px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: #fbfdfe;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

.header-container {
  width: 100%;
  max-width: var(--header-container);
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  padding: 14px 0 17px;
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  box-shadow: var(--header-shadow);
  transition: box-shadow .2s ease, border-color .2s ease;
}

.site-header.site-header--compact {
  padding: 13px 0;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  color: var(--header-text);
  font-size: 1.508rem;
  font-weight: 860;
  line-height: 1;
  letter-spacing: -0.055em;
  text-decoration: none;
  white-space: nowrap;
  transition: color .18s ease, transform .18s ease;
}

.site-header__logo:hover,
.site-header__logo:focus-visible {
  color: var(--header-accent);
  transform: translateY(-1px);
  outline: none;
}

.site-header__nav {
  display: flex;
  align-items: center;
  min-width: 0;
}

.site-header__nav-links {
  display: flex;
  align-items: center;
  min-width: 0;
}

.site-header__nav-links a {
  display: inline-flex;
  align-items: center;
  color: var(--header-muted);
  font-size: 1.08rem;
  font-weight: 620;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transform-origin: center;
  transition: color .18s ease, transform .22s cubic-bezier(.2,.75,.2,1);
}

.site-header__nav-links a:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 15px;
  margin: 0 13px;
  background: rgba(7, 91, 99, .14);
  pointer-events: none;
}

.site-header__nav-links a:hover,
.site-header__nav-links a:focus-visible {
  color: var(--header-accent);
  transform: scale(1.045);
  outline: none;
}

.site-header__actions {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  min-width: 0;
  margin-left: 38px;
  padding-left: 28px;
}

.site-header__phone-wrap {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  gap: 11px;
  min-width: 0;
}

.site-header__phone-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  transform: translateX(10px);
}

.site-header__phone {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px 7px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--header-text);
  font-size: 1.214rem;
  font-weight: 760;
  line-height: 1;
  letter-spacing: -0.035em;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: color .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.site-header__phone:hover,
.site-header__phone:focus-visible {
  color: var(--header-accent);
  background: rgba(7, 91, 99, .055);
  border-color: rgba(7, 91, 99, .18);
  box-shadow: 0 8px 24px rgba(15, 23, 42, .08);
  transform: translateY(-1px);
  outline: none;
}

.site-header__phone-worktime {
  display: block;
  max-height: 18px;
  margin-top: 1px;
  color: var(--header-muted);
  font-size: .74rem;
  font-weight: 720;
  line-height: 1.15;
  letter-spacing: .01em;
  white-space: nowrap;
  opacity: .82;
  transform: translateY(0);
  overflow: hidden;
  transition: opacity .2s ease, max-height .2s ease, margin-top .2s ease, transform .2s ease;
  pointer-events: none;
}

.site-header.site-header--compact .site-header__phone-worktime {
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  transform: translateY(-4px);
}

.site-header__online-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 38px;
  min-width: 18px;
  margin-left: 10px;
  margin-right: 10px;
  pointer-events: none;
}

.site-header__online-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #16a34a;
  box-shadow: 0 0 0 0 rgba(22, 163, 74, .20);
  animation: headerOnlinePulse 2.2s ease-in-out infinite;
}

@keyframes headerOnlinePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(22, 163, 74, .20);
  }
  50% {
    transform: scale(1.18);
    box-shadow: 0 0 0 6px rgba(22, 163, 74, .08);
  }
}

.site-header__tooltip {
  position: absolute;
  z-index: 1200;
  top: calc(100% + 10px);
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  background: var(--header-text);
  box-shadow: 0 14px 34px rgba(15, 23, 42, .2);
  color: #fff;
  font-size: .927rem;
  line-height: 1.25;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.site-header__tooltip--phone {
  left: 50%;
  min-width: max-content;
  transform: translate(-50%, -3px);
}

.site-header__phone-stack:hover ~ .site-header__tooltip--phone,
.site-header__phone-stack:focus-within ~ .site-header__tooltip--phone {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.site-header__icon-button {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.site-header__icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--header-text);
  background: transparent;
  text-decoration: none;
  transition: color .18s ease, opacity .18s ease, transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
  flex: 0 0 auto;
}

.site-header__header-contact {
  position: relative;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-header__header-contact::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 210px;
  height: 16px;
  pointer-events: auto;
}

.site-header__header-contact .site-header__icon-button {
  width: 34px;
  height: 38px;
  min-width: 34px;
  min-height: 38px;
  color: var(--header-text);
  background: transparent;
  box-shadow: none;
}

.site-header__header-contact .site-header__icon-button svg {
  width: 25px;
  height: 25px;
  display: block;
}

.site-header__header-contact .site-header__icon-button:hover,
.site-header__header-contact .site-header__icon-button:focus-visible {
  color: var(--header-accent);
  background: rgba(7, 91, 99, .055);
  border-color: rgba(7, 91, 99, .12);
  transform: translateY(-1px);
  outline: none;
}

.site-header__contact-popup {
  position: absolute;
  z-index: 1300;
  width: max-content;
  min-width: 190px;
  max-width: calc(100vw - 48px);
  padding: 7px;
  border: 1px solid rgba(7, 91, 99, .12);
  border-radius: 18px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 18px 46px rgba(15, 23, 42, .15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
}

.site-header__contact-popup a {
  display: block;
  padding: 12px 14px;
  border-radius: 13px;
  color: var(--header-text);
  font-size: .95rem;
  font-weight: 680;
  text-decoration: none;
  white-space: nowrap;
  transition: color .18s ease, background .18s ease;
}

.site-header__contact-popup a + a {
  border-top: 1px solid rgba(7, 91, 99, .10);
}

.site-header__contact-popup a:hover,
.site-header__contact-popup a:focus-visible {
  color: var(--header-accent);
  background: rgba(7, 91, 99, .055);
  outline: none;
}

.site-header__header-contact .site-header__contact-popup {
  top: calc(100% + 8px);
  right: 0;
  transform: translateY(-4px);
}

.site-header__header-contact:hover .site-header__contact-popup,
.site-header__header-contact:focus-within .site-header__contact-popup,
.site-header__header-contact .site-header__contact-popup:hover,
.site-header__header-contact.is-contact-open .site-header__contact-popup {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear 0s;
}

.site-header__desktop-floating-contact {
  display: block;
}

.site-header__desktop-floating-contact .site-header__floating-contact {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1485;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-header__desktop-floating-contact .site-header__floating-contact::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 100%;
  width: 230px;
  height: 24px;
  transform: translate(10px, 10px);
  pointer-events: auto;
}

.site-header__desktop-floating-contact .site-header__icon-button {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  background: var(--header-accent);
  color: #fff;
  box-shadow: 0 16px 34px rgba(7, 91, 99, .24), 0 4px 12px rgba(15, 23, 42, .12);
}

.site-header__desktop-floating-contact .site-header__icon-button svg {
  width: 22px;
  height: 22px;
  display: block;
}

.site-header__desktop-floating-contact .site-header__icon-button:hover,
.site-header__desktop-floating-contact .site-header__icon-button:focus-visible {
  color: #fff;
  background: #064d54;
  border-color: rgba(255,255,255,.86);
  box-shadow: 0 18px 38px rgba(7, 91, 99, .28), 0 5px 14px rgba(15, 23, 42, .14);
  transform: translateY(-1px) scale(1.03);
  outline: none;
}

.site-header__desktop-floating-contact .site-header__contact-popup {
  right: calc(100% + 8px);
  bottom: calc(100% + 8px);
  transform: translate(6px, 6px);
}

.site-header__desktop-floating-contact .site-header__floating-contact:hover .site-header__contact-popup,
.site-header__desktop-floating-contact .site-header__floating-contact:focus-within .site-header__contact-popup,
.site-header__desktop-floating-contact .site-header__contact-popup:hover,
.site-header__desktop-floating-contact .site-header__floating-contact.is-contact-open .site-header__contact-popup {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(0, 0);
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear 0s;
}

.back-to-top {
  --scroll-progress: 0deg;
  position: fixed;
  right: 24px;
  bottom: 90px;
  z-index: 1490;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  border: 0;
  border-radius: 50%;
  color: var(--header-text);
  background: radial-gradient(circle at center, rgba(7,128,138,.24) 0 36%, transparent 61%), conic-gradient(#025f68 var(--scroll-progress), rgba(7,91,99,.28) 0deg);
  box-shadow: 0 16px 36px rgba(15, 23, 42, .18), inset 0 0 20px rgba(7,128,138,.32), inset 0 0 0 1px rgba(7,91,99,.20);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px) scale(.96);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease, box-shadow .2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(7, 91, 99, .18);
  border-radius: inherit;
  background: radial-gradient(circle at 50% 42%, rgba(255,255,255,1) 0 52%, rgba(245,250,251,.98) 100%);
  box-shadow: inset 0 0 14px rgba(7, 91, 99, .16), 0 0 18px rgba(7,128,138,.20);
}

.back-to-top svg {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  display: block;
  animation: backArrowLift .79s ease-in-out infinite;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  box-shadow: 0 20px 44px rgba(15, 23, 42, .24), inset 0 0 24px rgba(7,128,138,.38), inset 0 0 0 1px rgba(7,91,99,.24);
  transform: translateY(-2px) scale(1.02);
  outline: none;
}

.back-to-top.is-contact-hidden,
.site-header__desktop-floating-contact:hover + .back-to-top,
.site-header__desktop-floating-contact:focus-within + .back-to-top,
.site-header__desktop-floating-contact.is-contact-open + .back-to-top {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

@keyframes backArrowLift {
  0%, 100% { transform: translateY(1px); opacity: .82; }
  45% { transform: translateY(-3px); opacity: 1; }
}

.site-header__mobile-actions,
.site-header__mobile-contact-row,
.site-header__mobile-contact-wrap {
  display: none;
}

.site-header__mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(7,91,99,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 6px 16px rgba(7,91,99,.08);
  cursor: pointer;
}

.site-header__mobile-toggle-label {
  display: block;
  color: var(--header-text);
  font-size: .89rem;
  font-weight: 780;
  line-height: 1;
  letter-spacing: .055em;
}

.site-header__mobile-toggle-lines {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.site-header__mobile-toggle-lines span {
  display: block;
  width: 20px;
  height: 1.9px;
  border-radius: 2px;
  background: var(--header-text);
  transition: transform .22s ease;
}

.site-header__mobile-toggle-lines span:nth-child(3) { display: none; }
.site-header__mobile-toggle.is-open .site-header__mobile-toggle-lines span:nth-child(1) { transform: translateY(3.4px) rotate(45deg); }
.site-header__mobile-toggle.is-open .site-header__mobile-toggle-lines span:nth-child(2) { transform: translateY(-3.4px) rotate(-45deg); }

.site-header__mobile-panel {
  display: none;
}


@media (max-width: 768px) {
  .header-container { padding: 0 22px; }
  .site-header { min-height: 67px; padding: 10px 0; }
  .site-header.site-header--compact { padding: 10px 0; }
  .site-header__inner {
    position: relative;
    min-height: 48px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
  }
  .site-header__logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    margin-left: 10%;
    font-size: 0;
    transform: none;
    z-index: 7;
  }
  .site-header__logo [data-header-logo-text]::before {
    content: 'A';
    color: var(--header-text);
    font-size: 1.49rem;
    font-weight: 860;
    letter-spacing: -0.045em;
  }
  .site-header__nav { display: none; }
  .site-header__mobile-toggle {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    display: inline-flex;
    height: 43px;
    padding: 0 13px;
    flex-direction: row;
    gap: 10px;
    z-index: 8;
  }
  .site-header__mobile-actions {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    height: 48px;
    display: inline-flex;
    align-items: center;
    z-index: 8;
  }
  .site-header__mobile-phone {
    width: 46px;
    height: 46px;
    min-width: 46px;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--header-border-strong);
    border-radius: 999px;
    background: rgba(255,255,255,.78);
    color: var(--header-text);
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(7,91,99,.08);
    animation: headerMobileCallDoublePulse 4.4s ease-in-out infinite;
    transform-origin: center;
  }
  .site-header__mobile-phone svg {
    width: 20px;
    height: 20px;
  }
  .site-header__mobile-phone:hover,
  .site-header__mobile-phone:focus-visible {
    color: var(--header-accent);
    background: rgba(7,91,99,.055);
    border-color: rgba(7,91,99,.18);
    outline: none;
  }

  body.site-header-mobile-menu-open .site-header__mobile-phone,
  body.site-header-mobile-menu-open .site-header__mobile-phone svg {
    animation: none !important;
    transform: none !important;
  }

  body.site-header-mobile-menu-open .site-header__mobile-phone {
    box-shadow: 0 6px 16px rgba(7,91,99,.08);
  }
  .site-header__mobile-panel {
    position: fixed;
    top: 67px;
    left: 14px;
    right: 14px;
    z-index: 1200;
    display: grid;
    grid-template-rows: 0fr;
    max-height: calc(100svh - 86px);
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(15, 23, 42, .14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: grid-template-rows .24s ease, opacity .24s ease, visibility 0s linear .24s;
  }
  .site-header__mobile-panel.is-open {
    grid-template-rows: 1fr;
    max-height: calc(100svh - 86px);
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: grid-template-rows .24s ease, opacity .24s ease, visibility 0s linear 0s;
  }
  .site-header__mobile-panel-inner {
    min-height: 0;
    overflow: visible;
    background: #fff;
  }
  .site-header__mobile-panel a {
    display: block;
    padding: 16px 22px;
    border-bottom: 1px solid rgba(7,91,99,.08);
    background: #fff;
    color: var(--header-text);
    font-size: 1.14rem;
    font-weight: 680;
    text-decoration: none;
  }
  body.site-header-mobile-menu-open {
    overflow: hidden;
    touch-action: none;
  }
  .site-header__mobile-panel {
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .site-header__mobile-social-link {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 16px 22px !important;
    border-bottom: 1px solid rgba(7,91,99,.08);
    background: #fff;
    color: var(--header-text);
    font-size: 1.14rem !important;
    font-weight: 680 !important;
    text-decoration: none;
  }
  .site-header__mobile-social-link svg {
    width: 23px;
    height: 23px;
    display: block;
    flex: 0 0 auto;
    transform: scale(1.25);
    transform-origin: center;
  }
  .site-header__mobile-social-link:hover,
  .site-header__mobile-social-link:focus-visible {
    color: var(--header-accent);
    outline: none;
  }
  .site-header__mobile-socials {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 19px 20px 18px;
    border-bottom: 1px solid rgba(7,91,99,.08);
    background: #fff;
  }
  .site-header__mobile-socials::before {
    content: "";
    position: absolute;
    top: 0;
    left: 22px;
    right: 22px;
    height: 1px;
    background: rgba(7,91,99,.08);
  }
  .site-header__mobile-socials a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--header-text);
    text-decoration: none;
    transition: color .18s ease, transform .18s ease, opacity .18s ease;
  }
  .site-header__mobile-socials a:hover,
  .site-header__mobile-socials a:focus-visible {
    color: var(--header-accent);
    transform: translateY(-1px);
    outline: none;
  }
  .site-header__mobile-socials svg {
    display: block;
  }
  .site-header__mobile-socials a[data-mobile-social="telegram"] svg {
    width: 32.4px;
    height: 32.4px;
  }
  .site-header__mobile-socials a[data-mobile-social="whatsapp"] svg,
  .site-header__mobile-socials a[data-mobile-social="viber"] svg {
    width: 36px;
    height: 36px;
  }
  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-bubble,
  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-phone,
  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-signal {
    stroke: currentColor;
    fill: none;
  }
  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-phone-fill {
    fill: currentColor;
    stroke: none;
  }
  .site-header__mobile-menu-phone {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 22px 19px !important;
    border-bottom: 0 !important;
    color: var(--header-text);
    font-size: 1.18rem !important;
    font-weight: 780 !important;
    letter-spacing: -0.025em;
  }
  .site-header__mobile-menu-phone svg {
    width: 19px;
    height: 19px;
    display: block;
  }
  .site-header__mobile-menu-worktime {
    position: relative;
    padding: 14px 22px 16px;
    border-bottom: 0;
    background: #fff;
    color: var(--header-muted);
    text-align: center;
    font-size: 1.02rem;
    font-weight: 680;
    letter-spacing: -0.015em;
  }
  .site-header__mobile-menu-worktime::before {
    content: "";
    position: absolute;
    top: 0;
    left: 22px;
    right: 22px;
    height: 1px;
    background: rgba(7,91,99,.08);
  }
  .site-header__mobile-contact-row {
    position: fixed;
    right: max(18px, env(safe-area-inset-right, 0px));
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));
    z-index: 1500;
    display: block;
    width: auto;
  }
  .site-header__mobile-contact-row-inner {
    width: auto;
    max-width: none;
    padding: 0;
    margin: 0;
  }
  .site-header__mobile-contact-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .site-header__mobile-contact-toggle {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 999px;
    background: var(--header-accent);
    color: #fff;
    box-shadow: 0 16px 34px rgba(7,91,99,.24), 0 4px 12px rgba(15,23,42,.12);
    cursor: pointer;
  }
  .site-header__mobile-contact-toggle svg {
    width: 20px;
    height: 20px;
  }
  .site-header__mobile-contact-label { display: none; }
  .site-header__mobile-contact-popup {
    position: absolute;
    right: 0;
    bottom: calc(100% + 10px);
    z-index: 1510;
    width: max-content;
    min-width: 190px;
    max-width: calc(100vw - 36px);
    padding: 7px;
    border: 1px solid rgba(7,91,99,.12);
    border-radius: 18px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 18px 46px rgba(15, 23, 42, .16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
  }
  .site-header__mobile-contact-popup.is-open,
  .site-header__mobile-contact-wrap:hover .site-header__mobile-contact-popup,
  .site-header__mobile-contact-wrap:focus-within .site-header__mobile-contact-popup {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity .18s ease, transform .18s ease, visibility 0s linear 0s;
  }
  .site-header__mobile-contact-popup a {
    display: block;
    padding: 13px 14px;
    border-radius: 13px;
    color: var(--header-text);
    font-size: 1.05rem;
    font-weight: 680;
    text-decoration: none;
    white-space: nowrap;
  }
  .site-header__mobile-contact-popup a + a {
    border-top: 1px solid rgba(7,91,99,.10);
  }
  .site-header__mobile-contact-popup a:hover,
  .site-header__mobile-contact-popup a:focus-visible {
    color: var(--header-accent);
    background: rgba(7,91,99,.055);
    outline: none;
  }
  .site-header__desktop-floating-contact { display: none; }
  .back-to-top {
    right: max(18px, env(safe-area-inset-right, 0px));
    bottom: calc(78px + env(safe-area-inset-bottom, 0px));
    width: 48px;
    height: 48px;
  }
  .back-to-top svg {
    width: 19px;
    height: 19px;
  }
}

@keyframes headerMobileCallDoublePulse {
  0%, 68%, 100% { transform: scale(1); box-shadow: 0 6px 16px rgba(7,91,99,.08); }
  72% { transform: scale(1.3); box-shadow: 0 0 0 7px rgba(7,91,99,.055), 0 10px 24px rgba(7,91,99,.13); }
  77% { transform: scale(1); box-shadow: 0 6px 16px rgba(7,91,99,.08); }
  82% { transform: scale(1.12); box-shadow: 0 0 0 4px rgba(7,91,99,.04), 0 8px 20px rgba(7,91,99,.11); }
  88% { transform: scale(1); box-shadow: 0 6px 16px rgba(7,91,99,.08); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}


@media (max-width: 768px) {
  body.site-header-mobile-menu-open {
    overflow: hidden;
    touch-action: none;
  }

  .site-header__mobile-panel,
  .site-header__mobile-panel-inner,
  .site-header__mobile-panel a,
  .site-header__mobile-social-link,
  .site-header__mobile-socials,
  .site-header__mobile-menu-phone,
  .site-header__mobile-menu-worktime {
    background: #fff;
  }

  .site-header__mobile-panel {
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .site-header__mobile-panel.is-open {
    overflow-y: auto;
  }

  .site-header__mobile-panel a,
  .site-header__mobile-social-link,
  .site-header__mobile-socials a {
    pointer-events: auto;
  }

  .site-header__mobile-social-link {
    width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 22px !important;
    border-bottom: 1px solid rgba(7,91,99,.08);
    background: #fff;
    color: var(--header-text);
    font-size: 1.14rem !important;
    font-weight: 680 !important;
    text-decoration: none;
  }

  .site-header__mobile-social-link svg {
    width: 23px;
    height: 23px;
    flex: 0 0 auto;
  }

  .site-header__mobile-socials {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    padding: 20px 20px 18px;
    border-bottom: 1px solid rgba(7,91,99,.08);
    background: #fff;
  }

  .site-header__mobile-socials::before {
    content: "";
    position: absolute;
    top: 0;
    left: 22px;
    right: 22px;
    height: 1px;
    background: rgba(7,91,99,.10);
  }

  .site-header__mobile-socials a {
    width: 76px;
    min-height: 62px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--header-text);
    text-align: center;
    text-decoration: none;
    transition: color .18s ease, transform .18s ease, opacity .18s ease;
  }

  .site-header__mobile-socials a:hover,
  .site-header__mobile-socials a:focus-visible {
    color: var(--header-accent);
    transform: translateY(-1px);
    outline: none;
  }

  .site-header__mobile-social-icon {
    width: 42px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-header__mobile-social-icon svg {
    width: auto;
    height: 36px;
    max-width: 42px;
    display: block;
  }

  .site-header__mobile-social-label {
    display: block;
    color: inherit;
    font-size: .74rem;
    line-height: 1.05;
    font-weight: 650;
    letter-spacing: -0.015em;
  }

  .site-header__mobile-socials a[data-mobile-social="telegram"] .site-header__mobile-social-icon svg,
  .site-header__mobile-socials a[data-mobile-social="whatsapp"] .site-header__mobile-social-icon svg,
  .site-header__mobile-socials a[data-mobile-social="viber"] .site-header__mobile-social-icon svg {
    height: 36px;
  }

  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-bg {
    fill: currentColor;
  }

  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-white {
    fill: #fff;
  }

  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-line {
    fill: none;
    stroke: #fff;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
}



@media (max-width: 768px) {
  .site-header__mobile-panel {
    max-height: calc(100svh - 86px);
    overflow: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background: #fff;
  }

  .site-header__mobile-panel.is-open {
    overflow-y: auto;
  }

  .site-header__mobile-panel-inner {
    min-height: max-content;
    overflow: visible;
    background: #fff;
  }

  body.site-header-mobile-menu-open {
    overflow: hidden;
    touch-action: none;
  }

  .site-header__mobile-social-link {
    display: flex !important;
    align-items: center;
    justify-content: flex-start !important;
    gap: 9px;
    width: 100%;
  }

  .site-header__mobile-social-link span {
    flex: 0 0 auto;
  }

  .site-header__mobile-social-link svg {
    width: 22px;
    height: 22px;
    margin: 0;
  }

  .site-header__mobile-socials {
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    padding-top: 21px;
  }

  .site-header__mobile-socials a {
    width: 78px;
    min-height: 64px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
  }

  .site-header__mobile-social-icon {
    width: 42px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-header__mobile-social-icon svg {
    width: auto;
    height: 36px;
    max-width: 42px;
    display: block;
  }

  .site-header__mobile-socials a[data-mobile-social="telegram"] .site-header__mobile-social-icon svg,
  .site-header__mobile-socials a[data-mobile-social="whatsapp"] .site-header__mobile-social-icon svg,
  .site-header__mobile-socials a[data-mobile-social="viber"] .site-header__mobile-social-icon svg {
    height: 36px;
  }

  .site-header__mobile-social-label {
    display: block;
    font-size: .74rem;
    line-height: 1.05;
    font-weight: 650;
    letter-spacing: -0.015em;
  }

  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-bg {
    fill: currentColor;
  }

  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-white {
    fill: #fff;
  }

  .site-header__mobile-contact-wrap:hover .site-header__mobile-contact-popup:not(.is-open),
  .site-header__mobile-contact-wrap:focus-within .site-header__mobile-contact-popup:not(.is-open) {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
  }
}



@media (max-width: 768px) {
  .site-header__mobile-social-link {
    justify-content: flex-start !important;
    gap: 9px !important;
  }

  .site-header__mobile-social-link svg {
    width: 28px !important;
    height: 28px !important;
    margin: 0 !important;
    flex: 0 0 auto;
  }

  .site-header__mobile-panel.is-open {
    max-height: calc(100svh - 86px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .site-header__mobile-socials a[data-mobile-social="telegram"] .site-header__mobile-social-icon svg {
    height: 32px !important;
    max-width: 38px !important;
  }

  .site-header__mobile-socials a[data-mobile-social="whatsapp"] .site-header__mobile-social-icon svg,
  .site-header__mobile-socials a[data-mobile-social="viber"] .site-header__mobile-social-icon svg {
    height: 36px !important;
    max-width: 42px !important;
  }

  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-bg,
  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-white {
    fill: none !important;
  }

  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-bubble,
  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-signal {
    stroke: currentColor !important;
  }

  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-phone {
    fill: currentColor !important;
  }
}

@media (max-width: 768px) {
  body.site-header-mobile-menu-open .site-header__mobile-contact-row,
  body.site-header-mobile-menu-open .site-header__desktop-floating-contact,
  body.site-header-mobile-menu-open .back-to-top {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .site-header__mobile-socials a[data-mobile-social="telegram"] .site-header__mobile-social-icon svg {
    height: 30.7px !important;
    max-width: 36.5px !important;
  }

  .site-header__mobile-socials a[data-mobile-social="viber"] .site-header__mobile-social-icon svg {
    height: 36px !important;
    max-width: 42px !important;
  }

  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-bubble,
  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-phone,
  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-signal {
    fill: none !important;
    stroke: currentColor !important;
  }

  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-bubble,
  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-phone {
    stroke-width: 1.45 !important;
  }

  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-signal-lg {
    stroke-width: 1.2 !important;
  }

  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-signal-sm {
    stroke-width: 1.1 !important;
  }

  .site-header__mobile-social-link svg {
    transform: scale(1.2);
    transform-origin: left center;
  }
}

@media (max-width: 768px) {
  body.site-header-mobile-menu-open {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    overflow: hidden !important;
    touch-action: none !important;
  }

  .site-header__mobile-panel.is-open {
    max-height: calc(100svh - 86px) !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
    -webkit-overflow-scrolling: touch;
  }

  .site-header__mobile-socials {
    padding-top: 14px !important;
    padding-bottom: 8px !important;
    gap: 16px !important;
  }

  .site-header__mobile-socials::before {
    left: 22px !important;
    right: 22px !important;
  }

  .site-header__mobile-socials a {
    width: 74px !important;
    min-height: 52px !important;
    gap: 4px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .site-header__mobile-social-icon {
    height: 38.5px !important;
  }

  .site-header__mobile-socials a[data-mobile-social="telegram"] .site-header__mobile-social-icon svg {
    height: 28.55px !important;
    max-width: 34px !important;
  }

  .site-header__mobile-socials a[data-mobile-social="viber"] .site-header__mobile-social-icon svg {
    height: 38.55px !important;
    max-width: 45px !important;
  }

  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-bubble,
  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-phone {
    stroke-width: 1.02 !important;
  }

  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-signal-lg {
    stroke-width: .84 !important;
  }

  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-signal-sm {
    stroke-width: .77 !important;
  }

  .site-header__mobile-social-link svg rect,
  .site-header__mobile-social-link svg circle {
    stroke-width: 1.4 !important;
  }

  .site-header__mobile-menu-phone {
    position: relative;
    transform-origin: center;
    will-change: transform, box-shadow;
    animation: mobileMenuPhonePulse 3.2s ease-in-out infinite;
  }

  .site-header__mobile-menu-phone::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    border: 1px solid rgba(7, 91, 99, .14);
    opacity: 0;
    transform: scale(.96);
    pointer-events: none;
    animation: mobileMenuPhoneHalo 3.2s ease-in-out infinite;
  }

  @keyframes mobileMenuPhonePulse {
    0%, 100% {
      transform: scale(1);
      box-shadow: 0 10px 24px rgba(7, 91, 99, .08);
    }
    44% {
      transform: scale(1.045);
      box-shadow: 0 14px 34px rgba(7, 91, 99, .16);
    }
    62% {
      transform: scale(1.015);
    }
  }

  @keyframes mobileMenuPhoneHalo {
    0%, 100% {
      opacity: 0;
      transform: scale(.96);
    }
    44% {
      opacity: 1;
      transform: scale(1.06);
    }
    72% {
      opacity: 0;
      transform: scale(1.12);
    }
  }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  .site-header__mobile-menu-phone,
  .site-header__mobile-menu-phone::after {
    animation: none !important;
  }
}

@media (max-width: 768px) {
  .site-header__mobile-socials a[data-mobile-social="telegram"] .site-header__mobile-social-icon svg {
    height: 27.12px !important;
    max-width: 32.3px !important;
  }

  .site-header__mobile-social-link svg rect,
  .site-header__mobile-social-link svg circle {
    stroke-width: 1.19 !important;
  }

  .site-header__mobile-menu-phone {
    animation: none !important;
    box-shadow: none !important;
    transform: none !important;
    will-change: auto !important;
  }

  .site-header__mobile-menu-phone::after {
    display: none !important;
    animation: none !important;
    content: none !important;
  }

  .site-header__mobile-menu-phone-inner {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 7px 14px;
    border-radius: 999px;
    transform-origin: center;
    will-change: transform, box-shadow;
    animation: mobileMenuPhonePulse 1.6s ease-in-out infinite !important;
  }

  .site-header__mobile-menu-phone-inner::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    border: 1px solid rgba(7, 91, 99, .14);
    opacity: 0;
    transform: scale(.96);
    pointer-events: none;
    animation: mobileMenuPhoneHalo 1.6s ease-in-out infinite !important;
  }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  .site-header__mobile-menu-phone-inner,
  .site-header__mobile-menu-phone-inner::after {
    animation: none !important;
  }
}

@media (max-width: 768px) {
  .site-header__mobile-menu-phone {
    animation: none !important;
    box-shadow: none !important;
    transform: none !important;
    will-change: auto !important;
  }

  .site-header__mobile-menu-phone::after {
    display: none !important;
    content: none !important;
    animation: none !important;
  }

  .site-header__mobile-menu-phone-inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: 0 !important;
    transform-origin: center center;
    transform: translate3d(0, 0, 0) scale(1);
    backface-visibility: hidden;
    will-change: transform;
    animation: mobileMenuPhoneSmoothPulse 1.6s cubic-bezier(.42, 0, .24, 1) infinite !important;
  }

  .site-header__mobile-menu-phone-inner::after,
  .site-header__mobile-menu-phone-inner::before {
    display: none !important;
    content: none !important;
    animation: none !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  @keyframes mobileMenuPhoneSmoothPulse {
    0%, 100% {
      transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
      transform: translate3d(0, 0, 0) scale(1.035);
    }
  }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  .site-header__mobile-menu-phone-inner {
    animation: none !important;
  }
}

@media (max-width: 768px) {
  .site-header__mobile-menu-phone {
    animation: none !important;
    box-shadow: none !important;
    transform: none !important;
    will-change: auto !important;
  }

  .site-header__mobile-menu-phone::after,
  .site-header__mobile-menu-phone::before {
    display: none !important;
    content: none !important;
    animation: none !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .site-header__mobile-menu-phone-inner {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: 0 !important;
    line-height: 1 !important;
    transform-origin: center center !important;
    transform: translate3d(0, 0, 0) scale(1);
    backface-visibility: hidden;
    will-change: transform;
    animation: mobilePhoneNoticePulse 2.35s cubic-bezier(.36, 0, .18, 1) infinite !important;
  }

  .site-header__mobile-menu-phone-inner::before {
    display: none !important;
    content: none !important;
  }

  .site-header__mobile-menu-phone-inner::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    left: -9px;
    right: -9px;
    top: -7px;
    bottom: -7px;
    border-radius: 999px;
    border: 1px solid currentColor !important;
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(.92);
    pointer-events: none !important;
    box-shadow: none !important;
    backface-visibility: hidden;
    will-change: transform, opacity;
    animation: mobilePhoneNoticeHalo 2.35s cubic-bezier(.36, 0, .18, 1) infinite !important;
  }

  @keyframes mobilePhoneNoticePulse {
    0%, 8%, 100% {
      transform: translate3d(0, 0, 0) scale(1);
    }
    20% {
      transform: translate3d(0, 0, 0) scale(1.075);
    }
    33%, 54% {
      transform: translate3d(0, 0, 0) scale(1);
    }
    66% {
      transform: translate3d(0, 0, 0) scale(1.035);
    }
    78% {
      transform: translate3d(0, 0, 0) scale(1);
    }
  }

  @keyframes mobilePhoneNoticeHalo {
    0%, 46%, 100% {
      opacity: 0;
      transform: translate3d(0, 0, 0) scale(.92);
    }
    58% {
      opacity: .22;
      transform: translate3d(0, 0, 0) scale(1);
    }
    76% {
      opacity: .08;
      transform: translate3d(0, 0, 0) scale(1.13);
    }
    88% {
      opacity: 0;
      transform: translate3d(0, 0, 0) scale(1.2);
    }
  }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  .site-header__mobile-menu-phone-inner,
  .site-header__mobile-menu-phone-inner::after {
    animation: none !important;
  }
}

.site-header__desktop-instagram {
  position: absolute;
  z-index: 5;
  top: 0;
  right: -39px;
  width: 34px;
  height: 38px;
  min-width: 34px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--header-text);
  background: transparent;
  text-decoration: none;
  transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}

.site-header__header-contact .site-header__icon-button svg {
  width: 27.5px;
  height: 27.5px;
}

.site-header__desktop-instagram svg {
  width: 28.75px;
  height: 28.75px;
  display: block;
}

.site-header__desktop-instagram:hover,
.site-header__desktop-instagram:focus-visible {
  color: var(--header-accent);
  background: rgba(7, 91, 99, .055);
  border-color: rgba(7, 91, 99, .12);
  transform: translateY(-1px);
  outline: none;
}

.site-header__tooltip--instagram {
  left: 50%;
  top: calc(100% + 8px);
  min-width: max-content;
  transform: translate(-50%, -3px);
}

.site-header__desktop-instagram:hover .site-header__tooltip--instagram,
.site-header__desktop-instagram:focus-visible .site-header__tooltip--instagram {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.site-header__header-contact::after {
  left: -46px;
  top: 100%;
  width: 292px;
  height: 40px;
}

.site-header__header-contact .site-header__contact-popup {
  top: calc(100% + 2px);
}

.site-header__desktop-floating-contact .site-header__floating-contact::after {
  right: 38px;
  bottom: 38px;
  width: 280px;
  height: 124px;
  transform: none;
}

.site-header__desktop-floating-contact .site-header__contact-popup {
  right: calc(100% + 2px);
  bottom: calc(100% + 2px);
}

@media (max-width: 768px) {
  .site-header__desktop-instagram {
    display: none;
  }
}

.well-faq {
  overflow-anchor: none;
  padding: clamp(70px, 9vw, 118px) 24px;
  background: #fbfdfe;
  color: var(--header-text);
}

.well-faq__container {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}

.well-faq__header {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.well-faq__kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--header-accent);
  font-size: .78rem;
  font-weight: 780;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.well-faq__title {
  margin: 0;
  color: var(--header-text);
  font-size: clamp(2.15rem, 5vw, 3.8rem);
  line-height: .98;
  letter-spacing: -.065em;
}

.well-faq__lead {
  max-width: 640px;
  margin: 18px auto 0;
  color: var(--header-muted);
  font-size: clamp(1rem, 2vw, 1.14rem);
  line-height: 1.65;
}

.well-faq__list {
  display: grid;
  gap: 12px;
}

.well-faq__item {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(7, 91, 99, .11);
  border-radius: 24px;
  box-shadow: 0 16px 42px rgba(15, 23, 42, .045);
}

.well-faq__item-title { margin: 0; }

.well-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px;
  border: 0;
  background: transparent;
  color: var(--header-text);
  font: inherit;
  font-size: clamp(1.04rem, 1.8vw, 1.2rem);
  font-weight: 760;
  line-height: 1.32;
  letter-spacing: -.025em;
  text-align: left;
  cursor: pointer;
}

.well-faq__question:hover,
.well-faq__question:focus-visible {
  color: var(--header-accent);
  outline: none;
}

.well-faq__question:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(7, 91, 99, .22);
}

.well-faq__icon {
  position: relative;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(7, 91, 99, .16);
  border-radius: 999px;
  background: rgba(7, 91, 99, .035);
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.well-faq__icon::before,
.well-faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 1.8px;
  background: currentColor;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform .22s ease;
}

.well-faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.well-faq__item.is-open .well-faq__icon {
  transform: rotate(180deg);
  background: rgba(7, 91, 99, .07);
  border-color: rgba(7, 91, 99, .24);
}

.well-faq__item.is-open .well-faq__icon::after { transform: translate(-50%, -50%) rotate(0deg); }

.well-faq__answer {
  overflow-anchor: none;
  border-top: 1px solid rgba(7, 91, 99, .08);
}

.well-faq__answer-inner {
  padding: 0 26px 26px;
}

.well-faq__answer p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--header-muted);
  font-size: 1.02rem;
  line-height: 1.68;
}

.well-faq__more-button {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-height: 32px;
  margin: 14px 0 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--header-accent);
  font: inherit;
  font-size: .9rem;
  font-weight: 740;
  width: max-content;
  cursor: pointer;
  transition: color .18s ease;
}

.well-faq__more-button::after {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .2s ease;
}

.well-faq__more-button[aria-expanded="true"]::after {
  transform: translateY(2px) rotate(225deg);
}

.well-faq__more-button:hover,
.well-faq__more-button:focus-visible {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  color: var(--header-text);
  outline: none;
}

.well-faq__more-button:focus-visible {
  outline: 2px solid rgba(7, 91, 99, .22);
  outline-offset: 4px;
  border-radius: 8px;
}

.well-faq__more-text {
  max-width: 790px;
  margin-top: 14px;
  padding: 16px 18px 18px;
  border-left: 2px solid rgba(7, 91, 99, .18);
  border-radius: 0 18px 18px 0;
  background: rgba(7, 91, 99, .035);
}

.well-faq__more-text p {
  margin: 0;
  font-size: .98rem;
  line-height: 1.68;
}

@media (max-width: 768px) {
  .well-faq {
    padding: 58px 16px 72px;
  }
  .well-faq__header {
    margin-bottom: 24px;
    text-align: left;
  }
  .well-faq__lead {
    margin-left: 0;
    margin-right: 0;
  }
  .well-faq__item {
    border-radius: 20px;
  }
  .well-faq__question {
    align-items: flex-start;
    padding: 20px 18px;
  }
  .well-faq__icon {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
    margin-top: -2px;
  }
  .well-faq__answer-inner {
    padding: 0 18px 22px;
  }
  .well-faq__answer p {
    font-size: .98rem;
  }
  .well-faq__more-button {
    min-height: 36px;
    padding: 0;
  }
  .well-faq__more-text {
    padding: 14px 15px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .well-faq__icon,
  .well-faq__icon::after,
  .well-faq__more-button,
  .well-faq__more-button::after {
    transition: none !important;
  }
}

@media (min-width: 769px) {
  .site-header__header-contact::after {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
  }

  .site-header__header-contact .site-header__contact-popup {
    top: 100% !important;
    right: 0;
  }

  .site-header__header-contact:hover .site-header__contact-popup,
  .site-header__header-contact:focus-within .site-header__contact-popup {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
  }

  .site-header__header-contact .site-header__icon-button:hover + .site-header__contact-popup,
  .site-header__header-contact .site-header__icon-button:focus-visible + .site-header__contact-popup,
  .site-header__header-contact .site-header__contact-popup:hover,
  .site-header__header-contact .site-header__contact-popup:focus-within,
  .site-header__header-contact.is-contact-open .site-header__contact-popup {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity .18s ease, transform .18s ease, visibility 0s linear 0s;
  }
}

@media (min-width: 769px) {
  .site-header__desktop-floating-contact .site-header__floating-contact::after {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
  }

  .site-header__desktop-floating-contact .site-header__floating-contact:hover .site-header__contact-popup,
  .site-header__desktop-floating-contact .site-header__floating-contact:focus-within .site-header__contact-popup {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(6px, 6px);
    transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
  }

  .site-header__desktop-floating-contact .site-header__icon-button:hover + .site-header__contact-popup,
  .site-header__desktop-floating-contact .site-header__icon-button:focus-visible + .site-header__contact-popup,
  .site-header__desktop-floating-contact .site-header__contact-popup:hover,
  .site-header__desktop-floating-contact .site-header__contact-popup:focus-within,
  .site-header__desktop-floating-contact .site-header__floating-contact.is-contact-open .site-header__contact-popup {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(0, 0);
    transition: opacity .18s ease, transform .18s ease, visibility 0s linear 0s;
  }
}

@media (min-width: 769px) {
  .site-header__header-contact::after,
  .site-header__desktop-floating-contact .site-header__floating-contact::after {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
  }

  .site-header__header-contact .site-header__contact-popup,
  .site-header__desktop-floating-contact .site-header__contact-popup {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity .16s ease, transform .16s ease, visibility 0s linear .16s;
  }

  .site-header__header-contact .site-header__contact-popup {
    top: calc(100% + 4px) !important;
    right: 0 !important;
    transform: translateY(-4px) !important;
  }

  .site-header__desktop-floating-contact .site-header__contact-popup {
    right: calc(100% + 4px) !important;
    bottom: calc(100% + 4px) !important;
    transform: translate(5px, 5px) !important;
  }

  .site-header__header-contact.is-contact-open .site-header__contact-popup,
  .site-header__desktop-floating-contact .site-header__floating-contact.is-contact-open .site-header__contact-popup,
  .site-header__header-contact .site-header__icon-button:hover + .site-header__contact-popup,
  .site-header__header-contact .site-header__icon-button:focus-visible + .site-header__contact-popup,
  .site-header__desktop-floating-contact .site-header__icon-button:hover + .site-header__contact-popup,
  .site-header__desktop-floating-contact .site-header__icon-button:focus-visible + .site-header__contact-popup {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translate(0, 0) !important;
    transition: opacity .16s ease, transform .16s ease, visibility 0s linear 0s;
  }
}

@media (min-width: 769px) {
  .site-header__actions {
    gap: 9.35px;
  }

  .site-header__phone-wrap {
    gap: 9.35px;
  }

  .site-header__phone-stack {
    transform: translateX(11.5px);
  }

  .site-header__online-status {
    margin-left: 8.5px;
    margin-right: 8.5px;
  }

  .site-header__desktop-instagram {
    right: -33px;
  }
}
  

    /* Fix: restore original case-card layout from the source page without touching template header/menu/FAQ. */
    .drilling-page .case-slider__details,
    .drilling-page .case-slider__review {
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
    }

    .drilling-page .case-slider__details dl {
      display: grid;
      gap: 14px;
      margin: 0;
    }

    .drilling-page .case-slider__details div {
      display: grid;
      grid-template-columns: 120px minmax(0, 1fr);
      gap: 18px;
      align-items: start;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--line);
    }

    .drilling-page .case-slider__details div:last-child {
      padding-bottom: 0;
      border-bottom: 0;
    }

    .drilling-page .case-slider__details dt {
      color: var(--muted);
      font-size: 14px;
    }

    .drilling-page .case-slider__details dd {
      margin: 0;
      color: var(--text);
    }

    .drilling-page .case-slider__review h3 {
      margin-bottom: 12px;
    }

    .drilling-page .case-slider__review p {
      color: var(--muted);
      font-size: 18px;
    }

    .drilling-page .hero__visual:empty,
    .drilling-page .case-slider__placeholder:empty {
      color: transparent;
    }

    @media (max-width: 640px) {
      .drilling-page .case-slider__details,
      .drilling-page .case-slider__review {
        padding: 18px;
      }

      .drilling-page .case-slider__details div {
        grid-template-columns: 1fr;
        gap: 4px;
      }
    }

  

/* Header layout polish: desktop/tablet only */
@media (min-width: 769px) {
  :root {
    --header-container: 1180px;
  }

  .header-container {
    padding-left: clamp(18px, 2.4vw, 32px);
    padding-right: clamp(18px, 2.4vw, 32px);
  }

  .site-header {
    padding: 12px 0 14px;
  }

  .site-header.site-header--compact {
    padding: 10px 0 11px;
  }

  .site-header__inner {
    min-height: 54px;
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    align-items: center;
    gap: clamp(24px, 3vw, 46px);
  }

  .site-header__logo {
    min-width: 96px;
    font-size: clamp(1.28rem, 1.6vw, 1.46rem);
    letter-spacing: -0.05em;
  }

  .site-header__nav {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    align-items: center;
    gap: clamp(20px, 2.6vw, 36px);
  }

  .site-header__nav-links {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 1.75vw, 26px);
  }

  .site-header__nav-links a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0;
    color: var(--header-muted);
    font-size: clamp(.92rem, .88vw, .99rem);
    font-weight: 660;
    letter-spacing: -0.015em;
  }

  .site-header__nav-links a:not(:last-child)::after {
    display: none !important;
    content: none !important;
  }

  .site-header__nav-links a:hover,
  .site-header__nav-links a:focus-visible {
    transform: translateY(-1px);
  }

  .site-header__actions {
    position: relative;
    min-width: max-content;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 0;
    padding-left: clamp(14px, 1.8vw, 22px);
    border-left: 1px solid rgba(7, 91, 99, .12);
  }

  .site-header__phone-wrap {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
  }

  .site-header__phone-stack {
    align-items: flex-end;
    transform: none;
  }

  .site-header__phone {
    min-height: 36px;
    padding: 5px 10px 6px;
    font-size: clamp(1rem, 1.02vw, 1.12rem);
    letter-spacing: -0.03em;
  }

  .site-header__phone-worktime {
    margin-top: -1px;
    font-size: .69rem;
    line-height: 1.1;
  }

  .site-header__online-status {
    width: 14px;
    min-width: 14px;
    height: 36px;
    margin: 0 2px 0 0;
  }

  .site-header__online-dot {
    width: 7px;
    height: 7px;
  }

  .site-header__header-contact,
  .site-header__desktop-instagram {
    flex: 0 0 auto;
    align-self: center;
  }

  .site-header__header-contact .site-header__icon-button,
  .site-header__desktop-instagram {
    position: relative;
    top: auto;
    right: auto;
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
  }

  .site-header__header-contact .site-header__icon-button svg {
    width: 25px;
    height: 25px;
  }

  .site-header__desktop-instagram svg {
    width: 25.5px;
    height: 25.5px;
  }

  .site-header__header-contact .site-header__contact-popup {
    top: calc(100% + 8px) !important;
    right: 0;
  }

  .site-header__desktop-instagram .site-header__tooltip--instagram {
    top: calc(100% + 8px);
  }
}

@media (min-width: 769px) and (max-width: 1120px) {
  .header-container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-header__inner {
    gap: 18px;
  }

  .site-header__logo {
    min-width: 78px;
    font-size: 1.24rem;
  }

  .site-header__nav {
    gap: 16px;
  }

  .site-header__nav-links {
    gap: 13px;
  }

  .site-header__nav-links a {
    font-size: .86rem;
    font-weight: 650;
  }

  .site-header__actions {
    gap: 6px;
    padding-left: 12px;
  }

  .site-header__phone {
    min-height: 34px;
    padding-left: 8px;
    padding-right: 8px;
    font-size: .98rem;
  }

  .site-header__phone-worktime,
  .site-header__online-status {
    display: none !important;
  }

  .site-header__header-contact .site-header__icon-button,
  .site-header__desktop-instagram {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
  }
}

@media (min-width: 941px) and (max-width: 1120px) {
  .site-header__desktop-instagram .site-header__tooltip--instagram {
    left: auto;
    right: 0;
    transform: translateY(-3px);
  }

  .site-header__desktop-instagram:hover .site-header__tooltip--instagram,
  .site-header__desktop-instagram:focus-visible .site-header__tooltip--instagram {
    transform: translateY(0);
  }
}

@media (min-width: 769px) and (max-width: 940px) {
  .site-header__inner {
    gap: 14px;
  }

  .site-header__logo {
    min-width: 66px;
    font-size: 1.16rem;
  }

  .site-header__nav {
    gap: 12px;
  }

  .site-header__nav-links {
    gap: 10px;
  }

  .site-header__nav-links a {
    font-size: .8rem;
    letter-spacing: -0.02em;
  }

  .site-header__actions {
    padding-left: 10px;
  }

  .site-header__phone {
    font-size: .92rem;
  }

  .site-header__desktop-instagram {
    display: none !important;
  }
}


/* Premium page layer: scoped content redesign. Header, mobile menu, popups, back-to-top and well-faq are intentionally untouched. */
.drilling-page {
  --page-bg: #fbfdfe;
  --page-surface: #ffffff;
  --page-surface-soft: #f4f8f9;
  --page-text: #061014;
  --page-muted: #51616b;
  --page-muted-2: #6f7d86;
  --page-line: rgba(7, 91, 99, .13);
  --page-line-strong: rgba(7, 91, 99, .22);
  --page-accent: #075b63;
  --page-accent-dark: #054a51;
  --page-shadow: 0 24px 70px rgba(15, 23, 42, .075);
  --page-shadow-soft: 0 14px 42px rgba(15, 23, 42, .045);
  --page-radius-lg: 34px;
  --page-radius: 24px;
  --page-radius-sm: 16px;
  background: var(--page-bg);
  color: var(--page-text);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  overflow: hidden;
}

.drilling-page .container {
  width: min(100% - clamp(32px, 5vw, 72px), 1180px);
  margin-inline: auto;
}

.drilling-page img,
.drilling-page svg {
  max-width: 100%;
}

.drilling-page .section,
.drilling-page .hero {
  position: relative;
  border-bottom: 1px solid var(--page-line);
}

.drilling-page .section {
  padding: clamp(68px, 8vw, 112px) 0;
  background: var(--page-bg);
}

.drilling-page .section--soft {
  background:
    radial-gradient(circle at 18% 12%, rgba(7, 91, 99, .055), transparent 32%),
    linear-gradient(180deg, #f7fafb 0%, #fbfdfe 100%);
}

.drilling-page .hero {
  padding: clamp(78px, 9vw, 136px) 0 clamp(70px, 8vw, 120px);
  background:
    radial-gradient(circle at 84% 22%, rgba(7, 91, 99, .11), transparent 31%),
    radial-gradient(circle at 12% 0%, rgba(7, 91, 99, .055), transparent 34%),
    linear-gradient(180deg, #fbfdfe 0%, #f7fbfc 100%);
}

.drilling-page .hero::after,
.drilling-page .section--soft::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(7, 91, 99, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(7, 91, 99, .03) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 50% 15%, black 0%, transparent 62%);
  opacity: .65;
}

.drilling-page .hero__grid,
.drilling-page .section > .container,
.drilling-page .section .container,
.drilling-page .well-faq__container {
  position: relative;
  z-index: 1;
}

.drilling-page .hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, .94fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.drilling-page .hero__content {
  max-width: 790px;
}

.drilling-page .page-kicker,
.drilling-page .eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  margin: 0 0 18px;
  padding: 7px 12px;
  border: 1px solid rgba(7, 91, 99, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .76);
  color: var(--page-accent);
  font-size: .78rem;
  font-weight: 780;
  line-height: 1;
  letter-spacing: .105em;
  text-transform: uppercase;
  box-shadow: 0 8px 26px rgba(15, 23, 42, .035);
}

.drilling-page h1,
.drilling-page h2,
.drilling-page h3 {
  color: var(--page-text);
  letter-spacing: -.055em;
  text-wrap: balance;
}

.drilling-page h1 {
  max-width: 860px;
  font-size: clamp(2.7rem, 7vw, 5.15rem);
  line-height: .94;
  font-weight: 850;
}

.drilling-page h2 {
  max-width: 850px;
  font-size: clamp(2.15rem, 4.8vw, 4rem);
  line-height: .98;
  font-weight: 820;
}

.drilling-page h3 {
  font-size: clamp(1.12rem, 1.7vw, 1.34rem);
  line-height: 1.14;
  font-weight: 780;
}

.drilling-page .lead {
  max-width: 710px;
  margin-top: 24px;
  color: var(--page-muted);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  line-height: 1.55;
  letter-spacing: -.025em;
}

.drilling-page .hero__note {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--page-muted-2);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.72;
}

.drilling-page .hero__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 750px;
  margin-top: clamp(28px, 4vw, 42px);
}

.drilling-page .feature-mini,
.drilling-page .card,
.drilling-page .form,
.drilling-page .case-slider,
.drilling-page .case-slider__details,
.drilling-page .case-slider__review,
.drilling-page .price-calculator-card {
  border: 1px solid var(--page-line);
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--page-shadow-soft);
  backdrop-filter: blur(14px);
}

.drilling-page .feature-mini {
  min-height: 94px;
  display: flex;
  align-items: flex-start;
  padding: 20px 20px 20px 46px;
  border-radius: 22px;
  position: relative;
}

.drilling-page .feature-mini::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 24px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--page-accent);
  box-shadow: 0 0 0 7px rgba(7, 91, 99, .07);
}

.drilling-page .feature-mini strong {
  margin: 0;
  color: var(--page-text);
  font-size: .98rem;
  line-height: 1.38;
  letter-spacing: -.025em;
  font-weight: 720;
}

.drilling-page .hero-phone-cta {
  max-width: 440px;
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--page-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 48px rgba(15, 23, 42, .07);
}

.drilling-page .hero-phone-cta .field {
  gap: 7px;
}

.drilling-page .field label {
  color: var(--page-muted-2);
  font-size: .84rem;
  font-weight: 680;
}

.drilling-page input,
.drilling-page select,
.drilling-page textarea {
  min-height: 54px;
  border: 1px solid rgba(7, 91, 99, .15);
  border-radius: 16px;
  background: #fff;
  color: var(--page-text);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75), 0 10px 24px rgba(15, 23, 42, .028);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.drilling-page input:focus,
.drilling-page select:focus,
.drilling-page textarea:focus {
  border-color: rgba(7, 91, 99, .44);
  box-shadow: 0 0 0 4px rgba(7, 91, 99, .075), 0 14px 28px rgba(15, 23, 42, .045);
  outline: none;
}

.drilling-page .button {
  min-height: 54px;
  border: 1px solid rgba(7, 91, 99, .25);
  border-radius: 999px;
  background: var(--page-accent);
  color: #fff;
  box-shadow: 0 16px 34px rgba(7, 91, 99, .18);
  font-weight: 760;
  letter-spacing: -.015em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.drilling-page .button:hover,
.drilling-page .button:focus-visible {
  background: var(--page-accent-dark);
  border-color: rgba(7, 91, 99, .35);
  box-shadow: 0 18px 42px rgba(7, 91, 99, .22);
  transform: translateY(-1px);
  outline: none;
}

.drilling-page .button--secondary {
  background: rgba(255,255,255,.86);
  color: var(--page-text);
  border-color: rgba(7, 91, 99, .16);
  box-shadow: 0 12px 26px rgba(15, 23, 42, .04);
}

.drilling-page .button--secondary:hover,
.drilling-page .button--secondary:focus-visible {
  color: var(--page-accent);
  background: #fff;
}

.drilling-page .hero-cta {
  min-height: 66px;
  border-radius: 18px;
  flex-direction: column;
  gap: 2px;
  line-height: 1.12;
}

.drilling-page .hero-cta span {
  font-size: 1.05rem;
  font-weight: 780;
}

.drilling-page .hero-cta small {
  font-size: .78rem;
  opacity: .78;
}

.drilling-page .hero__visual {
  position: relative;
  min-height: clamp(390px, 42vw, 590px);
  border: 1px solid rgba(7, 91, 99, .14);
  border-radius: 40px;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 24%, rgba(7, 91, 99, .18), transparent 22%),
    linear-gradient(135deg, rgba(7,91,99,.08) 0%, transparent 32%),
    linear-gradient(145deg, #ffffff 0%, #eef6f7 100%);
  box-shadow: var(--page-shadow);
}

.drilling-page .hero__visual::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(7, 91, 99, .12);
  border-radius: 30px;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(7, 91, 99, .16) 48% 49%, transparent 49% 100%),
    linear-gradient(0deg, transparent 0 48%, rgba(7, 91, 99, .12) 48% 49%, transparent 49% 100%),
    radial-gradient(circle at 50% 52%, rgba(7, 91, 99, .10), transparent 18%);
  opacity: .85;
}

.drilling-page .hero__visual::after {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  height: 102px;
  border: 1px solid rgba(7, 91, 99, .12);
  border-radius: 24px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 18px 44px rgba(15, 23, 42, .08);
  backdrop-filter: blur(14px);
}

.drilling-page .section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 30px;
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.drilling-page .section-head p {
  color: var(--page-muted);
  font-size: 1.04rem;
  line-height: 1.68;
}

.drilling-page .grid {
  display: grid;
  gap: 18px;
}

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

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

.drilling-page .card {
  position: relative;
  min-height: 190px;
  padding: clamp(24px, 3vw, 34px);
  border-radius: var(--page-radius);
  overflow: hidden;
}

.drilling-page .card::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -34px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: rgba(7, 91, 99, .045);
  pointer-events: none;
}

.drilling-page .card h3 {
  margin-bottom: 13px;
}

.drilling-page .card p,
.drilling-page .step p,
.drilling-page .case-slider__review p,
.drilling-page .case-slider__details dd,
.drilling-page .depth-hint,
.drilling-page .price-result-note,
.drilling-page .form__note {
  color: var(--page-muted);
  line-height: 1.68;
}

.drilling-page .price-grid,
.drilling-page .price-grid--single {
  display: block;
}

.drilling-page .price-calculator-card {
  max-width: none;
  margin-top: clamp(30px, 4vw, 48px);
  padding: clamp(24px, 4vw, 44px);
  border-radius: var(--page-radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.86)),
    radial-gradient(circle at 82% 18%, rgba(7, 91, 99, .12), transparent 30%);
  box-shadow: var(--page-shadow);
}

.drilling-page .price-calculator-form {
  display: grid;
  gap: 22px;
}

.drilling-page .price-location-grid,
.drilling-page .price-calculator-grid,
.drilling-page .price-phone-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.drilling-page .price-result-box {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(7, 91, 99, .14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 26%, rgba(7,91,99,.13), transparent 32%),
    linear-gradient(145deg, #eef7f8, #ffffff 72%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 14px 34px rgba(15,23,42,.045);
}

.drilling-page .price-result-label {
  margin-bottom: 10px;
  color: var(--page-muted-2);
  font-size: .88rem;
  font-weight: 720;
}

.drilling-page .price-result-value {
  color: var(--page-text);
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: .92;
  letter-spacing: -.065em;
  font-weight: 860;
}

.drilling-page .steps {
  display: grid;
  gap: 14px;
  counter-reset: step;
}

.drilling-page .step {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 22px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--page-line);
  border-radius: 24px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 12px 34px rgba(15,23,42,.035);
}

.drilling-page .step::before {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(7, 91, 99, .18);
  background: #fff;
  color: var(--page-accent);
  box-shadow: 0 12px 28px rgba(15,23,42,.055);
}

.drilling-page .step h3 {
  margin-bottom: 8px;
}

.drilling-page .case-slider {
  display: grid;
  grid-template-columns: minmax(290px, .82fr) minmax(0, 1.18fr);
  gap: clamp(22px, 3vw, 34px);
  align-items: stretch;
  padding: clamp(20px, 3vw, 34px);
  border-radius: 34px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--page-shadow);
}

.drilling-page .case-slider__image {
  min-width: 0;
}

.drilling-page .case-slider__placeholder {
  position: relative;
  min-height: 100%;
  aspect-ratio: 1 / 1.08;
  border: 1px solid rgba(7, 91, 99, .14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 66% 28%, rgba(7,91,99,.16), transparent 24%),
    linear-gradient(135deg, rgba(7,91,99,.075), transparent 34%),
    linear-gradient(145deg, #f4f9fa, #ffffff);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
  color: transparent;
  overflow: hidden;
}

.drilling-page .case-slider__placeholder::before {
  content: "";
  position: absolute;
}

.drilling-page .case-slider__content {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 18px;
  min-width: 0;
}

.drilling-page .case-slider__details,
.drilling-page .case-slider__review {
  padding: clamp(22px, 3vw, 32px);
  border-radius: 26px;
  box-shadow: 0 10px 30px rgba(15,23,42,.035);
}

.drilling-page .case-slider__details dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.drilling-page .case-slider__details div {
  display: grid;
  grid-template-columns: minmax(110px, 140px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 17px 0;
  border-bottom: 1px solid rgba(7, 91, 99, .10);
}

.drilling-page .case-slider__details div:first-child {
  padding-top: 0;
}

.drilling-page .case-slider__details div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.drilling-page .case-slider__details dt {
  color: var(--page-muted-2);
  font-size: .88rem;
  font-weight: 720;
}

.drilling-page .case-slider__details dd {
  margin: 0;
  color: var(--page-text);
}

.drilling-page .case-slider__review h3 {
  margin-bottom: 12px;
}

.drilling-page .case-slider__review p {
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
}

.drilling-page .case-slider__controls {
  width: fit-content;
  margin: 28px auto 0;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid rgba(7, 91, 99, .12);
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 45px rgba(15, 23, 42, .06);
}

.drilling-page .case-arrow {
  width: 46px;
  min-width: 46px;
  height: 46px;
  min-height: 46px;
  padding: 0;
  border-radius: 999px;
}

.drilling-page .case-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 112px;
}

.drilling-page .case-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  min-height: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(7, 91, 99, .22);
  cursor: pointer;
  transition: width .18s ease, background .18s ease;
}

.drilling-page .case-dot.is-active {
  width: 24px;
  height: 8px;
  background: var(--page-accent);
}

.drilling-page .contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .58fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--page-line);
  border-radius: 36px;
  background:
    radial-gradient(circle at 86% 22%, rgba(7,91,99,.12), transparent 34%),
    linear-gradient(145deg, #ffffff, #f3f8f9);
  box-shadow: var(--page-shadow);
}

.drilling-page .form {
  padding: clamp(22px, 3vw, 30px);
  border-radius: 26px;
}

.drilling-page .footer {
  padding: 34px 0 42px;
  color: var(--page-muted-2);
  background: var(--page-bg);
}

.drilling-page .footer__inner {
  width: min(100% - clamp(32px, 5vw, 72px), 1180px);
  margin-inline: auto;
}

@media (max-width: 1100px) {
  .drilling-page .hero__grid,
  .drilling-page .case-slider,
  .drilling-page .contact-grid {
    grid-template-columns: 1fr;
  }

  .drilling-page .hero__visual {
    min-height: 360px;
  }
}

@media (max-width: 900px) {
  .drilling-page .section-head,
  .drilling-page .grid--2,
  .drilling-page .grid--3,
  .drilling-page .price-location-grid,
  .drilling-page .price-calculator-grid,
  .drilling-page .price-phone-row {
    grid-template-columns: 1fr;
  }

  .drilling-page .section-head {
    align-items: start;
  }
}

@media (max-width: 768px) {
  .drilling-page .container {
    width: min(100% - 28px, 1180px);
  }

  .drilling-page .hero {
    padding: 54px 0 64px;
  }

  .drilling-page h1 {
    font-size: clamp(2.35rem, 12vw, 3.45rem);
  }

  .drilling-page h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .drilling-page .lead {
    font-size: 1.08rem;
  }

  .drilling-page .hero__features {
    grid-template-columns: 1fr;
  }

  .drilling-page .hero-phone-cta {
    max-width: none;
  }

  .drilling-page .hero__visual {
    min-height: 292px;
    border-radius: 30px;
  }

  .drilling-page .hero__visual::before {
    inset: 20px;
    border-radius: 22px;
  }

  .drilling-page .hero__visual::after {
    left: 24px;
    right: 24px;
    bottom: 24px;
    height: 72px;
    border-radius: 18px;
  }

  .drilling-page .section {
    padding: 58px 0;
  }

  .drilling-page .card,
  .drilling-page .price-calculator-card,
  .drilling-page .case-slider,
  .drilling-page .contact-grid {
    border-radius: 24px;
  }

  .drilling-page .step {
    grid-template-columns: 1fr;
  }

  .drilling-page .step::before {
    width: 52px;
    height: 52px;
  }

  .drilling-page .case-slider__details div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .drilling-page .case-slider__controls {
    gap: 13px;
    padding: 9px 10px;
  }

  .drilling-page .case-arrow {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .drilling-page *,
  .drilling-page *::before,
  .drilling-page *::after {
    transition-duration: .01ms !important;
  }
}



/* ===== Перенесённые основные секции из текущего итогового файла ===== */
:root{
  --bg:#f4f7f8;
  --paper:#ffffff;
  --text:#0d1218;
  --muted:#687682;
  --line:rgba(9,52,60,.13);
  --line-strong:rgba(13,18,24,.18);
  --accent:#0b646b;
  --accent-dark:#084e55;
  --accent-soft:rgba(11,100,107,.08);
  --cream:#f7f3ec;
  --shadow:0 20px 58px rgba(13,18,24,.075);
  --soft-shadow:0 14px 38px rgba(13,18,24,.055);
  --max:1180px;
}
*{box-sizing:border-box}
html,body{margin:0;min-height:100%;}
html{scroll-behavior:smooth}
body{
  background:var(--bg);
  color:var(--text);
  font-family:Inter,"Segoe UI",system-ui,-apple-system,BlinkMacSystemFont,Arial,sans-serif;
  overflow-x:hidden;
}
button,input{font:inherit}
button{cursor:pointer}
.site-section{width:100%;border-bottom:1px solid var(--line);}
.site-inner{width:min(100%,var(--max));margin:0 auto;}

/* HERO */
.hp-hero-section{
  min-height:100vh;
  display:flex;
  align-items:center;
  background:
    linear-gradient(90deg,rgba(11,100,107,.045) 1px,transparent 1px),
    linear-gradient(0deg,rgba(11,100,107,.035) 1px,transparent 1px),
    #fbfdfd;
  background-size:40px 40px;
}
.hp-hero{min-height:100vh;width:100%;display:grid;grid-template-columns:minmax(0,.78fr) minmax(260px,.62fr);gap:clamp(24px,5vw,64px);align-items:center;padding:clamp(34px,5vw,58px) 0;}
.hp-copy{max-width:720px;padding:0 clamp(14px,2vw,0px);}
.hp-empty{min-height:320px}
.hp-eyebrow{display:inline-flex;align-items:center;min-height:30px;padding:0 12px;border:1px solid rgba(11,100,107,.18);border-radius:999px;background:rgba(255,255,255,.74);color:var(--accent);font-size:.75rem;font-weight:780;letter-spacing:.055em;text-transform:uppercase;}
.hp-title{max-width:720px;margin:18px 0 0;font-size:clamp(2.65rem,5.3vw,5.25rem);line-height:.92;letter-spacing:-.075em;font-weight:830;}
.hp-subtitle{max-width:610px;margin:20px 0 0;color:#3e4a56;font-size:clamp(1rem,1.35vw,1.16rem);line-height:1.5;letter-spacing:-.015em;}
.hp-benefits{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;max-width:720px;margin-top:24px;}
.hp-benefit{min-height:76px;display:flex;align-items:flex-start;gap:11px;padding:14px;border:1px solid var(--line);border-radius:18px;background:rgba(255,255,255,.78);}
.hp-dot{flex:0 0 auto;width:18px;height:18px;margin-top:2px;display:inline-flex;align-items:center;justify-content:center;border-radius:50%;background:rgba(11,100,107,.09);}
.hp-dot::after{content:"";width:7px;height:7px;border-radius:50%;background:var(--accent);}
.hp-benefit strong{display:block;font-size:.93rem;line-height:1.16;letter-spacing:-.025em;}
.hp-benefit span{display:block;margin-top:4px;color:var(--muted);font-size:.78rem;line-height:1.28;}
.hp-phone-box{width:min(100%,520px);margin-top:24px;padding:14px;display:grid;grid-template-columns:1fr 1fr;gap:10px;align-items:end;border:1px solid var(--line);border-radius:22px;background:rgba(255,255,255,.82);box-shadow:0 16px 40px rgba(13,18,24,.055);}
.hp-phone-label{grid-column:1/-1;margin:0 0 -2px;color:#6f7f8b;font-size:.88rem;font-weight:760;}
.hp-phone-input{width:100%;min-height:56px;display:flex;align-items:center;border:1px solid rgba(13,18,24,.16);border-radius:15px;background:#fff;overflow:hidden;}
.hp-phone-input span{min-width:70px;height:100%;display:flex;align-items:center;padding-left:17px;color:#111;font-size:1rem;font-weight:500;}
.hp-phone-input input{width:100%;min-width:0;height:56px;padding:0 14px 0 0;border:0;outline:0;background:transparent;font-size:1rem;color:#111;}
.hp-phone-input input::placeholder{color:#a3acb5}
.hp-phone-button{width:100%;min-height:56px;border:0;border-radius:15px;background:var(--accent);color:#fff;font-size:1.02rem;font-weight:820;line-height:1.16;box-shadow:0 14px 30px rgba(11,100,107,.18);}
.hp-phone-button:hover{background:var(--accent-dark)}
.hp-phone-button small{display:block;margin-top:2px;font-size:.78rem;font-weight:600;opacity:.88;}
.hp-micro{max-width:560px;margin-top:14px;color:var(--muted);font-size:.94rem;line-height:1.45;}

/* BENEFITS */
.ben-section{background:#f7f3ec;}
.ben-wrap{display:grid;grid-template-columns:minmax(260px,.68fr) minmax(0,1fr);gap:clamp(28px,5vw,70px);align-items:start;padding:clamp(34px,5.4vw,64px) 0;}
.ben-head{position:sticky;top:24px;margin:0;max-width:760px;padding:0 clamp(14px,2vw,0px);}
.ben-kicker{display:inline-flex;align-items:center;min-height:30px;padding:0 12px;border:1px solid rgba(118,100,77,.22);border-radius:999px;background:rgba(255,255,255,.58);color:#76644d;font-size:.76rem;font-weight:780;letter-spacing:.08em;text-transform:uppercase;}
.ben-head h2{margin:16px 0 0;font-size:clamp(2.2rem,4.8vw,4.65rem);line-height:.95;letter-spacing:-.07em;}
.ben-head p{max-width:620px;margin:18px 0 0;color:var(--muted);font-size:clamp(1rem,1.45vw,1.14rem);line-height:1.55;}
.ben-list{display:grid;gap:0;border-top:1px solid rgba(13,18,24,.14);padding:0 clamp(14px,2vw,0px);}
.ben-item{border-bottom:1px solid rgba(13,18,24,.14);}
.ben-button{appearance:none;width:100%;padding:24px 0;border:0;background:transparent;color:inherit;text-align:left;cursor:pointer;}
.ben-title{display:grid;grid-template-columns:42px minmax(0,1fr) 30px;gap:0;align-items:start;}
.ben-num{width:28px;height:28px;display:inline-flex;align-items:center;justify-content:center;color:#76644d;font-weight:820;}
.ben-main{min-width:0}
.ben-main h3,.ben-item-heading{margin:0;font-size:clamp(1.02rem,1.35vw,1.18rem);line-height:1.18;letter-spacing:-.035em;}
.ben-short{display:block;margin-top:7px;color:var(--muted);font-size:.94rem;line-height:1.42;}
.ben-icon{flex:0 0 auto;width:30px;height:30px;position:relative;border:1px solid rgba(118,100,77,.22);border-radius:999px;background:rgba(118,100,77,.08);color:#76644d;}
.ben-icon::before,.ben-icon::after{content:"";position:absolute;left:50%;top:50%;width:12px;height:1.8px;border-radius:999px;background:currentColor;transform:translate(-50%,-50%);}
.ben-icon::after{transform:translate(-50%,-50%) rotate(90deg);transition:transform .2s ease;}
.ben-button[aria-expanded="true"] .ben-icon::after{transform:translate(-50%,-50%) rotate(0);}
.ben-panel{overflow:hidden;max-height:0;transition:max-height .25s ease;}
.ben-panel-inner{padding:0 0 24px 42px;color:var(--muted);font-size:.95rem;line-height:1.55;max-width:680px;}
.ben-item.is-open .ben-panel{max-height:110px;}

/* CALCULATOR */
.calc-section{background:#fbfdfd;}
.calc-box{padding:clamp(24px,4.2vw,44px) 0;}
.calc-head{max-width:780px;margin-bottom:20px;padding:0 clamp(14px,2vw,0px);}
.calc-kicker{display:inline-flex;align-items:center;min-height:27px;padding:0 10px;border:1px solid rgba(11,100,107,.18);border-radius:999px;background:rgba(255,255,255,.76);color:var(--accent);font-size:.7rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;}
.calc-head h2{margin:10px 0 0;font-size:clamp(2.05rem,4vw,3.55rem);line-height:.96;letter-spacing:-.065em;}
.calc-head p{max-width:680px;margin:12px 0 0;color:var(--muted);font-size:clamp(.98rem,1.25vw,1.08rem);line-height:1.5;}
.calc-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(320px,.39fr);gap:14px;align-items:stretch;padding:0 clamp(14px,2vw,0px);}
.calc-left{display:grid;gap:14px;}
.calc-top-row{display:grid;grid-template-columns:minmax(0,1fr) minmax(280px,.42fr);gap:14px;}
.calc-panel,.calc-result{border:1px solid var(--line);border-radius:18px;background:#fff;box-shadow:var(--soft-shadow);}
.calc-panel{padding:14px;}
.calc-panel-title{display:flex;align-items:flex-end;justify-content:space-between;gap:10px;margin-bottom:10px;}
.calc-panel-title h3{margin:0;font-size:.96rem;line-height:1.1;letter-spacing:-.025em;}
.calc-panel-title h3 small{color:var(--muted);font-size:.84rem;font-weight:650;}
.calc-panel-title span{color:var(--muted);font-size:.82rem;}
.calc-depth-row{display:flex;align-items:center;gap:12px;}
.calc-range-wrap{flex:1 1 auto;min-width:0;}
.calc-scale{display:flex;justify-content:space-between;margin-top:5px;color:var(--muted);font-size:.74rem;}
.calc-depth-field{width:92px;height:40px;display:flex;align-items:center;border:1px solid var(--line-strong);border-radius:12px;background:#fff;overflow:hidden;}
.calc-depth-field input{width:100%;min-width:0;height:100%;padding:0 4px 0 10px;border:0;outline:0;text-align:right;color:var(--text);font-weight:800;background:transparent;}
.calc-depth-field span{padding:0 10px 0 4px;color:var(--muted);font-weight:760;}
.calc-range{--progress:14.14%;width:100%;height:24px;margin:0;padding:0;background:transparent;appearance:none;-webkit-appearance:none;outline:none;}
.calc-range::-webkit-slider-runnable-track{height:9px;border-radius:999px;background:linear-gradient(to right,var(--accent) 0%,var(--accent) var(--progress),#dfe8eb var(--progress),#dfe8eb 100%);}
.calc-range::-webkit-slider-thumb{-webkit-appearance:none;width:22px;height:22px;margin-top:-6.5px;border:4px solid #fff;border-radius:50%;background:var(--accent);box-shadow:0 8px 20px rgba(11,100,107,.22),0 0 0 1px rgba(11,100,107,.22);}
.calc-range:focus-visible::-webkit-slider-thumb{box-shadow:0 8px 20px rgba(11,100,107,.22),0 0 0 5px rgba(11,100,107,.14);}
.calc-range::-moz-range-track{height:9px;border-radius:999px;background:#dfe8eb;}
.calc-range::-moz-range-progress{height:9px;border-radius:999px;background:var(--accent);}
.calc-range::-moz-range-thumb{width:16px;height:16px;border:4px solid #fff;border-radius:50%;background:var(--accent);box-shadow:0 8px 20px rgba(11,100,107,.22),0 0 0 1px rgba(11,100,107,.22);}
.calc-pipe-list{display:grid;gap:8px;}
.calc-pipe-option{position:relative;width:100%;min-height:58px;display:grid;grid-template-columns:50px minmax(0,1fr);gap:8px;align-items:center;padding:8px 34px 8px 10px;border:1px solid var(--line);border-radius:14px;background:#fff;color:var(--text);text-align:left;transition:.15s ease;}
.calc-pipe-option i{width:48px;height:36px;display:flex;align-items:center;justify-content:center;}
.calc-pipe-option b,.calc-setup-option b{display:block;font-size:.88rem;line-height:1.12;letter-spacing:-.02em;}
.calc-pipe-option em,.calc-setup-option em{display:block;margin-top:3px;color:var(--muted);font-size:.76rem;font-style:normal;}
.calc-setup-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;}
.calc-setup-option{position:relative;width:100%;min-height:84px;display:grid;grid-template-columns:70px minmax(0,1fr);align-items:center;gap:8px;padding:9px 32px 9px 9px;border:1px solid var(--line);border-radius:15px;background:#fff;color:var(--text);text-align:left;transition:.15s ease;}
.calc-setup-option i{width:70px;height:50px;display:flex;align-items:center;justify-content:flex-start;}
.calc-setup-copy b{display:block;color:var(--text);font-size:.9rem;}
.calc-setup-copy em{display:block;margin-top:6px;color:var(--accent-dark);font-size:.82rem;font-weight:780;line-height:1.15;}
.calc-pipe-option:hover,.calc-setup-option:hover{transform:translateY(-1px);border-color:rgba(11,100,107,.28);}
.calc-pipe-option.is-selected,.calc-setup-option.is-selected{border-color:rgba(11,100,107,.50);background:linear-gradient(180deg,rgba(11,100,107,.055),#fff);box-shadow:0 12px 30px rgba(11,100,107,.08);}
.calc-pipe-option mark,.calc-setup-option mark{position:absolute;right:9px;top:9px;width:19px;height:19px;display:inline-flex;align-items:center;justify-content:center;border:1px solid rgba(11,100,107,.24);border-radius:999px;background:#fff;color:transparent;font-size:.68rem;font-weight:900;}
.calc-pipe-option.is-selected mark,.calc-setup-option.is-selected mark{background:var(--accent);border-color:var(--accent);color:#fff;}
.calc-section svg{display:block;width:100%;height:100%;}
.calc-tubeTop{fill:#e8fbfc;stroke:var(--accent);stroke-width:2;}
.calc-tubeBody{fill:#cdeff2;stroke:var(--accent);stroke-width:2;}
.calc-tubeLine{fill:none;stroke:var(--accent);stroke-width:1.7;stroke-linecap:round;}
.calc-ground{fill:none;stroke:rgba(13,18,24,.24);stroke-width:2;stroke-linecap:round;}
.calc-connector,.calc-faucet{fill:none;stroke:var(--accent);stroke-width:3;stroke-linecap:round;stroke-linejoin:round;}
.calc-node{fill:#e7f6f7;stroke:var(--accent);stroke-width:2;}
.calc-caisson{fill:#e7f6f7;stroke:var(--accent);stroke-width:2;}
.calc-lid{fill:none;stroke:var(--accent);stroke-width:3;stroke-linecap:round;}
.calc-drop{fill:#cdeff2;stroke:var(--accent);stroke-width:2;}
.calc-result{min-height:100%;display:flex;flex-direction:column;justify-content:space-between;padding:18px;border-color:rgba(11,100,107,.22);background:linear-gradient(180deg,#fff 0%,#fff 56%,rgba(11,100,107,.055) 100%);}
.calc-result-list{display:grid;gap:12px;}
.calc-result-list div{display:grid;grid-template-columns:minmax(96px,.5fr) minmax(0,1fr);gap:14px;align-items:baseline;padding-bottom:10px;border-bottom:1px solid rgba(13,18,24,.08);}
.calc-result-list div:last-child{border-bottom:0;}
.calc-result-list span{color:var(--muted);font-size:.98rem;line-height:1.3;}
.calc-result-list b{color:var(--text);font-size:1.04rem;line-height:1.26;text-align:right;font-weight:830;}
.calc-result-list b.calc-setup-summary span,.calc-result-list b.calc-setup-summary em{display:block;}
.calc-result-list b.calc-setup-summary span{color:var(--text);}
.calc-result-list b.calc-setup-summary em{margin-top:4px;color:var(--accent-dark);font-style:normal;font-size:.96rem;font-weight:820;}
.calc-result-total{padding:18px;margin:22px -4px -4px;border:1px solid rgba(11,100,107,.14);border-radius:18px;background:#fff;}
.calc-result-total span{display:block;color:var(--muted);font-size:.72rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;}
.calc-result-total strong{display:block;margin-top:8px;color:var(--accent-dark);font-size:clamp(2.25rem,3.8vw,3.25rem);line-height:.94;letter-spacing:-.075em;}
.calc-lead-form{width:100%;margin:14px 0 0;display:grid;grid-template-columns:345px minmax(0,1fr);gap:10px;align-items:start;}
.calc-phone-field{min-height:52px;display:flex;align-items:center;border:1px solid var(--line-strong);border-radius:16px;background:#fff;overflow:hidden;box-shadow:var(--soft-shadow);}
.calc-phone-field span{height:100%;min-width:70px;display:flex;align-items:center;padding-left:16px;color:var(--text);font-weight:760;}
.calc-phone-field input{width:100%;min-width:0;height:52px;border:0;outline:0;padding:0 12px 0 0;color:var(--text);background:transparent;}
.calc-phone-field input::placeholder{color:#a3acb5;}
.calc-lead-form button{min-height:52px;border:0;border-radius:16px;background:var(--accent);color:#fff;font-weight:830;box-shadow:0 12px 26px rgba(11,100,107,.17);}
.calc-lead-form p{grid-column:1/-1;margin:2px 0 0;color:var(--muted);font-size:.82rem;line-height:1.38;text-align:left;justify-self:start;max-width:920px;}

@media(max-width:980px){
  .hp-hero{grid-template-columns:1fr;min-height:auto;padding:30px 0 22px;}
  .hp-empty{display:none}
  .hp-benefits{grid-template-columns:1fr;}
  .hp-phone-box{display:block;width:100%;}
  .hp-phone-button{margin-top:12px;}
  .ben-wrap{grid-template-columns:1fr;}
  .ben-head{position:static;}
  .calc-grid,.calc-top-row{grid-template-columns:1fr;}
  .calc-lead-form{width:100%;grid-template-columns:minmax(260px,345px) minmax(260px,420px);}
}
@media(max-width:620px){
  .hp-copy,.ben-head,.ben-list,.calc-head,.calc-grid{padding-left:10px;padding-right:10px;}
  .hp-hero-section{min-height:auto;}
  .hp-title{font-size:clamp(2.25rem,14vw,3.3rem);line-height:.96;}
  .ben-wrap{padding:24px 0;}
  .ben-head h2{font-size:clamp(2rem,11vw,3.2rem);}
  .ben-title{grid-template-columns:34px minmax(0,1fr) 30px;}
  .ben-panel-inner{padding-left:34px;}
  .calc-box{padding:20px 0;}
  .calc-head h2{font-size:clamp(1.95rem,10vw,2.9rem);}
  .calc-depth-row{flex-direction:column;align-items:stretch;}
  .calc-depth-field{width:100%;}
  .calc-setup-grid{grid-template-columns:1fr;}
  .calc-result-list div{grid-template-columns:1fr;gap:4px;}
  .calc-result-list b{text-align:left;}
  .calc-lead-form{grid-template-columns:1fr;margin-left:10px;margin-right:10px;width:calc(100% - 20px);}
  .calc-range::-webkit-slider-thumb{width:28px;height:28px;margin-top:-9.5px;}
  .calc-range::-moz-range-thumb{width:20px;height:20px;}
}

/* Final fixed equipment layout and CTA alignment */
.calc-setup-copy{
  display:block !important;
  min-width:0 !important;
  line-height:1.14 !important;
}

.calc-equipment-name{
  display:block !important;
  color:var(--text) !important;
  font-size:.9rem !important;
  font-weight:800 !important;
  line-height:1.12 !important;
  white-space:normal !important;
}

.calc-equipment-price{
  display:block !important;
  margin-top:6px !important;
  color:var(--text) !important;
  font-size:.82rem !important;
  font-weight:780 !important;
  line-height:1.15 !important;
  white-space:normal !important;
}

.calc-result-list b.calc-setup-summary em{
  color:var(--text) !important;
}

@media (min-width:981px){
  .calc-lead-form{
    width:100% !important;
    grid-template-columns:345px minmax(0,1fr) !important;
    margin-left:0 !important;
    margin-right:0 !important;
  }

  .calc-lead-form button{
    width:100% !important;
  }

  .calc-lead-form p{
    grid-column:1/-1 !important;
    text-align:left !important;
    justify-self:start !important;
    margin:2px 0 0 !important;
    max-width:920px !important;
  }
}

@media(max-width:620px){
  .calc-lead-form p{
    grid-column:1/-1 !important;
    text-align:left !important;
  }
}


/* Absolute fallback against inline equipment text */
.calc-equipment-break{
  display:block !important;
  content:"" !important;
}

.calc-equipment-price{
  margin-top:0 !important;
}


/* Mobile calculator CTA: phone and button in two full-width rows */
@media (max-width:700px){
  .calc-lead-form{
    display:grid !important;
    grid-template-columns:1fr !important;
    width:100% !important;
    max-width:none !important;
    margin:14px 0 0 !important;
    gap:10px !important;
  }

  .calc-phone-field,
  .calc-lead-form button{
    width:100% !important;
    max-width:none !important;
  }

  .calc-phone-field{
    grid-column:1 / -1 !important;
  }

  .calc-lead-form button{
    grid-column:1 / -1 !important;
    min-height:52px !important;
  }

  .calc-lead-form p{
    grid-column:1 / -1 !important;
    width:100% !important;
    max-width:none !important;
    text-align:left !important;
    margin:0 !important;
  }
}


/* Mobile calculator CTA: match the width of the cost/result block */
@media (max-width:700px){
  .calc-lead-form{
    width:calc(100% - 20px) !important;
    max-width:none !important;
    margin:14px auto 0 !important;
    grid-template-columns:1fr !important;
  }

  .calc-phone-field,
  .calc-lead-form button{
    width:100% !important;
    max-width:none !important;
  }
}



/* ===== Work process block ===== */

.work-section{
  --soft:rgba(11,100,107,.075);
  --soft-2:rgba(11,100,107,.045);

  padding:clamp(34px,5vw,76px) 18px;
}

.work-inner{
  width:min(100%,var(--max));
  margin:0 auto;
}

.work-head{
  max-width:860px;
  margin-bottom:24px;
}

.work-label{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 11px;
  border:1px solid rgba(11,100,107,.18);
  border-radius:999px;
  background:rgba(255,255,255,.72);
  color:var(--accent);
  font-size:.7rem;
  font-weight:850;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.work-head h2{
  margin:14px 0 0;
  font-size:clamp(2.25rem,4.6vw,4.25rem);
  line-height:.95;
  letter-spacing:-.075em;
}

.work-head p{
  max-width:760px;
  margin:18px 0 0;
  color:var(--text);
  font-size:clamp(1.22rem,2.15vw,1.56rem);
  font-weight:650;
  line-height:1.34;
  letter-spacing:-.035em;
}

.work-shell{
  display:grid;
  grid-template-columns:390px minmax(0,1fr);
  min-height:520px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow);
}

.work-menu{
  border-right:1px solid var(--line);
  background:#fff;
}

.work-step{
  border-bottom:1px solid var(--line);
}

.work-step:last-child{
  border-bottom:0;
}

.work-btn{
  position:relative;
  width:100%;
  min-height:98px;
  display:grid;
  grid-template-columns:52px minmax(0,1fr) 26px;
  gap:15px;
  align-items:center;
  padding:18px 20px;
  border:0;
  background:#fff;
  text-align:left;
  cursor:pointer;
  transition:background .2s ease;
}

.work-btn:hover,
.work-step.is-active .work-btn{
  background:var(--soft-2);
}

.work-icon{
  width:42px;
  height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(11,100,107,.18);
  border-radius:14px;
  background:linear-gradient(180deg,#fff,rgba(11,100,107,.055));
}

.work-icon svg{
  width:27px;
  height:27px;
  display:block;
}

.work-icon path{
  fill:none;
  stroke:var(--accent);
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.work-btn b{
  display:block;
  color:var(--text);
  font-size:.99rem;
  line-height:1.18;
  letter-spacing:-.025em;
}

.work-btn small{
  display:block;
  margin-top:5px;
  color:var(--muted);
  font-size:.78rem;
  font-weight:520;
  line-height:1.3;
}

.work-arrow{
  width:22px;
  height:22px;
  border-top:1.5px solid var(--text);
  border-right:1.5px solid var(--text);
  transform:rotate(45deg);
  opacity:.55;
  justify-self:end;
  transition:transform .22s ease,opacity .22s ease;
}

.work-step.is-active .work-arrow{
  opacity:1;
  transform:rotate(45deg) translate(3px,-3px);
}

.mobile-detail{
  display:none;
}

.work-display{
  padding:clamp(28px,4.6vw,54px);
  background:
    radial-gradient(circle at 12% 15%,rgba(11,100,107,.10),transparent 34%),
    linear-gradient(180deg,#ffffff 0%,#f8fbfb 100%);
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  align-items:flex-start;
  gap:34px;
}

.display-copy{
  max-width:690px;
}

.display-copy p{
  margin:0;
  color:var(--muted);
  font-size:1rem;
  line-height:1.6;
}

.active-card{
  margin-top:0;
}

.active-card h3{
  max-width:650px;
  margin:0;
  color:var(--text);
  font-size:clamp(1.8rem,3.25vw,2.85rem);
  line-height:1.02;
  letter-spacing:-.06em;
}

.active-card p{
  max-width:710px;
  margin:16px 0 0;
  color:var(--muted);
  font-size:1rem;
  line-height:1.62;
}

@media(max-width:980px){
  .work-section{
  --soft:rgba(11,100,107,.075);
  --soft-2:rgba(11,100,107,.045);

    padding:34px 10px 58px;
  }

  .work-head{
    margin-bottom:18px;
  }

  .work-shell{
    display:block;
    min-height:0;
  }

  .work-display{
    display:none;
  }

  .work-menu{
    border-right:0;
  }

  .work-step{
    border-bottom:1px solid var(--line);
  }

  .work-btn{
    min-height:82px;
    grid-template-columns:46px minmax(0,1fr) 28px;
    gap:13px;
    padding:16px;
  }

  .work-icon{
    width:40px;
    height:40px;
    border-radius:13px;
  }

  .work-icon svg{
    width:25px;
    height:25px;
  }

  .work-step.is-active .work-btn{
    background:#fff;
  }

  .work-step.is-open .work-btn{
    background:var(--soft-2);
  }

  .work-step.is-open .work-arrow{
    opacity:1;
    transform:rotate(135deg);
  }

  .mobile-detail{
    display:grid;
    grid-template-rows:0fr;
    transition:grid-template-rows .28s ease;
  }

  .work-step.is-open .mobile-detail{
    grid-template-rows:1fr;
  }

  .mobile-detail-inner{
    min-height:0;
    overflow:hidden;
  }

  .mobile-detail-box{
    padding:0 16px 18px 75px;
  }

  .mobile-detail-box h3{
    margin:0;
    color:var(--text);
    font-size:1.22rem;
    line-height:1.12;
    letter-spacing:-.035em;
  }

  .mobile-detail-box p{
    margin:10px 0 0;
    color:var(--muted);
    font-size:.95rem;
    line-height:1.55;
  }
}

@media(max-width:620px){
  .work-head h2{
    font-size:clamp(2.05rem,11vw,3rem);
  }

  .work-head p{
    font-size:.96rem;
  }

  .work-btn{
    grid-template-columns:42px minmax(0,1fr) 24px;
    gap:12px;
    padding:15px 14px;
  }

  .work-icon{
    width:38px;
    height:38px;
    border-radius:12px;
  }

  .work-icon svg{
    width:24px;
    height:24px;
  }

  .mobile-detail-box{
    padding:0 14px 18px 68px;
  }
}


/* ===== Примеры работ: isolated block ===== */
.pw-section{
  --pw-bg:#f4f6f7;
  --pw-paper:#fff;
  --pw-text:#0d1218;
  --pw-muted:#66737f;
  --pw-line:rgba(13,18,24,.12);
  --pw-line-strong:rgba(13,18,24,.2);
  --pw-accent:#0b646b;
  --pw-soft:rgba(11,100,107,.07);
  --pw-shadow:0 18px 46px rgba(13,18,24,.065);
  padding:clamp(46px,6vw,82px) 18px;
  background:#f4f6f7;
  color:var(--pw-text);
  border-top:1px solid var(--pw-line);
}

.pw-inner{
  width:min(100%,1180px);
  margin:0 auto;
  border:1px solid var(--pw-line);
  background:var(--pw-paper);
  box-shadow:var(--pw-shadow);
  overflow:hidden;
}

.pw-layout{
  display:grid;
  grid-template-columns:330px minmax(0,1fr);
  gap:34px;
  align-items:start;
  padding:clamp(24px,4vw,44px);
}

.pw-copy{
  padding-top:8px;
}

.pw-label{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 11px;
  border:1px solid rgba(11,100,107,.18);
  border-radius:999px;
  background:rgba(255,255,255,.72);
  color:var(--pw-accent);
  font-size:.7rem;
  font-weight:850;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.pw-copy h2{
  margin:14px 0 0;
  color:var(--pw-text);
  font-size:clamp(2.1rem,3.7vw,3.55rem);
  line-height:.98;
  letter-spacing:-.07em;
}

.pw-copy p{
  margin:16px 0 0;
  color:var(--pw-muted);
  font-size:1rem;
  line-height:1.6;
}

.pw-gallery{
  min-width:0;
}

.pw-viewport{
  overflow:hidden;
}

.pw-track{
  display:flex;
  gap:14px;
  transition:transform .32s ease;
  will-change:transform;
}

.pw-photo{
  position:relative;
  flex:0 0 calc((100% - 14px) / 2);
  display:block;
  border:0;
  padding:0;
  background:transparent;
  cursor:pointer;
  text-align:left;
}

.pw-photo-frame{
  position:relative;
  width:100%;
  aspect-ratio:3/2;
  display:block;
  overflow:hidden;
  border:1px solid var(--pw-line);
  background:
    linear-gradient(135deg,rgba(11,100,107,.08),transparent 32%),
    linear-gradient(180deg,#f9fbfb,#edf3f4);
}

.pw-photo-frame::before{
  content:"";
  position:absolute;
  inset:18px;
  border:1px solid rgba(13,18,24,.08);
}

.pw-photo-frame::after{
  content:"";
  position:absolute;
  inset:0;
  background:repeating-linear-gradient(135deg,rgba(13,18,24,.025) 0 1px,transparent 1px 8px);
}

.pw-photo-title{
  position:absolute;
  left:18px;
  bottom:18px;
  z-index:2;
  color:var(--pw-text);
  font-size:clamp(1.25rem,2vw,1.85rem);
  font-weight:850;
  letter-spacing:-.045em;
}

.pw-photo-lines{
  position:absolute;
  top:18px;
  right:18px;
  z-index:2;
  display:grid;
  gap:5px;
  width:54px;
}

.pw-photo-lines i{
  height:1px;
  background:rgba(13,18,24,.22);
}

.pw-controls{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  margin-top:18px;
}

.pw-nav-row{
  display:flex;
  align-items:center;
  gap:10px;
}

.pw-nav,
.pw-lb-nav{
  width:42px;
  height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--pw-line-strong);
  border-radius:999px;
  background:#fff;
  cursor:pointer;
  transition:background .18s ease,border-color .18s ease,transform .18s ease;
}

.pw-nav:hover,
.pw-lb-nav:hover{
  transform:translateY(-1px);
  border-color:rgba(11,100,107,.32);
  background:var(--pw-soft);
}

.pw-nav::before,
.pw-lb-nav::before{
  content:"";
  width:10px;
  height:10px;
  border-top:1.7px solid var(--pw-text);
  border-right:1.7px solid var(--pw-text);
}

.pw-prev::before,
.pw-lb-prev::before{
  transform:rotate(-135deg);
  margin-left:4px;
}

.pw-next::before,
.pw-lb-next::before{
  transform:rotate(45deg);
  margin-right:4px;
}

.pw-counter{
  min-width:68px;
  color:var(--pw-muted);
  font-size:.86rem;
  font-weight:760;
  letter-spacing:.04em;
  text-align:center;
}

.pw-progress{
  flex:1;
  height:2px;
  background:rgba(13,18,24,.09);
  overflow:hidden;
}

.pw-progress i{
  display:block;
  width:10%;
  height:100%;
  background:var(--pw-accent);
  transition:width .25s ease;
}

.pw-more-link{
  min-height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:0 18px;
  border:1px solid rgba(11,100,107,.28);
  border-radius:999px;
  background:#fff;
  color:var(--pw-text);
  text-decoration:none;
  font-size:.88rem;
  font-weight:780;
  letter-spacing:-.01em;
  white-space:nowrap;
  transition:background .18s ease,border-color .18s ease,transform .18s ease;
}

.pw-more-link:hover{
  transform:translateY(-1px);
  border-color:rgba(11,100,107,.44);
  background:var(--pw-soft);
}

.pw-more-link i{
  width:9px;
  height:9px;
  display:block;
  border-top:1.7px solid var(--pw-text);
  border-right:1.7px solid var(--pw-text);
  transform:rotate(45deg);
}

/* Lightbox */
.pw-lightbox{
  position:fixed;
  inset:0;
  z-index:9999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:rgba(7,10,14,.78);
}

.pw-lightbox.pw-is-open{
  display:flex;
}

.pw-lb-panel{
  width:min(75vw,940px);
  max-width:940px;
  display:grid;
  gap:14px;
}

.pw-lb-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  color:#fff;
}

.pw-lb-counter{
  font-size:.88rem;
  font-weight:780;
  letter-spacing:.04em;
  opacity:.86;
}

.pw-lb-close{
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0;
  border:1px solid rgba(255,255,255,.34);
  border-radius:999px;
  background:rgba(255,255,255,.10);
  color:#fff;
  cursor:pointer;
}

.pw-lb-close span{
  position:relative;
  width:16px;
  height:16px;
  display:block;
}

.pw-lb-close span::before,
.pw-lb-close span::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:18px;
  height:1.7px;
  border-radius:99px;
  background:#fff;
  transform-origin:center;
}

.pw-lb-close span::before{
  transform:translate(-50%,-50%) rotate(45deg);
}

.pw-lb-close span::after{
  transform:translate(-50%,-50%) rotate(-45deg);
}

.pw-lb-photo{
  position:relative;
  width:100%;
  max-height:70vh;
  aspect-ratio:3/2;
  display:block;
  border:1px solid rgba(255,255,255,.22);
  background:
    linear-gradient(135deg,rgba(255,255,255,.13),transparent 34%),
    linear-gradient(180deg,#eef4f5,#dce7e9);
  overflow:hidden;
  cursor:pointer;
}

.pw-lb-photo::before{
  content:"";
  position:absolute;
  inset:24px;
  border:1px solid rgba(13,18,24,.12);
}

.pw-lb-mark{
  position:absolute;
  left:28px;
  bottom:28px;
  color:var(--pw-text);
  font-size:clamp(2rem,5vw,4.8rem);
  font-weight:900;
  letter-spacing:-.08em;
}

.pw-lb-controls{
  display:flex;
  justify-content:center;
  gap:72px;
}

.pw-lb-nav{
  width:48px;
  height:48px;
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.28);
}

.pw-lb-nav::before{
  border-color:#fff;
}

@media(max-width:980px){
  .pw-layout{
    grid-template-columns:1fr;
    gap:22px;
  }

  .pw-copy{
    max-width:720px;
  }

  .pw-photo{
    flex-basis:calc((100% - 14px) / 2);
  }

  .pw-lb-panel{
    width:min(82vw,820px);
  }
}

@media(max-width:700px){
  .pw-section{
    padding:34px 10px 58px;
  }

  .pw-layout{
    padding:20px 14px;
  }

  .pw-photo{
    flex-basis:100%;
  }

  .pw-controls{
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
    justify-items:center;
  }

  .pw-nav-row{
    justify-content:center;
    gap:16px;
  }

  .pw-progress{
    width:100%;
  }

  .pw-more-link{
    width:100%;
    min-height:44px;
    margin-top:2px;
  }

  .pw-lightbox{
    padding:14px;
  }

  .pw-lb-panel{
    width:86vw;
    gap:12px;
  }

  .pw-lb-photo{
    aspect-ratio:4/3;
    max-height:58vh;
  }

  .pw-lb-controls{
    gap:120px;
  }

  .pw-lb-nav{
    width:38px;
    height:38px;
  }

  .pw-lb-nav::before{
    width:8px;
    height:8px;
  }
}


/* ===== Финальный CTA: isolated block ===== */
.fc-section{
  --fc-bg:#f4f6f7;
  --fc-paper:#fff;
  --fc-text:#0d1218;
  --fc-muted:#66737f;
  --fc-line:rgba(13,18,24,.12);
  --fc-line-strong:rgba(13,18,24,.2);
  --fc-accent:#0b646b;
  --fc-accent-dark:#083f46;
  --fc-soft:rgba(11,100,107,.075);
  --fc-shadow:0 18px 46px rgba(13,18,24,.065);
  padding:clamp(46px,6vw,82px) 18px;
  background:#f4f6f7;
  color:var(--fc-text);
  border-top:1px solid var(--fc-line);
}

.fc-inner{
  width:min(100%,1180px);
  margin:0 auto;
  border:1px solid var(--fc-line);
  background:var(--fc-paper);
  box-shadow:var(--fc-shadow);
  overflow:hidden;
}

.fc-split{
  display:grid;
  grid-template-columns:minmax(0,1fr) 390px;
  min-height:350px;
}

.fc-left{
  padding:clamp(28px,4.8vw,58px);
  background:
    linear-gradient(90deg,rgba(11,100,107,.055),transparent 58%),
    #fff;
}

.fc-label{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 11px;
  border:1px solid rgba(11,100,107,.18);
  border-radius:999px;
  background:rgba(255,255,255,.72);
  color:var(--fc-accent);
  font-size:.7rem;
  font-weight:850;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.fc-title{
  max-width:760px;
  margin:14px 0 0;
  color:var(--fc-text);
  font-size:clamp(2.65rem,5.4vw,5.35rem);
  line-height:.92;
  letter-spacing:-.08em;
}

.fc-text{
  max-width:610px;
  margin:18px 0 0;
  color:var(--fc-muted);
  font-size:1.03rem;
  line-height:1.58;
}

.fc-right{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:14px;
  padding:clamp(28px,4.4vw,48px);
  border-left:1px solid var(--fc-line);
  background:#fff;
}

.fc-form{
  display:grid;
  gap:10px;
}

.fc-phone-field{
  min-height:52px;
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  align-items:center;
  gap:10px;
  padding:0 14px;
  border:1px solid var(--fc-line);
  background:#f9fbfb;
}

.fc-phone-field span{
  color:var(--fc-text);
  font-weight:850;
  letter-spacing:-.015em;
}

.fc-phone-field input{
  width:100%;
  min-width:0;
  border:0;
  outline:none;
  background:transparent;
  color:var(--fc-text);
  font:inherit;
}

.fc-phone-field input::placeholder{
  color:rgba(102,115,127,.82);
}

.fc-submit{
  min-height:52px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:0 20px;
  border:1px solid var(--fc-accent);
  border-radius:999px;
  background:var(--fc-accent);
  color:#fff;
  font:inherit;
  font-size:.95rem;
  font-weight:820;
  letter-spacing:-.01em;
  cursor:pointer;
  transition:transform .18s ease,background .18s ease,border-color .18s ease;
}

.fc-submit:hover{
  transform:translateY(-1px);
  border-color:var(--fc-accent-dark);
  background:var(--fc-accent-dark);
}

.fc-submit::after{
  content:"";
  width:9px;
  height:9px;
  border-top:1.7px solid currentColor;
  border-right:1.7px solid currentColor;
  transform:rotate(45deg);
}

.fc-notes{
  display:grid;
  gap:8px;
  margin-top:8px;
}

.fc-note{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:var(--fc-muted);
  font-size:.9rem;
  line-height:1.38;
}

.fc-note::before{
  content:"";
  width:7px;
  height:7px;
  flex:0 0 7px;
  margin-top:.45em;
  border-radius:99px;
  background:var(--fc-accent);
}

.fc-status{
  display:none;
  margin:2px 0 0;
  padding:10px 12px;
  border:1px solid rgba(11,100,107,.18);
  background:var(--fc-soft);
  color:var(--fc-accent-dark);
  font-size:.86rem;
  line-height:1.35;
}

.fc-form.fc-is-sent .fc-status{
  display:block;
}

@media(max-width:980px){
  .fc-split{
    grid-template-columns:1fr;
    min-height:0;
  }

  .fc-right{
    border-left:0;
    border-top:1px solid var(--fc-line);
  }
}

@media(max-width:700px){
  .fc-section{
    padding:34px 10px 58px;
  }

  .fc-left,
  .fc-right{
    padding:22px 14px;
  }

  .fc-title{
    font-size:clamp(2.25rem,12vw,3.35rem);
    letter-spacing:-.075em;
  }

  .fc-text{
    font-size:.97rem;
  }

  .fc-submit{
    width:100%;
    min-height:52px;
  }

  .fc-phone-field{
    min-height:52px;
  }
}


/* ===== Тёмный подвал: выбранный вариант 2 ===== */
.org-footer{
  --org-footer-dark:#071619;
  --org-footer-dark-2:#0d2227;
  --org-footer-text:#f4f8f8;
  --org-footer-muted:rgba(244,248,248,.66);
  --org-footer-line:rgba(244,248,248,.14);
  --org-footer-line-strong:rgba(244,248,248,.24);
  --org-footer-accent:#6fd0cc;
  --org-footer-max:1180px;
  position:relative;
  padding:clamp(34px,5vw,58px) 18px clamp(54px,7vw,86px);
  background:
    radial-gradient(circle at 14% 18%,rgba(111,208,204,.11),transparent 34%),
    linear-gradient(135deg,var(--org-footer-dark),var(--org-footer-dark-2));
  color:var(--org-footer-text);
  overflow:hidden;
}

.org-footer *{
  box-sizing:border-box;
}

.org-footer a{
  color:inherit;
  text-decoration:none;
}

.org-footer__inner{
  width:min(100%,var(--org-footer-max));
  margin:0 auto;
}

.org-footer__grid{
  display:grid;
  grid-template-columns:1.1fr .82fr .7fr .9fr;
  gap:28px;
  align-items:start;
}

.org-footer__kicker{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 11px;
  border:1px solid rgba(111,208,204,.24);
  border-radius:999px;
  background:rgba(255,255,255,.055);
  color:var(--org-footer-accent);
  font-size:.7rem;
  font-weight:850;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.org-footer__brand h2{
  margin:14px 0 0;
  color:#fff;
  font-size:clamp(1.85rem,3.3vw,3rem);
  line-height:.96;
  letter-spacing:-.07em;
}

.org-footer__brand p{
  max-width:540px;
  margin:16px 0 0;
  color:var(--org-footer-muted);
  font-size:.98rem;
  line-height:1.62;
}

.org-footer__column h3,
.org-footer__contact-card h3{
  margin:0 0 14px;
  color:#fff;
  font-size:.78rem;
  font-weight:860;
  letter-spacing:.09em;
  text-transform:uppercase;
}

.org-footer__list,
.org-footer__links{
  display:grid;
  gap:9px;
  margin:0;
  padding:0;
  list-style:none;
}

.org-footer__list li{
  color:var(--org-footer-muted);
  font-size:.94rem;
  line-height:1.45;
}

.org-footer__list b{
  color:#fff;
  font-weight:760;
}

.org-footer__links a,
.org-footer__contact-link{
  display:inline-flex;
  width:max-content;
  max-width:100%;
  color:var(--org-footer-muted);
  font-size:.94rem;
  line-height:1.35;
  text-decoration:none;
  transition:color .18s ease,transform .18s ease;
}

.org-footer__links a:hover,
.org-footer__contact-link:hover{
  color:#fff;
  transform:translateX(2px);
}

.org-footer__phone{
  display:inline-flex;
  width:max-content;
  max-width:100%;
  margin:2px 0 0;
  color:#fff;
  font-size:clamp(1.28rem,2vw,1.8rem);
  font-weight:900;
  letter-spacing:-.05em;
  text-decoration:none;
  transition:color .18s ease;
}

.org-footer__phone:hover{
  color:var(--org-footer-accent);
}

.org-footer__contact-link,
.org-footer__contact-link:visited {
  display: inline-flex;
  max-width: 100%;
  color: rgba(255, 255, 255, .9);
  font-size: .94rem;
  font-weight: 650;
  line-height: 1.35;
  overflow-wrap: anywhere;
  text-decoration: none;
  transition: color .18s ease;
}

.org-footer__contact-link:hover,
.org-footer__contact-link:focus-visible {
  color: var(--org-footer-accent);
}

.org-footer__contact-card{
  position:relative;
  border:1px solid var(--org-footer-line-strong);
  background:
    linear-gradient(180deg,rgba(111,208,204,.105),rgba(255,255,255,.04));
}

.org-footer__contact-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:3px;
  background:linear-gradient(180deg,var(--org-footer-accent),rgba(111,208,204,.15));
}

.org-footer__contact-card-inner{
  padding:20px 20px 20px 24px;
}

.org-footer__bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  margin-top:34px;
  padding-top:18px;
  border-top:1px solid var(--org-footer-line);
  color:rgba(255,255,255,.56);
  font-size:.84rem;
  line-height:1.4;
}

.org-footer__bottom-links{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.org-footer__bottom-links a{
  color:rgba(255,255,255,.56);
  text-decoration:none;
  transition:color .18s ease;
}

.org-footer__bottom-links a:hover{
  color:#fff;
}

@media(max-width:1020px){
  .org-footer__grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:700px){
  .org-footer{
    padding:28px 14px calc(92px + env(safe-area-inset-bottom, 0px));
  }

  .org-footer__brand h2{
    font-size:clamp(1.9rem,9vw,3rem);
    letter-spacing:-.072em;
  }

  .org-footer__contact-card-inner{
    padding:16px 16px 16px 20px;
  }

  .org-footer__bottom{
    align-items:flex-start;
    flex-direction:column;
  }

  .org-footer__bottom-links{
    display:grid;
    gap:10px;
  }

  .org-footer__links a,
  .org-footer__contact-link{
    min-height:34px;
    align-items:center;
  }

  .org-footer__phone{
    font-size:1.38rem;
  }
}





/* ===== Designer correction: FAQ readability + footer hierarchy ===== */
.well-faq{
  padding:clamp(46px,6vw,82px) 24px !important;
  background:#fbfdfe !important;
}

.well-faq__container{
  max-width:1120px !important;
}

.well-faq__header{
  max-width:1120px !important;
  margin:0 auto 26px !important;
  text-align:left !important;
}

.well-faq__title{
  max-width:820px !important;
  font-size:clamp(2.15rem,4.4vw,4.05rem) !important;
  line-height:.96 !important;
  letter-spacing:-.07em !important;
}

.well-faq__title-line{
  display:block !important;
  color:var(--header-text) !important;
  font-size:.88em !important;
}

.well-faq__list{
  display:grid !important;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  gap:10px 12px !important;
  align-items:start !important;
  max-width:1120px !important;
  margin:0 auto !important;
}

.well-faq__item{
  align-self:start !important;
  border-radius:16px !important;
  border-color:rgba(7,91,99,.105) !important;
  box-shadow:0 10px 28px rgba(15,23,42,.035) !important;
  background:rgba(255,255,255,.94) !important;
}

.well-faq__item.is-open{
  border-color:rgba(7,91,99,.22) !important;
  box-shadow:0 14px 34px rgba(15,23,42,.055) !important;
}

.well-faq__question{
  min-height:64px !important;
  padding:17px 18px !important;
  gap:14px !important;
  font-size:clamp(.98rem,1.35vw,1.08rem) !important;
  line-height:1.28 !important;
}

.well-faq__icon{
  flex:0 0 26px !important;
  width:26px !important;
  height:26px !important;
  margin-top:0 !important;
}

.well-faq__icon::before,
.well-faq__icon::after{
  width:11px !important;
  height:1.6px !important;
}

.well-faq__answer{
  border-top-color:rgba(7,91,99,.075) !important;
}

.well-faq__answer-inner{
  padding:0 18px 18px !important;
}

.well-faq__answer p{
  margin-top:14px !important;
  font-size:.96rem !important;
  line-height:1.58 !important;
}

.well-faq__more-button{
  min-height:30px !important;
  margin-top:11px !important;
  font-size:.88rem !important;
}

.well-faq__more-text{
  margin-top:10px !important;
  padding:13px 15px 15px !important;
  border-radius:0 12px 12px 0 !important;
  background:rgba(7,91,99,.028) !important;
}

.well-faq__more-text p{
  font-size:.94rem !important;
  line-height:1.58 !important;
}

.org-footer__brand h2{
  display:grid !important;
  gap:8px !important;
  margin:0 !important;
  max-width:360px !important;
}

.org-footer__logo-text{
  display:block !important;
  width:max-content !important;
  max-width:100% !important;
  color:#fff !important;
  font-size:clamp(2.1rem,3.4vw,3.35rem) !important;
  line-height:.9 !important;
  font-weight:930 !important;
  letter-spacing:-.078em !important;
}

.org-footer__brand-desc{
  display:block !important;
  max-width:330px !important;
  margin-top:2px !important;
  color:rgba(244,248,248,.72) !important;
  font-size:.96rem !important;
  line-height:1.34 !important;
  font-weight:640 !important;
  letter-spacing:-.012em !important;
}

.org-footer__phone,
.org-footer__phone:visited{
  color:#fff !important;
}

.org-footer__phone:hover,
.org-footer__phone:focus-visible{
  color:var(--org-footer-accent) !important;
}

.org-footer__grid{
  gap:clamp(24px,3vw,34px) !important;
}

.org-footer__column .org-footer__list,
.org-footer__links{
  gap:8px !important;
}

@media (max-width:900px){
  .well-faq{
    padding:42px 16px 58px !important;
  }

  .well-faq__container{
    max-width:760px !important;
  }

  .well-faq__header{
    margin-bottom:20px !important;
  }

  .well-faq__list{
    grid-template-columns:1fr !important;
    gap:9px !important;
    max-width:760px !important;
  }

  .well-faq__question{
    min-height:auto !important;
  }
}

@media (max-width:620px){
  .well-faq{
    padding:38px 14px 50px !important;
  }

  .well-faq__title{
    font-size:clamp(2rem,10vw,2.72rem) !important;
    line-height:.98 !important;
  }

  .well-faq__item{
    border-radius:14px !important;
  }

  .well-faq__question{
    padding:15px 14px !important;
    gap:12px !important;
    font-size:.98rem !important;
  }

  .well-faq__answer-inner{
    padding:0 14px 16px !important;
  }

  .well-faq__answer p{
    font-size:.94rem !important;
    line-height:1.55 !important;
  }

  .well-faq__more-text{
    padding:12px 13px 14px !important;
    border-radius:0 10px 10px 0 !important;
  }

  .org-footer__brand h2{
    gap:7px !important;
  }

  .org-footer__logo-text{
    font-size:clamp(2rem,10vw,2.9rem) !important;
  }

  .org-footer__brand-desc{
    max-width:280px !important;
    font-size:.92rem !important;
  }

  .org-footer__phone{
    color:#fff !important;
  }
}

/* ===== Бурение 8. Скелет с текстом.html style block 2 ===== */
/* Content styles imported from source page. Header/menu/popup/FAQ system remains from base template. */

    :root {
      --bg: #ffffff;
      --text: #111111;
      --muted: #555555;
      --line: #d9d9d9;
      --soft: #f5f5f5;
      --dark: #111111;
      --radius: 18px;
      --max: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.5;
      font-size: 16px;
    }

    img,
    svg {
      max-width: 100%;
      display: block;
    }

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

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    .container {
      width: min(100% - 32px, var(--max));
      margin: 0 auto;
    }

    .section {
      padding: 72px 0;
      border-bottom: 1px solid var(--line);
    }

    .section--soft {
      background: var(--soft);
    }

    .eyebrow {
      margin: 0 0 14px;
      color: var(--muted);
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    h1,
    h2,
    h3 {
      margin: 0;
      line-height: 1.08;
      letter-spacing: -0.03em;
    }

    h1 {
      font-size: clamp(38px, 6vw, 72px);
      max-width: 850px;
    }

    h2 {
      font-size: clamp(30px, 4vw, 48px);
      max-width: 820px;
    }

    h3 {
      font-size: 22px;
    }

    p {
      margin: 0;
    }

    .lead {
      margin-top: 22px;
      color: var(--muted);
      font-size: clamp(18px, 2vw, 22px);
      max-width: 720px;
    }

    

    

    

    

    

    

    

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 22px;
      border: 1px solid var(--dark);
      border-radius: 999px;
      background: var(--dark);
      color: #fff;
      font-weight: 700;
      cursor: pointer;
      transition: .2s ease;
    }

    .button:hover {
      transform: translateY(-1px);
    }

    .button--secondary {
      background: #fff;
      color: var(--text);
    }

    .button--wide {
      width: 100%;
    }

    .hero {
      padding: 82px 0 72px;
      border-bottom: 1px solid var(--line);
    }

    .hero__grid {
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
      gap: 48px;
      align-items: center;
    }

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

    .hero__features {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin-top: 34px;
      max-width: 760px;
    }

    .feature-mini {
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
    }

    .feature-mini strong {
      display: block;
      margin-bottom: 4px;
    }

    .feature-mini span {
      color: var(--muted);
      font-size: 14px;
    }

    .hero__visual {
      min-height: 520px;
      border: 1px solid var(--line);
      border-radius: 28px;
      background:
        linear-gradient(135deg, transparent 0 49%, #d7d7d7 49% 51%, transparent 51%),
        var(--soft);
      display: flex;
      align-items: flex-end;
      padding: 28px;
    }

    .visual-card {
      width: 100%;
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: 22px;
      background: #fff;
    }

    .visual-card__title {
      font-weight: 700;
      font-size: 20px;
      margin-bottom: 8px;
    }

    .visual-card__text {
      color: var(--muted);
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      gap: 32px;
      align-items: flex-end;
      margin-bottom: 36px;
    }

    .section-head p {
      max-width: 420px;
      color: var(--muted);
    }

    .grid {
      display: grid;
      gap: 18px;
    }

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

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

    .card {
      padding: 26px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
    }

    .card h3 {
      margin-bottom: 12px;
    }

    .card p {
      color: var(--muted);
    }

    .pain {
      margin-top: 18px;
      padding-top: 18px;
      border-top: 1px solid var(--line);
      color: var(--text);
      font-size: 14px;
    }

    .pain strong {
      display: block;
      margin-bottom: 4px;
    }

    .price-grid {
      display: grid;
      grid-template-columns: minmax(0, .95fr) minmax(320px, .55fr);
      gap: 28px;
      align-items: start;
    }

    .list {
      display: grid;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .list li {
      padding: 16px 18px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: #fff;
    }

    .form {
      display: grid;
      gap: 14px;
      padding: 26px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
    }

    .form__title {
      font-size: 24px;
      font-weight: 700;
      letter-spacing: -0.03em;
    }

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

    .field {
      display: grid;
      gap: 7px;
    }

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

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      min-height: 48px;
      padding: 12px 14px;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: #fff;
      color: var(--text);
    }

    .field textarea {
      min-height: 92px;
      resize: vertical;
    }

    .steps {
      counter-reset: step;
      display: grid;
      gap: 14px;
    }

    .step {
      counter-increment: step;
      display: grid;
      grid-template-columns: 72px minmax(0, 1fr);
      gap: 18px;
      padding: 22px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
    }

    .step::before {
      content: counter(step, decimal-leading-zero);
      display: flex;
      align-items: center;
      justify-content: center;
      width: 58px;
      height: 58px;
      border: 1px solid var(--dark);
      border-radius: 50%;
      font-weight: 700;
    }

    .step h3 {
      margin-bottom: 8px;
    }

    .step p {
      color: var(--muted);
    }

    .step .result {
      margin-top: 12px;
      color: var(--text);
      font-size: 14px;
    }

    .equipment {
      display: grid;
      grid-template-columns: minmax(320px, .85fr) minmax(0, 1.15fr);
      gap: 28px;
      align-items: stretch;
    }

    .equipment__visual {
      min-height: 420px;
      border: 1px solid var(--line);
      border-radius: 24px;
      background:
        linear-gradient(90deg, transparent 0 49%, #d7d7d7 49% 51%, transparent 51%),
        linear-gradient(0deg, transparent 0 49%, #d7d7d7 49% 51%, transparent 51%),
        var(--soft);
      display: flex;
      align-items: flex-end;
      padding: 24px;
    }

    .equipment__visual span {
      display: block;
      padding: 14px 16px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: #fff;
      color: var(--muted);
      font-size: 14px;
    }

    .trust-grid {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
      gap: 28px;
    }

    .review {
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
    }

    .review blockquote {
      margin: 0;
      color: var(--text);
      font-size: 18px;
    }

    .review footer {
      margin-top: 18px;
      color: var(--muted);
      font-size: 14px;
    }

    .case {
      display: grid;
      gap: 10px;
      padding: 20px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
    }

    .case dl {
      margin: 0;
      display: grid;
      gap: 8px;
    }

    .case div {
      display: grid;
      grid-template-columns: 100px minmax(0, 1fr);
      gap: 10px;
    }

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

    .case dd {
      margin: 0;
    }

    

    

    

    

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, .85fr) minmax(320px, .65fr);
      gap: 28px;
      align-items: start;
    }

    .contact-box {
      display: grid;
      gap: 16px;
      padding: 26px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
    }

    .contact-box a {
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .footer {
      padding: 34px 0;
      color: var(--muted);
      font-size: 14px;
    }

    .footer__inner {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    @media (max-width: 980px) {
      

      .hero__grid,
      .price-grid,
      .equipment,
      .trust-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .hero__visual {
        min-height: 360px;
      }

      .grid--3,
      .grid--2 {
        grid-template-columns: 1fr 1fr;
      }

      .section-head {
        display: grid;
      }
    }

    @media (max-width: 640px) {
      body {
        font-size: 15px;
      }

      .container {
        width: min(100% - 24px, var(--max));
      }

      

      

      .section {
        padding: 52px 0;
      }

      .hero {
        padding: 52px 0;
      }

      .hero__features,
      .grid--3,
      .grid--2 {
        grid-template-columns: 1fr;
      }

      .hero__actions {
        display: grid;
      }

      .button {
        width: 100%;
      }

      .hero__visual,
      .equipment__visual {
        min-height: 280px;
      }

      .step {
        grid-template-columns: 1fr;
      }

      .case div {
        grid-template-columns: 1fr;
        gap: 2px;
      }
    }

    .price-calculator-card {
      max-width: 760px;
      margin-top: 34px;
      padding: 34px;
      border: 1px solid var(--line);
      border-radius: 28px;
      background: #ffffff;
    }

    .price-calculator-form {
      display: grid;
      gap: 20px;
    }

    .price-calculator-grid {
      display: grid;
      grid-template-columns: 1fr 220px;
      gap: 16px;
    }

    .price-result-box {
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: var(--soft);
    }

    .price-result-label {
      margin: 0 0 8px;
      color: var(--muted);
      font-size: 14px;
    }

    .price-result-value {
      margin: 0;
      font-size: clamp(32px, 5vw, 54px);
      line-height: 1;
      letter-spacing: -0.05em;
      font-weight: 700;
    }

    .price-calculator-error {
      min-height: 20px;
      margin: 0;
      color: var(--text);
      font-size: 14px;
      font-weight: 700;
    }

    .price-phone-row {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 12px;
      align-items: end;
    }

    .price-phone-field input {
      font-weight: 700;
    }

    @media (max-width: 760px) {
      .price-calculator-card {
        padding: 22px;
        border-radius: 22px;
      }

      .price-calculator-grid,
      .price-phone-row {
        grid-template-columns: 1fr;
      }
    }


    .price-location-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .depth-hint,
    .price-result-note {
      color: var(--muted);
      font-size: 14px;
    }

    .depth-hint {
      margin: -6px 0 0;
    }

    .price-result-note {
      margin-top: 10px;
    }

    .price-calculator-card select optgroup {
      color: var(--text);
      font-weight: 700;
      font-style: normal;
    }

    .price-calculator-card select option {
      font-weight: 400;
    }

    @media (max-width: 760px) {
      .price-location-grid {
        grid-template-columns: 1fr;
      }
    }


    .price-grid--single {
      grid-template-columns: minmax(0, 1fr);
    }


    .step-note {
      color: var(--muted);
      font-size: .8em;
      font-weight: 400;
      letter-spacing: -0.02em;
    }


    .case-slider {
      display: grid;
      grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
      gap: 28px;
      align-items: stretch;
      padding: 26px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
    }

    .case-slider__image {
      min-width: 0;
    }

    .case-slider__placeholder {
      aspect-ratio: 1 / 1;
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 22px;
      background:
        linear-gradient(135deg, transparent 0 49%, #d7d7d7 49% 51%, transparent 51%),
        var(--soft);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted);
      font-size: 14px;
      text-align: center;
      padding: 20px;
    }

    .case-slider__content {
      display: grid;
      grid-template-rows: 1fr auto;
      gap: 18px;
      min-width: 0;
    }

    

    

    

    

    

    

    .case-slider__review h3 {
      margin-bottom: 12px;
    }

    .case-slider__review p {
      color: var(--muted);
      font-size: 18px;
    }

    .case-slider__controls {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 20px;
    }

    .case-slider__controls button {
      min-width: 112px;
    }

    .case-slider__counter {
      color: var(--muted);
      font-size: 14px;
      min-width: 42px;
      text-align: center;
    }

    @media (max-width: 900px) {
      .case-slider {
        grid-template-columns: 1fr;
      }

      .case-slider__content {
        grid-template-rows: auto;
      }
    }

    @media (max-width: 640px) {
      .case-slider {
        padding: 18px;
        border-radius: 18px;
      }

      

      

      .case-slider__controls {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
      }

      .case-slider__controls button {
        width: 100%;
        min-width: 0;
      }
    }


    .hero-phone-cta {
      display: grid;
      gap: 12px;
      max-width: 360px;
      margin-top: 32px;
    }

    .hero-phone-cta .field {
      gap: 7px;
    }

    .hero-cta {
      min-height: 64px;
      flex-direction: column;
      gap: 2px;
      line-height: 1.15;
      border-radius: 18px;
    }

    .hero-cta span {
      display: block;
      font-size: 17px;
    }

    .hero-cta small {
      display: block;
      font-size: 12px;
      font-weight: 400;
      opacity: .78;
    }

    .depth-control {
      display: grid;
      grid-template-columns: 56px minmax(0, 1fr) 56px;
      gap: 8px;
      align-items: center;
    }

    .depth-control__button {
      min-height: 54px;
      padding: 0;
      border-radius: 12px;
      font-size: 24px;
      line-height: 1;
    }

    .depth-control input {
      text-align: center;
      font-weight: 700;
      -moz-appearance: textfield;
    }

    .depth-control input::-webkit-outer-spin-button,
    .depth-control input::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0;
    }

    .case-slider__controls {
      justify-content: center;
    }

    .case-arrow {
      width: 52px;
      min-width: 52px;
      height: 52px;
      min-height: 52px;
      padding: 0;
      border-radius: 50%;
      font-size: 24px;
      line-height: 1;
    }

    .case-dots {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-width: 96px;
    }

    .case-dot {
      width: 8px;
      height: 8px;
      padding: 0;
      min-height: 0;
      border: 0;
      border-radius: 50%;
      background: #c8c8c8;
      cursor: pointer;
    }

    .case-dot.is-active {
      width: 11px;
      height: 11px;
      background: var(--text);
    }

    @media (max-width: 640px) {
      .hero-phone-cta {
        max-width: none;
      }

      .case-slider__controls {
        display: flex;
        justify-content: center;
      }

      .case-arrow {
        width: 50px;
        min-width: 50px;
        height: 50px;
        min-height: 50px;
      }
    }


    /* Polished cases navigation */
    .case-slider__controls {
      width: fit-content;
      margin: 26px auto 0;
      padding: 10px 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      border: 1px solid #e2e2e2;
      border-radius: 999px;
      background: #fff;
      box-shadow: 0 18px 45px rgba(0, 0, 0, .05);
    }

    .case-slider__controls button {
      min-width: 0;
    }

    .case-arrow {
      width: 46px;
      min-width: 46px;
      height: 46px;
      min-height: 46px;
      padding: 0;
      border-radius: 50%;
      border: 1px solid #d8d8d8;
      background: #fafafa;
      color: #111;
      font-size: 23px;
      line-height: 1;
      transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
    }

    .case-arrow:hover {
      background: #111;
      color: #fff;
      border-color: #111;
      transform: translateY(-1px);
    }

    .case-dots {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-width: 112px;
      padding: 0 2px;
    }

    .case-dot {
      width: 7px;
      height: 7px;
      padding: 0;
      min-height: 0;
      border: 0;
      border-radius: 50%;
      background: #d0d0d0;
      cursor: pointer;
      transition: width .18s ease, height .18s ease, background .18s ease;
    }

    .case-dot.is-active {
      width: 24px;
      height: 8px;
      border-radius: 999px;
      background: #111;
    }

    @media (max-width: 640px) {
      .case-slider__controls {
        gap: 14px;
        padding: 9px 10px;
      }

      .case-arrow {
        width: 44px;
        min-width: 44px;
        height: 44px;
        min-height: 44px;
      }

      .case-dot.is-active {
        width: 22px;
      }
    }

    /* Hero CTA placed after benefits */
    .hero__features + .hero-phone-cta {
      margin-top: 22px;
    }

    .hero-phone-cta {
      max-width: 390px;
    }

  
/* ===== Designer cleanup: header, sections, calculator, FAQ, footer ===== */
.site-header__phone-stack{
  align-items:center;
}

.site-header__phone-worktime{
  width:100%;
  text-align:center;
  font-size:.75rem;
  letter-spacing:.005em;
}

.site-header__online-status{
  position:relative;
  pointer-events:auto;
  cursor:default;
}

.site-header__online-tooltip{
  position:absolute;
  left:50%;
  top:calc(100% + 9px);
  z-index:1250;
  min-width:max-content;
  padding:8px 11px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:12px;
  background:var(--header-text);
  box-shadow:0 14px 34px rgba(15,23,42,.2);
  color:#fff;
  font-size:.78rem;
  font-weight:720;
  line-height:1.15;
  white-space:nowrap;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translate(-50%,-3px);
  transition:opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.site-header.site-header--compact .site-header__online-status:hover .site-header__online-tooltip,
.site-header.site-header--compact .site-header__online-status:focus-visible .site-header__online-tooltip{
  opacity:1;
  visibility:visible;
  transform:translate(-50%,0);
}

.ben-wrap{
  display:block;
  padding:clamp(42px,5.2vw,70px) 0;
}

.ben-head{
  position:static;
  top:auto;
  max-width:860px;
  margin:0 auto;
  padding:0 clamp(14px,2vw,0px);
  text-align:left;
}

.ben-head h2,
.calc-head h2,
.work-head h2,
.pw-copy h2,
.fc-title{
  margin-top:0;
}

.ben-photo-zone{
  width:calc(100% - clamp(28px,4vw,0px));
  max-width:1180px;
  min-height:clamp(210px,26vw,330px);
  display:flex;
  align-items:center;
  justify-content:center;
  margin:clamp(22px,3vw,34px) auto clamp(24px,3.2vw,38px);
  border:1px solid rgba(13,18,24,.12);
  border-radius:28px;
  background:
    linear-gradient(135deg,rgba(11,100,107,.06),rgba(118,100,77,.08)),
    linear-gradient(180deg,rgba(255,255,255,.62),rgba(255,255,255,.34));
  color:rgba(13,18,24,.46);
  font-size:.92rem;
  font-weight:760;
  letter-spacing:.02em;
}

.ben-list{
  max-width:980px;
  margin:0 auto;
}

.calc-box{
  padding:clamp(34px,4.6vw,58px) 0;
}

.calc-depth-row{
  align-items:flex-start;
}

.calc-depth-control{
  flex:1 1 auto;
  min-width:0;
  display:grid;
  gap:10px;
}

.calc-depth-stepper{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  margin-top:2px;
}

.calc-depth-btn{
  width:38px;
  height:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(11,100,107,.18);
  border-radius:999px;
  background:#fff;
  color:var(--accent);
  font-size:1.25rem;
  font-weight:760;
  line-height:1;
  box-shadow:0 8px 20px rgba(13,18,24,.045);
  transition:transform .18s ease, border-color .18s ease, background .18s ease;
}

.calc-depth-btn:hover,
.calc-depth-btn:focus-visible{
  transform:translateY(-1px);
  border-color:rgba(11,100,107,.32);
  background:rgba(11,100,107,.055);
  outline:none;
}

.work-section{
  padding:clamp(42px,5.6vw,78px) 18px;
}

.pw-section{
  padding:clamp(42px,5.6vw,78px) 18px;
}

.fc-section{
  padding:clamp(42px,5.6vw,74px) 18px;
}

.well-faq{
  padding:clamp(52px,6.5vw,86px) 24px;
}

.well-faq__header{
  margin-bottom:24px;
}

.well-faq__question{
  padding:18px 22px;
}

.well-faq__icon{
  width:28px;
  height:28px;
  flex-basis:28px;
}

.well-faq__answer-inner{
  padding:0 22px 22px;
}

.well-faq__list{
  gap:10px;
}

.org-footer{
  padding:clamp(28px,4vw,42px) 18px clamp(18px,2.8vw,28px);
}

.org-footer__bottom{
  margin-top:18px;
  padding-top:10px;
}

body{
  background:#071619;
}

@media(max-width:620px){
  .ben-wrap{
    padding:32px 0;
  }

  .ben-photo-zone{
    width:calc(100% - 20px);
    min-height:180px;
    margin:20px auto 24px;
    border-radius:22px;
  }

  .calc-depth-row{
    flex-direction:column;
    align-items:stretch;
  }

  .calc-depth-field{
    width:100%;
  }
}

@media(max-width:700px){
  .well-faq{
    padding:42px 16px 52px;
  }

  .well-faq__question{
    padding:16px 16px;
  }

  .well-faq__answer-inner{
    padding:0 16px 18px;
  }

  .org-footer{
    padding:26px 14px calc(78px + env(safe-area-inset-bottom, 0px));
  }
}


/* ===== Repair pass: вернуть преимущества и этапы к прежнему виду ===== */
html,
body{
  background:#fbfdfe !important;
}

.ben-photo-zone{
  display:none !important;
}

.ben-section{
  background:#f7f3ec !important;
}

.ben-wrap{
  display:grid !important;
  grid-template-columns:minmax(260px,.68fr) minmax(0,1fr) !important;
  gap:clamp(28px,5vw,70px) !important;
  align-items:start !important;
  padding:clamp(34px,5.4vw,64px) 0 !important;
}

.ben-head{
  position:sticky !important;
  top:24px !important;
  margin:0 !important;
  max-width:760px !important;
  padding:0 clamp(14px,2vw,0px) !important;
  text-align:left !important;
}

.ben-head h2{
  margin:0 !important;
  font-size:clamp(2.2rem,4.8vw,4.65rem) !important;
  line-height:.95 !important;
  letter-spacing:-.07em !important;
}

.ben-head p{
  max-width:620px !important;
  margin:18px 0 0 !important;
}

.ben-list{
  max-width:none !important;
  margin:0 !important;
  display:grid !important;
  gap:0 !important;
  border-top:1px solid rgba(13,18,24,.14) !important;
  padding:0 clamp(14px,2vw,0px) !important;
}

.calc-depth-stepper{
  gap:44px !important;
}

.work-section{
  background:#fbfdfd !important;
  color:var(--text) !important;
  padding:clamp(34px,5vw,76px) 18px !important;
}

.work-shell{
  background:#fff !important;
  border:1px solid var(--line) !important;
  box-shadow:var(--shadow) !important;
}

.work-menu,
.work-btn{
  background:#fff !important;
}

.work-btn:hover,
.work-step.is-active .work-btn{
  background:var(--soft-2) !important;
}

.work-active{
  background:
    radial-gradient(circle at 70% 20%,rgba(11,100,107,.12),transparent 36%),
    linear-gradient(180deg,#fff,#f7fbfb) !important;
  color:var(--text) !important;
}

.work-active h3,
.work-btn b{
  color:var(--text) !important;
}

.work-active p,
.work-btn small{
  color:var(--muted) !important;
}

.work-icon{
  background:linear-gradient(180deg,#fff,rgba(11,100,107,.055)) !important;
}

@media(max-width:900px){
  .ben-wrap{
    grid-template-columns:1fr !important;
    gap:24px !important;
  }

  .ben-head{
    position:static !important;
    top:auto !important;
  }
}

@media(max-width:620px){
  .ben-wrap{
    padding:32px 0 !important;
  }
}


/* ===== Final corrections: benefits icons, calculator stepper, CTA, footer cleanup ===== */
.ben-head{
  position:static !important;
  top:auto !important;
}

.ben-head h2{
  margin:0 !important;
}

.ben-num.ben-num-icon{
  width:30px !important;
  height:30px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  border:1px solid rgba(118,100,77,.22);
  border-radius:999px;
  background:rgba(118,100,77,.08);
  color:#76644d;
  font-size:0;
}

.ben-num.ben-num-icon svg{
  width:17px;
  height:17px;
  display:block;
}

.ben-num.ben-num-icon path,
.ben-num.ben-num-icon circle{
  fill:none;
  stroke:currentColor;
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.calc-depth-control{
  gap:7px !important;
}

.calc-depth-stepper{
  margin-top:-4px !important;
  gap:44px !important;
}

.fc-split{
  align-items:stretch !important;
}

.fc-left{
  display:flex !important;
  flex-direction:column !important;
  justify-content:center !important;
  padding:clamp(30px,4.6vw,54px) !important;
}

.fc-title{
  max-width:640px !important;
  margin:0 !important;
}

.fc-text{
  max-width:560px !important;
  margin:16px 0 0 !important;
  line-height:1.55 !important;
}

.fc-right{
  justify-content:center !important;
  padding:clamp(26px,4vw,44px) !important;
}

.fc-form{
  gap:12px !important;
}

.fc-notes{
  margin-top:2px !important;
}

.fc-note{
  display:block !important;
  line-height:1.45 !important;
}

.org-footer__brand h2{
  margin:0 !important;
}

.org-footer__column:first-of-type .org-footer__list{
  margin-top:0 !important;
}

.org-footer__bottom{
  justify-content:flex-start !important;
  margin-top:18px !important;
  padding-top:10px !important;
}

@media(max-width:700px){
  .fc-left,
  .fc-right{
    padding:22px 14px !important;
  }

  .fc-title,
  .fc-text{
    max-width:100% !important;
  }

  .calc-depth-stepper{
    margin-top:-2px !important;
    gap:44px !important;
  }
}


/* ===== Final pass: FAQ, CTA height, phone mask, depth defaults ===== */
.well-faq__kicker{
  display:none !important;
}

.well-faq__header{
  margin-top:0 !important;
}

.fc-section{
  padding:clamp(30px,4.2vw,52px) 18px !important;
}

.fc-split{
  min-height:260px !important;
}

.fc-left{
  padding:clamp(22px,3.2vw,38px) !important;
}

.fc-right{
  padding:clamp(22px,3.2vw,38px) !important;
}

.fc-title{
  font-size:clamp(2.35rem,4.8vw,4.6rem) !important;
  line-height:.94 !important;
}

.fc-text{
  margin-top:12px !important;
}

.fc-form{
  gap:10px !important;
}

.calc-depth-stepper{
  gap:66px !important;
  margin-top:-4px !important;
}

input[type="tel"]::placeholder{
  color:rgba(102,115,127,.7);
}

@media(max-width:700px){
  .fc-section{
    padding:30px 10px 46px !important;
  }

  .fc-split{
    min-height:auto !important;
  }

  .fc-left,
  .fc-right{
    padding:20px 14px !important;
  }

  .calc-depth-stepper{
    gap:58px !important;
    margin-top:-2px !important;
  }
}


/* ===== Final correction: hero phone label, compact phone prefix, desktop FAQ columns ===== */
.hp-phone-box{
  align-items:center !important;
}

.hp-phone-input{
  gap:6px !important;
}

.hp-phone-input span{
  min-width:auto !important;
  width:auto !important;
  padding-left:15px !important;
  padding-right:2px !important;
  flex:0 0 auto !important;
}

.hp-phone-input input{
  padding-left:0 !important;
}

.calc-phone-field{
  gap:6px !important;
}

.calc-phone-field span{
  min-width:auto !important;
  width:auto !important;
  padding-left:15px !important;
  padding-right:2px !important;
  flex:0 0 auto !important;
}

.calc-phone-field input{
  padding-left:0 !important;
}

.fc-phone-field{
  grid-template-columns:auto minmax(0,1fr) !important;
  gap:6px !important;
  padding-left:14px !important;
}

.fc-phone-field span{
  min-width:auto !important;
  width:auto !important;
  white-space:nowrap !important;
}

.fc-phone-field input{
  padding-left:0 !important;
}

@media (min-width: 901px){
  .well-faq__container{
    max-width:1180px !important;
  }

  .well-faq__header{
    max-width:760px !important;
    margin-bottom:28px !important;
  }

  .well-faq__list{
    display:grid !important;
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:14px 16px !important;
    align-items:start !important;
  }

  .well-faq__item{
    align-self:start !important;
  }

  .well-faq__question{
    min-height:76px !important;
  }
}

@media (max-width: 900px){
  .well-faq__list{
    grid-template-columns:1fr !important;
  }
}

@media (max-width: 620px){
  .hp-phone-input span,
  .calc-phone-field span{
    padding-left:14px !important;
    padding-right:2px !important;
  }

  .hp-phone-input,
  .calc-phone-field,
  .fc-phone-field{
    gap:5px !important;
  }
}


/* ===== Final correction: single-column FAQ and centered footer bottom ===== */
.well-faq__container{
  max-width:920px !important;
}

.well-faq__list{
  display:grid !important;
  grid-template-columns:1fr !important;
  gap:12px !important;
  align-items:start !important;
}

.org-footer__bottom{
  justify-content:center !important;
  text-align:center !important;
}

.org-footer__bottom span{
  width:100% !important;
  text-align:center !important;
}




/* ===== Replaced setup block from separate prototype ===== */
.obustroystvo-block {
    --ob-text: #0d1218;
    --ob-muted: #66737f;
    --ob-line: rgba(13, 18, 24, .12);
    --ob-line-strong: rgba(13, 18, 24, .16);
    --ob-accent: #0b646b;
    --ob-accent-dark: #073f45;
    --ob-soft: #f8fbfb;

    background: #fff;
    color: var(--ob-text);
  }

  .obustroystvo-block .ob-wrap {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(38px, 5.5vw, 78px) 24px;
  }

  .obustroystvo-block .ob-title {
    max-width: 860px;
    margin: 0 0 clamp(24px, 3.2vw, 36px);
    color: var(--ob-text);
    font-size: clamp(2.1rem, 4.3vw, 4.25rem);
    line-height: .95;
    letter-spacing: -.078em;
  }

  .obustroystvo-block .ob-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    border: 1px solid var(--ob-line);
    border-radius: 0;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 44px rgba(13, 18, 24, .05);
  }

  .obustroystvo-block .ob-card {
    height: 100%;
    min-height: 382px;
    display: flex;
    flex-direction: column;
    padding: 26px;
    border-right: 1px solid var(--ob-line);
    background: #fff;
    color: var(--ob-text);
  }

  .obustroystvo-block .ob-card:last-child {
    border-right: 0;
  }

  .obustroystvo-block .ob-card-head {
    min-height: 59px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .obustroystvo-block .ob-card h3 {
    width: 100%;
    margin: 0;
    color: var(--ob-text);
    font-size: clamp(1.16rem, 1.55vw, 1.48rem);
    line-height: 1.05;
    letter-spacing: -.055em;
    text-align: center;
  }

  .obustroystvo-block .ob-card-subtitle {
    width: 100%;
    margin: 7px 0 0;
    color: var(--ob-muted);
    font-size: .87rem;
    line-height: 1.32;
    font-weight: 650;
    text-align: center;
  }

  .obustroystvo-block .ob-photo {
    width: 100%;
    height: 96px;
    margin-top: 14px;
    overflow: hidden;
    border: 1px solid rgba(13, 18, 24, .08);
    border-radius: 18px;
    background: var(--ob-soft);
  }

  .obustroystvo-block .ob-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  .obustroystvo-block .ob-photo-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    padding: 12px;
    background:
      radial-gradient(circle at 50% 42%, rgba(11, 100, 107, .12), transparent 34%),
      linear-gradient(135deg, rgba(11, 100, 107, .06), rgba(118, 100, 77, .07)),
      #f8fbfb;
    color: rgba(13, 18, 24, .48);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .035em;
    text-align: center;
    text-transform: uppercase;
  }

  .obustroystvo-block .ob-desc {
    min-height: 92px;
    margin: 17px 0 0;
    color: #303b45;
    font-size: .9rem;
    line-height: 1.5;
  }

  .obustroystvo-block .ob-price-row {
    min-height: 70px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    margin-top: auto;
    padding-top: 17px;
    border-top: 1px solid rgba(13, 18, 24, .095);
  }

  .obustroystvo-block .ob-price {
    display: grid;
    gap: 6px;
    align-content: end;
  }

  .obustroystvo-block .ob-old-price {
    color: rgba(102, 115, 127, .76);
    font-size: .86rem;
    font-weight: 720;
    line-height: 1;
    letter-spacing: -.025em;
    text-decoration: line-through;
    text-decoration-thickness: 1.4px;
  }

  .obustroystvo-block .ob-new-price {
    color: var(--ob-accent-dark);
    font-size: clamp(1.42rem, 2.2vw, 1.95rem);
    font-weight: 920;
    line-height: 1;
    letter-spacing: -.065em;
  }

  .obustroystvo-block .ob-card--free .ob-new-price {
    color: var(--ob-text);
  }

  .obustroystvo-block .ob-more-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 28px;
  }

  .obustroystvo-block .ob-more-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid var(--ob-accent);
    border-radius: 999px;
    background: var(--ob-accent);
    color: #fff;
    font-size: .93rem;
    font-weight: 830;
    text-decoration: none;
    box-shadow: 0 12px 26px rgba(11, 100, 107, .16);
  }

  .obustroystvo-block .ob-more-link::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 1.7px solid currentColor;
    border-right: 1.7px solid currentColor;
    transform: rotate(45deg);
  }

  @media (max-width: 1120px) {
    .obustroystvo-block .ob-cards {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .obustroystvo-block .ob-card:nth-child(2) {
      border-right: 0;
    }

    .obustroystvo-block .ob-card:nth-child(1),
    .obustroystvo-block .ob-card:nth-child(2) {
      border-bottom: 1px solid var(--ob-line);
    }
  }

  @media (max-width: 620px) {
    .obustroystvo-block .ob-wrap {
      padding: 34px 16px;
    }

    .obustroystvo-block .ob-title {
      font-size: clamp(1.8rem, 10vw, 2.65rem);
    }

    .obustroystvo-block .ob-cards {
      grid-template-columns: 1fr;
    }

    .obustroystvo-block .ob-card {
      min-height: auto;
      padding: 20px;
      border-right: 0;
      border-bottom: 1px solid var(--ob-line);
    }

    .obustroystvo-block .ob-card:nth-child(2) {
      border-right: 0;
    }

    .obustroystvo-block .ob-card:last-child {
      border-bottom: 0;
    }

    .obustroystvo-block .ob-card-head {
      min-height: auto;
    }

    .obustroystvo-block .ob-photo {
      height: 112px;
    }

    .obustroystvo-block .ob-desc {
      min-height: auto;
    }

    .obustroystvo-block .ob-price-row {
      min-height: auto;
      margin-top: 16px;
    }

    .obustroystvo-block .ob-more-row {
      justify-content: stretch;
      margin-top: 22px;
    }

    .obustroystvo-block .ob-more-link {
      width: 100%;
      min-height: 44px;
    }
  }

/* ===== Final targeted design polish: no structure or JS changes ===== */
@media (min-width: 901px){
  .hp-hero-section{
    min-height: clamp(680px, 88vh, 820px);
  }
  .hp-hero{
    min-height: clamp(680px, 88vh, 820px);
    align-items: center;
  }
  .hp-empty{
    min-height: clamp(220px, 27vw, 320px);
  }
}

@media (min-width: 769px){
.work-shell{
    min-height: 440px;
  }

  .work-btn{
    min-height: 88px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .work-display{
    padding: clamp(30px, 4vw, 46px);
  }

  .pw-section{
    padding-top: clamp(48px, 6vw, 82px);
    padding-bottom: clamp(48px, 6vw, 82px);
  }

  .well-faq{
    padding-top: clamp(62px, 7vw, 96px);
    padding-bottom: clamp(62px, 7vw, 96px);
  }
}

@media (min-width: 1041px){
}

@media (max-width: 760px){

  .hp-hero-section,
  .hp-hero{
    min-height: auto;
  }

  .hp-hero{
    padding-top: clamp(54px, 12vw, 74px);
    padding-bottom: 42px;
  }

  .hp-title{
    font-size: clamp(2.8rem, 12.5vw, 4.05rem);
    line-height: .94;
  }

  .hp-benefit{
    min-height: 74px;
  }

  .well-faq__question{
    padding: 21px 20px;
  }

  .well-faq__item{
    border-radius: 22px;
  }
}

@media (max-width: 390px){
}



/* ===== Final mobile corrections: work cards + footer order ===== */
@media (max-width: 980px){
  .mobile-detail-box h3{
    display:none !important;
  }

  .mobile-detail-box{
    padding-top:0 !important;
  }
}

@media (max-width: 700px){
  .org-footer__grid{
    display:grid !important;
    grid-template-columns:1fr !important;
  }

  .org-footer__brand{
    order:1 !important;
  }

  .org-footer__contact-card{
    order:2 !important;
    margin-top:4px !important;
  }

  .org-footer__column{
    order:3 !important;
  }

  .org-footer__phone,
  .org-footer__phone:visited{
    color:#fff !important;
  }
}



/* ===== Technical correction: center FAQ heading on all breakpoints ===== */
.well-faq__header{
  text-align:center !important;
}

.well-faq__title{
  margin-left:auto !important;
  margin-right:auto !important;
  text-align:center !important;
}

.well-faq__title-line{
  text-align:center !important;
}

/* ===== Обустройство.html style block 1 ===== */
:root {
  --header-bg: #fbfdfe;
  --header-text: #05070d;
  --header-muted: #334155;
  --header-accent: #075b63;
  --header-border: rgba(7, 91, 99, 0.12);
  --header-border-strong: rgba(7, 91, 99, 0.22);
  --header-shadow: 0 8px 30px rgba(15, 23, 42, 0.035);
  --header-container: 1040px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: #fbfdfe;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

.header-container {
  width: 100%;
  max-width: var(--header-container);
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  padding: 14px 0 17px;
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  box-shadow: var(--header-shadow);
  transition: box-shadow .2s ease, border-color .2s ease;
}

.site-header.site-header--compact {
  padding: 13px 0;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  color: var(--header-text);
  font-size: 1.508rem;
  font-weight: 860;
  line-height: 1;
  letter-spacing: -0.055em;
  text-decoration: none;
  white-space: nowrap;
  transition: color .18s ease, transform .18s ease;
}

.site-header__logo:hover,
.site-header__logo:focus-visible {
  color: var(--header-accent);
  transform: translateY(-1px);
  outline: none;
}

.site-header__nav {
  display: flex;
  align-items: center;
  min-width: 0;
}

.site-header__nav-links {
  display: flex;
  align-items: center;
  min-width: 0;
}

.site-header__nav-links a {
  display: inline-flex;
  align-items: center;
  color: var(--header-muted);
  font-size: 1.08rem;
  font-weight: 620;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transform-origin: center;
  transition: color .18s ease, transform .22s cubic-bezier(.2,.75,.2,1);
}

.site-header__nav-links a:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 15px;
  margin: 0 13px;
  background: rgba(7, 91, 99, .14);
  pointer-events: none;
}

.site-header__nav-links a:hover,
.site-header__nav-links a:focus-visible {
  color: var(--header-accent);
  transform: scale(1.045);
  outline: none;
}

.site-header__actions {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  min-width: 0;
  margin-left: 38px;
  padding-left: 28px;
}

.site-header__phone-wrap {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  gap: 11px;
  min-width: 0;
}

.site-header__phone-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  transform: translateX(10px);
}

.site-header__phone {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px 7px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--header-text);
  font-size: 1.214rem;
  font-weight: 760;
  line-height: 1;
  letter-spacing: -0.035em;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: color .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.site-header__phone:hover,
.site-header__phone:focus-visible {
  color: var(--header-accent);
  background: rgba(7, 91, 99, .055);
  border-color: rgba(7, 91, 99, .18);
  box-shadow: 0 8px 24px rgba(15, 23, 42, .08);
  transform: translateY(-1px);
  outline: none;
}

.site-header__phone-worktime {
  display: block;
  max-height: 18px;
  margin-top: 1px;
  color: var(--header-muted);
  font-size: .74rem;
  font-weight: 720;
  line-height: 1.15;
  letter-spacing: .01em;
  white-space: nowrap;
  opacity: .82;
  transform: translateY(0);
  overflow: hidden;
  transition: opacity .2s ease, max-height .2s ease, margin-top .2s ease, transform .2s ease;
  pointer-events: none;
}

.site-header.site-header--compact .site-header__phone-worktime {
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  transform: translateY(-4px);
}

.site-header__online-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 38px;
  min-width: 18px;
  margin-left: 10px;
  margin-right: 10px;
  pointer-events: none;
}

.site-header__online-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #16a34a;
  box-shadow: 0 0 0 0 rgba(22, 163, 74, .20);
  animation: headerOnlinePulse 2.2s ease-in-out infinite;
}

@keyframes headerOnlinePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(22, 163, 74, .20);
  }
  50% {
    transform: scale(1.18);
    box-shadow: 0 0 0 6px rgba(22, 163, 74, .08);
  }
}

.site-header__tooltip {
  position: absolute;
  z-index: 1200;
  top: calc(100% + 10px);
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  background: var(--header-text);
  box-shadow: 0 14px 34px rgba(15, 23, 42, .2);
  color: #fff;
  font-size: .927rem;
  line-height: 1.25;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.site-header__tooltip--phone {
  left: 50%;
  min-width: max-content;
  transform: translate(-50%, -3px);
}

.site-header__phone-stack:hover ~ .site-header__tooltip--phone,
.site-header__phone-stack:focus-within ~ .site-header__tooltip--phone {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.site-header__icon-button {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.site-header__icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--header-text);
  background: transparent;
  text-decoration: none;
  transition: color .18s ease, opacity .18s ease, transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
  flex: 0 0 auto;
}

.site-header__header-contact {
  position: relative;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-header__header-contact::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 210px;
  height: 16px;
  pointer-events: auto;
}

.site-header__header-contact .site-header__icon-button {
  width: 34px;
  height: 38px;
  min-width: 34px;
  min-height: 38px;
  color: var(--header-text);
  background: transparent;
  box-shadow: none;
}

.site-header__header-contact .site-header__icon-button svg {
  width: 25px;
  height: 25px;
  display: block;
}

.site-header__header-contact .site-header__icon-button:hover,
.site-header__header-contact .site-header__icon-button:focus-visible {
  color: var(--header-accent);
  background: rgba(7, 91, 99, .055);
  border-color: rgba(7, 91, 99, .12);
  transform: translateY(-1px);
  outline: none;
}

.site-header__contact-popup {
  position: absolute;
  z-index: 1300;
  width: max-content;
  min-width: 190px;
  max-width: calc(100vw - 48px);
  padding: 7px;
  border: 1px solid rgba(7, 91, 99, .12);
  border-radius: 18px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 18px 46px rgba(15, 23, 42, .15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
}

.site-header__contact-popup a {
  display: block;
  padding: 12px 14px;
  border-radius: 13px;
  color: var(--header-text);
  font-size: .95rem;
  font-weight: 680;
  text-decoration: none;
  white-space: nowrap;
  transition: color .18s ease, background .18s ease;
}

.site-header__contact-popup a + a {
  border-top: 1px solid rgba(7, 91, 99, .10);
}

.site-header__contact-popup a:hover,
.site-header__contact-popup a:focus-visible {
  color: var(--header-accent);
  background: rgba(7, 91, 99, .055);
  outline: none;
}

.site-header__header-contact .site-header__contact-popup {
  top: calc(100% + 8px);
  right: 0;
  transform: translateY(-4px);
}

.site-header__header-contact:hover .site-header__contact-popup,
.site-header__header-contact:focus-within .site-header__contact-popup,
.site-header__header-contact .site-header__contact-popup:hover,
.site-header__header-contact.is-contact-open .site-header__contact-popup {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear 0s;
}

.site-header__desktop-floating-contact {
  display: block;
}

.site-header__desktop-floating-contact .site-header__floating-contact {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1485;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-header__desktop-floating-contact .site-header__floating-contact::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 100%;
  width: 230px;
  height: 24px;
  transform: translate(10px, 10px);
  pointer-events: auto;
}

.site-header__desktop-floating-contact .site-header__icon-button {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  background: var(--header-accent);
  color: #fff;
  box-shadow: 0 16px 34px rgba(7, 91, 99, .24), 0 4px 12px rgba(15, 23, 42, .12);
}

.site-header__desktop-floating-contact .site-header__icon-button svg {
  width: 22px;
  height: 22px;
  display: block;
}

.site-header__desktop-floating-contact .site-header__icon-button:hover,
.site-header__desktop-floating-contact .site-header__icon-button:focus-visible {
  color: #fff;
  background: #064d54;
  border-color: rgba(255,255,255,.86);
  box-shadow: 0 18px 38px rgba(7, 91, 99, .28), 0 5px 14px rgba(15, 23, 42, .14);
  transform: translateY(-1px) scale(1.03);
  outline: none;
}

.site-header__desktop-floating-contact .site-header__contact-popup {
  right: calc(100% + 8px);
  bottom: calc(100% + 8px);
  transform: translate(6px, 6px);
}

.site-header__desktop-floating-contact .site-header__floating-contact:hover .site-header__contact-popup,
.site-header__desktop-floating-contact .site-header__floating-contact:focus-within .site-header__contact-popup,
.site-header__desktop-floating-contact .site-header__contact-popup:hover,
.site-header__desktop-floating-contact .site-header__floating-contact.is-contact-open .site-header__contact-popup {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(0, 0);
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear 0s;
}

.back-to-top {
  --scroll-progress: 0deg;
  position: fixed;
  right: 24px;
  bottom: 90px;
  z-index: 1490;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  border: 0;
  border-radius: 50%;
  color: var(--header-text);
  background: radial-gradient(circle at center, rgba(7,128,138,.24) 0 36%, transparent 61%), conic-gradient(#025f68 var(--scroll-progress), rgba(7,91,99,.28) 0deg);
  box-shadow: 0 16px 36px rgba(15, 23, 42, .18), inset 0 0 20px rgba(7,128,138,.32), inset 0 0 0 1px rgba(7,91,99,.20);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px) scale(.96);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease, box-shadow .2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(7, 91, 99, .18);
  border-radius: inherit;
  background: radial-gradient(circle at 50% 42%, rgba(255,255,255,1) 0 52%, rgba(245,250,251,.98) 100%);
  box-shadow: inset 0 0 14px rgba(7, 91, 99, .16), 0 0 18px rgba(7,128,138,.20);
}

.back-to-top svg {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  display: block;
  animation: backArrowLift .79s ease-in-out infinite;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  box-shadow: 0 20px 44px rgba(15, 23, 42, .24), inset 0 0 24px rgba(7,128,138,.38), inset 0 0 0 1px rgba(7,91,99,.24);
  transform: translateY(-2px) scale(1.02);
  outline: none;
}

.back-to-top.is-contact-hidden,
.site-header__desktop-floating-contact:hover + .back-to-top,
.site-header__desktop-floating-contact:focus-within + .back-to-top,
.site-header__desktop-floating-contact.is-contact-open + .back-to-top {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

@keyframes backArrowLift {
  0%, 100% { transform: translateY(1px); opacity: .82; }
  45% { transform: translateY(-3px); opacity: 1; }
}

.site-header__mobile-actions,
.site-header__mobile-contact-row,
.site-header__mobile-contact-wrap {
  display: none;
}

.site-header__mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(7,91,99,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 6px 16px rgba(7,91,99,.08);
  cursor: pointer;
}

.site-header__mobile-toggle-label {
  display: block;
  color: var(--header-text);
  font-size: .89rem;
  font-weight: 780;
  line-height: 1;
  letter-spacing: .055em;
}

.site-header__mobile-toggle-lines {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.site-header__mobile-toggle-lines span {
  display: block;
  width: 20px;
  height: 1.9px;
  border-radius: 2px;
  background: var(--header-text);
  transition: transform .22s ease;
}

.site-header__mobile-toggle-lines span:nth-child(3) { display: none; }
.site-header__mobile-toggle.is-open .site-header__mobile-toggle-lines span:nth-child(1) { transform: translateY(3.4px) rotate(45deg); }
.site-header__mobile-toggle.is-open .site-header__mobile-toggle-lines span:nth-child(2) { transform: translateY(-3.4px) rotate(-45deg); }

.site-header__mobile-panel {
  display: none;
}


@media (max-width: 768px) {
  .header-container { padding: 0 22px; }
  .site-header { min-height: 67px; padding: 10px 0; }
  .site-header.site-header--compact { padding: 10px 0; }
  .site-header__inner {
    position: relative;
    min-height: 48px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
  }
  .site-header__logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    margin-left: 10%;
    font-size: 0;
    transform: none;
    z-index: 7;
  }
  .site-header__logo [data-header-logo-text]::before {
    content: 'A';
    color: var(--header-text);
    font-size: 1.49rem;
    font-weight: 860;
    letter-spacing: -0.045em;
  }
  .site-header__nav { display: none; }
  .site-header__mobile-toggle {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    display: inline-flex;
    height: 43px;
    padding: 0 13px;
    flex-direction: row;
    gap: 10px;
    z-index: 8;
  }
  .site-header__mobile-actions {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    height: 48px;
    display: inline-flex;
    align-items: center;
    z-index: 8;
  }
  .site-header__mobile-phone {
    width: 46px;
    height: 46px;
    min-width: 46px;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--header-border-strong);
    border-radius: 999px;
    background: rgba(255,255,255,.78);
    color: var(--header-text);
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(7,91,99,.08);
    animation: headerMobileCallDoublePulse 4.4s ease-in-out infinite;
    transform-origin: center;
  }
  .site-header__mobile-phone svg {
    width: 20px;
    height: 20px;
  }
  .site-header__mobile-phone:hover,
  .site-header__mobile-phone:focus-visible {
    color: var(--header-accent);
    background: rgba(7,91,99,.055);
    border-color: rgba(7,91,99,.18);
    outline: none;
  }

  body.site-header-mobile-menu-open .site-header__mobile-phone,
  body.site-header-mobile-menu-open .site-header__mobile-phone svg {
    animation: none !important;
    transform: none !important;
  }

  body.site-header-mobile-menu-open .site-header__mobile-phone {
    box-shadow: 0 6px 16px rgba(7,91,99,.08);
  }
  .site-header__mobile-panel {
    position: fixed;
    top: 67px;
    left: 14px;
    right: 14px;
    z-index: 1200;
    display: grid;
    grid-template-rows: 0fr;
    max-height: calc(100svh - 86px);
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(15, 23, 42, .14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: grid-template-rows .24s ease, opacity .24s ease, visibility 0s linear .24s;
  }
  .site-header__mobile-panel.is-open {
    grid-template-rows: 1fr;
    max-height: calc(100svh - 86px);
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: grid-template-rows .24s ease, opacity .24s ease, visibility 0s linear 0s;
  }
  .site-header__mobile-panel-inner {
    min-height: 0;
    overflow: visible;
    background: #fff;
  }
  .site-header__mobile-panel a {
    display: block;
    padding: 16px 22px;
    border-bottom: 1px solid rgba(7,91,99,.08);
    background: #fff;
    color: var(--header-text);
    font-size: 1.14rem;
    font-weight: 680;
    text-decoration: none;
  }
  body.site-header-mobile-menu-open {
    overflow: hidden;
    touch-action: none;
  }
  .site-header__mobile-panel {
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .site-header__mobile-social-link {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 16px 22px !important;
    border-bottom: 1px solid rgba(7,91,99,.08);
    background: #fff;
    color: var(--header-text);
    font-size: 1.14rem !important;
    font-weight: 680 !important;
    text-decoration: none;
  }
  .site-header__mobile-social-link svg {
    width: 23px;
    height: 23px;
    display: block;
    flex: 0 0 auto;
    transform: scale(1.25);
    transform-origin: center;
  }
  .site-header__mobile-social-link:hover,
  .site-header__mobile-social-link:focus-visible {
    color: var(--header-accent);
    outline: none;
  }
  .site-header__mobile-socials {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 19px 20px 18px;
    border-bottom: 1px solid rgba(7,91,99,.08);
    background: #fff;
  }
  .site-header__mobile-socials::before {
    content: "";
    position: absolute;
    top: 0;
    left: 22px;
    right: 22px;
    height: 1px;
    background: rgba(7,91,99,.08);
  }
  .site-header__mobile-socials a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--header-text);
    text-decoration: none;
    transition: color .18s ease, transform .18s ease, opacity .18s ease;
  }
  .site-header__mobile-socials a:hover,
  .site-header__mobile-socials a:focus-visible {
    color: var(--header-accent);
    transform: translateY(-1px);
    outline: none;
  }
  .site-header__mobile-socials svg {
    display: block;
  }
  .site-header__mobile-socials a[data-mobile-social="telegram"] svg {
    width: 32.4px;
    height: 32.4px;
  }
  .site-header__mobile-socials a[data-mobile-social="whatsapp"] svg,
  .site-header__mobile-socials a[data-mobile-social="viber"] svg {
    width: 36px;
    height: 36px;
  }
  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-bubble,
  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-phone,
  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-signal {
    stroke: currentColor;
    fill: none;
  }
  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-phone-fill {
    fill: currentColor;
    stroke: none;
  }
  .site-header__mobile-menu-phone {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 22px 19px !important;
    border-bottom: 0 !important;
    color: var(--header-text);
    font-size: 1.18rem !important;
    font-weight: 780 !important;
    letter-spacing: -0.025em;
  }
  .site-header__mobile-menu-phone svg {
    width: 19px;
    height: 19px;
    display: block;
  }
  .site-header__mobile-menu-worktime {
    position: relative;
    padding: 14px 22px 16px;
    border-bottom: 0;
    background: #fff;
    color: var(--header-muted);
    text-align: center;
    font-size: 1.02rem;
    font-weight: 680;
    letter-spacing: -0.015em;
  }
  .site-header__mobile-menu-worktime::before {
    content: "";
    position: absolute;
    top: 0;
    left: 22px;
    right: 22px;
    height: 1px;
    background: rgba(7,91,99,.08);
  }
  .site-header__mobile-contact-row {
    position: fixed;
    right: max(18px, env(safe-area-inset-right, 0px));
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));
    z-index: 1500;
    display: block;
    width: auto;
  }
  .site-header__mobile-contact-row-inner {
    width: auto;
    max-width: none;
    padding: 0;
    margin: 0;
  }
  .site-header__mobile-contact-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .site-header__mobile-contact-toggle {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 999px;
    background: var(--header-accent);
    color: #fff;
    box-shadow: 0 16px 34px rgba(7,91,99,.24), 0 4px 12px rgba(15,23,42,.12);
    cursor: pointer;
  }
  .site-header__mobile-contact-toggle svg {
    width: 20px;
    height: 20px;
  }
  .site-header__mobile-contact-label { display: none; }
  .site-header__mobile-contact-popup {
    position: absolute;
    right: 0;
    bottom: calc(100% + 10px);
    z-index: 1510;
    width: max-content;
    min-width: 190px;
    max-width: calc(100vw - 36px);
    padding: 7px;
    border: 1px solid rgba(7,91,99,.12);
    border-radius: 18px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 18px 46px rgba(15, 23, 42, .16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
  }
  .site-header__mobile-contact-popup.is-open,
  .site-header__mobile-contact-wrap:hover .site-header__mobile-contact-popup,
  .site-header__mobile-contact-wrap:focus-within .site-header__mobile-contact-popup {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity .18s ease, transform .18s ease, visibility 0s linear 0s;
  }
  .site-header__mobile-contact-popup a {
    display: block;
    padding: 13px 14px;
    border-radius: 13px;
    color: var(--header-text);
    font-size: 1.05rem;
    font-weight: 680;
    text-decoration: none;
    white-space: nowrap;
  }
  .site-header__mobile-contact-popup a + a {
    border-top: 1px solid rgba(7,91,99,.10);
  }
  .site-header__mobile-contact-popup a:hover,
  .site-header__mobile-contact-popup a:focus-visible {
    color: var(--header-accent);
    background: rgba(7,91,99,.055);
    outline: none;
  }
  .site-header__desktop-floating-contact { display: none; }
  .back-to-top {
    right: max(18px, env(safe-area-inset-right, 0px));
    bottom: calc(78px + env(safe-area-inset-bottom, 0px));
    width: 48px;
    height: 48px;
  }
  .back-to-top svg {
    width: 19px;
    height: 19px;
  }
}

@keyframes headerMobileCallDoublePulse {
  0%, 68%, 100% { transform: scale(1); box-shadow: 0 6px 16px rgba(7,91,99,.08); }
  72% { transform: scale(1.3); box-shadow: 0 0 0 7px rgba(7,91,99,.055), 0 10px 24px rgba(7,91,99,.13); }
  77% { transform: scale(1); box-shadow: 0 6px 16px rgba(7,91,99,.08); }
  82% { transform: scale(1.12); box-shadow: 0 0 0 4px rgba(7,91,99,.04), 0 8px 20px rgba(7,91,99,.11); }
  88% { transform: scale(1); box-shadow: 0 6px 16px rgba(7,91,99,.08); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}


@media (max-width: 768px) {
  body.site-header-mobile-menu-open {
    overflow: hidden;
    touch-action: none;
  }

  .site-header__mobile-panel,
  .site-header__mobile-panel-inner,
  .site-header__mobile-panel a,
  .site-header__mobile-social-link,
  .site-header__mobile-socials,
  .site-header__mobile-menu-phone,
  .site-header__mobile-menu-worktime {
    background: #fff;
  }

  .site-header__mobile-panel {
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .site-header__mobile-panel.is-open {
    overflow-y: auto;
  }

  .site-header__mobile-panel a,
  .site-header__mobile-social-link,
  .site-header__mobile-socials a {
    pointer-events: auto;
  }

  .site-header__mobile-social-link {
    width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 22px !important;
    border-bottom: 1px solid rgba(7,91,99,.08);
    background: #fff;
    color: var(--header-text);
    font-size: 1.14rem !important;
    font-weight: 680 !important;
    text-decoration: none;
  }

  .site-header__mobile-social-link svg {
    width: 23px;
    height: 23px;
    flex: 0 0 auto;
  }

  .site-header__mobile-socials {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    padding: 20px 20px 18px;
    border-bottom: 1px solid rgba(7,91,99,.08);
    background: #fff;
  }

  .site-header__mobile-socials::before {
    content: "";
    position: absolute;
    top: 0;
    left: 22px;
    right: 22px;
    height: 1px;
    background: rgba(7,91,99,.10);
  }

  .site-header__mobile-socials a {
    width: 76px;
    min-height: 62px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--header-text);
    text-align: center;
    text-decoration: none;
    transition: color .18s ease, transform .18s ease, opacity .18s ease;
  }

  .site-header__mobile-socials a:hover,
  .site-header__mobile-socials a:focus-visible {
    color: var(--header-accent);
    transform: translateY(-1px);
    outline: none;
  }

  .site-header__mobile-social-icon {
    width: 42px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-header__mobile-social-icon svg {
    width: auto;
    height: 36px;
    max-width: 42px;
    display: block;
  }

  .site-header__mobile-social-label {
    display: block;
    color: inherit;
    font-size: .74rem;
    line-height: 1.05;
    font-weight: 650;
    letter-spacing: -0.015em;
  }

  .site-header__mobile-socials a[data-mobile-social="telegram"] .site-header__mobile-social-icon svg,
  .site-header__mobile-socials a[data-mobile-social="whatsapp"] .site-header__mobile-social-icon svg,
  .site-header__mobile-socials a[data-mobile-social="viber"] .site-header__mobile-social-icon svg {
    height: 36px;
  }

  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-bg {
    fill: currentColor;
  }

  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-white {
    fill: #fff;
  }

  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-line {
    fill: none;
    stroke: #fff;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
}



@media (max-width: 768px) {
  .site-header__mobile-panel {
    max-height: calc(100svh - 86px);
    overflow: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background: #fff;
  }

  .site-header__mobile-panel.is-open {
    overflow-y: auto;
  }

  .site-header__mobile-panel-inner {
    min-height: max-content;
    overflow: visible;
    background: #fff;
  }

  body.site-header-mobile-menu-open {
    overflow: hidden;
    touch-action: none;
  }

  .site-header__mobile-social-link {
    display: flex !important;
    align-items: center;
    justify-content: flex-start !important;
    gap: 9px;
    width: 100%;
  }

  .site-header__mobile-social-link span {
    flex: 0 0 auto;
  }

  .site-header__mobile-social-link svg {
    width: 22px;
    height: 22px;
    margin: 0;
  }

  .site-header__mobile-socials {
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    padding-top: 21px;
  }

  .site-header__mobile-socials a {
    width: 78px;
    min-height: 64px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
  }

  .site-header__mobile-social-icon {
    width: 42px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-header__mobile-social-icon svg {
    width: auto;
    height: 36px;
    max-width: 42px;
    display: block;
  }

  .site-header__mobile-socials a[data-mobile-social="telegram"] .site-header__mobile-social-icon svg,
  .site-header__mobile-socials a[data-mobile-social="whatsapp"] .site-header__mobile-social-icon svg,
  .site-header__mobile-socials a[data-mobile-social="viber"] .site-header__mobile-social-icon svg {
    height: 36px;
  }

  .site-header__mobile-social-label {
    display: block;
    font-size: .74rem;
    line-height: 1.05;
    font-weight: 650;
    letter-spacing: -0.015em;
  }

  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-bg {
    fill: currentColor;
  }

  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-white {
    fill: #fff;
  }

  .site-header__mobile-contact-wrap:hover .site-header__mobile-contact-popup:not(.is-open),
  .site-header__mobile-contact-wrap:focus-within .site-header__mobile-contact-popup:not(.is-open) {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
  }
}



@media (max-width: 768px) {
  .site-header__mobile-social-link {
    justify-content: flex-start !important;
    gap: 9px !important;
  }

  .site-header__mobile-social-link svg {
    width: 28px !important;
    height: 28px !important;
    margin: 0 !important;
    flex: 0 0 auto;
  }

  .site-header__mobile-panel.is-open {
    max-height: calc(100svh - 86px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .site-header__mobile-socials a[data-mobile-social="telegram"] .site-header__mobile-social-icon svg {
    height: 32px !important;
    max-width: 38px !important;
  }

  .site-header__mobile-socials a[data-mobile-social="whatsapp"] .site-header__mobile-social-icon svg,
  .site-header__mobile-socials a[data-mobile-social="viber"] .site-header__mobile-social-icon svg {
    height: 36px !important;
    max-width: 42px !important;
  }

  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-bg,
  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-white {
    fill: none !important;
  }

  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-bubble,
  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-signal {
    stroke: currentColor !important;
  }

  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-phone {
    fill: currentColor !important;
  }
}

@media (max-width: 768px) {
  body.site-header-mobile-menu-open .site-header__mobile-contact-row,
  body.site-header-mobile-menu-open .site-header__desktop-floating-contact,
  body.site-header-mobile-menu-open .back-to-top {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .site-header__mobile-socials a[data-mobile-social="telegram"] .site-header__mobile-social-icon svg {
    height: 30.7px !important;
    max-width: 36.5px !important;
  }

  .site-header__mobile-socials a[data-mobile-social="viber"] .site-header__mobile-social-icon svg {
    height: 36px !important;
    max-width: 42px !important;
  }

  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-bubble,
  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-phone,
  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-signal {
    fill: none !important;
    stroke: currentColor !important;
  }

  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-bubble,
  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-phone {
    stroke-width: 1.45 !important;
  }

  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-signal-lg {
    stroke-width: 1.2 !important;
  }

  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-signal-sm {
    stroke-width: 1.1 !important;
  }

  .site-header__mobile-social-link svg {
    transform: scale(1.2);
    transform-origin: left center;
  }
}

@media (max-width: 768px) {
  body.site-header-mobile-menu-open {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    overflow: hidden !important;
    touch-action: none !important;
  }

  .site-header__mobile-panel.is-open {
    max-height: calc(100svh - 86px) !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
    -webkit-overflow-scrolling: touch;
  }

  .site-header__mobile-socials {
    padding-top: 14px !important;
    padding-bottom: 8px !important;
    gap: 16px !important;
  }

  .site-header__mobile-socials::before {
    left: 22px !important;
    right: 22px !important;
  }

  .site-header__mobile-socials a {
    width: 74px !important;
    min-height: 52px !important;
    gap: 4px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .site-header__mobile-social-icon {
    height: 38.5px !important;
  }

  .site-header__mobile-socials a[data-mobile-social="telegram"] .site-header__mobile-social-icon svg {
    height: 28.55px !important;
    max-width: 34px !important;
  }

  .site-header__mobile-socials a[data-mobile-social="viber"] .site-header__mobile-social-icon svg {
    height: 38.55px !important;
    max-width: 45px !important;
  }

  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-bubble,
  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-phone {
    stroke-width: 1.02 !important;
  }

  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-signal-lg {
    stroke-width: .84 !important;
  }

  .site-header__mobile-socials a[data-mobile-social="viber"] svg .viber-signal-sm {
    stroke-width: .77 !important;
  }

  .site-header__mobile-social-link svg rect,
  .site-header__mobile-social-link svg circle {
    stroke-width: 1.4 !important;
  }

  .site-header__mobile-menu-phone {
    position: relative;
    transform-origin: center;
    will-change: transform, box-shadow;
    animation: mobileMenuPhonePulse 3.2s ease-in-out infinite;
  }

  .site-header__mobile-menu-phone::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    border: 1px solid rgba(7, 91, 99, .14);
    opacity: 0;
    transform: scale(.96);
    pointer-events: none;
    animation: mobileMenuPhoneHalo 3.2s ease-in-out infinite;
  }

  @keyframes mobileMenuPhonePulse {
    0%, 100% {
      transform: scale(1);
      box-shadow: 0 10px 24px rgba(7, 91, 99, .08);
    }
    44% {
      transform: scale(1.045);
      box-shadow: 0 14px 34px rgba(7, 91, 99, .16);
    }
    62% {
      transform: scale(1.015);
    }
  }

  @keyframes mobileMenuPhoneHalo {
    0%, 100% {
      opacity: 0;
      transform: scale(.96);
    }
    44% {
      opacity: 1;
      transform: scale(1.06);
    }
    72% {
      opacity: 0;
      transform: scale(1.12);
    }
  }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  .site-header__mobile-menu-phone,
  .site-header__mobile-menu-phone::after {
    animation: none !important;
  }
}

@media (max-width: 768px) {
  .site-header__mobile-socials a[data-mobile-social="telegram"] .site-header__mobile-social-icon svg {
    height: 27.12px !important;
    max-width: 32.3px !important;
  }

  .site-header__mobile-social-link svg rect,
  .site-header__mobile-social-link svg circle {
    stroke-width: 1.19 !important;
  }

  .site-header__mobile-menu-phone {
    animation: none !important;
    box-shadow: none !important;
    transform: none !important;
    will-change: auto !important;
  }

  .site-header__mobile-menu-phone::after {
    display: none !important;
    animation: none !important;
    content: none !important;
  }

  .site-header__mobile-menu-phone-inner {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 7px 14px;
    border-radius: 999px;
    transform-origin: center;
    will-change: transform, box-shadow;
    animation: mobileMenuPhonePulse 1.6s ease-in-out infinite !important;
  }

  .site-header__mobile-menu-phone-inner::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    border: 1px solid rgba(7, 91, 99, .14);
    opacity: 0;
    transform: scale(.96);
    pointer-events: none;
    animation: mobileMenuPhoneHalo 1.6s ease-in-out infinite !important;
  }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  .site-header__mobile-menu-phone-inner,
  .site-header__mobile-menu-phone-inner::after {
    animation: none !important;
  }
}

@media (max-width: 768px) {
  .site-header__mobile-menu-phone {
    animation: none !important;
    box-shadow: none !important;
    transform: none !important;
    will-change: auto !important;
  }

  .site-header__mobile-menu-phone::after {
    display: none !important;
    content: none !important;
    animation: none !important;
  }

  .site-header__mobile-menu-phone-inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: 0 !important;
    transform-origin: center center;
    transform: translate3d(0, 0, 0) scale(1);
    backface-visibility: hidden;
    will-change: transform;
    animation: mobileMenuPhoneSmoothPulse 1.6s cubic-bezier(.42, 0, .24, 1) infinite !important;
  }

  .site-header__mobile-menu-phone-inner::after,
  .site-header__mobile-menu-phone-inner::before {
    display: none !important;
    content: none !important;
    animation: none !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  @keyframes mobileMenuPhoneSmoothPulse {
    0%, 100% {
      transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
      transform: translate3d(0, 0, 0) scale(1.035);
    }
  }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  .site-header__mobile-menu-phone-inner {
    animation: none !important;
  }
}

@media (max-width: 768px) {
  .site-header__mobile-menu-phone {
    animation: none !important;
    box-shadow: none !important;
    transform: none !important;
    will-change: auto !important;
  }

  .site-header__mobile-menu-phone::after,
  .site-header__mobile-menu-phone::before {
    display: none !important;
    content: none !important;
    animation: none !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .site-header__mobile-menu-phone-inner {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: 0 !important;
    line-height: 1 !important;
    transform-origin: center center !important;
    transform: translate3d(0, 0, 0) scale(1);
    backface-visibility: hidden;
    will-change: transform;
    animation: mobilePhoneNoticePulse 2.35s cubic-bezier(.36, 0, .18, 1) infinite !important;
  }

  .site-header__mobile-menu-phone-inner::before {
    display: none !important;
    content: none !important;
  }

  .site-header__mobile-menu-phone-inner::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    left: -9px;
    right: -9px;
    top: -7px;
    bottom: -7px;
    border-radius: 999px;
    border: 1px solid currentColor !important;
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(.92);
    pointer-events: none !important;
    box-shadow: none !important;
    backface-visibility: hidden;
    will-change: transform, opacity;
    animation: mobilePhoneNoticeHalo 2.35s cubic-bezier(.36, 0, .18, 1) infinite !important;
  }

  @keyframes mobilePhoneNoticePulse {
    0%, 8%, 100% {
      transform: translate3d(0, 0, 0) scale(1);
    }
    20% {
      transform: translate3d(0, 0, 0) scale(1.075);
    }
    33%, 54% {
      transform: translate3d(0, 0, 0) scale(1);
    }
    66% {
      transform: translate3d(0, 0, 0) scale(1.035);
    }
    78% {
      transform: translate3d(0, 0, 0) scale(1);
    }
  }

  @keyframes mobilePhoneNoticeHalo {
    0%, 46%, 100% {
      opacity: 0;
      transform: translate3d(0, 0, 0) scale(.92);
    }
    58% {
      opacity: .22;
      transform: translate3d(0, 0, 0) scale(1);
    }
    76% {
      opacity: .08;
      transform: translate3d(0, 0, 0) scale(1.13);
    }
    88% {
      opacity: 0;
      transform: translate3d(0, 0, 0) scale(1.2);
    }
  }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  .site-header__mobile-menu-phone-inner,
  .site-header__mobile-menu-phone-inner::after {
    animation: none !important;
  }
}

.site-header__desktop-instagram {
  position: absolute;
  z-index: 5;
  top: 0;
  right: -39px;
  width: 34px;
  height: 38px;
  min-width: 34px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--header-text);
  background: transparent;
  text-decoration: none;
  transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}

.site-header__header-contact .site-header__icon-button svg {
  width: 27.5px;
  height: 27.5px;
}

.site-header__desktop-instagram svg {
  width: 28.75px;
  height: 28.75px;
  display: block;
}

.site-header__desktop-instagram:hover,
.site-header__desktop-instagram:focus-visible {
  color: var(--header-accent);
  background: rgba(7, 91, 99, .055);
  border-color: rgba(7, 91, 99, .12);
  transform: translateY(-1px);
  outline: none;
}

.site-header__tooltip--instagram {
  left: 50%;
  top: calc(100% + 8px);
  min-width: max-content;
  transform: translate(-50%, -3px);
}

.site-header__desktop-instagram:hover .site-header__tooltip--instagram,
.site-header__desktop-instagram:focus-visible .site-header__tooltip--instagram {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.site-header__header-contact::after {
  left: -46px;
  top: 100%;
  width: 292px;
  height: 40px;
}

.site-header__header-contact .site-header__contact-popup {
  top: calc(100% + 2px);
}

.site-header__desktop-floating-contact .site-header__floating-contact::after {
  right: 38px;
  bottom: 38px;
  width: 280px;
  height: 124px;
  transform: none;
}

.site-header__desktop-floating-contact .site-header__contact-popup {
  right: calc(100% + 2px);
  bottom: calc(100% + 2px);
}

@media (max-width: 768px) {
  .site-header__desktop-instagram {
    display: none;
  }
}

.well-faq {
  overflow-anchor: none;
  padding: clamp(70px, 9vw, 118px) 24px;
  background: #fbfdfe;
  color: var(--header-text);
}

.well-faq__container {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}

.well-faq__header {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.well-faq__kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--header-accent);
  font-size: .78rem;
  font-weight: 780;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.well-faq__title {
  margin: 0;
  color: var(--header-text);
  font-size: clamp(2.15rem, 5vw, 3.8rem);
  line-height: .98;
  letter-spacing: -.065em;
}

.well-faq__lead {
  max-width: 640px;
  margin: 18px auto 0;
  color: var(--header-muted);
  font-size: clamp(1rem, 2vw, 1.14rem);
  line-height: 1.65;
}

.well-faq__list {
  display: grid;
  gap: 12px;
}

.well-faq__item {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(7, 91, 99, .11);
  border-radius: 24px;
  box-shadow: 0 16px 42px rgba(15, 23, 42, .045);
}

.well-faq__item-title { margin: 0; }

.well-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px;
  border: 0;
  background: transparent;
  color: var(--header-text);
  font: inherit;
  font-size: clamp(1.04rem, 1.8vw, 1.2rem);
  font-weight: 760;
  line-height: 1.32;
  letter-spacing: -.025em;
  text-align: left;
  cursor: pointer;
}

.well-faq__question:hover,
.well-faq__question:focus-visible {
  color: var(--header-accent);
  outline: none;
}

.well-faq__question:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(7, 91, 99, .22);
}

.well-faq__icon {
  position: relative;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(7, 91, 99, .16);
  border-radius: 999px;
  background: rgba(7, 91, 99, .035);
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.well-faq__icon::before,
.well-faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 1.8px;
  background: currentColor;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform .22s ease;
}

.well-faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.well-faq__item.is-open .well-faq__icon {
  transform: rotate(180deg);
  background: rgba(7, 91, 99, .07);
  border-color: rgba(7, 91, 99, .24);
}

.well-faq__item.is-open .well-faq__icon::after { transform: translate(-50%, -50%) rotate(0deg); }

.well-faq__answer {
  overflow-anchor: none;
  border-top: 1px solid rgba(7, 91, 99, .08);
}

.well-faq__answer-inner {
  padding: 0 26px 26px;
}

.well-faq__answer p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--header-muted);
  font-size: 1.02rem;
  line-height: 1.68;
}

.well-faq__more-button {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-height: 32px;
  margin: 14px 0 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--header-accent);
  font: inherit;
  font-size: .9rem;
  font-weight: 740;
  width: max-content;
  cursor: pointer;
  transition: color .18s ease;
}

.well-faq__more-button::after {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .2s ease;
}

.well-faq__more-button[aria-expanded="true"]::after {
  transform: translateY(2px) rotate(225deg);
}

.well-faq__more-button:hover,
.well-faq__more-button:focus-visible {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  color: var(--header-text);
  outline: none;
}

.well-faq__more-button:focus-visible {
  outline: 2px solid rgba(7, 91, 99, .22);
  outline-offset: 4px;
  border-radius: 8px;
}

.well-faq__more-text {
  max-width: 790px;
  margin-top: 14px;
  padding: 16px 18px 18px;
  border-left: 2px solid rgba(7, 91, 99, .18);
  border-radius: 0 18px 18px 0;
  background: rgba(7, 91, 99, .035);
}

.well-faq__more-text p {
  margin: 0;
  font-size: .98rem;
  line-height: 1.68;
}

@media (max-width: 768px) {
  .well-faq {
    padding: 58px 16px 72px;
  }
  .well-faq__header {
    margin-bottom: 24px;
    text-align: left;
  }
  .well-faq__lead {
    margin-left: 0;
    margin-right: 0;
  }
  .well-faq__item {
    border-radius: 20px;
  }
  .well-faq__question {
    align-items: flex-start;
    padding: 20px 18px;
  }
  .well-faq__icon {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
    margin-top: -2px;
  }
  .well-faq__answer-inner {
    padding: 0 18px 22px;
  }
  .well-faq__answer p {
    font-size: .98rem;
  }
  .well-faq__more-button {
    min-height: 36px;
    padding: 0;
  }
  .well-faq__more-text {
    padding: 14px 15px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .well-faq__icon,
  .well-faq__icon::after,
  .well-faq__more-button,
  .well-faq__more-button::after {
    transition: none !important;
  }
}

@media (min-width: 769px) {
  .site-header__header-contact::after {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
  }

  .site-header__header-contact .site-header__contact-popup {
    top: 100% !important;
    right: 0;
  }

  .site-header__header-contact:hover .site-header__contact-popup,
  .site-header__header-contact:focus-within .site-header__contact-popup {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
  }

  .site-header__header-contact .site-header__icon-button:hover + .site-header__contact-popup,
  .site-header__header-contact .site-header__icon-button:focus-visible + .site-header__contact-popup,
  .site-header__header-contact .site-header__contact-popup:hover,
  .site-header__header-contact .site-header__contact-popup:focus-within,
  .site-header__header-contact.is-contact-open .site-header__contact-popup {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity .18s ease, transform .18s ease, visibility 0s linear 0s;
  }
}

@media (min-width: 769px) {
  .site-header__desktop-floating-contact .site-header__floating-contact::after {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
  }

  .site-header__desktop-floating-contact .site-header__floating-contact:hover .site-header__contact-popup,
  .site-header__desktop-floating-contact .site-header__floating-contact:focus-within .site-header__contact-popup {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(6px, 6px);
    transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
  }

  .site-header__desktop-floating-contact .site-header__icon-button:hover + .site-header__contact-popup,
  .site-header__desktop-floating-contact .site-header__icon-button:focus-visible + .site-header__contact-popup,
  .site-header__desktop-floating-contact .site-header__contact-popup:hover,
  .site-header__desktop-floating-contact .site-header__contact-popup:focus-within,
  .site-header__desktop-floating-contact .site-header__floating-contact.is-contact-open .site-header__contact-popup {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(0, 0);
    transition: opacity .18s ease, transform .18s ease, visibility 0s linear 0s;
  }
}

@media (min-width: 769px) {
  .site-header__header-contact::after,
  .site-header__desktop-floating-contact .site-header__floating-contact::after {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
  }

  .site-header__header-contact .site-header__contact-popup,
  .site-header__desktop-floating-contact .site-header__contact-popup {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity .16s ease, transform .16s ease, visibility 0s linear .16s;
  }

  .site-header__header-contact .site-header__contact-popup {
    top: calc(100% + 4px) !important;
    right: 0 !important;
    transform: translateY(-4px) !important;
  }

  .site-header__desktop-floating-contact .site-header__contact-popup {
    right: calc(100% + 4px) !important;
    bottom: calc(100% + 4px) !important;
    transform: translate(5px, 5px) !important;
  }

  .site-header__header-contact.is-contact-open .site-header__contact-popup,
  .site-header__desktop-floating-contact .site-header__floating-contact.is-contact-open .site-header__contact-popup,
  .site-header__header-contact .site-header__icon-button:hover + .site-header__contact-popup,
  .site-header__header-contact .site-header__icon-button:focus-visible + .site-header__contact-popup,
  .site-header__desktop-floating-contact .site-header__icon-button:hover + .site-header__contact-popup,
  .site-header__desktop-floating-contact .site-header__icon-button:focus-visible + .site-header__contact-popup {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translate(0, 0) !important;
    transition: opacity .16s ease, transform .16s ease, visibility 0s linear 0s;
  }
}

@media (min-width: 769px) {
  .site-header__actions {
    gap: 9.35px;
  }

  .site-header__phone-wrap {
    gap: 9.35px;
  }

  .site-header__phone-stack {
    transform: translateX(11.5px);
  }

  .site-header__online-status {
    margin-left: 8.5px;
    margin-right: 8.5px;
  }

  .site-header__desktop-instagram {
    right: -33px;
  }
}
  

    /* Fix: restore original case-card layout from the source page without touching template header/menu/FAQ. */
    .drilling-page .case-slider__details,
    .drilling-page .case-slider__review {
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
    }

    .drilling-page .case-slider__details dl {
      display: grid;
      gap: 14px;
      margin: 0;
    }

    .drilling-page .case-slider__details div {
      display: grid;
      grid-template-columns: 120px minmax(0, 1fr);
      gap: 18px;
      align-items: start;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--line);
    }

    .drilling-page .case-slider__details div:last-child {
      padding-bottom: 0;
      border-bottom: 0;
    }

    .drilling-page .case-slider__details dt {
      color: var(--muted);
      font-size: 14px;
    }

    .drilling-page .case-slider__details dd {
      margin: 0;
      color: var(--text);
    }

    .drilling-page .case-slider__review h3 {
      margin-bottom: 12px;
    }

    .drilling-page .case-slider__review p {
      color: var(--muted);
      font-size: 18px;
    }

    .drilling-page .hero__visual:empty,
    .drilling-page .case-slider__placeholder:empty {
      color: transparent;
    }

    @media (max-width: 640px) {
      .drilling-page .case-slider__details,
      .drilling-page .case-slider__review {
        padding: 18px;
      }

      .drilling-page .case-slider__details div {
        grid-template-columns: 1fr;
        gap: 4px;
      }
    }

  

/* Header layout polish: desktop/tablet only */
@media (min-width: 769px) {
  :root {
    --header-container: 1180px;
  }

  .header-container {
    padding-left: clamp(18px, 2.4vw, 32px);
    padding-right: clamp(18px, 2.4vw, 32px);
  }

  .site-header {
    padding: 12px 0 14px;
  }

  .site-header.site-header--compact {
    padding: 10px 0 11px;
  }

  .site-header__inner {
    min-height: 54px;
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    align-items: center;
    gap: clamp(24px, 3vw, 46px);
  }

  .site-header__logo {
    min-width: 96px;
    font-size: clamp(1.28rem, 1.6vw, 1.46rem);
    letter-spacing: -0.05em;
  }

  .site-header__nav {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    align-items: center;
    gap: clamp(20px, 2.6vw, 36px);
  }

  .site-header__nav-links {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 1.75vw, 26px);
  }

  .site-header__nav-links a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0;
    color: var(--header-muted);
    font-size: clamp(.92rem, .88vw, .99rem);
    font-weight: 660;
    letter-spacing: -0.015em;
  }

  .site-header__nav-links a:not(:last-child)::after {
    display: none !important;
    content: none !important;
  }

  .site-header__nav-links a:hover,
  .site-header__nav-links a:focus-visible {
    transform: translateY(-1px);
  }

  .site-header__actions {
    position: relative;
    min-width: max-content;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 0;
    padding-left: clamp(14px, 1.8vw, 22px);
    border-left: 1px solid rgba(7, 91, 99, .12);
  }

  .site-header__phone-wrap {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
  }

  .site-header__phone-stack {
    align-items: flex-end;
    transform: none;
  }

  .site-header__phone {
    min-height: 36px;
    padding: 5px 10px 6px;
    font-size: clamp(1rem, 1.02vw, 1.12rem);
    letter-spacing: -0.03em;
  }

  .site-header__phone-worktime {
    margin-top: -1px;
    font-size: .69rem;
    line-height: 1.1;
  }

  .site-header__online-status {
    width: 14px;
    min-width: 14px;
    height: 36px;
    margin: 0 2px 0 0;
  }

  .site-header__online-dot {
    width: 7px;
    height: 7px;
  }

  .site-header__header-contact,
  .site-header__desktop-instagram {
    flex: 0 0 auto;
    align-self: center;
  }

  .site-header__header-contact .site-header__icon-button,
  .site-header__desktop-instagram {
    position: relative;
    top: auto;
    right: auto;
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
  }

  .site-header__header-contact .site-header__icon-button svg {
    width: 25px;
    height: 25px;
  }

  .site-header__desktop-instagram svg {
    width: 25.5px;
    height: 25.5px;
  }

  .site-header__header-contact .site-header__contact-popup {
    top: calc(100% + 8px) !important;
    right: 0;
  }

  .site-header__desktop-instagram .site-header__tooltip--instagram {
    top: calc(100% + 8px);
  }
}

@media (min-width: 769px) and (max-width: 1120px) {
  .header-container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-header__inner {
    gap: 18px;
  }

  .site-header__logo {
    min-width: 78px;
    font-size: 1.24rem;
  }

  .site-header__nav {
    gap: 16px;
  }

  .site-header__nav-links {
    gap: 13px;
  }

  .site-header__nav-links a {
    font-size: .86rem;
    font-weight: 650;
  }

  .site-header__actions {
    gap: 6px;
    padding-left: 12px;
  }

  .site-header__phone {
    min-height: 34px;
    padding-left: 8px;
    padding-right: 8px;
    font-size: .98rem;
  }

  .site-header__phone-worktime,
  .site-header__online-status {
    display: none !important;
  }

  .site-header__header-contact .site-header__icon-button,
  .site-header__desktop-instagram {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
  }
}

@media (min-width: 941px) and (max-width: 1120px) {
  .site-header__desktop-instagram .site-header__tooltip--instagram {
    left: auto;
    right: 0;
    transform: translateY(-3px);
  }

  .site-header__desktop-instagram:hover .site-header__tooltip--instagram,
  .site-header__desktop-instagram:focus-visible .site-header__tooltip--instagram {
    transform: translateY(0);
  }
}

@media (min-width: 769px) and (max-width: 940px) {
  .site-header__inner {
    gap: 14px;
  }

  .site-header__logo {
    min-width: 66px;
    font-size: 1.16rem;
  }

  .site-header__nav {
    gap: 12px;
  }

  .site-header__nav-links {
    gap: 10px;
  }

  .site-header__nav-links a {
    font-size: .8rem;
    letter-spacing: -0.02em;
  }

  .site-header__actions {
    padding-left: 10px;
  }

  .site-header__phone {
    font-size: .92rem;
  }

  .site-header__desktop-instagram {
    display: none !important;
  }
}


/* Premium page layer: scoped content redesign. Header, mobile menu, popups, back-to-top and well-faq are intentionally untouched. */
.drilling-page {
  --page-bg: #fbfdfe;
  --page-surface: #ffffff;
  --page-surface-soft: #f4f8f9;
  --page-text: #061014;
  --page-muted: #51616b;
  --page-muted-2: #6f7d86;
  --page-line: rgba(7, 91, 99, .13);
  --page-line-strong: rgba(7, 91, 99, .22);
  --page-accent: #075b63;
  --page-accent-dark: #054a51;
  --page-shadow: 0 24px 70px rgba(15, 23, 42, .075);
  --page-shadow-soft: 0 14px 42px rgba(15, 23, 42, .045);
  --page-radius-lg: 34px;
  --page-radius: 24px;
  --page-radius-sm: 16px;
  background: var(--page-bg);
  color: var(--page-text);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  overflow: hidden;
}

.drilling-page .container {
  width: min(100% - clamp(32px, 5vw, 72px), 1180px);
  margin-inline: auto;
}

.drilling-page img,
.drilling-page svg {
  max-width: 100%;
}

.drilling-page .section,
.drilling-page .hero {
  position: relative;
  border-bottom: 1px solid var(--page-line);
}

.drilling-page .section {
  padding: clamp(68px, 8vw, 112px) 0;
  background: var(--page-bg);
}

.drilling-page .section--soft {
  background:
    radial-gradient(circle at 18% 12%, rgba(7, 91, 99, .055), transparent 32%),
    linear-gradient(180deg, #f7fafb 0%, #fbfdfe 100%);
}

.drilling-page .hero {
  padding: clamp(78px, 9vw, 136px) 0 clamp(70px, 8vw, 120px);
  background:
    radial-gradient(circle at 84% 22%, rgba(7, 91, 99, .11), transparent 31%),
    radial-gradient(circle at 12% 0%, rgba(7, 91, 99, .055), transparent 34%),
    linear-gradient(180deg, #fbfdfe 0%, #f7fbfc 100%);
}

.drilling-page .hero::after,
.drilling-page .section--soft::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(7, 91, 99, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(7, 91, 99, .03) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 50% 15%, black 0%, transparent 62%);
  opacity: .65;
}

.drilling-page .hero__grid,
.drilling-page .section > .container,
.drilling-page .section .container,
.drilling-page .well-faq__container {
  position: relative;
  z-index: 1;
}

.drilling-page .hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, .94fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.drilling-page .hero__content {
  max-width: 790px;
}

.drilling-page .page-kicker,
.drilling-page .eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  margin: 0 0 18px;
  padding: 7px 12px;
  border: 1px solid rgba(7, 91, 99, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .76);
  color: var(--page-accent);
  font-size: .78rem;
  font-weight: 780;
  line-height: 1;
  letter-spacing: .105em;
  text-transform: uppercase;
  box-shadow: 0 8px 26px rgba(15, 23, 42, .035);
}

.drilling-page h1,
.drilling-page h2,
.drilling-page h3 {
  color: var(--page-text);
  letter-spacing: -.055em;
  text-wrap: balance;
}

.drilling-page h1 {
  max-width: 860px;
  font-size: clamp(2.7rem, 7vw, 5.15rem);
  line-height: .94;
  font-weight: 850;
}

.drilling-page h2 {
  max-width: 850px;
  font-size: clamp(2.15rem, 4.8vw, 4rem);
  line-height: .98;
  font-weight: 820;
}

.drilling-page h3 {
  font-size: clamp(1.12rem, 1.7vw, 1.34rem);
  line-height: 1.14;
  font-weight: 780;
}

.drilling-page .lead {
  max-width: 710px;
  margin-top: 24px;
  color: var(--page-muted);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  line-height: 1.55;
  letter-spacing: -.025em;
}

.drilling-page .hero__note {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--page-muted-2);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.72;
}

.drilling-page .hero__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 750px;
  margin-top: clamp(28px, 4vw, 42px);
}

.drilling-page .feature-mini,
.drilling-page .card,
.drilling-page .form,
.drilling-page .case-slider,
.drilling-page .case-slider__details,
.drilling-page .case-slider__review,
.drilling-page .price-calculator-card {
  border: 1px solid var(--page-line);
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--page-shadow-soft);
  backdrop-filter: blur(14px);
}

.drilling-page .feature-mini {
  min-height: 94px;
  display: flex;
  align-items: flex-start;
  padding: 20px 20px 20px 46px;
  border-radius: 22px;
  position: relative;
}

.drilling-page .feature-mini::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 24px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--page-accent);
  box-shadow: 0 0 0 7px rgba(7, 91, 99, .07);
}

.drilling-page .feature-mini strong {
  margin: 0;
  color: var(--page-text);
  font-size: .98rem;
  line-height: 1.38;
  letter-spacing: -.025em;
  font-weight: 720;
}

.drilling-page .hero-phone-cta {
  max-width: 440px;
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--page-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 48px rgba(15, 23, 42, .07);
}

.drilling-page .hero-phone-cta .field {
  gap: 7px;
}

.drilling-page .field label {
  color: var(--page-muted-2);
  font-size: .84rem;
  font-weight: 680;
}

.drilling-page input,
.drilling-page select,
.drilling-page textarea {
  min-height: 54px;
  border: 1px solid rgba(7, 91, 99, .15);
  border-radius: 16px;
  background: #fff;
  color: var(--page-text);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75), 0 10px 24px rgba(15, 23, 42, .028);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.drilling-page input:focus,
.drilling-page select:focus,
.drilling-page textarea:focus {
  border-color: rgba(7, 91, 99, .44);
  box-shadow: 0 0 0 4px rgba(7, 91, 99, .075), 0 14px 28px rgba(15, 23, 42, .045);
  outline: none;
}

.drilling-page .button {
  min-height: 54px;
  border: 1px solid rgba(7, 91, 99, .25);
  border-radius: 999px;
  background: var(--page-accent);
  color: #fff;
  box-shadow: 0 16px 34px rgba(7, 91, 99, .18);
  font-weight: 760;
  letter-spacing: -.015em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.drilling-page .button:hover,
.drilling-page .button:focus-visible {
  background: var(--page-accent-dark);
  border-color: rgba(7, 91, 99, .35);
  box-shadow: 0 18px 42px rgba(7, 91, 99, .22);
  transform: translateY(-1px);
  outline: none;
}

.drilling-page .button--secondary {
  background: rgba(255,255,255,.86);
  color: var(--page-text);
  border-color: rgba(7, 91, 99, .16);
  box-shadow: 0 12px 26px rgba(15, 23, 42, .04);
}

.drilling-page .button--secondary:hover,
.drilling-page .button--secondary:focus-visible {
  color: var(--page-accent);
  background: #fff;
}

.drilling-page .hero-cta {
  min-height: 66px;
  border-radius: 18px;
  flex-direction: column;
  gap: 2px;
  line-height: 1.12;
}

.drilling-page .hero-cta span {
  font-size: 1.05rem;
  font-weight: 780;
}

.drilling-page .hero-cta small {
  font-size: .78rem;
  opacity: .78;
}

.drilling-page .hero__visual {
  position: relative;
  min-height: clamp(390px, 42vw, 590px);
  border: 1px solid rgba(7, 91, 99, .14);
  border-radius: 40px;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 24%, rgba(7, 91, 99, .18), transparent 22%),
    linear-gradient(135deg, rgba(7,91,99,.08) 0%, transparent 32%),
    linear-gradient(145deg, #ffffff 0%, #eef6f7 100%);
  box-shadow: var(--page-shadow);
}

.drilling-page .hero__visual::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(7, 91, 99, .12);
  border-radius: 30px;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(7, 91, 99, .16) 48% 49%, transparent 49% 100%),
    linear-gradient(0deg, transparent 0 48%, rgba(7, 91, 99, .12) 48% 49%, transparent 49% 100%),
    radial-gradient(circle at 50% 52%, rgba(7, 91, 99, .10), transparent 18%);
  opacity: .85;
}

.drilling-page .hero__visual::after {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  height: 102px;
  border: 1px solid rgba(7, 91, 99, .12);
  border-radius: 24px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 18px 44px rgba(15, 23, 42, .08);
  backdrop-filter: blur(14px);
}

.drilling-page .section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 30px;
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.drilling-page .section-head p {
  color: var(--page-muted);
  font-size: 1.04rem;
  line-height: 1.68;
}

.drilling-page .grid {
  display: grid;
  gap: 18px;
}

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

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

.drilling-page .card {
  position: relative;
  min-height: 190px;
  padding: clamp(24px, 3vw, 34px);
  border-radius: var(--page-radius);
  overflow: hidden;
}

.drilling-page .card::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -34px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: rgba(7, 91, 99, .045);
  pointer-events: none;
}

.drilling-page .card h3 {
  margin-bottom: 13px;
}

.drilling-page .card p,
.drilling-page .step p,
.drilling-page .case-slider__review p,
.drilling-page .case-slider__details dd,
.drilling-page .depth-hint,
.drilling-page .price-result-note,
.drilling-page .form__note {
  color: var(--page-muted);
  line-height: 1.68;
}

.drilling-page .price-grid,
.drilling-page .price-grid--single {
  display: block;
}

.drilling-page .price-calculator-card {
  max-width: none;
  margin-top: clamp(30px, 4vw, 48px);
  padding: clamp(24px, 4vw, 44px);
  border-radius: var(--page-radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.86)),
    radial-gradient(circle at 82% 18%, rgba(7, 91, 99, .12), transparent 30%);
  box-shadow: var(--page-shadow);
}

.drilling-page .price-calculator-form {
  display: grid;
  gap: 22px;
}

.drilling-page .price-location-grid,
.drilling-page .price-calculator-grid,
.drilling-page .price-phone-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.drilling-page .price-result-box {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(7, 91, 99, .14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 26%, rgba(7,91,99,.13), transparent 32%),
    linear-gradient(145deg, #eef7f8, #ffffff 72%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 14px 34px rgba(15,23,42,.045);
}

.drilling-page .price-result-label {
  margin-bottom: 10px;
  color: var(--page-muted-2);
  font-size: .88rem;
  font-weight: 720;
}

.drilling-page .price-result-value {
  color: var(--page-text);
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: .92;
  letter-spacing: -.065em;
  font-weight: 860;
}

.drilling-page .steps {
  display: grid;
  gap: 14px;
  counter-reset: step;
}

.drilling-page .step {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 22px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--page-line);
  border-radius: 24px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 12px 34px rgba(15,23,42,.035);
}

.drilling-page .step::before {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(7, 91, 99, .18);
  background: #fff;
  color: var(--page-accent);
  box-shadow: 0 12px 28px rgba(15,23,42,.055);
}

.drilling-page .step h3 {
  margin-bottom: 8px;
}

.drilling-page .case-slider {
  display: grid;
  grid-template-columns: minmax(290px, .82fr) minmax(0, 1.18fr);
  gap: clamp(22px, 3vw, 34px);
  align-items: stretch;
  padding: clamp(20px, 3vw, 34px);
  border-radius: 34px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--page-shadow);
}

.drilling-page .case-slider__image {
  min-width: 0;
}

.drilling-page .case-slider__placeholder {
  position: relative;
  min-height: 100%;
  aspect-ratio: 1 / 1.08;
  border: 1px solid rgba(7, 91, 99, .14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 66% 28%, rgba(7,91,99,.16), transparent 24%),
    linear-gradient(135deg, rgba(7,91,99,.075), transparent 34%),
    linear-gradient(145deg, #f4f9fa, #ffffff);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
  color: transparent;
  overflow: hidden;
}

.drilling-page .case-slider__placeholder::before {
  content: "";
  position: absolute;
}

.drilling-page .case-slider__content {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 18px;
  min-width: 0;
}

.drilling-page .case-slider__details,
.drilling-page .case-slider__review {
  padding: clamp(22px, 3vw, 32px);
  border-radius: 26px;
  box-shadow: 0 10px 30px rgba(15,23,42,.035);
}

.drilling-page .case-slider__details dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.drilling-page .case-slider__details div {
  display: grid;
  grid-template-columns: minmax(110px, 140px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 17px 0;
  border-bottom: 1px solid rgba(7, 91, 99, .10);
}

.drilling-page .case-slider__details div:first-child {
  padding-top: 0;
}

.drilling-page .case-slider__details div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.drilling-page .case-slider__details dt {
  color: var(--page-muted-2);
  font-size: .88rem;
  font-weight: 720;
}

.drilling-page .case-slider__details dd {
  margin: 0;
  color: var(--page-text);
}

.drilling-page .case-slider__review h3 {
  margin-bottom: 12px;
}

.drilling-page .case-slider__review p {
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
}

.drilling-page .case-slider__controls {
  width: fit-content;
  margin: 28px auto 0;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid rgba(7, 91, 99, .12);
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 45px rgba(15, 23, 42, .06);
}

.drilling-page .case-arrow {
  width: 46px;
  min-width: 46px;
  height: 46px;
  min-height: 46px;
  padding: 0;
  border-radius: 999px;
}

.drilling-page .case-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 112px;
}

.drilling-page .case-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  min-height: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(7, 91, 99, .22);
  cursor: pointer;
  transition: width .18s ease, background .18s ease;
}

.drilling-page .case-dot.is-active {
  width: 24px;
  height: 8px;
  background: var(--page-accent);
}

.drilling-page .contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .58fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--page-line);
  border-radius: 36px;
  background:
    radial-gradient(circle at 86% 22%, rgba(7,91,99,.12), transparent 34%),
    linear-gradient(145deg, #ffffff, #f3f8f9);
  box-shadow: var(--page-shadow);
}

.drilling-page .form {
  padding: clamp(22px, 3vw, 30px);
  border-radius: 26px;
}

.drilling-page .footer {
  padding: 34px 0 42px;
  color: var(--page-muted-2);
  background: var(--page-bg);
}

.drilling-page .footer__inner {
  width: min(100% - clamp(32px, 5vw, 72px), 1180px);
  margin-inline: auto;
}

@media (max-width: 1100px) {
  .drilling-page .hero__grid,
  .drilling-page .case-slider,
  .drilling-page .contact-grid {
    grid-template-columns: 1fr;
  }

  .drilling-page .hero__visual {
    min-height: 360px;
  }
}

@media (max-width: 900px) {
  .drilling-page .section-head,
  .drilling-page .grid--2,
  .drilling-page .grid--3,
  .drilling-page .price-location-grid,
  .drilling-page .price-calculator-grid,
  .drilling-page .price-phone-row {
    grid-template-columns: 1fr;
  }

  .drilling-page .section-head {
    align-items: start;
  }
}

@media (max-width: 768px) {
  .drilling-page .container {
    width: min(100% - 28px, 1180px);
  }

  .drilling-page .hero {
    padding: 54px 0 64px;
  }

  .drilling-page h1 {
    font-size: clamp(2.35rem, 12vw, 3.45rem);
  }

  .drilling-page h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .drilling-page .lead {
    font-size: 1.08rem;
  }

  .drilling-page .hero__features {
    grid-template-columns: 1fr;
  }

  .drilling-page .hero-phone-cta {
    max-width: none;
  }

  .drilling-page .hero__visual {
    min-height: 292px;
    border-radius: 30px;
  }

  .drilling-page .hero__visual::before {
    inset: 20px;
    border-radius: 22px;
  }

  .drilling-page .hero__visual::after {
    left: 24px;
    right: 24px;
    bottom: 24px;
    height: 72px;
    border-radius: 18px;
  }

  .drilling-page .section {
    padding: 58px 0;
  }

  .drilling-page .card,
  .drilling-page .price-calculator-card,
  .drilling-page .case-slider,
  .drilling-page .contact-grid {
    border-radius: 24px;
  }

  .drilling-page .step {
    grid-template-columns: 1fr;
  }

  .drilling-page .step::before {
    width: 52px;
    height: 52px;
  }

  .drilling-page .case-slider__details div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .drilling-page .case-slider__controls {
    gap: 13px;
    padding: 9px 10px;
  }

  .drilling-page .case-arrow {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .drilling-page *,
  .drilling-page *::before,
  .drilling-page *::after {
    transition-duration: .01ms !important;
  }
}



/* ===== Перенесённые основные секции из текущего итогового файла ===== */
:root{
  --bg:#f4f7f8;
  --paper:#ffffff;
  --text:#0d1218;
  --muted:#687682;
  --line:rgba(9,52,60,.13);
  --line-strong:rgba(13,18,24,.18);
  --accent:#0b646b;
  --accent-dark:#084e55;
  --accent-soft:rgba(11,100,107,.08);
  --cream:#f7f3ec;
  --shadow:0 20px 58px rgba(13,18,24,.075);
  --soft-shadow:0 14px 38px rgba(13,18,24,.055);
  --max:1180px;
}
*{box-sizing:border-box}
html,body{margin:0;min-height:100%;}
html{scroll-behavior:smooth}
body{
  background:var(--bg);
  color:var(--text);
  font-family:Inter,"Segoe UI",system-ui,-apple-system,BlinkMacSystemFont,Arial,sans-serif;
  overflow-x:hidden;
}
button,input{font:inherit}
button{cursor:pointer}
.site-section{width:100%;border-bottom:1px solid var(--line);}
.site-inner{width:min(100%,var(--max));margin:0 auto;}

/* HERO */
.hp-hero-section{
  min-height:100vh;
  display:flex;
  align-items:center;
  background:
    linear-gradient(90deg,rgba(11,100,107,.045) 1px,transparent 1px),
    linear-gradient(0deg,rgba(11,100,107,.035) 1px,transparent 1px),
    #fbfdfd;
  background-size:40px 40px;
}
.hp-hero{min-height:100vh;width:100%;display:grid;grid-template-columns:minmax(0,.78fr) minmax(260px,.62fr);gap:clamp(24px,5vw,64px);align-items:center;padding:clamp(34px,5vw,58px) 0;}
.hp-copy{max-width:720px;padding:0 clamp(14px,2vw,0px);}
.hp-empty{min-height:320px}
.hp-eyebrow{display:inline-flex;align-items:center;min-height:30px;padding:0 12px;border:1px solid rgba(11,100,107,.18);border-radius:999px;background:rgba(255,255,255,.74);color:var(--accent);font-size:.75rem;font-weight:780;letter-spacing:.055em;text-transform:uppercase;}
.hp-title{max-width:720px;margin:18px 0 0;font-size:clamp(2.65rem,5.3vw,5.25rem);line-height:.92;letter-spacing:-.075em;font-weight:830;}
.hp-subtitle{max-width:610px;margin:20px 0 0;color:#3e4a56;font-size:clamp(1rem,1.35vw,1.16rem);line-height:1.5;letter-spacing:-.015em;}
.hp-benefits{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;max-width:720px;margin-top:24px;}
.hp-benefit{min-height:76px;display:flex;align-items:flex-start;gap:11px;padding:14px;border:1px solid var(--line);border-radius:18px;background:rgba(255,255,255,.78);}
.hp-dot{flex:0 0 auto;width:18px;height:18px;margin-top:2px;display:inline-flex;align-items:center;justify-content:center;border-radius:50%;background:rgba(11,100,107,.09);}
.hp-dot::after{content:"";width:7px;height:7px;border-radius:50%;background:var(--accent);}
.hp-benefit strong{display:block;font-size:.93rem;line-height:1.16;letter-spacing:-.025em;}
.hp-benefit span{display:block;margin-top:4px;color:var(--muted);font-size:.78rem;line-height:1.28;}
.hp-phone-box{width:min(100%,520px);margin-top:24px;padding:14px;display:grid;grid-template-columns:1fr 1fr;gap:10px;align-items:end;border:1px solid var(--line);border-radius:22px;background:rgba(255,255,255,.82);box-shadow:0 16px 40px rgba(13,18,24,.055);}
.hp-phone-label{grid-column:1/-1;margin:0 0 -2px;color:#6f7f8b;font-size:.88rem;font-weight:760;}
.hp-phone-input{width:100%;min-height:56px;display:flex;align-items:center;border:1px solid rgba(13,18,24,.16);border-radius:15px;background:#fff;overflow:hidden;}
.hp-phone-input span{min-width:70px;height:100%;display:flex;align-items:center;padding-left:17px;color:#111;font-size:1rem;font-weight:500;}
.hp-phone-input input{width:100%;min-width:0;height:56px;padding:0 14px 0 0;border:0;outline:0;background:transparent;font-size:1rem;color:#111;}
.hp-phone-input input::placeholder{color:#a3acb5}
.hp-phone-button{width:100%;min-height:56px;border:0;border-radius:15px;background:var(--accent);color:#fff;font-size:1.02rem;font-weight:820;line-height:1.16;box-shadow:0 14px 30px rgba(11,100,107,.18);}
.hp-phone-button:hover{background:var(--accent-dark)}
.hp-phone-button small{display:block;margin-top:2px;font-size:.78rem;font-weight:600;opacity:.88;}
.hp-micro{max-width:560px;margin-top:14px;color:var(--muted);font-size:.94rem;line-height:1.45;}

/* BENEFITS */
.ben-section{background:#f7f3ec;}
.ben-wrap{display:grid;grid-template-columns:minmax(260px,.68fr) minmax(0,1fr);gap:clamp(28px,5vw,70px);align-items:start;padding:clamp(34px,5.4vw,64px) 0;}
.ben-head{position:sticky;top:24px;margin:0;max-width:760px;padding:0 clamp(14px,2vw,0px);}
.ben-kicker{display:inline-flex;align-items:center;min-height:30px;padding:0 12px;border:1px solid rgba(118,100,77,.22);border-radius:999px;background:rgba(255,255,255,.58);color:#76644d;font-size:.76rem;font-weight:780;letter-spacing:.08em;text-transform:uppercase;}
.ben-head h2{margin:16px 0 0;font-size:clamp(2.2rem,4.8vw,4.65rem);line-height:.95;letter-spacing:-.07em;}
.ben-head p{max-width:620px;margin:18px 0 0;color:var(--muted);font-size:clamp(1rem,1.45vw,1.14rem);line-height:1.55;}
.ben-list{display:grid;gap:0;border-top:1px solid rgba(13,18,24,.14);padding:0 clamp(14px,2vw,0px);}
.ben-item{border-bottom:1px solid rgba(13,18,24,.14);}
.ben-button{appearance:none;width:100%;padding:24px 0;border:0;background:transparent;color:inherit;text-align:left;cursor:pointer;}
.ben-title{display:grid;grid-template-columns:42px minmax(0,1fr) 30px;gap:0;align-items:start;}
.ben-num{width:28px;height:28px;display:inline-flex;align-items:center;justify-content:center;color:#76644d;font-weight:820;}
.ben-main{min-width:0}
.ben-main h3,.ben-item-heading{margin:0;font-size:clamp(1.02rem,1.35vw,1.18rem);line-height:1.18;letter-spacing:-.035em;}
.ben-short{display:block;margin-top:7px;color:var(--muted);font-size:.94rem;line-height:1.42;}
.ben-icon{flex:0 0 auto;width:30px;height:30px;position:relative;border:1px solid rgba(118,100,77,.22);border-radius:999px;background:rgba(118,100,77,.08);color:#76644d;}
.ben-icon::before,.ben-icon::after{content:"";position:absolute;left:50%;top:50%;width:12px;height:1.8px;border-radius:999px;background:currentColor;transform:translate(-50%,-50%);}
.ben-icon::after{transform:translate(-50%,-50%) rotate(90deg);transition:transform .2s ease;}
.ben-button[aria-expanded="true"] .ben-icon::after{transform:translate(-50%,-50%) rotate(0);}
.ben-panel{overflow:hidden;max-height:0;transition:max-height .25s ease;}
.ben-panel-inner{padding:0 0 24px 42px;color:var(--muted);font-size:.95rem;line-height:1.55;max-width:680px;}
.ben-item.is-open .ben-panel{max-height:110px;}

/* CALCULATOR */
.calc-section{background:#fbfdfd;}
.calc-box{padding:clamp(24px,4.2vw,44px) 0;}
.calc-head{max-width:780px;margin-bottom:20px;padding:0 clamp(14px,2vw,0px);}
.calc-kicker{display:inline-flex;align-items:center;min-height:27px;padding:0 10px;border:1px solid rgba(11,100,107,.18);border-radius:999px;background:rgba(255,255,255,.76);color:var(--accent);font-size:.7rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;}
.calc-head h2{margin:10px 0 0;font-size:clamp(2.05rem,4vw,3.55rem);line-height:.96;letter-spacing:-.065em;}
.calc-head p{max-width:680px;margin:12px 0 0;color:var(--muted);font-size:clamp(.98rem,1.25vw,1.08rem);line-height:1.5;}
.calc-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(320px,.39fr);gap:14px;align-items:stretch;padding:0 clamp(14px,2vw,0px);}
.calc-left{display:grid;gap:14px;}
.calc-top-row{display:grid;grid-template-columns:minmax(0,1fr) minmax(280px,.42fr);gap:14px;}
.calc-panel,.calc-result{border:1px solid var(--line);border-radius:18px;background:#fff;box-shadow:var(--soft-shadow);}
.calc-panel{padding:14px;}
.calc-panel-title{display:flex;align-items:flex-end;justify-content:space-between;gap:10px;margin-bottom:10px;}
.calc-panel-title h3{margin:0;font-size:.96rem;line-height:1.1;letter-spacing:-.025em;}
.calc-panel-title h3 small{color:var(--muted);font-size:.84rem;font-weight:650;}
.calc-panel-title span{color:var(--muted);font-size:.82rem;}
.calc-depth-row{display:flex;align-items:center;gap:12px;}
.calc-range-wrap{flex:1 1 auto;min-width:0;}
.calc-scale{display:flex;justify-content:space-between;margin-top:5px;color:var(--muted);font-size:.74rem;}
.calc-depth-field{width:92px;height:40px;display:flex;align-items:center;border:1px solid var(--line-strong);border-radius:12px;background:#fff;overflow:hidden;}
.calc-depth-field input{width:100%;min-width:0;height:100%;padding:0 4px 0 10px;border:0;outline:0;text-align:right;color:var(--text);font-weight:800;background:transparent;}
.calc-depth-field span{padding:0 10px 0 4px;color:var(--muted);font-weight:760;}
.calc-range{--progress:14.14%;width:100%;height:24px;margin:0;padding:0;background:transparent;appearance:none;-webkit-appearance:none;outline:none;}
.calc-range::-webkit-slider-runnable-track{height:9px;border-radius:999px;background:linear-gradient(to right,var(--accent) 0%,var(--accent) var(--progress),#dfe8eb var(--progress),#dfe8eb 100%);}
.calc-range::-webkit-slider-thumb{-webkit-appearance:none;width:22px;height:22px;margin-top:-6.5px;border:4px solid #fff;border-radius:50%;background:var(--accent);box-shadow:0 8px 20px rgba(11,100,107,.22),0 0 0 1px rgba(11,100,107,.22);}
.calc-range:focus-visible::-webkit-slider-thumb{box-shadow:0 8px 20px rgba(11,100,107,.22),0 0 0 5px rgba(11,100,107,.14);}
.calc-range::-moz-range-track{height:9px;border-radius:999px;background:#dfe8eb;}
.calc-range::-moz-range-progress{height:9px;border-radius:999px;background:var(--accent);}
.calc-range::-moz-range-thumb{width:16px;height:16px;border:4px solid #fff;border-radius:50%;background:var(--accent);box-shadow:0 8px 20px rgba(11,100,107,.22),0 0 0 1px rgba(11,100,107,.22);}
.calc-pipe-list{display:grid;gap:8px;}
.calc-pipe-option{position:relative;width:100%;min-height:58px;display:grid;grid-template-columns:50px minmax(0,1fr);gap:8px;align-items:center;padding:8px 34px 8px 10px;border:1px solid var(--line);border-radius:14px;background:#fff;color:var(--text);text-align:left;transition:.15s ease;}
.calc-pipe-option i{width:48px;height:36px;display:flex;align-items:center;justify-content:center;}
.calc-pipe-option b,.calc-setup-option b{display:block;font-size:.88rem;line-height:1.12;letter-spacing:-.02em;}
.calc-pipe-option em,.calc-setup-option em{display:block;margin-top:3px;color:var(--muted);font-size:.76rem;font-style:normal;}
.calc-setup-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;}
.calc-setup-option{position:relative;width:100%;min-height:84px;display:grid;grid-template-columns:70px minmax(0,1fr);align-items:center;gap:8px;padding:9px 32px 9px 9px;border:1px solid var(--line);border-radius:15px;background:#fff;color:var(--text);text-align:left;transition:.15s ease;}
.calc-setup-option i{width:70px;height:50px;display:flex;align-items:center;justify-content:flex-start;}
.calc-setup-copy b{display:block;color:var(--text);font-size:.9rem;}
.calc-setup-copy em{display:block;margin-top:6px;color:var(--accent-dark);font-size:.82rem;font-weight:780;line-height:1.15;}
.calc-pipe-option:hover,.calc-setup-option:hover{transform:translateY(-1px);border-color:rgba(11,100,107,.28);}
.calc-pipe-option.is-selected,.calc-setup-option.is-selected{border-color:rgba(11,100,107,.50);background:linear-gradient(180deg,rgba(11,100,107,.055),#fff);box-shadow:0 12px 30px rgba(11,100,107,.08);}
.calc-pipe-option mark,.calc-setup-option mark{position:absolute;right:9px;top:9px;width:19px;height:19px;display:inline-flex;align-items:center;justify-content:center;border:1px solid rgba(11,100,107,.24);border-radius:999px;background:#fff;color:transparent;font-size:.68rem;font-weight:900;}
.calc-pipe-option.is-selected mark,.calc-setup-option.is-selected mark{background:var(--accent);border-color:var(--accent);color:#fff;}
.calc-section svg{display:block;width:100%;height:100%;}
.calc-tubeTop{fill:#e8fbfc;stroke:var(--accent);stroke-width:2;}
.calc-tubeBody{fill:#cdeff2;stroke:var(--accent);stroke-width:2;}
.calc-tubeLine{fill:none;stroke:var(--accent);stroke-width:1.7;stroke-linecap:round;}
.calc-ground{fill:none;stroke:rgba(13,18,24,.24);stroke-width:2;stroke-linecap:round;}
.calc-connector,.calc-faucet{fill:none;stroke:var(--accent);stroke-width:3;stroke-linecap:round;stroke-linejoin:round;}
.calc-node{fill:#e7f6f7;stroke:var(--accent);stroke-width:2;}
.calc-caisson{fill:#e7f6f7;stroke:var(--accent);stroke-width:2;}
.calc-lid{fill:none;stroke:var(--accent);stroke-width:3;stroke-linecap:round;}
.calc-drop{fill:#cdeff2;stroke:var(--accent);stroke-width:2;}
.calc-result{min-height:100%;display:flex;flex-direction:column;justify-content:space-between;padding:18px;border-color:rgba(11,100,107,.22);background:linear-gradient(180deg,#fff 0%,#fff 56%,rgba(11,100,107,.055) 100%);}
.calc-result-list{display:grid;gap:12px;}
.calc-result-list div{display:grid;grid-template-columns:minmax(96px,.5fr) minmax(0,1fr);gap:14px;align-items:baseline;padding-bottom:10px;border-bottom:1px solid rgba(13,18,24,.08);}
.calc-result-list div:last-child{border-bottom:0;}
.calc-result-list span{color:var(--muted);font-size:.98rem;line-height:1.3;}
.calc-result-list b{color:var(--text);font-size:1.04rem;line-height:1.26;text-align:right;font-weight:830;}
.calc-result-list b.calc-setup-summary span,.calc-result-list b.calc-setup-summary em{display:block;}
.calc-result-list b.calc-setup-summary span{color:var(--text);}
.calc-result-list b.calc-setup-summary em{margin-top:4px;color:var(--accent-dark);font-style:normal;font-size:.96rem;font-weight:820;}
.calc-result-total{padding:18px;margin:22px -4px -4px;border:1px solid rgba(11,100,107,.14);border-radius:18px;background:#fff;}
.calc-result-total span{display:block;color:var(--muted);font-size:.72rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;}
.calc-result-total strong{display:block;margin-top:8px;color:var(--accent-dark);font-size:clamp(2.25rem,3.8vw,3.25rem);line-height:.94;letter-spacing:-.075em;}
.calc-lead-form{width:100%;margin:14px 0 0;display:grid;grid-template-columns:345px minmax(0,1fr);gap:10px;align-items:start;}
.calc-phone-field{min-height:52px;display:flex;align-items:center;border:1px solid var(--line-strong);border-radius:16px;background:#fff;overflow:hidden;box-shadow:var(--soft-shadow);}
.calc-phone-field span{height:100%;min-width:70px;display:flex;align-items:center;padding-left:16px;color:var(--text);font-weight:760;}
.calc-phone-field input{width:100%;min-width:0;height:52px;border:0;outline:0;padding:0 12px 0 0;color:var(--text);background:transparent;}
.calc-phone-field input::placeholder{color:#a3acb5;}
.calc-lead-form button{min-height:52px;border:0;border-radius:16px;background:var(--accent);color:#fff;font-weight:830;box-shadow:0 12px 26px rgba(11,100,107,.17);}
.calc-lead-form p{grid-column:1/-1;margin:2px 0 0;color:var(--muted);font-size:.82rem;line-height:1.38;text-align:left;justify-self:start;max-width:920px;}

@media(max-width:980px){
  .hp-hero{grid-template-columns:1fr;min-height:auto;padding:30px 0 22px;}
  .hp-empty{display:none}
  .hp-benefits{grid-template-columns:1fr;}
  .hp-phone-box{display:block;width:100%;}
  .hp-phone-button{margin-top:12px;}
  .ben-wrap{grid-template-columns:1fr;}
  .ben-head{position:static;}
  .calc-grid,.calc-top-row{grid-template-columns:1fr;}
  .calc-lead-form{width:100%;grid-template-columns:minmax(260px,345px) minmax(260px,420px);}
}
@media(max-width:620px){
  .hp-copy,.ben-head,.ben-list,.calc-head,.calc-grid{padding-left:10px;padding-right:10px;}
  .hp-hero-section{min-height:auto;}
  .hp-title{font-size:clamp(2.25rem,14vw,3.3rem);line-height:.96;}
  .ben-wrap{padding:24px 0;}
  .ben-head h2{font-size:clamp(2rem,11vw,3.2rem);}
  .ben-title{grid-template-columns:34px minmax(0,1fr) 30px;}
  .ben-panel-inner{padding-left:34px;}
  .calc-box{padding:20px 0;}
  .calc-head h2{font-size:clamp(1.95rem,10vw,2.9rem);}
  .calc-depth-row{flex-direction:column;align-items:stretch;}
  .calc-depth-field{width:100%;}
  .calc-setup-grid{grid-template-columns:1fr;}
  .calc-result-list div{grid-template-columns:1fr;gap:4px;}
  .calc-result-list b{text-align:left;}
  .calc-lead-form{grid-template-columns:1fr;margin-left:10px;margin-right:10px;width:calc(100% - 20px);}
  .calc-range::-webkit-slider-thumb{width:28px;height:28px;margin-top:-9.5px;}
  .calc-range::-moz-range-thumb{width:20px;height:20px;}
}

/* Final fixed equipment layout and CTA alignment */
.calc-setup-copy{
  display:block !important;
  min-width:0 !important;
  line-height:1.14 !important;
}

.calc-equipment-name{
  display:block !important;
  color:var(--text) !important;
  font-size:.9rem !important;
  font-weight:800 !important;
  line-height:1.12 !important;
  white-space:normal !important;
}

.calc-equipment-price{
  display:block !important;
  margin-top:6px !important;
  color:var(--text) !important;
  font-size:.82rem !important;
  font-weight:780 !important;
  line-height:1.15 !important;
  white-space:normal !important;
}

.calc-result-list b.calc-setup-summary em{
  color:var(--text) !important;
}

@media (min-width:981px){
  .calc-lead-form{
    width:100% !important;
    grid-template-columns:345px minmax(0,1fr) !important;
    margin-left:0 !important;
    margin-right:0 !important;
  }

  .calc-lead-form button{
    width:100% !important;
  }

  .calc-lead-form p{
    grid-column:1/-1 !important;
    text-align:left !important;
    justify-self:start !important;
    margin:2px 0 0 !important;
    max-width:920px !important;
  }
}

@media(max-width:620px){
  .calc-lead-form p{
    grid-column:1/-1 !important;
    text-align:left !important;
  }
}


/* Absolute fallback against inline equipment text */
.calc-equipment-break{
  display:block !important;
  content:"" !important;
}

.calc-equipment-price{
  margin-top:0 !important;
}


/* Mobile calculator CTA: phone and button in two full-width rows */
@media (max-width:700px){
  .calc-lead-form{
    display:grid !important;
    grid-template-columns:1fr !important;
    width:100% !important;
    max-width:none !important;
    margin:14px 0 0 !important;
    gap:10px !important;
  }

  .calc-phone-field,
  .calc-lead-form button{
    width:100% !important;
    max-width:none !important;
  }

  .calc-phone-field{
    grid-column:1 / -1 !important;
  }

  .calc-lead-form button{
    grid-column:1 / -1 !important;
    min-height:52px !important;
  }

  .calc-lead-form p{
    grid-column:1 / -1 !important;
    width:100% !important;
    max-width:none !important;
    text-align:left !important;
    margin:0 !important;
  }
}


/* Mobile calculator CTA: match the width of the cost/result block */
@media (max-width:700px){
  .calc-lead-form{
    width:calc(100% - 20px) !important;
    max-width:none !important;
    margin:14px auto 0 !important;
    grid-template-columns:1fr !important;
  }

  .calc-phone-field,
  .calc-lead-form button{
    width:100% !important;
    max-width:none !important;
  }
}



/* ===== Work process block ===== */

.work-section{
  --soft:rgba(11,100,107,.075);
  --soft-2:rgba(11,100,107,.045);

  padding:clamp(34px,5vw,76px) 18px;
}

.work-inner{
  width:min(100%,var(--max));
  margin:0 auto;
}

.work-head{
  max-width:860px;
  margin-bottom:24px;
}

.work-label{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 11px;
  border:1px solid rgba(11,100,107,.18);
  border-radius:999px;
  background:rgba(255,255,255,.72);
  color:var(--accent);
  font-size:.7rem;
  font-weight:850;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.work-head h2{
  margin:14px 0 0;
  font-size:clamp(2.25rem,4.6vw,4.25rem);
  line-height:.95;
  letter-spacing:-.075em;
}

.work-head p{
  max-width:760px;
  margin:18px 0 0;
  color:var(--text);
  font-size:clamp(1.22rem,2.15vw,1.56rem);
  font-weight:650;
  line-height:1.34;
  letter-spacing:-.035em;
}

.work-shell{
  display:grid;
  grid-template-columns:390px minmax(0,1fr);
  min-height:520px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow);
}

.work-menu{
  border-right:1px solid var(--line);
  background:#fff;
}

.work-step{
  border-bottom:1px solid var(--line);
}

.work-step:last-child{
  border-bottom:0;
}

.work-btn{
  position:relative;
  width:100%;
  min-height:98px;
  display:grid;
  grid-template-columns:52px minmax(0,1fr) 26px;
  gap:15px;
  align-items:center;
  padding:18px 20px;
  border:0;
  background:#fff;
  text-align:left;
  cursor:pointer;
  transition:background .2s ease;
}

.work-btn:hover,
.work-step.is-active .work-btn{
  background:var(--soft-2);
}

.work-icon{
  width:42px;
  height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(11,100,107,.18);
  border-radius:14px;
  background:linear-gradient(180deg,#fff,rgba(11,100,107,.055));
}

.work-icon svg{
  width:27px;
  height:27px;
  display:block;
}

.work-icon path{
  fill:none;
  stroke:var(--accent);
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.work-btn b{
  display:block;
  color:var(--text);
  font-size:.99rem;
  line-height:1.18;
  letter-spacing:-.025em;
}

.work-btn small{
  display:block;
  margin-top:5px;
  color:var(--muted);
  font-size:.78rem;
  font-weight:520;
  line-height:1.3;
}

.work-arrow{
  width:22px;
  height:22px;
  border-top:1.5px solid var(--text);
  border-right:1.5px solid var(--text);
  transform:rotate(45deg);
  opacity:.55;
  justify-self:end;
  transition:transform .22s ease,opacity .22s ease;
}

.work-step.is-active .work-arrow{
  opacity:1;
  transform:rotate(45deg) translate(3px,-3px);
}

.mobile-detail{
  display:none;
}

.work-display{
  padding:clamp(28px,4.6vw,54px);
  background:
    radial-gradient(circle at 12% 15%,rgba(11,100,107,.10),transparent 34%),
    linear-gradient(180deg,#ffffff 0%,#f8fbfb 100%);
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  align-items:flex-start;
  gap:34px;
}

.display-copy{
  max-width:690px;
}

.display-copy p{
  margin:0;
  color:var(--muted);
  font-size:1rem;
  line-height:1.6;
}

.active-card{
  margin-top:0;
}

.active-card h3{
  max-width:650px;
  margin:0;
  color:var(--text);
  font-size:clamp(1.8rem,3.25vw,2.85rem);
  line-height:1.02;
  letter-spacing:-.06em;
}

.active-card p{
  max-width:710px;
  margin:16px 0 0;
  color:var(--muted);
  font-size:1rem;
  line-height:1.62;
}

@media(max-width:980px){
  .work-section{
  --soft:rgba(11,100,107,.075);
  --soft-2:rgba(11,100,107,.045);

    padding:34px 10px 58px;
  }

  .work-head{
    margin-bottom:18px;
  }

  .work-shell{
    display:block;
    min-height:0;
  }

  .work-display{
    display:none;
  }

  .work-menu{
    border-right:0;
  }

  .work-step{
    border-bottom:1px solid var(--line);
  }

  .work-btn{
    min-height:82px;
    grid-template-columns:46px minmax(0,1fr) 28px;
    gap:13px;
    padding:16px;
  }

  .work-icon{
    width:40px;
    height:40px;
    border-radius:13px;
  }

  .work-icon svg{
    width:25px;
    height:25px;
  }

  .work-step.is-active .work-btn{
    background:#fff;
  }

  .work-step.is-open .work-btn{
    background:var(--soft-2);
  }

  .work-step.is-open .work-arrow{
    opacity:1;
    transform:rotate(135deg);
  }

  .mobile-detail{
    display:grid;
    grid-template-rows:0fr;
    transition:grid-template-rows .28s ease;
  }

  .work-step.is-open .mobile-detail{
    grid-template-rows:1fr;
  }

  .mobile-detail-inner{
    min-height:0;
    overflow:hidden;
  }

  .mobile-detail-box{
    padding:0 16px 18px 75px;
  }

  .mobile-detail-box h3{
    margin:0;
    color:var(--text);
    font-size:1.22rem;
    line-height:1.12;
    letter-spacing:-.035em;
  }

  .mobile-detail-box p{
    margin:10px 0 0;
    color:var(--muted);
    font-size:.95rem;
    line-height:1.55;
  }
}

@media(max-width:620px){
  .work-head h2{
    font-size:clamp(2.05rem,11vw,3rem);
  }

  .work-head p{
    font-size:.96rem;
  }

  .work-btn{
    grid-template-columns:42px minmax(0,1fr) 24px;
    gap:12px;
    padding:15px 14px;
  }

  .work-icon{
    width:38px;
    height:38px;
    border-radius:12px;
  }

  .work-icon svg{
    width:24px;
    height:24px;
  }

  .mobile-detail-box{
    padding:0 14px 18px 68px;
  }
}


/* ===== Примеры работ: isolated block ===== */
.pw-section{
  --pw-bg:#f4f6f7;
  --pw-paper:#fff;
  --pw-text:#0d1218;
  --pw-muted:#66737f;
  --pw-line:rgba(13,18,24,.12);
  --pw-line-strong:rgba(13,18,24,.2);
  --pw-accent:#0b646b;
  --pw-soft:rgba(11,100,107,.07);
  --pw-shadow:0 18px 46px rgba(13,18,24,.065);
  padding:clamp(46px,6vw,82px) 18px;
  background:#f4f6f7;
  color:var(--pw-text);
  border-top:1px solid var(--pw-line);
}

.pw-inner{
  width:min(100%,1180px);
  margin:0 auto;
  border:1px solid var(--pw-line);
  background:var(--pw-paper);
  box-shadow:var(--pw-shadow);
  overflow:hidden;
}

.pw-layout{
  display:grid;
  grid-template-columns:330px minmax(0,1fr);
  gap:34px;
  align-items:start;
  padding:clamp(24px,4vw,44px);
}

.pw-copy{
  padding-top:8px;
}

.pw-label{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 11px;
  border:1px solid rgba(11,100,107,.18);
  border-radius:999px;
  background:rgba(255,255,255,.72);
  color:var(--pw-accent);
  font-size:.7rem;
  font-weight:850;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.pw-copy h2{
  margin:14px 0 0;
  color:var(--pw-text);
  font-size:clamp(2.1rem,3.7vw,3.55rem);
  line-height:.98;
  letter-spacing:-.07em;
}

.pw-copy p{
  margin:16px 0 0;
  color:var(--pw-muted);
  font-size:1rem;
  line-height:1.6;
}

.pw-gallery{
  min-width:0;
}

.pw-viewport{
  overflow:hidden;
}

.pw-track{
  display:flex;
  gap:14px;
  transition:transform .32s ease;
  will-change:transform;
}

.pw-photo{
  position:relative;
  flex:0 0 calc((100% - 14px) / 2);
  display:block;
  border:0;
  padding:0;
  background:transparent;
  cursor:pointer;
  text-align:left;
}

.pw-photo-frame{
  position:relative;
  width:100%;
  aspect-ratio:3/2;
  display:block;
  overflow:hidden;
  border:1px solid var(--pw-line);
  background:
    linear-gradient(135deg,rgba(11,100,107,.08),transparent 32%),
    linear-gradient(180deg,#f9fbfb,#edf3f4);
}

.pw-photo-frame::before{
  content:"";
  position:absolute;
  inset:18px;
  border:1px solid rgba(13,18,24,.08);
}

.pw-photo-frame::after{
  content:"";
  position:absolute;
  inset:0;
  background:repeating-linear-gradient(135deg,rgba(13,18,24,.025) 0 1px,transparent 1px 8px);
}

.pw-photo-title{
  position:absolute;
  left:18px;
  bottom:18px;
  z-index:2;
  color:var(--pw-text);
  font-size:clamp(1.25rem,2vw,1.85rem);
  font-weight:850;
  letter-spacing:-.045em;
}

.pw-photo-lines{
  position:absolute;
  top:18px;
  right:18px;
  z-index:2;
  display:grid;
  gap:5px;
  width:54px;
}

.pw-photo-lines i{
  height:1px;
  background:rgba(13,18,24,.22);
}

.pw-controls{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  margin-top:18px;
}

.pw-nav-row{
  display:flex;
  align-items:center;
  gap:10px;
}

.pw-nav,
.pw-lb-nav{
  width:42px;
  height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--pw-line-strong);
  border-radius:999px;
  background:#fff;
  cursor:pointer;
  transition:background .18s ease,border-color .18s ease,transform .18s ease;
}

.pw-nav:hover,
.pw-lb-nav:hover{
  transform:translateY(-1px);
  border-color:rgba(11,100,107,.32);
  background:var(--pw-soft);
}

.pw-nav::before,
.pw-lb-nav::before{
  content:"";
  width:10px;
  height:10px;
  border-top:1.7px solid var(--pw-text);
  border-right:1.7px solid var(--pw-text);
}

.pw-prev::before,
.pw-lb-prev::before{
  transform:rotate(-135deg);
  margin-left:4px;
}

.pw-next::before,
.pw-lb-next::before{
  transform:rotate(45deg);
  margin-right:4px;
}

.pw-counter{
  min-width:68px;
  color:var(--pw-muted);
  font-size:.86rem;
  font-weight:760;
  letter-spacing:.04em;
  text-align:center;
}

.pw-progress{
  flex:1;
  height:2px;
  background:rgba(13,18,24,.09);
  overflow:hidden;
}

.pw-progress i{
  display:block;
  width:10%;
  height:100%;
  background:var(--pw-accent);
  transition:width .25s ease;
}

.pw-more-link{
  min-height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:0 18px;
  border:1px solid rgba(11,100,107,.28);
  border-radius:999px;
  background:#fff;
  color:var(--pw-text);
  text-decoration:none;
  font-size:.88rem;
  font-weight:780;
  letter-spacing:-.01em;
  white-space:nowrap;
  transition:background .18s ease,border-color .18s ease,transform .18s ease;
}

.pw-more-link:hover{
  transform:translateY(-1px);
  border-color:rgba(11,100,107,.44);
  background:var(--pw-soft);
}

.pw-more-link i{
  width:9px;
  height:9px;
  display:block;
  border-top:1.7px solid var(--pw-text);
  border-right:1.7px solid var(--pw-text);
  transform:rotate(45deg);
}

/* Lightbox */
.pw-lightbox{
  position:fixed;
  inset:0;
  z-index:9999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:rgba(7,10,14,.78);
}

.pw-lightbox.pw-is-open{
  display:flex;
}

.pw-lb-panel{
  width:min(75vw,940px);
  max-width:940px;
  display:grid;
  gap:14px;
}

.pw-lb-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  color:#fff;
}

.pw-lb-counter{
  font-size:.88rem;
  font-weight:780;
  letter-spacing:.04em;
  opacity:.86;
}

.pw-lb-close{
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0;
  border:1px solid rgba(255,255,255,.34);
  border-radius:999px;
  background:rgba(255,255,255,.10);
  color:#fff;
  cursor:pointer;
}

.pw-lb-close span{
  position:relative;
  width:16px;
  height:16px;
  display:block;
}

.pw-lb-close span::before,
.pw-lb-close span::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:18px;
  height:1.7px;
  border-radius:99px;
  background:#fff;
  transform-origin:center;
}

.pw-lb-close span::before{
  transform:translate(-50%,-50%) rotate(45deg);
}

.pw-lb-close span::after{
  transform:translate(-50%,-50%) rotate(-45deg);
}

.pw-lb-photo{
  position:relative;
  width:100%;
  max-height:70vh;
  aspect-ratio:3/2;
  display:block;
  border:1px solid rgba(255,255,255,.22);
  background:
    linear-gradient(135deg,rgba(255,255,255,.13),transparent 34%),
    linear-gradient(180deg,#eef4f5,#dce7e9);
  overflow:hidden;
  cursor:pointer;
}

.pw-lb-photo::before{
  content:"";
  position:absolute;
  inset:24px;
  border:1px solid rgba(13,18,24,.12);
}

.pw-lb-mark{
  position:absolute;
  left:28px;
  bottom:28px;
  color:var(--pw-text);
  font-size:clamp(2rem,5vw,4.8rem);
  font-weight:900;
  letter-spacing:-.08em;
}

.pw-lb-controls{
  display:flex;
  justify-content:center;
  gap:72px;
}

.pw-lb-nav{
  width:48px;
  height:48px;
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.28);
}

.pw-lb-nav::before{
  border-color:#fff;
}

@media(max-width:980px){
  .pw-layout{
    grid-template-columns:1fr;
    gap:22px;
  }

  .pw-copy{
    max-width:720px;
  }

  .pw-photo{
    flex-basis:calc((100% - 14px) / 2);
  }

  .pw-lb-panel{
    width:min(82vw,820px);
  }
}

@media(max-width:700px){
  .pw-section{
    padding:34px 10px 58px;
  }

  .pw-layout{
    padding:20px 14px;
  }

  .pw-photo{
    flex-basis:100%;
  }

  .pw-controls{
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
    justify-items:center;
  }

  .pw-nav-row{
    justify-content:center;
    gap:16px;
  }

  .pw-progress{
    width:100%;
  }

  .pw-more-link{
    width:100%;
    min-height:44px;
    margin-top:2px;
  }

  .pw-lightbox{
    padding:14px;
  }

  .pw-lb-panel{
    width:86vw;
    gap:12px;
  }

  .pw-lb-photo{
    aspect-ratio:4/3;
    max-height:58vh;
  }

  .pw-lb-controls{
    gap:120px;
  }

  .pw-lb-nav{
    width:38px;
    height:38px;
  }

  .pw-lb-nav::before{
    width:8px;
    height:8px;
  }
}


/* ===== Финальный CTA: isolated block ===== */
.fc-section{
  --fc-bg:#f4f6f7;
  --fc-paper:#fff;
  --fc-text:#0d1218;
  --fc-muted:#66737f;
  --fc-line:rgba(13,18,24,.12);
  --fc-line-strong:rgba(13,18,24,.2);
  --fc-accent:#0b646b;
  --fc-accent-dark:#083f46;
  --fc-soft:rgba(11,100,107,.075);
  --fc-shadow:0 18px 46px rgba(13,18,24,.065);
  padding:clamp(46px,6vw,82px) 18px;
  background:#f4f6f7;
  color:var(--fc-text);
  border-top:1px solid var(--fc-line);
}

.fc-inner{
  width:min(100%,1180px);
  margin:0 auto;
  border:1px solid var(--fc-line);
  background:var(--fc-paper);
  box-shadow:var(--fc-shadow);
  overflow:hidden;
}

.fc-split{
  display:grid;
  grid-template-columns:minmax(0,1fr) 390px;
  min-height:350px;
}

.fc-left{
  padding:clamp(28px,4.8vw,58px);
  background:
    linear-gradient(90deg,rgba(11,100,107,.055),transparent 58%),
    #fff;
}

.fc-label{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 11px;
  border:1px solid rgba(11,100,107,.18);
  border-radius:999px;
  background:rgba(255,255,255,.72);
  color:var(--fc-accent);
  font-size:.7rem;
  font-weight:850;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.fc-title{
  max-width:760px;
  margin:14px 0 0;
  color:var(--fc-text);
  font-size:clamp(2.65rem,5.4vw,5.35rem);
  line-height:.92;
  letter-spacing:-.08em;
}

.fc-text{
  max-width:610px;
  margin:18px 0 0;
  color:var(--fc-muted);
  font-size:1.03rem;
  line-height:1.58;
}

.fc-right{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:14px;
  padding:clamp(28px,4.4vw,48px);
  border-left:1px solid var(--fc-line);
  background:#fff;
}

.fc-form{
  display:grid;
  gap:10px;
}

.fc-phone-field{
  min-height:52px;
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  align-items:center;
  gap:10px;
  padding:0 14px;
  border:1px solid var(--fc-line);
  background:#f9fbfb;
}

.fc-phone-field span{
  color:var(--fc-text);
  font-weight:850;
  letter-spacing:-.015em;
}

.fc-phone-field input{
  width:100%;
  min-width:0;
  border:0;
  outline:none;
  background:transparent;
  color:var(--fc-text);
  font:inherit;
}

.fc-phone-field input::placeholder{
  color:rgba(102,115,127,.82);
}

.fc-submit{
  min-height:52px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:0 20px;
  border:1px solid var(--fc-accent);
  border-radius:999px;
  background:var(--fc-accent);
  color:#fff;
  font:inherit;
  font-size:.95rem;
  font-weight:820;
  letter-spacing:-.01em;
  cursor:pointer;
  transition:transform .18s ease,background .18s ease,border-color .18s ease;
}

.fc-submit:hover{
  transform:translateY(-1px);
  border-color:var(--fc-accent-dark);
  background:var(--fc-accent-dark);
}

.fc-submit::after{
  content:"";
  width:9px;
  height:9px;
  border-top:1.7px solid currentColor;
  border-right:1.7px solid currentColor;
  transform:rotate(45deg);
}

.fc-notes{
  display:grid;
  gap:8px;
  margin-top:8px;
}

.fc-note{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:var(--fc-muted);
  font-size:.9rem;
  line-height:1.38;
}

.fc-note::before{
  content:"";
  width:7px;
  height:7px;
  flex:0 0 7px;
  margin-top:.45em;
  border-radius:99px;
  background:var(--fc-accent);
}

.fc-status{
  display:none;
  margin:2px 0 0;
  padding:10px 12px;
  border:1px solid rgba(11,100,107,.18);
  background:var(--fc-soft);
  color:var(--fc-accent-dark);
  font-size:.86rem;
  line-height:1.35;
}

.fc-form.fc-is-sent .fc-status{
  display:block;
}

@media(max-width:980px){
  .fc-split{
    grid-template-columns:1fr;
    min-height:0;
  }

  .fc-right{
    border-left:0;
    border-top:1px solid var(--fc-line);
  }
}

@media(max-width:700px){
  .fc-section{
    padding:34px 10px 58px;
  }

  .fc-left,
  .fc-right{
    padding:22px 14px;
  }

  .fc-title{
    font-size:clamp(2.25rem,12vw,3.35rem);
    letter-spacing:-.075em;
  }

  .fc-text{
    font-size:.97rem;
  }

  .fc-submit{
    width:100%;
    min-height:52px;
  }

  .fc-phone-field{
    min-height:52px;
  }
}


/* ===== Тёмный подвал: выбранный вариант 2 ===== */
.org-footer{
  --org-footer-dark:#071619;
  --org-footer-dark-2:#0d2227;
  --org-footer-text:#f4f8f8;
  --org-footer-muted:rgba(244,248,248,.66);
  --org-footer-line:rgba(244,248,248,.14);
  --org-footer-line-strong:rgba(244,248,248,.24);
  --org-footer-accent:#6fd0cc;
  --org-footer-max:1180px;
  position:relative;
  padding:clamp(34px,5vw,58px) 18px clamp(54px,7vw,86px);
  background:
    radial-gradient(circle at 14% 18%,rgba(111,208,204,.11),transparent 34%),
    linear-gradient(135deg,var(--org-footer-dark),var(--org-footer-dark-2));
  color:var(--org-footer-text);
  overflow:hidden;
}

.org-footer *{
  box-sizing:border-box;
}

.org-footer a{
  color:inherit;
  text-decoration:none;
}

.org-footer__inner{
  width:min(100%,var(--org-footer-max));
  margin:0 auto;
}

.org-footer__grid{
  display:grid;
  grid-template-columns:1.1fr .82fr .7fr .9fr;
  gap:28px;
  align-items:start;
}

.org-footer__kicker{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 11px;
  border:1px solid rgba(111,208,204,.24);
  border-radius:999px;
  background:rgba(255,255,255,.055);
  color:var(--org-footer-accent);
  font-size:.7rem;
  font-weight:850;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.org-footer__brand h2{
  margin:14px 0 0;
  color:#fff;
  font-size:clamp(1.85rem,3.3vw,3rem);
  line-height:.96;
  letter-spacing:-.07em;
}

.org-footer__brand p{
  max-width:540px;
  margin:16px 0 0;
  color:var(--org-footer-muted);
  font-size:.98rem;
  line-height:1.62;
}

.org-footer__column h3,
.org-footer__contact-card h3{
  margin:0 0 14px;
  color:#fff;
  font-size:.78rem;
  font-weight:860;
  letter-spacing:.09em;
  text-transform:uppercase;
}

.org-footer__list,
.org-footer__links{
  display:grid;
  gap:9px;
  margin:0;
  padding:0;
  list-style:none;
}

.org-footer__list li{
  color:var(--org-footer-muted);
  font-size:.94rem;
  line-height:1.45;
}

.org-footer__list b{
  color:#fff;
  font-weight:760;
}

.org-footer__links a,
.org-footer__contact-link{
  display:inline-flex;
  width:max-content;
  max-width:100%;
  color:var(--org-footer-muted);
  font-size:.94rem;
  line-height:1.35;
  text-decoration:none;
  transition:color .18s ease,transform .18s ease;
}

.org-footer__links a:hover,
.org-footer__contact-link:hover{
  color:#fff;
  transform:translateX(2px);
}

.org-footer__phone{
  display:inline-flex;
  width:max-content;
  max-width:100%;
  margin:2px 0 0;
  color:#fff;
  font-size:clamp(1.28rem,2vw,1.8rem);
  font-weight:900;
  letter-spacing:-.05em;
  text-decoration:none;
  transition:color .18s ease;
}

.org-footer__phone:hover{
  color:var(--org-footer-accent);
}

.org-footer__contact-card{
  position:relative;
  border:1px solid var(--org-footer-line-strong);
  background:
    linear-gradient(180deg,rgba(111,208,204,.105),rgba(255,255,255,.04));
}

.org-footer__contact-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:3px;
  background:linear-gradient(180deg,var(--org-footer-accent),rgba(111,208,204,.15));
}

.org-footer__contact-card-inner{
  padding:20px 20px 20px 24px;
}

.org-footer__bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  margin-top:34px;
  padding-top:18px;
  border-top:1px solid var(--org-footer-line);
  color:rgba(255,255,255,.56);
  font-size:.84rem;
  line-height:1.4;
}

.org-footer__bottom-links{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.org-footer__bottom-links a{
  color:rgba(255,255,255,.56);
  text-decoration:none;
  transition:color .18s ease;
}

.org-footer__bottom-links a:hover{
  color:#fff;
}

@media(max-width:1020px){
  .org-footer__grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:700px){
  .org-footer{
    padding:28px 14px calc(92px + env(safe-area-inset-bottom, 0px));
  }

  .org-footer__brand h2{
    font-size:clamp(1.9rem,9vw,3rem);
    letter-spacing:-.072em;
  }

  .org-footer__contact-card-inner{
    padding:16px 16px 16px 20px;
  }

  .org-footer__bottom{
    align-items:flex-start;
    flex-direction:column;
  }

  .org-footer__bottom-links{
    display:grid;
    gap:10px;
  }

  .org-footer__links a,
  .org-footer__contact-link{
    min-height:34px;
    align-items:center;
  }

  .org-footer__phone{
    font-size:1.38rem;
  }
}





/* ===== Designer correction: FAQ readability + footer hierarchy ===== */
.well-faq{
  padding:clamp(46px,6vw,82px) 24px !important;
  background:#fbfdfe !important;
}

.well-faq__container{
  max-width:1120px !important;
}

.well-faq__header{
  max-width:1120px !important;
  margin:0 auto 26px !important;
  text-align:left !important;
}

.well-faq__title{
  max-width:820px !important;
  font-size:clamp(2.15rem,4.4vw,4.05rem) !important;
  line-height:.96 !important;
  letter-spacing:-.07em !important;
}

.well-faq__title-line{
  display:block !important;
  color:var(--header-text) !important;
  font-size:.88em !important;
}

.well-faq__list{
  display:grid !important;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  gap:10px 12px !important;
  align-items:start !important;
  max-width:1120px !important;
  margin:0 auto !important;
}

.well-faq__item{
  align-self:start !important;
  border-radius:16px !important;
  border-color:rgba(7,91,99,.105) !important;
  box-shadow:0 10px 28px rgba(15,23,42,.035) !important;
  background:rgba(255,255,255,.94) !important;
}

.well-faq__item.is-open{
  border-color:rgba(7,91,99,.22) !important;
  box-shadow:0 14px 34px rgba(15,23,42,.055) !important;
}

.well-faq__question{
  min-height:64px !important;
  padding:17px 18px !important;
  gap:14px !important;
  font-size:clamp(.98rem,1.35vw,1.08rem) !important;
  line-height:1.28 !important;
}

.well-faq__icon{
  flex:0 0 26px !important;
  width:26px !important;
  height:26px !important;
  margin-top:0 !important;
}

.well-faq__icon::before,
.well-faq__icon::after{
  width:11px !important;
  height:1.6px !important;
}

.well-faq__answer{
  border-top-color:rgba(7,91,99,.075) !important;
}

.well-faq__answer-inner{
  padding:0 18px 18px !important;
}

.well-faq__answer p{
  margin-top:14px !important;
  font-size:.96rem !important;
  line-height:1.58 !important;
}

.well-faq__more-button{
  min-height:30px !important;
  margin-top:11px !important;
  font-size:.88rem !important;
}

.well-faq__more-text{
  margin-top:10px !important;
  padding:13px 15px 15px !important;
  border-radius:0 12px 12px 0 !important;
  background:rgba(7,91,99,.028) !important;
}

.well-faq__more-text p{
  font-size:.94rem !important;
  line-height:1.58 !important;
}

.org-footer__brand h2{
  display:grid !important;
  gap:8px !important;
  margin:0 !important;
  max-width:360px !important;
}

.org-footer__logo-text{
  display:block !important;
  width:max-content !important;
  max-width:100% !important;
  color:#fff !important;
  font-size:clamp(2.1rem,3.4vw,3.35rem) !important;
  line-height:.9 !important;
  font-weight:930 !important;
  letter-spacing:-.078em !important;
}

.org-footer__brand-desc{
  display:block !important;
  max-width:330px !important;
  margin-top:2px !important;
  color:rgba(244,248,248,.72) !important;
  font-size:.96rem !important;
  line-height:1.34 !important;
  font-weight:640 !important;
  letter-spacing:-.012em !important;
}

.org-footer__phone,
.org-footer__phone:visited{
  color:#fff !important;
}

.org-footer__phone:hover,
.org-footer__phone:focus-visible{
  color:var(--org-footer-accent) !important;
}

.org-footer__grid{
  gap:clamp(24px,3vw,34px) !important;
}

.org-footer__column .org-footer__list,
.org-footer__links{
  gap:8px !important;
}

@media (max-width:900px){
  .well-faq{
    padding:42px 16px 58px !important;
  }

  .well-faq__container{
    max-width:760px !important;
  }

  .well-faq__header{
    margin-bottom:20px !important;
  }

  .well-faq__list{
    grid-template-columns:1fr !important;
    gap:9px !important;
    max-width:760px !important;
  }

  .well-faq__question{
    min-height:auto !important;
  }
}

@media (max-width:620px){
  .well-faq{
    padding:38px 14px 50px !important;
  }

  .well-faq__title{
    font-size:clamp(2rem,10vw,2.72rem) !important;
    line-height:.98 !important;
  }

  .well-faq__item{
    border-radius:14px !important;
  }

  .well-faq__question{
    padding:15px 14px !important;
    gap:12px !important;
    font-size:.98rem !important;
  }

  .well-faq__answer-inner{
    padding:0 14px 16px !important;
  }

  .well-faq__answer p{
    font-size:.94rem !important;
    line-height:1.55 !important;
  }

  .well-faq__more-text{
    padding:12px 13px 14px !important;
    border-radius:0 10px 10px 0 !important;
  }

  .org-footer__brand h2{
    gap:7px !important;
  }

  .org-footer__logo-text{
    font-size:clamp(2rem,10vw,2.9rem) !important;
  }

  .org-footer__brand-desc{
    max-width:280px !important;
    font-size:.92rem !important;
  }

  .org-footer__phone{
    color:#fff !important;
  }
}




/* ===== Обустройство: что входит — split layout scope block ===== */
.ob-scope-section{
  background:#fbfdfe;
  border-top:1px solid rgba(7,91,99,.08);
  border-bottom:1px solid rgba(7,91,99,.08);
}
.ob-scope{
  display:grid;
  gap:clamp(24px,4vw,42px);
}
.ob-scope--split{
  grid-template-columns:minmax(270px,.72fr) minmax(0,1.28fr);
  align-items:stretch;
  gap:clamp(28px,5vw,64px);
  background:#fff;
  border:1px solid rgba(7,91,99,.12);
  border-radius:28px;
  padding:clamp(24px,3.4vw,38px);
  box-shadow:0 18px 46px rgba(15,23,42,.045);
}
.ob-scope__aside{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  gap:24px;
  min-width:0;
  padding:4px 0;
}
.ob-scope__intro{
  max-width:430px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.ob-scope__intro .ob-title{
  position:relative;
  max-width:410px;
  margin:0;
  padding-bottom:22px;
  font-size:clamp(2.05rem,4vw,3.55rem);
  line-height:.98;
  letter-spacing:-.075em;
}
.ob-scope__intro .ob-title::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:72px;
  height:2px;
  border-radius:999px;
  background:rgba(7,91,99,.42);
}
.ob-scope__intro .ob-lead{
  max-width:390px;
  font-size:clamp(1rem,1.35vw,1.08rem);
  line-height:1.58;
}
.ob-scope__panel{
  display:grid;
  gap:0;
  min-width:0;
}
.ob-scope__item{
  display:grid;
  grid-template-columns:42px minmax(0,1fr);
  gap:16px;
  align-items:start;
  padding:16px 0;
  border-bottom:1px solid rgba(7,91,99,.1);
}
.ob-scope__item:first-child{
  padding-top:0;
}
.ob-scope__item:last-child{
  padding-bottom:0;
  border-bottom:0;
}
.ob-scope__num{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:32px;
  border-radius:999px;
  background:rgba(7,91,99,.08);
  color:var(--ob-green,#075b63);
  font-size:.82rem;
  font-weight:850;
  letter-spacing:0;
}
.ob-scope__body{
  min-width:0;
}
.ob-scope__body h3{
  margin:0;
  color:var(--ob-text,#061014);
  font-size:clamp(1.02rem,1.28vw,1.16rem);
  line-height:1.18;
  letter-spacing:-.035em;
}
.ob-scope__body p{
  margin:7px 0 0;
  max-width:760px;
  color:var(--ob-muted,#51616b);
  font-size:.95rem;
  line-height:1.5;
  letter-spacing:-.012em;
}
@media (max-width:900px){
  .ob-scope--split{
    grid-template-columns:1fr;
    gap:24px;
    border-radius:24px;
    padding:24px 20px;
  }
  .ob-scope__intro,
  .ob-scope__intro .ob-title,
  .ob-scope__intro .ob-lead{
    max-width:none;
  }
  .ob-scope__aside{
    gap:20px;
  }
}
@media (max-width:560px){
  .ob-scope--split{
    padding:20px 16px;
    border-radius:22px;
  }
.ob-scope__item{
    grid-template-columns:1fr;
    gap:9px;
    padding:15px 0;
  }
  .ob-scope__num{
    width:34px;
    height:30px;
  }
}

@media (max-width:560px){
  .ob-scope__intro .ob-title{
    font-size:clamp(2rem,10vw,2.72rem);
    padding-bottom:18px;
  }
}

.fc-section--obustroystvo .fc-title{
  max-width:720px;
}
.fc-section--obustroystvo .fc-submit{
  white-space:normal;
}
@media (max-width:768px){
  .ob-scope__panel{
    border-radius:22px;
  }
  .ob-scope__item{
    grid-template-columns:1fr;
    gap:10px;
    padding:20px 18px;
  }
  .ob-scope__num{
    width:34px;
    height:30px;
  }
}

/* ===== Обустройство.html style block 3 ===== */
/* =========================================================
   Obustroystvo page styles — scoped, does not change header/footer
   ========================================================= */
:root {
  --ob-bg: #fbfdfe;
  --ob-bg-warm: #f6f1e9;
  --ob-bg-stone: #f2f5f3;
  --ob-text: #07111f;
  --ob-muted: #536273;
  --ob-soft: #eef6f2;
  --ob-card: #ffffff;
  --ob-green: #075b63;
  --ob-green-2: #0f766e;
  --ob-line: rgba(7, 91, 99, .13);
  --ob-line-strong: rgba(7, 91, 99, .22);
  --ob-shadow: 0 24px 70px rgba(15, 23, 42, .075);
  --ob-shadow-soft: 0 14px 42px rgba(15, 23, 42, .055);
  --ob-radius-xl: 34px;
  --ob-radius-lg: 26px;
  --ob-radius-md: 18px;
  --ob-container: 1120px;
  --ob-serif: Georgia, "Times New Roman", serif;
}

.ob-page {
  background:
    radial-gradient(circle at 12% 4%, rgba(7, 91, 99, .07), transparent 28%),
    linear-gradient(180deg, #fbfdfe 0%, #f8fbfa 46%, #fbfdfe 100%);
  color: var(--ob-text);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  overflow: hidden;
}

.ob-section { padding: clamp(72px, 8vw, 118px) 24px; }
.ob-section--tight { padding-top: clamp(48px, 6vw, 84px); padding-bottom: clamp(48px, 6vw, 84px); }
.ob-section--soft { background: linear-gradient(180deg, rgba(242,245,243,.62), rgba(251,253,254,.9)); }
.ob-inner { width: min(100%, var(--ob-container)); margin: 0 auto; }
.ob-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--ob-green);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.ob-eyebrow::before { content:""; width: 34px; height: 1px; background: currentColor; opacity: .45; }
.ob-title {
  margin: 0;
  max-width: 780px;
  color: var(--ob-text);
  font-family: var(--ob-serif);
  font-size: clamp(2.45rem, 5.4vw, 5.2rem);
  line-height: .94;
  letter-spacing: -.055em;
  font-weight: 560;
}
.ob-lead {
  margin: 22px 0 0;
  max-width: 690px;
  color: var(--ob-muted);
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
  line-height: 1.72;
}
.ob-btn,
.ob-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 780;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.ob-btn { background: var(--ob-green); color: #fff; box-shadow: 0 18px 40px rgba(7,91,99,.22); }
.ob-btn:hover,.ob-btn:focus-visible { transform: translateY(-1px); background: #064d54; outline: none; }
.ob-btn-secondary { border: 1px solid var(--ob-line-strong); color: var(--ob-text); background: rgba(255,255,255,.76); }
.ob-btn-secondary:hover,.ob-btn-secondary:focus-visible { color: var(--ob-green); border-color: rgba(7,91,99,.36); outline: none; }

.ob-hero { position: relative; padding-top: clamp(88px, 9vw, 132px); }
.ob-hero__grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(360px, .82fr); gap: clamp(34px, 6vw, 72px); align-items: center; }
.ob-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.ob-hero__facts { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; margin-top: 34px; max-width: 780px; }
.ob-fact { padding: 18px 18px 17px; border: 1px solid var(--ob-line); border-radius: 22px; background: rgba(255,255,255,.76); box-shadow: 0 12px 34px rgba(15,23,42,.045); }
.ob-fact strong { display:block; color: var(--ob-text); font-size: .98rem; line-height:1.2; letter-spacing:-.02em; }
.ob-fact span { display:block; margin-top:7px; color: var(--ob-muted); font-size:.9rem; line-height:1.42; }
.ob-visual { position: relative; min-height: 520px; border-radius: 42px; overflow: hidden; background: linear-gradient(145deg, #eef7f4, #fff 42%, #efe8dc); box-shadow: var(--ob-shadow); border: 1px solid rgba(7,91,99,.12); }
.ob-visual::before { content:""; position:absolute; inset: 0; background: radial-gradient(circle at 35% 26%, rgba(255,255,255,.95), transparent 28%), radial-gradient(circle at 78% 12%, rgba(7,91,99,.16), transparent 26%), linear-gradient(160deg, transparent 0 46%, rgba(7,91,99,.10) 46% 47%, transparent 47%); }
.ob-visual__photo { position:absolute; inset: 28px; border-radius: 32px; overflow:hidden; background: linear-gradient(165deg, #e9f2ef 0%, #ffffff 35%, #d8e7e2 100%); border: 1px solid rgba(7,91,99,.13); }
.ob-visual__photo::before { content:""; position:absolute; left:-8%; right:-8%; bottom:0; height:44%; background: linear-gradient(180deg, transparent, rgba(7,91,99,.10)), radial-gradient(ellipse at 50% 100%, rgba(7,91,99,.25), transparent 70%); }
.ob-visual__house { position:absolute; right:42px; bottom:118px; width:178px; height:118px; border-radius: 24px 24px 10px 10px; background:#fff; border:1px solid rgba(7,91,99,.16); box-shadow: 0 16px 40px rgba(15,23,42,.10); }
.ob-visual__house::before { content:""; position:absolute; left:20px; right:20px; top:-42px; height:84px; background:#0a2b3a; clip-path: polygon(50% 0,100% 60%,84% 60%,84% 100%,16% 100%,16% 60%,0 60%); opacity:.95; }
.ob-visual__well { position:absolute; left:64px; bottom:88px; width:112px; height:112px; border-radius:50%; background: radial-gradient(circle, #fff 0 42%, rgba(7,91,99,.10) 43% 100%); border:1px solid rgba(7,91,99,.2); box-shadow: 0 18px 42px rgba(15,23,42,.12); }
.ob-visual__line { position:absolute; left:176px; right:190px; bottom:143px; height:2px; background: linear-gradient(90deg, rgba(7,91,99,.1), rgba(7,91,99,.55), rgba(7,91,99,.1)); }
.ob-visual__badge { position:absolute; left:38px; top:38px; max-width: 210px; padding: 16px 18px; border-radius: 20px; background: rgba(255,255,255,.92); border:1px solid rgba(7,91,99,.12); box-shadow: 0 14px 34px rgba(15,23,42,.09); }
.ob-visual__badge b { display:block; font-size:.95rem; letter-spacing:-.02em; }
.ob-visual__badge span { display:block; margin-top:5px; color:var(--ob-muted); font-size:.82rem; line-height:1.4; }

.ob-header-row { display:flex; align-items:end; justify-content:space-between; gap:32px; margin-bottom: 34px; }
.ob-header-row .ob-title { font-size: clamp(2.1rem, 4.5vw, 4rem); max-width:720px; }
.ob-header-row .ob-lead { max-width:430px; margin-top:0; }

.ob-meaning { display:grid; grid-template-columns: .88fr 1.12fr; gap:34px; align-items:stretch; }
.ob-meaning__card { padding: 34px; border-radius: var(--ob-radius-xl); background: var(--ob-card); border:1px solid var(--ob-line); box-shadow: var(--ob-shadow-soft); }
.ob-meaning__card h2 { margin:0; font-family:var(--ob-serif); font-size: clamp(2rem, 4vw, 3.4rem); line-height:1; letter-spacing:-.045em; font-weight:560; }
.ob-meaning__card p { margin:18px 0 0; color:var(--ob-muted); font-size:1.08rem; line-height:1.68; }
.ob-mini-grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:14px; }
.ob-mini { padding:24px; border-radius:24px; background: rgba(255,255,255,.82); border:1px solid var(--ob-line); }
.ob-mini i { display:block; width:42px; height:42px; border-radius:50%; background: linear-gradient(145deg, rgba(7,91,99,.12), rgba(15,118,110,.05)); margin-bottom:18px; position:relative; }
.ob-mini i::after { content:""; position:absolute; inset:12px; border:2px solid var(--ob-green); border-radius:50%; opacity:.82; }
.ob-mini b { display:block; font-size:1.04rem; letter-spacing:-.025em; }
.ob-mini span { display:block; margin-top:8px; color:var(--ob-muted); font-size:.94rem; line-height:1.48; }

.ob-options { display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:16px; }
.ob-option { position:relative; display:flex; flex-direction:column; min-height: 330px; padding: 24px; border-radius: 30px; background: #fff; border:1px solid var(--ob-line); box-shadow: var(--ob-shadow-soft); overflow:hidden; }
.ob-option::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 85% 8%, rgba(7,91,99,.09), transparent 30%); pointer-events:none; }
.ob-option__media { height: 104px; margin:-2px -2px 20px; border-radius:22px; background: linear-gradient(145deg, #f6f1e9, #eaf4f0); border:1px solid rgba(7,91,99,.10); position:relative; overflow:hidden; }
.ob-option__media::after { content:""; position:absolute; left:22px; right:22px; bottom:26px; height:2px; background:rgba(7,91,99,.42); box-shadow: 0 16px 0 rgba(7,91,99,.12), 52px -20px 0 rgba(7,91,99,.18); }
.ob-option h3 { position:relative; margin:0; font-size:1.28rem; line-height:1.12; letter-spacing:-.035em; }
.ob-option__use { position:relative; margin-top:8px; color:var(--ob-green); font-size:.88rem; font-weight:800; text-transform:uppercase; letter-spacing:.08em; }
.ob-option p { position:relative; margin:16px 0 0; color:var(--ob-muted); font-size:.95rem; line-height:1.55; }
.ob-option__price { position:relative; margin-top:auto; padding-top:22px; display:flex; align-items:baseline; gap:10px; }
.ob-option__price del { color:rgba(83,98,115,.65); font-size:.92rem; }
.ob-option__price strong { color:var(--ob-text); font-size:1.78rem; letter-spacing:-.055em; }
.ob-option--accent { background: linear-gradient(180deg, #fff, #f4faf7); border-color:rgba(7,91,99,.24); }

.ob-compare { overflow:hidden; border-radius: var(--ob-radius-xl); background:#fff; border:1px solid var(--ob-line); box-shadow: var(--ob-shadow-soft); }
.ob-compare table { width:100%; border-collapse:collapse; }
.ob-compare th,.ob-compare td { padding: 19px 22px; text-align:left; border-bottom:1px solid rgba(7,91,99,.09); vertical-align:top; }
.ob-compare th { color:var(--ob-green); font-size:.78rem; letter-spacing:.11em; text-transform:uppercase; background:rgba(7,91,99,.035); }
.ob-compare td { color:var(--ob-muted); line-height:1.45; }
.ob-compare td:first-child { color:var(--ob-text); font-weight:800; }
.ob-compare tr:last-child td { border-bottom:0; }
.ob-compare__note { margin:20px 0 0; color:var(--ob-muted); line-height:1.66; }

.ob-included { display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:14px; }
.ob-included__item { padding:24px; min-height:150px; border-radius:24px; background:#fff; border:1px solid var(--ob-line); box-shadow: 0 12px 34px rgba(15,23,42,.045); }
.ob-included__num { color:var(--ob-green); font-weight:850; font-size:.86rem; letter-spacing:.08em; }
.ob-included__item b { display:block; margin-top:16px; font-size:1.03rem; line-height:1.25; letter-spacing:-.025em; }
.ob-included__item span { display:block; margin-top:9px; color:var(--ob-muted); font-size:.93rem; line-height:1.48; }

.ob-calc { display:grid; grid-template-columns: .86fr 1.14fr; gap:24px; align-items:stretch; }
.ob-calc__intro { padding:34px; border-radius:var(--ob-radius-xl); background: linear-gradient(145deg, #0a2b3a, #075b63); color:#fff; box-shadow: var(--ob-shadow); }
.ob-calc__intro h2 { margin:0; font-family:var(--ob-serif); font-size:clamp(2rem, 4vw, 3.45rem); line-height:1; letter-spacing:-.045em; font-weight:560; }
.ob-calc__intro p { margin:18px 0 0; color:rgba(255,255,255,.78); line-height:1.65; }
.ob-calc__panel { padding:26px; border-radius:var(--ob-radius-xl); background:#fff; border:1px solid var(--ob-line); box-shadow:var(--ob-shadow-soft); }
.ob-calc__grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:12px; }
.ob-field { padding:18px; border-radius:20px; background:#f8fbfa; border:1px solid rgba(7,91,99,.11); }
.ob-field label { display:block; color:var(--ob-muted); font-size:.83rem; font-weight:750; margin-bottom:8px; }
.ob-field strong { display:block; font-size:1.1rem; letter-spacing:-.025em; }
.ob-phone { display:flex; gap:10px; margin-top:16px; }
.ob-phone span,.ob-phone input { min-height:52px; border-radius:999px; border:1px solid rgba(7,91,99,.16); background:#fff; }
.ob-phone span { display:inline-flex; align-items:center; justify-content:center; width:82px; font-weight:800; }
.ob-phone input { flex:1; padding:0 18px; font:inherit; min-width:0; }
.ob-phone .ob-btn { border:0; cursor:pointer; font:inherit; white-space:nowrap; }
.ob-calc__hint { margin:14px 0 0; color:var(--ob-muted); font-size:.94rem; line-height:1.55; }

.ob-steps { display:grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap:12px; counter-reset: steps; }
.ob-step { counter-increment: steps; position:relative; padding: 24px 20px; border-radius:24px; background:#fff; border:1px solid var(--ob-line); box-shadow:0 12px 34px rgba(15,23,42,.045); }
.ob-step::before { content: counter(steps, decimal-leading-zero); display:block; margin-bottom:30px; color:var(--ob-green); font-family:var(--ob-serif); font-size:2.15rem; line-height:1; letter-spacing:-.05em; }
.ob-step b { display:block; font-size:1rem; line-height:1.22; letter-spacing:-.025em; }
.ob-step span { display:block; margin-top:10px; color:var(--ob-muted); font-size:.9rem; line-height:1.48; }

.ob-gallery { display:grid; grid-template-columns: 1.2fr .8fr .8fr; grid-auto-rows: 210px; gap:14px; }
.ob-shot { border-radius:28px; overflow:hidden; border:1px solid var(--ob-line); background:linear-gradient(145deg,#f6f1e9,#eaf4f0); box-shadow: var(--ob-shadow-soft); position:relative; }
.ob-shot::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 28% 24%, rgba(255,255,255,.9), transparent 28%), linear-gradient(160deg, transparent 0 62%, rgba(7,91,99,.13) 62%); }
.ob-shot::after { content: attr(data-label); position:absolute; left:18px; bottom:16px; padding:9px 12px; border-radius:999px; background:rgba(255,255,255,.88); color:var(--ob-text); font-size:.82rem; font-weight:780; box-shadow:0 8px 20px rgba(15,23,42,.08); }
.ob-shot:first-child { grid-row: span 2; }

.ob-scenarios { display:grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap:16px; }
.ob-scenario { padding:30px; border-radius:30px; background:#fff; border:1px solid var(--ob-line); box-shadow:var(--ob-shadow-soft); }
.ob-scenario h3 { margin:0; font-family:var(--ob-serif); font-size:2rem; line-height:1.02; letter-spacing:-.045em; font-weight:560; }
.ob-scenario p { margin:16px 0 0; color:var(--ob-muted); line-height:1.6; }
.ob-scenario b { display:inline-flex; margin-top:18px; color:var(--ob-green); }

.ob-faq { display:grid; grid-template-columns: .75fr 1.25fr; gap:34px; align-items:start; }
.ob-faq__list { display:grid; gap:10px; }
.ob-faq__item { border-radius:22px; background:#fff; border:1px solid var(--ob-line); box-shadow:0 10px 28px rgba(15,23,42,.04); overflow:hidden; }
.ob-faq__q { width:100%; padding:20px 22px; border:0; background:transparent; color:var(--ob-text); font:inherit; font-weight:790; text-align:left; display:flex; justify-content:space-between; gap:16px; cursor:pointer; }
.ob-faq__q::after { content:"+"; color:var(--ob-green); font-size:1.28rem; line-height:1; }
.ob-faq__a { display:none; padding:0 22px 20px; color:var(--ob-muted); line-height:1.62; }
.ob-faq__item.is-open .ob-faq__a { display:block; }
.ob-faq__item.is-open .ob-faq__q::after { content:"−"; }

.ob-final { padding: clamp(72px, 8vw, 110px) 24px; background: linear-gradient(145deg, #07111f, #075b63); color:#fff; }
.ob-final__box { width:min(100%, var(--ob-container)); margin:0 auto; display:grid; grid-template-columns: 1fr auto; gap:34px; align-items:center; }
.ob-final h2 { margin:0; max-width:720px; font-family:var(--ob-serif); font-size:clamp(2.2rem, 5vw, 4.6rem); line-height:.98; letter-spacing:-.055em; font-weight:560; }
.ob-final p { margin:18px 0 0; max-width:650px; color:rgba(255,255,255,.76); line-height:1.68; font-size:1.08rem; }
.ob-final__actions { display:flex; flex-direction:column; gap:12px; align-items:stretch; }
.ob-final .ob-btn { background:#fff; color:#07111f; box-shadow:0 18px 40px rgba(0,0,0,.18); }
.ob-final .ob-btn-secondary { color:#fff; background:transparent; border-color:rgba(255,255,255,.32); }

@media (max-width: 980px) {
  .ob-hero__grid,.ob-meaning,.ob-calc,.ob-faq,.ob-final__box { grid-template-columns:1fr; }
  .ob-visual { min-height:420px; }
  .ob-hero__facts,.ob-options,.ob-included,.ob-steps,.ob-scenarios { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .ob-gallery { grid-template-columns:1fr 1fr; }
}
@media (max-width: 768px) {
  .ob-section { padding:56px 16px; }
  .ob-hero { padding-top:76px; }
  .ob-title { font-size:clamp(2.35rem, 12vw, 3.45rem); }
  .ob-header-row { display:block; margin-bottom:24px; }
  .ob-header-row .ob-lead { margin-top:14px; }
  .ob-hero__facts,.ob-options,.ob-included,.ob-steps,.ob-scenarios,.ob-calc__grid { grid-template-columns:1fr; }
  .ob-visual { min-height:360px; border-radius:30px; }
  .ob-visual__photo { inset:18px; border-radius:24px; }
  .ob-visual__house { right:28px; bottom:98px; width:132px; height:90px; }
  .ob-visual__well { left:34px; bottom:72px; width:88px; height:88px; }
  .ob-visual__line { left:122px; right:150px; bottom:116px; }
  .ob-meaning__card,.ob-calc__intro,.ob-calc__panel { padding:24px; border-radius:26px; }
  .ob-mini-grid { grid-template-columns:1fr; }
  .ob-option { min-height:auto; }
  .ob-compare { overflow-x:auto; border-radius:24px; }
  .ob-compare table { min-width:720px; }
  .ob-phone { flex-direction:column; }
  .ob-phone span { width:100%; }
  .ob-gallery { grid-template-columns:1fr; grid-auto-rows:190px; }
  .ob-shot:first-child { grid-row:auto; }
  .ob-final__actions { align-items:stretch; }
}


/* ===== Obustroystvo final design/copy pass ===== */
.ob-page {
  background:
    radial-gradient(circle at 8% 2%, rgba(7, 91, 99, .075), transparent 25%),
    radial-gradient(circle at 92% 18%, rgba(224, 206, 174, .22), transparent 28%),
    linear-gradient(180deg, #fbfdfe 0%, #f8faf8 44%, #fbfdfe 100%);
}
.ob-section { padding: clamp(82px, 8.8vw, 132px) 24px; }
.ob-section--tight { padding-top: clamp(62px, 7vw, 96px); padding-bottom: clamp(62px, 7vw, 96px); }
.ob-title { max-width: 820px; letter-spacing: -.052em; }
.ob-lead { color: #536273; }
.ob-header-row { align-items: flex-start; margin-bottom: clamp(30px, 4vw, 48px); }
.ob-header-row .ob-title { max-width: 760px; }
.ob-header-row .ob-lead { max-width: 460px; padding-top: 8px; }
.ob-eyebrow { display: none !important; }
.ob-hero { padding-top: clamp(92px, 8vw, 124px); }
.ob-hero__grid { grid-template-columns: minmax(0, 1.08fr) minmax(380px, .78fr); }
.ob-hero__facts { margin-top: 36px; }
.ob-fact { border-radius: 24px; background: rgba(255,255,255,.82); }
.ob-fact strong { font-size: 1rem; }
.ob-visual { min-height: 540px; border-radius: 46px; }
.ob-meaning__card { padding: clamp(30px, 4vw, 46px); }
.ob-meaning__card h2 { max-width: 680px; }
.ob-mini { position: relative; padding: 27px 27px 26px; border-radius: 28px; box-shadow: 0 12px 34px rgba(15,23,42,.04); }
.ob-mini i { width: 46px; height: 46px; }
.ob-options { gap: 18px; }
.ob-option { min-height: 352px; padding: 26px; border-radius: 34px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.ob-option:hover { transform: translateY(-3px); box-shadow: 0 24px 62px rgba(15,23,42,.08); border-color: rgba(7,91,99,.25); }
.ob-option__media { height: 112px; border-radius: 24px; }
.ob-option__price { border-top: 1px solid rgba(7,91,99,.09); }
.ob-option__price strong { font-size: 1.92rem; }
.ob-compare { border-radius: 34px; }
.ob-compare th { padding-top: 22px; padding-bottom: 22px; }
.ob-compare td { padding-top: 22px; padding-bottom: 22px; }
.ob-compare__note { max-width: 820px; }
.ob-included { gap: 18px; }
.ob-included__item {
  position: relative;
  min-height: 172px;
  padding: 30px 26px 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, #fff, rgba(248,251,250,.9));
}
.ob-included__num { display: none !important; }
.ob-included__item::before {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, var(--ob-green) 0 4px, rgba(7,91,99,.08) 5px 100%);
  box-shadow: inset 0 0 0 1px rgba(7,91,99,.12);
}
.ob-included__item b { margin-top: 0; font-size: 1.08rem; }
.ob-calc { grid-template-columns: .82fr 1.18fr; gap: 28px; }
.ob-calc__intro { padding: clamp(30px, 4vw, 44px); border-radius: 36px; }
.ob-calc__panel { padding: clamp(22px, 3vw, 30px); border-radius: 36px; }
.ob-phone--main {
  width: min(100%, 560px);
  margin-top: 18px;
  padding: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, .72fr);
  gap: 10px;
  align-items: end;
  border: 1px solid rgba(7,91,99,.13);
  border-radius: 22px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 16px 40px rgba(13,18,24,.055);
}
.ob-phone__label {
  grid-column: 1 / -1;
  margin: 0 0 -2px;
  color: #6f7f8b;
  font-size: .88rem;
  font-weight: 760;
  line-height: 1.2;
}
.ob-phone-input {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(13,18,24,.16);
  border-radius: 15px;
  background: #fff;
  overflow: hidden;
}
.ob-phone-input span {
  min-width: 70px;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 17px;
  color: #111;
  font-size: 1rem;
  font-weight: 500;
  border: 0;
  background: transparent;
}
.ob-phone-input input {
  width: 100%;
  min-width: 0;
  height: 56px;
  padding: 0 14px 0 0;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 1rem;
  color: #111;
}
.ob-phone-input input::placeholder { color: #a3acb5; }
.ob-phone-button {
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 15px;
  background: var(--ob-green);
  color: #fff;
  font-size: 1.02rem;
  font-weight: 820;
  line-height: 1.16;
  box-shadow: 0 14px 30px rgba(11,100,107,.18);
  cursor: pointer;
}
.ob-phone-button:hover,.ob-phone-button:focus-visible { background: var(--ob-accent-dark); outline: none; }
.ob-steps { counter-reset: none; gap: 14px; }
.ob-step {
  counter-increment: none;
  padding: 28px 22px 26px;
  border-radius: 28px;
  background: linear-gradient(180deg, #fff, rgba(248,251,250,.94));
}
.ob-step::before {
  content: "";
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(7,91,99,.14), rgba(15,118,110,.05));
  box-shadow: inset 0 0 0 1px rgba(7,91,99,.15);
}
.ob-step::after {
  content: "";
  position: absolute;
  left: 36px;
  top: 50px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--ob-green);
  opacity: .88;
}
.ob-step b { font-size: 1.05rem; }
.ob-gallery { gap: 16px; }
.ob-shot { border-radius: 32px; }
.ob-scenario { padding: 34px; border-radius: 34px; }
.ob-scenario b { font-weight: 840; }
.ob-faq__item { border-radius: 24px; }
.ob-final { background: radial-gradient(circle at 18% 12%, rgba(255,255,255,.14), transparent 24%), linear-gradient(145deg, #07111f, #075b63); }
.ob-final__box { grid-template-columns: minmax(0,1fr) minmax(360px, 520px); }
.ob-final__form { margin-top: 0; width: 100%; }
.ob-final .ob-phone--main { background: rgba(255,255,255,.93); border-color: rgba(255,255,255,.22); box-shadow: 0 24px 60px rgba(0,0,0,.18); }
.ob-final .ob-phone .ob-btn,
.ob-final .ob-phone-button { background: var(--ob-green); color: #fff; box-shadow: 0 14px 30px rgba(11,100,107,.18); }
.ob-final .ob-phone .ob-btn:hover,
.ob-final .ob-phone-button:hover { background: #064d54; }
.ob-phone__call {
  grid-column: 1 / -1;
  display: inline-flex;
  justify-content: center;
  margin-top: 2px;
  color: var(--ob-green);
  font-weight: 760;
  text-decoration: none;
}
.ob-final .ob-phone__call { color: #075b63; }
.ob-phone__call:hover,.ob-phone__call:focus-visible { color: var(--ob-text); outline: none; }
@media (max-width: 980px) {
  .ob-final__box { grid-template-columns: 1fr; }
  .ob-phone--main { width: 100%; }
}
@media (max-width: 768px) {
  .ob-section { padding: 62px 16px; }
  .ob-hero { padding-top: 78px; }
  .ob-phone--main { display: block; padding: 12px; }
  .ob-phone-input { margin-top: 8px; }
  .ob-phone-button { margin-top: 12px; }
  .ob-phone__label { display: block; margin-bottom: 0; }
  .ob-phone__call { margin-top: 12px; }
  .ob-included__item,
  .ob-step,
  .ob-scenario { border-radius: 24px; }
  .ob-step::after { top: 50px; }
}

/* ===== Обустройство.html style block 4 ===== */
/* Clean structural version: simple wireframe layout, no decorative gradients */
.choice-final {
  padding-top: clamp(46px, 5vw, 72px) !important;
  padding-bottom: clamp(46px, 5vw, 72px) !important;
  background: #f7f9fa !important;
}
.choice-final,
.choice-final * {
  box-sizing: border-box;
}
.choice-final .ob-inner {
  width: min(100%, 1160px);
}
.choice-final-title {
  margin: 0 0 20px;
  max-width: 880px;
  color: #111827;
  font-family: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif !important;
  font-size: clamp(2rem, 3.4vw, 3.05rem);
  line-height: 1.06;
  letter-spacing: -.045em;
  font-weight: 800;
}
.choice-final-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}
.choice-final-tab {
  appearance: none;
  min-height: 64px;
  display: block;
  padding: 13px 15px;
  border: 1px solid #d8e0e2;
  border-radius: 10px;
  background: #ffffff;
  color: #263238;
  text-align: left;
  box-shadow: none;
  cursor: pointer;
  transition: border-color .16s ease, background .16s ease, color .16s ease;
}
.choice-final-tab:hover,
.choice-final-tab:focus-visible {
  border-color: #9fb3b7;
  background: #fbfcfc;
  transform: none;
  outline: none;
}
.choice-final-tab[aria-selected="true"] {
  border-color: #075b63;
  background: #eef6f7;
  color: #075b63;
  box-shadow: inset 0 3px 0 #075b63;
}
.choice-final-tab__icon {
  display: none !important;
}
.choice-final-tab__name {
  display: block;
  color: inherit;
  font-size: 1.02rem;
  line-height: 1.15;
  font-weight: 780;
  letter-spacing: -.018em;
}
.choice-final-tab__hint {
  display: block;
  margin-top: 5px;
  color: #526166;
  font-size: .86rem;
  line-height: 1.28;
  font-weight: 450;
}
.choice-final-tab[aria-selected="true"] .choice-final-tab__hint {
  color: #315d63;
}
.choice-final-panel {
  border: 1px solid #d8e0e2;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: none;
}
.choice-final-grid {
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, 1.05fr);
  gap: 20px;
  align-items: stretch;
}
.choice-final-content {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 2px 0 0;
}
.choice-final-name {
  margin: 0;
  color: #075b63;
  font-family: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif !important;
  font-size: clamp(1.85rem, 2.6vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 800;
}
.choice-final-summary {
  margin: 0;
  color: #111827;
  font-size: 1.05rem;
  line-height: 1.42;
  font-weight: 560;
}
.choice-final-description {
  margin: 0;
  max-width: 540px;
  color: #4b5563;
  font-size: .98rem;
  line-height: 1.58;
}
.choice-final-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.choice-final-card {
  min-height: 84px;
  display: block;
  padding: 13px 14px;
  border: 1px solid #d8e0e2;
  border-radius: 10px;
  background: #f8fafb;
  box-shadow: none;
}
.choice-final-card__icon {
  display: none !important;
}
.choice-final-card__title {
  display: block;
  margin-bottom: 5px;
  color: #075b63;
  font-size: .9rem;
  line-height: 1.2;
  font-weight: 780;
}
.choice-final-card__text {
  display: block;
  color: #4b5563;
  font-size: .84rem;
  line-height: 1.36;
}
.choice-final-advantage {
  padding: 13px 14px;
  border-top: 1px solid #d8e0e2;
  border-bottom: 1px solid #d8e0e2;
  background: #fbfcfc;
}
.choice-final-advantage__title {
  display: block;
  margin-bottom: 8px;
  color: #075b63;
  font-size: .9rem;
  line-height: 1.2;
  font-weight: 780;
}
.choice-final-advantage__list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.choice-final-advantage__list li {
  position: relative;
  padding-left: 14px;
  color: #4b5563;
  font-size: .86rem;
  line-height: 1.38;
}
.choice-final-advantage__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #075b63;
}
.choice-final-price {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-top: 0;
  padding-top: 14px;
  border-top: 1px solid #d8e0e2;
  white-space: nowrap;
}
.choice-final-old {
  color: #7b8589;
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 430;
  text-decoration-line: line-through;
  text-decoration-thickness: 1.3px;
  text-decoration-color: currentColor;
}
.choice-final-current {
  color: #075b63;
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  line-height: .98;
  letter-spacing: -.04em;
  font-weight: 840;
}
.choice-final-photo {
  min-width: 0;
  align-self: stretch;
  position: relative;
  min-height: 268px;
  margin: 0;
  border: 1px solid #d8e0e2;
  border-radius: 12px;
  background: #f1f4f5;
  box-shadow: none;
  overflow: hidden;
}
.choice-final-photo__img {
  width: 100%;
  height: 100%;
  min-height: 268px;
  display: block;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  background: #f1f4f5;
}
.choice-final-photo.is-fallback .choice-final-photo__img {
  display: none;
}
.choice-final-photo__fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  border: 0;
  border-radius: 0;
  background: #f1f4f5;
}
.choice-final-photo__fallback-inner {
  width: min(360px, 82%);
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  border: 1px dashed #b8c4c8;
  border-radius: 10px;
  background: #ffffff;
  color: #526166;
  text-align: center;
  font-size: .95rem;
  line-height: 1.34;
  font-weight: 650;
}
.choice-final-form-wrap {
  margin: 0 18px 18px;
  padding: 13px;
  border: 1px solid #d8e0e2;
  border-radius: 10px;
  background: #f8fafb;
  box-shadow: none;
}
.choice-final-form {
  display: grid;
  grid-template-columns: 108px minmax(180px, 1fr) 260px;
  gap: 10px;
  align-items: center;
}
.choice-final-prefix,
.choice-final-input,
.choice-final-submit {
  height: 42px;
  border-radius: 8px;
}
.choice-final-prefix {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8e0e2;
  background: #ffffff;
  color: #111827;
  font-size: .98rem;
  font-weight: 520;
}
.choice-final-prefix::after {
  content: none !important;
}
.choice-final-input {
  width: 100%;
  min-width: 0;
  padding: 0 16px;
  border: 1px solid #d8e0e2;
  background: #ffffff;
  color: #111827;
  font-size: .98rem;
  outline: none;
}
.choice-final-input::placeholder {
  color: #9ca3af;
}
.choice-final-input:focus {
  border-color: #075b63;
}
.choice-final-submit {
  border: 1px solid #075b63;
  background: #075b63;
  color: #ffffff;
  font-size: .98rem;
  line-height: 1;
  font-weight: 720;
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease;
}
.choice-final-submit:hover,
.choice-final-submit:focus-visible {
  background: #064d54;
  border-color: #064d54;
  transform: none;
  outline: none;
}
.choice-final-note {
  margin: 9px 2px 0;
  color: #647176;
  font-size: .88rem;
  line-height: 1.35;
}
@media (max-width: 1020px) {
  .choice-final-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .choice-final-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .choice-final-photo,
  .choice-final-photo__img {
    min-height: 250px;
  }
  .choice-final-form {
    grid-template-columns: 108px minmax(180px,1fr) 230px;
  }
}
@media (max-width: 720px) {
  .choice-final {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .choice-final-title {
    font-size: clamp(1.78rem, 7.6vw, 2.35rem);
    margin-bottom: 16px;
  }
  .choice-final-tabs,
  .choice-final-info,
  .choice-final-form {
    grid-template-columns: 1fr;
  }
  .choice-final-tab {
    min-height: auto;
    padding: 12px;
  }
  .choice-final-panel {
    border-radius: 12px;
  }
  .choice-final-grid {
    padding: 14px;
  }
  .choice-final-photo,
  .choice-final-photo__img {
    min-height: 210px;
  }
  .choice-final-photo__fallback {
    padding: 16px;
  }
  .choice-final-form-wrap {
    margin: 0 14px 14px;
    padding: 12px;
  }
  .choice-final-prefix,
  .choice-final-input,
  .choice-final-submit {
    width: 100%;
  }
}

/* ===== Обустройство.html style block 5 ===== */
/* Structural cleanup for this page: removes decorative visual noise while preserving layout and scripts */
.ob-page {
  background: #fbfdfe !important;
  overflow-x: hidden;
}
.ob-section--soft {
  background: #f7f9fa !important;
}
.ob-title,
.ob-meaning__card h2,
.ob-scenario h3,
.ob-final h2 {
  font-family: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif !important;
  letter-spacing: -.04em;
}
.ob-btn,
.ob-phone-button,
.ob-final .ob-phone-button {
  box-shadow: none !important;
}
.ob-btn:hover,
.ob-btn:focus-visible,
.ob-btn-secondary:hover,
.ob-btn-secondary:focus-visible {
  transform: none !important;
}
.ob-fact,
.ob-meaning__card,
.ob-included__item,
.ob-step,
.ob-scenario,
.ob-calc__intro,
.ob-calc__panel,
.ob-phone--main,
.ob-faq__item {
  box-shadow: none !important;
  background: #ffffff !important;
  border-color: #d8e0e2 !important;
}
.ob-visual {
  min-height: 420px !important;
  border-radius: 22px !important;
  background: #f1f4f5 !important;
  box-shadow: none !important;
  border: 1px solid #d8e0e2 !important;
}
.ob-visual::before,
.ob-visual__photo::before,
.ob-visual__house,
.ob-visual__well,
.ob-visual__line {
  display: none !important;
}
.ob-visual__photo {
  inset: 28px !important;
  border-radius: 14px !important;
  background: #ffffff !important;
  border: 1px dashed #b8c4c8 !important;
}
.ob-visual__photo::after {
  content: "Фото / схема обустройства";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #526166;
  font-size: .98rem;
  font-weight: 650;
  text-align: center;
}
.ob-visual__badge {
  left: 46px !important;
  top: 46px !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  border: 1px solid #d8e0e2 !important;
  box-shadow: none !important;
}
.ob-shot {
  border-radius: 14px !important;
  background: #f1f4f5 !important;
  box-shadow: none !important;
  border: 1px solid #d8e0e2 !important;
}
.ob-shot::before {
  display: none !important;
}
.ob-shot::after {
  left: 50% !important;
  bottom: auto !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #526166 !important;
  box-shadow: none !important;
  font-size: .95rem !important;
}
.ob-step::after,
.ob-included__item::before {
  background: #d8e0e2 !important;
  box-shadow: none !important;
}
.ob-final {
  background: #07111f !important;
}
.ob-final .ob-phone--main {
  background: #ffffff !important;
  border-color: #d8e0e2 !important;
  box-shadow: none !important;
}
@media (max-width: 768px) {
  .ob-visual {
    min-height: 280px !important;
    border-radius: 18px !important;
  }
  .ob-visual__photo {
    inset: 18px !important;
  }
  .ob-visual__badge {
    left: 30px !important;
    right: 30px !important;
    top: 30px !important;
    max-width: none !important;
  }
}

/* ===== Обустройство.html style block 6 ===== */
/* Targeted correction: hero copy, single phone CTA, and clearer section separation */
.ob-page {
  background: #fbfdfe !important;
}
.ob-section {
  position: relative;
  background: #fbfdfe;
  border-top: 1px solid #e3eaec;
}
.ob-section:first-child {
  border-top: 0;
}
.ob-section--soft,
.choice-final {
  background: #f6f8f9 !important;
}
.ob-section + .ob-section,
.ob-section + .choice-final,
.choice-final + .ob-section {
  margin-top: 0;
}
.ob-hero {
  min-height: auto;
  padding-top: clamp(86px, 8vw, 118px) !important;
  padding-bottom: clamp(70px, 7vw, 104px) !important;
  background: #fbfdfe !important;
  border-bottom: 1px solid #e3eaec;
}
.ob-hero__content {
  min-width: 0;
}
.ob-hero__eyebrow {
  margin: 0 0 14px;
  color: var(--ob-green);
  font-size: .8rem;
  line-height: 1.2;
  font-weight: 820;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.ob-hero .ob-title {
  max-width: 760px;
  font-family: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif !important;
  font-size: clamp(2.65rem, 6vw, 5.1rem);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 850;
}
.ob-hero .ob-lead {
  max-width: 560px;
  margin-top: 20px;
  font-size: clamp(1.1rem, 1.8vw, 1.28rem);
  line-height: 1.55;
}
.ob-hero-phone.hp-phone-box {
  width: min(100%, 520px);
  margin-top: 28px;
  padding: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 1fr);
  gap: 10px;
  align-items: stretch;
  border: 1px solid #d8e0e2;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: none;
}
.ob-hero-phone .hp-phone-input {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(13,18,24,.16);
  border-radius: 15px;
  background: #fff;
  overflow: hidden;
}
.ob-hero-phone .hp-phone-input span {
  min-width: 70px;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 17px;
  color: #111827;
  font-size: 1rem;
  font-weight: 520;
}
.ob-hero-phone .hp-phone-input input {
  width: 100%;
  min-width: 0;
  height: 56px;
  padding: 0 14px 0 0;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 1rem;
  color: #111827;
}
.ob-hero-phone .hp-phone-input input::placeholder {
  color: #a3acb5;
}
.ob-hero-phone .hp-phone-button {
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 15px;
  background: var(--ob-green);
  color: #fff;
  font-size: 1.02rem;
  font-weight: 820;
  line-height: 1.16;
  box-shadow: none;
  cursor: pointer;
}
.ob-hero-phone .hp-phone-button:hover,
.ob-hero-phone .hp-phone-button:focus-visible {
  background: #064d54;
  outline: none;
}
.ob-hero-phone .hp-phone-button small {
  display: block;
  margin-top: 2px;
  font-size: .78rem;
  font-weight: 600;
  opacity: .88;
}
.ob-hero__actions {
  display: none !important;
}
.ob-hero__facts {
  margin-top: 34px;
}
.ob-fact,
.ob-meaning__card,
.ob-mini,
.ob-included__item,
.ob-step,
.ob-scenario,
.ob-calc__intro,
.ob-calc__panel,
.ob-faq__item,
.choice-final-panel,
.choice-final-form-wrap {
  border-color: #d8e0e2 !important;
}
.ob-final {
  border-top: 1px solid #1c2c3d;
}
@media (max-width: 768px) {
  .ob-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }
  .ob-hero {
    padding-top: 74px !important;
    padding-bottom: 58px !important;
  }
  .ob-hero .ob-title {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
  }
  .ob-hero-phone.hp-phone-box {
    display: block;
    width: 100%;
    padding: 12px;
  }
  .ob-hero-phone .hp-phone-button {
    margin-top: 12px;
  }
  .ob-hero__facts {
    margin-top: 28px;
  }
}

/* ===== Обустройство.html style block 7 ===== */
/* ===== No-repeat scenario-first choice block ===== */
.choice-final-header {
  max-width: 880px;
  margin: 0 auto clamp(24px, 3.5vw, 38px);
  text-align: center;
}
.choice-final-eyebrow {
  margin: 0 0 12px;
  color: var(--ob-green, #075b63);
  font-size: .78rem;
  font-weight: 820;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.choice-final-lead {
  max-width: 760px;
  margin: 16px auto 0;
  color: var(--ob-muted, #536273);
  font-size: clamp(1rem, 1.7vw, 1.14rem);
  line-height: 1.6;
}
.choice-final-text {
  max-width: 800px;
  margin: 14px auto 0;
  color: var(--ob-muted, #536273);
  font-size: .98rem;
  line-height: 1.68;
}
.choice-final-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.choice-final-benefits span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(7, 91, 99, .13);
  border-radius: 999px;
  background: #fff;
  color: var(--ob-muted, #536273);
  font-size: .88rem;
  line-height: 1.25;
  font-weight: 680;
}
.choice-final-card__title[data-auto-label],
.choice-final-card__title { }
@media (max-width: 768px) {
  .choice-final-header { text-align: left; margin-bottom: 22px; }
  .choice-final-lead,
  .choice-final-text { margin-left: 0; margin-right: 0; }
  .choice-final-benefits { justify-content: flex-start; }
  .choice-final-benefits span { width: 100%; justify-content: flex-start; border-radius: 16px; }
}

/* ===== Обустройство.html style block 8 ===== */
.ob-section--water-scenarios {
  background: #ffffff;
  border-top: 1px solid rgba(7, 91, 99, .10);
  border-bottom: 1px solid rgba(7, 91, 99, .10);
}
.water-scenarios {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(320px, .7fr);
  gap: clamp(26px, 4.5vw, 58px);
  align-items: center;
}
.water-scenarios__intro {
  max-width: 720px;
}
.water-scenarios__eyebrow {
  margin: 0 0 12px;
  color: var(--header-accent, #075b63);
  font-size: .78rem;
  line-height: 1.2;
  font-weight: 780;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.water-scenarios__title {
  max-width: 720px;
  margin: 0;
  color: var(--header-text, #05070d);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -.06em;
  font-weight: 840;
}
.water-scenarios__lead {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--header-text, #05070d);
  font-size: clamp(1.06rem, 2vw, 1.2rem);
  line-height: 1.5;
  font-weight: 620;
  letter-spacing: -.025em;
}
.water-scenarios__text {
  max-width: 620px;
  margin: 13px 0 0;
  color: var(--header-muted, #334155);
  font-size: 1rem;
  line-height: 1.66;
}
.water-scenarios__variants {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.water-scenarios__variant {
  min-height: 86px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(7, 91, 99, .14);
  border-radius: 16px;
  background: #fbfdfe;
  color: var(--header-text, #05070d);
}
.water-scenarios__variant strong {
  display: block;
  font-size: 1rem;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -.025em;
}
.water-scenarios__variant span {
  display: block;
  color: var(--header-muted, #334155);
  font-size: .9rem;
  line-height: 1.35;
}
.water-scenarios__variant--accent {
  border-color: rgba(7, 91, 99, .24);
  background: rgba(7, 91, 99, .035);
}
@media (max-width: 980px) {
  .water-scenarios {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .water-scenarios__intro {
    max-width: 760px;
  }
  .water-scenarios__variants {
    max-width: 760px;
  }
}
@media (max-width: 640px) {
  .ob-section--water-scenarios {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .water-scenarios {
    gap: 22px;
  }
  .water-scenarios__lead {
    margin-top: 14px;
  }
  .water-scenarios__text {
    margin-top: 12px;
  }
  .water-scenarios__variants {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .water-scenarios__variant {
    min-height: 82px;
    padding: 14px;
    border-radius: 14px;
  }
  .water-scenarios__variant strong {
    font-size: .96rem;
  }
  .water-scenarios__variant span {
    font-size: .84rem;
  }
}
@media (max-width: 390px) {
  .water-scenarios__variants {
    grid-template-columns: 1fr;
  }
  .water-scenarios__variant {
    min-height: auto;
  }
}

/* ===== Обустройство.html style block 9 ===== */
/* Keeps the active tab panel visually stable between variants */
@media (min-width: 1021px) {
  .choice-final-grid {
    min-height: 492px;
  }
  .choice-final-content {
    min-height: 454px;
  }
  .choice-final-description {
    min-height: calc(1.58em * 3);
  }
  .choice-final-advantage {
    min-height: 124px;
  }
  .choice-final-card {
    min-height: 112px;
  }
}
@media (min-width: 721px) and (max-width: 1020px) {
  .choice-final-description {
    min-height: calc(1.58em * 2);
  }
  .choice-final-advantage {
    min-height: 118px;
  }
  .choice-final-card {
    min-height: 96px;
  }
}
@media (max-width: 720px) {
  .choice-final-description {
    min-height: calc(1.58em * 3);
  }
  .choice-final-advantage {
    min-height: 116px;
  }
}

/* ===== Обустройство.html style block 10 ===== */
/* Final compact fix for tab block: no subtitle noise, smaller media, advantages under photo, unified phone field */
.choice-final {
  padding-top: clamp(34px, 4vw, 52px) !important;
  padding-bottom: clamp(34px, 4vw, 52px) !important;
}
.choice-final-title {
  margin-bottom: 14px !important;
}
.choice-final-tab {
  min-height: 52px !important;
  padding: 12px 14px !important;
}
.choice-final-tab__hint,
.choice-final-summary {
  display: none !important;
}
.choice-final-panel {
  overflow: hidden;
}
.choice-final-grid {
  min-height: 0 !important;
  padding: 16px !important;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .78fr) !important;
  gap: 16px !important;
  align-items: start !important;
}
.choice-final-content {
  min-height: 0 !important;
  gap: 12px !important;
  align-content: start !important;
}
.choice-final-name {
  font-size: clamp(1.7rem, 2.2vw, 2.1rem) !important;
}
.choice-final-description {
  min-height: 0 !important;
  max-width: 620px !important;
  font-size: .95rem !important;
  line-height: 1.48 !important;
}
.choice-final-info {
  grid-template-columns: 1fr 1fr !important;
  gap: 9px !important;
}
.choice-final-card {
  min-height: 0 !important;
  padding: 11px 12px !important;
}
.choice-final-card__title {
  margin-bottom: 4px !important;
  font-size: .86rem !important;
}
.choice-final-card__text {
  font-size: .82rem !important;
  line-height: 1.32 !important;
}
.choice-final-price {
  padding-top: 10px !important;
}
.choice-final-old {
  font-size: 1.08rem !important;
}
.choice-final-current {
  font-size: clamp(2rem, 3vw, 2.55rem) !important;
}
.choice-final-visual {
  min-width: 0;
  display: grid;
  gap: 10px;
  align-content: start;
}
.choice-final-photo {
  height: 184px !important;
  min-height: 184px !important;
  align-self: start !important;
}
.choice-final-photo__img {
  height: 100% !important;
  min-height: 0 !important;
}
.choice-final-photo__fallback {
  padding: 14px !important;
}
.choice-final-photo__fallback-inner {
  width: min(260px, 86%) !important;
  aspect-ratio: 16 / 7 !important;
  font-size: .86rem !important;
}
.choice-final-advantage {
  min-height: 0 !important;
  padding: 11px 12px !important;
  border: 1px solid #d8e0e2 !important;
  border-radius: 10px !important;
  background: #fbfcfc !important;
}
.choice-final-advantage__title {
  margin-bottom: 6px !important;
  font-size: .86rem !important;
}
.choice-final-advantage__list {
  gap: 4px !important;
}
.choice-final-advantage__list li {
  font-size: .82rem !important;
  line-height: 1.3 !important;
  padding-left: 12px !important;
}
.choice-final-advantage__list li::before {
  top: .58em !important;
  width: 4px !important;
  height: 4px !important;
}
.choice-final-form-wrap {
  margin: 0 16px 16px !important;
  padding: 12px !important;
}
.choice-final-form {
  grid-template-columns: minmax(0, 1fr) 230px !important;
  gap: 10px !important;
}
.choice-final-phone-field {
  width: 100%;
  min-width: 0;
  height: 42px;
  display: flex;
  align-items: center;
  border: 1px solid #d8e0e2;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.choice-final-phone-field:focus-within {
  border-color: #075b63;
}
.choice-final-phone-field .choice-final-prefix {
  width: auto !important;
  min-width: 68px;
  height: 100% !important;
  padding: 0 0 0 14px;
  justify-content: flex-start !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}
.choice-final-phone-field .choice-final-input {
  height: 100% !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 14px 0 8px !important;
}
.choice-final-phone-field .choice-final-input:focus {
  border-color: transparent !important;
}
@media (max-width: 1020px) {
  .choice-final-grid {
    grid-template-columns: 1fr !important;
  }
  .choice-final-visual {
    grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
    align-items: stretch;
  }
  .choice-final-photo {
    height: 172px !important;
    min-height: 172px !important;
  }
  .choice-final-form {
    grid-template-columns: minmax(0, 1fr) 220px !important;
  }
}
@media (max-width: 720px) {
  .choice-final {
    padding-top: 34px !important;
    padding-bottom: 34px !important;
  }
  .choice-final-tabs {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }
  .choice-final-tab {
    min-height: 48px !important;
    padding: 11px 12px !important;
  }
  .choice-final-grid {
    padding: 12px !important;
    gap: 12px !important;
  }
  .choice-final-info,
  .choice-final-visual,
  .choice-final-form {
    grid-template-columns: 1fr !important;
  }
  .choice-final-photo {
    height: 154px !important;
    min-height: 154px !important;
  }
  .choice-final-form-wrap {
    margin: 0 12px 12px !important;
  }
  .choice-final-phone-field,
  .choice-final-submit {
    height: 46px !important;
  }
}
@media (max-width: 430px) {
  .choice-final-tabs {
    grid-template-columns: 1fr !important;
  }
}

/* ===== Обустройство.html style block 11 ===== */
/* Integrated variant 4 — editorial clean. No scroll-snap or demo navigation. */
.choice-editorial,
.choice-editorial * {
  box-sizing: border-box;
}
.choice-editorial {
  padding-top: clamp(38px, 4.2vw, 58px) !important;
  padding-bottom: clamp(38px, 4.2vw, 58px) !important;
  background: #f7f9fa !important;
  overflow-x: clip;
}
.choice-editorial__inner {
  width: min(100%, 1120px);
}
.choice-editorial__title {
  margin: 0 0 14px;
  max-width: 780px;
  color: #101820;
  font-family: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif !important;
  font-size: clamp(2rem, 3.15vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -.055em;
  font-weight: 820;
}
.choice-editorial__tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 14px;
  padding: 6px 0;
  border-top: 1px solid rgba(16, 32, 34, .13);
  border-bottom: 1px solid rgba(16, 32, 34, .13);
}
.choice-editorial__tab {
  appearance: none;
  min-width: 0;
  min-height: 38px;
  padding: 9px 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #263238;
  text-align: center;
  font-family: inherit;
  font-size: .98rem;
  line-height: 1.1;
  letter-spacing: -.015em;
  font-weight: 760;
  cursor: pointer;
  transition: color .16s ease, background .16s ease;
}
.choice-editorial__tab + .choice-editorial__tab {
  border-left: 1px solid rgba(16, 32, 34, .13);
}
.choice-editorial__tab:hover,
.choice-editorial__tab:focus-visible {
  color: #075b63;
  background: rgba(7, 91, 99, .035);
  outline: none;
}
.choice-editorial__tab[aria-selected="true"] {
  color: #075b63;
  background: transparent;
}
.choice-editorial__tab[aria-selected="true"]::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin: 7px auto 0;
  border-radius: 999px;
  background: #075b63;
}
.choice-editorial__panel {
  min-height: 0;
  border-top: 1px solid rgba(16, 32, 34, .13);
  border-bottom: 1px solid rgba(16, 32, 34, .13);
  background: transparent;
}
.choice-editorial__grid {
  min-height: 424px;
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  padding: 18px 0;
}
.choice-editorial__media,
.choice-editorial__content {
  min-width: 0;
  min-height: 0;
}
.choice-editorial__media {
  display: grid;
  grid-template-rows: 164px minmax(0, 1fr);
  gap: 12px;
}
.choice-editorial__photo {
  position: relative;
  min-height: 0;
  height: 164px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 32, 34, .14);
  border-radius: 0;
  background: #eef3f4;
}
.choice-editorial__photo-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border: 0;
  background: #eef3f4;
}
.choice-editorial__photo.is-fallback .choice-editorial__photo-img {
  display: none;
}
.choice-editorial__photo-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 14px;
  background: #eef3f4;
}
.choice-editorial__photo-fallback span {
  width: min(250px, 82%);
  aspect-ratio: 16 / 8;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px dashed rgba(16, 32, 34, .24);
  border-radius: 0;
  background: #fff;
  color: #617074;
  text-align: center;
  font-size: .88rem;
  line-height: 1.3;
  font-weight: 650;
}
.choice-editorial__advantage,
.choice-editorial__info-card {
  border: 0;
  border-radius: 0;
  background: transparent;
}
.choice-editorial__advantage {
  padding: 2px 0 0;
}
.choice-editorial__mini-title {
  display: block;
  margin: 0 0 7px;
  color: #075b63;
  font-size: .75rem;
  line-height: 1.1;
  letter-spacing: .07em;
  text-transform: uppercase;
  font-weight: 850;
}
.choice-editorial__advantage-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.choice-editorial__advantage-list li {
  position: relative;
  padding-left: 13px;
  color: #45555a;
  font-size: .86rem;
  line-height: 1.32;
  font-weight: 500;
}
.choice-editorial__advantage-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .57em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #075b63;
}
.choice-editorial__content {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 0;
}
.choice-editorial__top {
  margin: 0;
}
.choice-editorial__name {
  margin: 0;
  color: #075b63;
  font-family: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif !important;
  font-size: clamp(1.85rem, 2.8vw, 2.42rem);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 780;
}
.choice-editorial__summary {
  margin: 7px 0 0;
  color: #101820;
  font-size: .98rem;
  line-height: 1.28;
  font-weight: 720;
}
.choice-editorial__description {
  max-width: 650px;
  margin: 0;
  color: #48595f;
  font-size: .96rem;
  line-height: 1.48;
  font-weight: 470;
}
.choice-editorial__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.choice-editorial__info-card {
  min-height: 82px;
  padding: 12px 0 0;
  border-top: 1px solid rgba(16, 32, 34, .12);
}
.choice-editorial__info-card p {
  margin: 0;
  color: #48595f;
  font-size: .86rem;
  line-height: 1.36;
  font-weight: 500;
}
.choice-editorial__bottom {
  margin-top: auto;
  display: grid;
  grid-template-columns: minmax(125px, .28fr) minmax(0, .72fr);
  gap: 14px;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(16, 32, 34, .13);
}
.choice-editorial__price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  white-space: nowrap;
}
.choice-editorial__old-price {
  min-height: 14px;
  color: #7b8589;
  font-size: .92rem;
  line-height: 1;
  font-weight: 500;
  text-decoration: line-through;
}
.choice-editorial__current-price {
  color: #075b63;
  font-size: clamp(2rem, 3.2vw, 2.65rem);
  line-height: .95;
  letter-spacing: -.045em;
  font-weight: 880;
}
.choice-editorial__form-wrap {
  min-width: 0;
  display: grid;
  gap: 7px;
}
.choice-editorial__form {
  display: flex;
  gap: 9px;
  min-width: 0;
}
.choice-editorial__phone-field {
  flex: 1 1 auto;
  min-width: 0;
  height: 42px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(16, 32, 34, .22);
  border-radius: 0;
  background: #fff;
}
.choice-editorial__phone-field:focus-within {
  border-color: #075b63;
}
.choice-editorial__prefix {
  flex: 0 0 auto;
  padding: 0 10px 0 12px;
  color: #1a2a30;
  font-size: .9rem;
  line-height: 1;
  font-weight: 650;
}
.choice-editorial__input {
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  padding: 0 12px 0 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #101820;
  font: inherit;
  font-size: .9rem;
}
.choice-editorial__input::placeholder {
  color: #9ba7aa;
}
.choice-editorial__submit {
  flex: 0 0 auto;
  height: 42px;
  padding: 0 16px;
  border: 1px solid #075b63;
  border-radius: 0;
  background: #075b63;
  color: #fff;
  font: inherit;
  font-size: .9rem;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease;
}
.choice-editorial__submit:hover,
.choice-editorial__submit:focus-visible {
  background: #064d54;
  border-color: #064d54;
  outline: none;
}
.choice-editorial__note {
  margin: 0;
  color: #647176;
  font-size: .78rem;
  line-height: 1.25;
  font-weight: 500;
}
@media (max-width: 1040px) {
  .choice-editorial__grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .choice-editorial__media {
    grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
    grid-template-rows: auto;
    align-items: stretch;
  }
  .choice-editorial__photo {
    height: 172px;
  }
  .choice-editorial__advantage {
    padding-top: 0;
  }
}
@media (max-width: 720px) {
  .choice-editorial {
    padding-top: 34px !important;
    padding-bottom: 34px !important;
  }
  .choice-editorial__title {
    margin-bottom: 14px;
    font-size: clamp(1.78rem, 8vw, 2.35rem);
  }
  .choice-editorial__tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }
  .choice-editorial__tab {
    min-height: 42px;
    padding: 10px 8px;
    font-size: .92rem;
  }
  .choice-editorial__tab:nth-child(3) {
    border-left: 0;
  }
  .choice-editorial__tab:nth-child(n+3) {
    border-top: 1px solid rgba(16, 32, 34, .13);
  }
  .choice-editorial__grid {
    padding: 14px 0;
  }
  .choice-editorial__media,
  .choice-editorial__info,
  .choice-editorial__bottom {
    grid-template-columns: 1fr;
  }
  .choice-editorial__photo {
    height: 150px;
  }
  .choice-editorial__info-card {
    min-height: auto;
  }
  .choice-editorial__form {
    flex-direction: column;
  }
  .choice-editorial__phone-field,
  .choice-editorial__submit {
    width: 100%;
    height: 44px;
  }
}
@media (max-width: 420px) {
  .choice-editorial__tabs {
    grid-template-columns: 1fr;
  }
  .choice-editorial__tab + .choice-editorial__tab {
    border-left: 0;
    border-top: 1px solid rgba(16, 32, 34, .13);
  }
}


/* Targeted alignment patch: selected variant 4 integrated into final page */
@media (min-width: 1041px) {
  .choice-editorial__grid {
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
    grid-template-rows: auto auto minmax(92px, 1fr) auto;
    column-gap: clamp(18px, 3vw, 34px);
    row-gap: 12px;
    align-items: stretch;
  }

  .choice-editorial__media,
  .choice-editorial__content {
    display: contents;
  }

  .choice-editorial__photo {
    grid-column: 1;
    grid-row: 1 / 3;
    height: 100%;
    min-height: 164px;
    align-self: stretch;
  }

  .choice-editorial__advantage {
    grid-column: 1;
    grid-row: 3;
    align-self: start;
    padding-top: 0;
  }

  .choice-editorial__top {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
  }

  .choice-editorial__description {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
  }

  .choice-editorial__info {
    grid-column: 2;
    grid-row: 3;
    align-self: start;
  }

  .choice-editorial__bottom {
    grid-column: 1 / 3;
    grid-row: 4;
    margin-top: 0;
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
    column-gap: clamp(18px, 3vw, 34px);
    align-items: center;
  }

  .choice-editorial__price {
    grid-column: 1;
    justify-self: center;
    transform: none;
  }

  .choice-editorial__form-wrap {
    grid-column: 2;
  }
}

@media (max-width: 1040px) {
  .choice-editorial__bottom,
  .choice-editorial__price,
  .choice-editorial__form-wrap {
    transform: none;
  }
}

/* ===== Final visual pass inspired by the supplied layout ===== */
:root {
  --page-bg: #fbfcfb;
  --surface: #ffffff;
  --surface-soft: #f5faf7;
  --text: #10233c;
  --muted: #5e6c7c;
  --green: #1f8f45;
  --green-dark: #146b35;
  --green-soft: #e9f7ee;
  --line: rgba(24, 72, 50, .12);
  --shadow: 0 14px 36px rgba(31, 63, 42, .08);
  --container: 1180px;
}

* {
  letter-spacing: 0 !important;
}

html {
  scroll-padding-top: 86px;
}

body {
  background: var(--page-bg) !important;
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
}

.header-container,
.site-inner,
.work-inner,
.ob-wrap,
.pw-inner,
.well-faq__container,
.org-footer__inner,
.ob-inner {
  width: min(var(--container), calc(100% - 64px)) !important;
  max-width: var(--container) !important;
  margin-inline: auto !important;
  padding-inline: 0 !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 70px;
  padding: 0 !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(18, 73, 44, .08) !important;
  background: rgba(255, 255, 255, .92) !important;
  box-shadow: none !important;
  backdrop-filter: blur(14px);
}

.site-header__inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--text) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px !important;
  font-weight: 700 !important;
  text-decoration: none;
  white-space: nowrap;
}

.site-header__logo::before {
  content: "";
  width: 14px;
  height: 20px;
  border: 2px solid #59ad77;
  border-radius: 12px 12px 12px 2px;
  transform: rotate(-36deg);
  box-shadow: inset 0 -6px 0 rgba(89, 173, 119, .12);
}

.site-header__nav {
  flex: 1;
  justify-content: center;
}

.site-header__nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.site-header__nav-links a,
.site-header__phone {
  color: var(--text) !important;
  font-size: 14px !important;
  font-weight: 650 !important;
  text-decoration: none;
}

.site-header__nav-links a::after,
.site-header__phone-worktime,
.site-header__online-tooltip,
.site-header__tooltip,
.site-header__header-contact,
.site-header__desktop-instagram,
.site-header__desktop-floating-contact,
.back-to-top {
  display: none !important;
}

.site-header__actions {
  margin-left: auto !important;
  padding-left: 0 !important;
}

.site-header__phone-wrap {
  align-items: center;
}

.site-header__phone-stack {
  transform: none !important;
}

.site-header__phone {
  min-height: 34px !important;
  padding: 0 !important;
  color: var(--green) !important;
  font-size: 18px !important;
  font-weight: 800 !important;
}

.site-header__online-status {
  width: 12px;
  min-width: 12px;
  margin: 0 8px 0 0;
}

.site-header__online-dot {
  background: var(--green);
}

.hp-hero-section {
  position: relative;
  min-height: 560px !important;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .96) 34%, rgba(255, 255, 255, .62) 56%, rgba(255, 255, 255, .04) 78%),
    url("images/hero-water.webp") right center / cover no-repeat !important;
  border-bottom: 1px solid var(--line);
}

.hp-hero {
  min-height: 560px !important;
  display: grid;
  grid-template-columns: minmax(0, 535px) 1fr !important;
  align-items: center;
  padding-block: 64px 54px !important;
}

.hp-copy {
  position: relative;
  z-index: 1;
  max-width: 535px;
}

.hp-title,
.ben-head h2,
.calc-head h2,
.ob-title,
.work-head h2,
.pw-copy h2,
.well-faq__title,
.fc-title,
.choice-editorial__title,
.water-scenarios__title {
  color: var(--text) !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-weight: 700 !important;
  line-height: 1.06 !important;
}

.hp-title {
  max-width: 520px;
  margin: 0 0 22px !important;
  font-size: 47px !important;
}

.hp-subtitle {
  max-width: 430px;
  margin-bottom: 28px !important;
  color: #304255 !important;
  font-size: 17px !important;
  line-height: 1.55 !important;
}

.hp-benefits {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px !important;
  max-width: 600px;
  margin-bottom: 30px !important;
}

.hp-benefit {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
  color: var(--text);
}

.hp-benefit strong {
  display: block;
  margin-bottom: 2px;
  font-size: 13px;
  line-height: 1.2;
}

.hp-benefit span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.hp-dot {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px;
  border: 1px solid rgba(31, 143, 69, .35);
  border-radius: 8px !important;
  background: var(--green-soft) !important;
}

.hp-dot::before {
  background: var(--green) !important;
}

.hp-phone-box,
.calc-lead-form,
.fc-form,
.choice-editorial__form {
  display: flex !important;
  align-items: stretch;
  gap: 14px;
  max-width: 520px;
}

.hp-phone-input,
.calc-phone-field,
.fc-phone-field,
.choice-editorial__phone-field {
  min-height: 50px;
  display: flex;
  align-items: center;
  flex: 1;
  gap: 10px;
  border: 1px solid rgba(16, 35, 60, .12) !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 8px 24px rgba(16, 35, 60, .05);
}

.hp-phone-input input,
.calc-phone-field input,
.fc-phone-field input,
.choice-editorial__input {
  min-width: 0;
  width: 100%;
  border: 0 !important;
  outline: 0;
  color: var(--text);
  background: transparent !important;
  font-size: 14px !important;
}

.hp-phone-input span,
.calc-phone-field span,
.fc-phone-field span,
.choice-editorial__prefix {
  color: var(--text) !important;
  font-weight: 750;
}

.hp-phone-button,
.calc-lead-form button,
.fc-submit,
.choice-editorial__submit,
.ob-more-link {
  min-height: 50px;
  border: 0 !important;
  border-radius: 8px !important;
  background: linear-gradient(180deg, #25984e, #147239) !important;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(31, 143, 69, .24);
  font-size: 14px !important;
  font-weight: 750 !important;
  cursor: pointer;
}

.hp-phone-button small {
  display: none !important;
}

.hp-micro {
  margin-top: 13px !important;
  color: var(--muted) !important;
  font-size: 12px !important;
}

.hp-empty {
  display: none !important;
}

.site-section,
.ob-section,
.pw-section,
.well-faq,
.fc-section,
.obustroystvo-block {
  padding-block: 30px !important;
  background: var(--page-bg) !important;
}

.ben-section {
  padding-top: 36px !important;
}

.ben-wrap {
  display: grid !important;
  grid-template-columns: 285px minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.ben-head {
  padding-top: 18px;
}

.ben-head h2 {
  margin: 0 0 12px !important;
  font-size: 28px !important;
}

.ben-head p,
.calc-head p,
.work-head p,
.pw-copy p,
.fc-text,
.well-faq__lead,
.ob-card-subtitle,
.ob-desc,
.water-scenarios__lead,
.water-scenarios__text {
  color: var(--muted) !important;
  font-size: 14px !important;
  line-height: 1.52 !important;
}

.ben-list {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px !important;
}

.ben-item,
.calc-box,
.calc-panel,
.calc-result,
.ob-card,
.work-btn,
.pw-photo-frame,
.well-faq__item,
.choice-editorial__panel,
.choice-editorial__info-card,
.water-scenarios__variant {
  border: 1px solid var(--line) !important;
  border-radius: 8px !important;
  background: var(--surface) !important;
  box-shadow: 0 10px 28px rgba(21, 61, 38, .05) !important;
}

.ben-button {
  min-height: 148px;
  width: 100%;
  padding: 22px 18px !important;
  text-align: left;
  background: transparent !important;
}

.ben-title {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start !important;
  gap: 14px !important;
}

.ben-num {
  width: 42px !important;
  height: 42px !important;
  display: grid !important;
  place-items: center;
  border-radius: 8px !important;
  background: var(--green-soft) !important;
  color: var(--green) !important;
}

.ben-num svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
}

.ben-item-heading {
  color: var(--text) !important;
  font-size: 14px !important;
  line-height: 1.25 !important;
}

.ben-short {
  color: var(--muted) !important;
  font-size: 12px !important;
  line-height: 1.35 !important;
}

.ben-icon,
.ben-panel {
  display: none !important;
}

.calc-section {
  padding-top: 22px !important;
}

.calc-box {
  padding: 26px !important;
}

.calc-head {
  margin-bottom: 22px !important;
}

.calc-head h2 {
  margin: 0 0 6px !important;
  font-size: 31px !important;
}

.calc-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 20px;
}

.calc-left {
  min-width: 0;
}

.calc-top-row,
.calc-setup-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px !important;
}

.calc-panel {
  padding: 18px !important;
}

.calc-panel-title h3 {
  color: var(--text) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}

.calc-depth-field input {
  color: var(--text) !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 38px !important;
  font-weight: 700 !important;
}

.calc-range {
  accent-color: var(--green);
}

.calc-pipe-option,
.calc-setup-option {
  min-height: 74px;
  border: 1px solid rgba(16, 35, 60, .11) !important;
  border-radius: 8px !important;
  background: #fff !important;
}

.calc-pipe-option.is-selected,
.calc-setup-option.is-selected {
  border-color: rgba(31, 143, 69, .55) !important;
  background: var(--green-soft) !important;
}

.calc-pipe-option mark,
.calc-setup-option mark {
  background: var(--green) !important;
  color: #fff !important;
}

.calc-pipe-option:not(.is-selected) mark,
.calc-setup-option:not(.is-selected) mark {
  opacity: 0 !important;
}

.calc-result {
  padding: 20px !important;
}

.calc-result-total strong {
  color: var(--text) !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 32px !important;
}

.calc-lead-form {
  max-width: none;
  margin-top: 18px !important;
  display: grid !important;
  grid-template-columns: minmax(220px, 280px) 220px minmax(0, 1fr);
  align-items: center;
}

.calc-lead-form p {
  margin: 0 !important;
  color: var(--muted) !important;
  font-size: 13px !important;
}

.obustroystvo-block {
  padding-top: 24px !important;
}

.ob-wrap > .ob-title {
  margin: 0 0 18px !important;
  font-size: 30px !important;
}

.ob-cards {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px !important;
}

.ob-card {
  min-height: 260px;
  padding: 15px !important;
  display: flex;
  flex-direction: column;
}

.ob-card h3 {
  margin: 0 0 4px !important;
  color: var(--text) !important;
  font-size: 17px !important;
}

.ob-photo {
  min-height: 120px !important;
  margin: 12px 0 !important;
  border-radius: 8px !important;
  background-size: cover !important;
  background-position: center !important;
  overflow: hidden;
}

.ob-card:nth-child(1) .ob-photo { background-image: url("images/letnik.webp") !important; }
.ob-card:nth-child(2) .ob-photo { background-image: url("images/adapter.webp") !important; }
.ob-card:nth-child(3) .ob-photo { background-image: url("images/kesson.webp") !important; }
.ob-card:nth-child(4) .ob-photo { background-image: url("images/no-obustroystvo.webp") !important; }

.ob-photo-placeholder {
  display: none !important;
}

.ob-desc {
  margin: 0 0 14px !important;
}

.ob-price-row {
  margin-top: auto !important;
}

.ob-old-price {
  color: #8c98a7 !important;
  text-decoration: line-through;
}

.ob-new-price {
  color: var(--green) !important;
  font-size: 22px !important;
}

.ob-more-row {
  display: none !important;
}

.work-section {
  padding-top: 30px !important;
}

.work-head {
  margin-bottom: 18px !important;
}

.work-head h2,
.pw-copy h2,
.well-faq__title,
.fc-title {
  margin: 0 !important;
  font-size: 30px !important;
}

.work-shell {
  display: block !important;
}

.work-menu {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px !important;
}

.work-btn {
  min-height: 154px;
  width: 100%;
  padding: 18px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  align-items: flex-start !important;
  text-align: left;
}

.work-icon {
  width: 34px !important;
  height: 34px !important;
  border-radius: 8px !important;
  background: var(--green-soft) !important;
  color: var(--green) !important;
}

.work-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.work-btn b {
  display: block;
  color: var(--text) !important;
  font-size: 14px !important;
  line-height: 1.25 !important;
  overflow-wrap: anywhere;
}

.work-btn small {
  display: block;
  color: var(--muted) !important;
  font-size: 12px !important;
  line-height: 1.35 !important;
  overflow-wrap: anywhere;
}

.work-arrow,
.work-display {
  display: none !important;
}

.pw-section {
  padding-top: 28px !important;
}

.pw-layout {
  display: block !important;
}

.pw-copy {
  margin-bottom: 18px !important;
}

.pw-gallery {
  width: 100% !important;
}

.pw-viewport {
  overflow: hidden;
}

.pw-track {
  display: flex !important;
  gap: 14px !important;
  transition: transform .26s ease;
}

.pw-photo {
  flex: 0 0 calc((100% - 56px) / 5) !important;
  min-width: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.pw-photo-frame {
  display: block !important;
  aspect-ratio: 16 / 10;
  min-height: 145px !important;
  background-image: var(--pw-image) !important;
  background-size: cover !important;
  background-position: center !important;
  overflow: hidden;
}

.pw-photo-frame::before,
.pw-photo-frame::after,
.pw-photo-title,
.pw-photo-lines {
  display: none !important;
}

.pw-controls {
  margin-top: 12px !important;
}

.pw-nav,
.pw-arrow,
.pw-more-link {
  border-radius: 999px !important;
  border: 1px solid var(--line) !important;
  background: #fff !important;
  color: var(--green) !important;
}

.pw-lb-photo {
  min-height: 64vh !important;
  border-radius: 8px !important;
  background-size: cover !important;
  background-position: center !important;
}

.pw-lb-photo::before {
  display: none !important;
}

.pw-lb-mark {
  border-radius: 999px;
  background: rgba(255, 255, 255, .9) !important;
  color: var(--text) !important;
}

.well-faq {
  padding-top: 26px !important;
}

.well-faq__header {
  margin-bottom: 18px !important;
}

.well-faq__list {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px !important;
}

.well-faq__item {
  overflow: hidden;
}

.well-faq__question {
  min-height: 54px;
  width: 100%;
  padding: 0 18px !important;
  color: var(--text) !important;
  background: #fff !important;
  text-align: left;
  font-size: 14px !important;
  font-weight: 650 !important;
}

.well-faq__icon {
  border-color: var(--line) !important;
}

.well-faq__answer-inner {
  color: var(--muted) !important;
}

.fc-section {
  padding-block: 42px !important;
}

.fc-card,
.fc-inner {
  border-radius: 8px !important;
  background: linear-gradient(135deg, #edf8f1, #fff) !important;
  border: 1px solid var(--line) !important;
  box-shadow: var(--shadow) !important;
}

.org-footer {
  margin-top: 0 !important;
  padding-block: 34px 22px !important;
  background: #102033 !important;
  color: rgba(255, 255, 255, .84) !important;
}

.org-footer__grid {
  display: grid !important;
  grid-template-columns: 1.1fr .8fr .8fr 1fr;
  gap: 34px !important;
}

.org-footer__logo-text {
  color: #fff !important;
  font-family: "Onest", "Segoe UI", Arial, sans-serif !important;
  font-weight: 900 !important;
}
.org-footer a,
.org-footer__phone {
  color: rgba(255, 255, 255, .9) !important;
}

.org-footer__contact-card {
  border-radius: 8px !important;
  border-color: rgba(255, 255, 255, .12) !important;
  background: rgba(255, 255, 255, .05) !important;
}

.ob-page .ob-hero {
  min-height: 560px !important;
  padding-block: 0 !important;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .92) 42%, rgba(255, 255, 255, .26) 76%),
    url("images/hero-water.webp") right center / cover no-repeat !important;
}

.ob-hero__grid {
  min-height: 560px !important;
  align-items: center !important;
}

.ob-hero .ob-title {
  max-width: 560px;
  font-size: 56px !important;
  line-height: 1.08 !important;
}

.ob-hero__eyebrow {
  color: var(--green) !important;
  font-weight: 800 !important;
}

.ob-lead {
  color: #304255 !important;
}

.ob-visual {
  border-radius: 8px !important;
  background: url("images/case-equipment.webp") center / cover no-repeat !important;
  box-shadow: var(--shadow) !important;
}

.ob-visual > * {
  display: none !important;
}

.choice-editorial__photo {
  border-radius: 8px !important;
  overflow: hidden;
}

.choice-editorial__photo-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 1120px) {
  .site-header__nav-links {
    gap: 20px;
  }

  .hp-title {
    font-size: 40px !important;
  }

  .ben-wrap,
  .calc-grid {
    grid-template-columns: 1fr !important;
  }

  .ben-list,
  .ob-cards,
  .work-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .pw-photo {
    flex-basis: calc((100% - 28px) / 3) !important;
  }
}

@media (max-width: 768px) {
  .header-container,
  .site-inner,
  .work-inner,
  .ob-wrap,
  .pw-inner,
  .well-faq__container,
  .org-footer__inner,
  .ob-inner {
    width: min(100% - 32px, var(--container)) !important;
  }

  .site-header__inner {
    min-height: 66px;
  }

  .site-header__logo {
    font-size: 20px !important;
    margin-left: 0 !important;
    justify-self: start !important;
  }

  .site-header__logo [data-header-logo-text]::before {
    content: none !important;
  }

  .site-header__mobile-actions,
  .site-header__mobile-contact-row {
    display: none !important;
  }

  .site-header__mobile-toggle,
  .site-header__mobile-phone {
    border-radius: 8px !important;
  }

  .hp-hero-section,
  .ob-page .ob-hero {
    min-height: auto !important;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .92) 58%, rgba(255, 255, 255, .74) 100%),
      url("images/hero-water.webp") center top / cover no-repeat !important;
  }

  .hp-hero,
  .ob-hero__grid {
    min-height: auto !important;
    display: block !important;
    padding-block: 42px 34px !important;
  }

  .ob-hero .ob-title {
    font-size: 34px !important;
  }

  .hp-title {
    font-size: 34px !important;
  }

  .hp-subtitle {
    font-size: 16px !important;
  }

  .hp-benefits,
  .ben-list,
  .calc-top-row,
  .calc-setup-grid,
  .ob-cards,
  .work-menu,
  .well-faq__list,
  .org-footer__grid {
    grid-template-columns: 1fr !important;
  }

  .hp-phone-box,
  .calc-lead-form,
  .fc-form,
  .choice-editorial__form {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .calc-box {
    padding: 18px !important;
  }

  .pw-photo {
    flex-basis: calc((100% - 14px) / 2) !important;
  }

  .pw-lb-photo {
    min-height: 54vh !important;
  }
}

@media (max-width: 520px) {
  .hp-title {
    font-size: 30px !important;
  }

  .ben-head h2,
  .calc-head h2,
  .ob-wrap > .ob-title,
  .work-head h2,
  .pw-copy h2,
  .well-faq__title,
  .fc-title {
    font-size: 25px !important;
  }

  .pw-photo {
    flex-basis: 86% !important;
  }
}

.site-section.hp-hero-section {
  padding-block: 0 !important;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .95) 34%, rgba(255, 255, 255, .58) 56%, rgba(255, 255, 255, .02) 78%),
    url("images/hero-water.webp") right center / cover no-repeat !important;
}

.hp-phone-box .hp-phone-input {
  flex: 0 0 220px;
  padding-inline: 18px !important;
}

.hp-phone-box .hp-phone-button {
  flex: 1 1 260px;
  padding-inline: 24px !important;
}

.calc-equipment-name,
.calc-equipment-price {
  display: block !important;
  color: var(--text) !important;
}

@media (min-width: 769px) {
  .site-header .header-container {
    width: min(1220px, calc(100% - 48px)) !important;
  }

  .site-header__nav-links {
    gap: 24px !important;
  }

  .site-header__phone {
    font-size: 17px !important;
  }

  .site-header__online-status {
    max-width: 12px !important;
    overflow: hidden !important;
  }
}

@media (max-width: 768px) {
  .site-section.hp-hero-section {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .9) 58%, rgba(255, 255, 255, .72) 100%),
      url("images/hero-water.webp") center top / cover no-repeat !important;
  }

  .hp-phone-box .hp-phone-input,
  .hp-phone-box .hp-phone-button {
    flex: initial;
  }
}

/* Floating corner actions: contact + scroll progress */
.site-header__desktop-floating-contact {
  position: fixed !important;
  right: max(18px, env(safe-area-inset-right)) !important;
  bottom: calc(max(18px, env(safe-area-inset-bottom)) + 76px) !important;
  z-index: 1495 !important;
  display: block !important;
  width: 56px !important;
  height: 56px !important;
  pointer-events: none !important;
}

.site-header__desktop-floating-contact .site-header__floating-contact {
  position: static !important;
  width: 56px !important;
  height: 56px !important;
  display: block !important;
  pointer-events: auto !important;
}

.site-header__desktop-floating-contact .site-header__floating-contact::after {
  content: none !important;
}

.site-header__desktop-floating-contact .site-header__icon-button {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  min-height: 56px !important;
  display: inline-grid !important;
  place-items: center !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: #00717b !important;
  color: #fff !important;
  box-shadow: 0 18px 36px rgba(0, 91, 99, .22) !important;
  transform: none !important;
}

.site-header__desktop-floating-contact .site-header__icon-button svg {
  width: 24px !important;
  height: 24px !important;
  display: block !important;
}

.site-header__desktop-floating-contact .site-header__icon-button:hover,
.site-header__desktop-floating-contact .site-header__icon-button:focus-visible {
  background: #00626b !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
  outline: none !important;
}

.site-header__desktop-floating-contact .site-header__contact-popup {
  position: absolute !important;
  right: calc(100% + 12px) !important;
  bottom: 0 !important;
  top: auto !important;
  min-width: 180px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(16, 35, 60, .1) !important;
  background: rgba(255, 255, 255, .98) !important;
  box-shadow: 0 18px 44px rgba(16, 35, 60, .16) !important;
  transform: translate(8px, 0) !important;
}

.site-header__desktop-floating-contact .site-header__floating-contact:hover .site-header__contact-popup,
.site-header__desktop-floating-contact .site-header__floating-contact:focus-within .site-header__contact-popup,
.site-header__desktop-floating-contact .site-header__floating-contact.is-contact-open .site-header__contact-popup {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translate(0, 0) !important;
}

.back-to-top {
  --scroll-progress: 0deg;
  position: fixed !important;
  right: max(18px, env(safe-area-inset-right)) !important;
  bottom: calc(max(18px, env(safe-area-inset-bottom)) + 146px) !important;
  z-index: 1500 !important;
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  min-height: 56px !important;
  display: inline-grid !important;
  place-items: center !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  color: #10233c !important;
  background: conic-gradient(#00717b var(--scroll-progress), #b9dee1 0deg) !important;
  box-shadow: 0 16px 34px rgba(16, 35, 60, .16) !important;
  cursor: pointer !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(10px) scale(.96) !important;
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease, box-shadow .22s ease !important;
}

.back-to-top::before {
  content: "" !important;
  position: absolute !important;
  inset: 7px !important;
  border-radius: inherit !important;
  border: 0 !important;
  background: #fff !important;
  box-shadow: none !important;
}

.back-to-top svg {
  position: relative !important;
  z-index: 1 !important;
  width: 22px !important;
  height: 22px !important;
  display: block !important;
  animation: none !important;
}

.back-to-top.is-visible,
.back-to-top.is-contact-hidden {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) scale(1) !important;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  box-shadow: 0 20px 42px rgba(16, 35, 60, .2) !important;
  transform: translateY(-2px) scale(1.02) !important;
  outline: none !important;
}

@media (max-width: 768px) {
  .site-header__desktop-floating-contact {
    right: max(14px, env(safe-area-inset-right)) !important;
    bottom: calc(max(14px, env(safe-area-inset-bottom)) + 70px) !important;
    width: 52px !important;
    height: 52px !important;
  }

  .site-header__desktop-floating-contact .site-header__floating-contact,
  .site-header__desktop-floating-contact .site-header__icon-button,
  .back-to-top {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    min-height: 52px !important;
  }

  .back-to-top {
    right: max(14px, env(safe-area-inset-right)) !important;
    bottom: calc(max(14px, env(safe-area-inset-bottom)) + 136px) !important;
  }

  .back-to-top::before {
    inset: 6px !important;
  }
}

/* Final visual pass */
html {
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-rendering: optimizeLegibility !important;
}

body,
button,
input,
textarea,
select {
  font-family: "Segoe UI Variable Text", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif !important;
  letter-spacing: 0 !important;
}

body {
  color: #10233c !important;
  font-weight: 500 !important;
}

.hp-title,
.ben-head h2,
.calc-head h2,
.ob-wrap > .ob-title,
.work-head h2,
.pw-copy h2,
.well-faq__title,
.fc-title {
  font-family: Georgia, "Times New Roman", serif !important;
  color: #10233c !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
}

.hp-benefits {
  gap: 22px !important;
}

.hp-benefit {
  display: grid !important;
  grid-template-columns: 34px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 9px !important;
  min-width: 0 !important;
}

.hp-benefit strong,
.ben-item-heading,
.calc-panel-title h3,
.calc-equipment-name,
.work-btn b,
.fc-title {
  font-weight: 800 !important;
}

.hp-benefit span,
.ben-short,
.work-btn small {
  font-weight: 600 !important;
}

.hp-dot {
  width: 34px !important;
  height: 34px !important;
  margin: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.hp-dot::after {
  content: none !important;
}

.hp-dot::before {
  content: "" !important;
  width: 34px !important;
  height: 34px !important;
  display: block !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
}

.hp-benefit:nth-child(1) .hp-dot::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='%232a9660' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 4l9 4v7c0 6-4 10-9 13-5-3-9-7-9-13V8l9-4z'/%3E%3Cpath d='M12 16l3 3 6-7'/%3E%3C/svg%3E") !important;
}

.hp-benefit:nth-child(2) .hp-dot::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='%232a9660' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 26h21'/%3E%3Cpath d='M11 26V11l5-5 5 5v15'/%3E%3Cpath d='M16 7v19'/%3E%3Cpath d='M9 18h14'/%3E%3Cpath d='M5 26c2-4 4-4 6 0'/%3E%3C/svg%3E") !important;
}

.hp-benefit:nth-child(3) .hp-dot::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='%232a9660' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 24h22'/%3E%3Cpath d='M10 24V10l4-4 4 4v14'/%3E%3Cpath d='M21 15h4l3 4v5h-7'/%3E%3Cpath d='M16 7v17'/%3E%3Ccircle cx='12' cy='26' r='2'/%3E%3Ccircle cx='25' cy='26' r='2'/%3E%3C/svg%3E") !important;
}

.ben-num.ben-num-icon {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  border-radius: 8px !important;
  background: #eef9f3 !important;
  color: #2a9660 !important;
  border: 1px solid rgba(42, 150, 96, .24) !important;
}

.ben-num.ben-num-icon svg {
  width: 25px !important;
  height: 25px !important;
}

.ben-num.ben-num-icon path,
.ben-num.ben-num-icon circle {
  stroke: currentColor !important;
  stroke-width: 1.75 !important;
}

.ben-item,
.ben-button {
  border-radius: 8px !important;
}

.calc-section {
  padding: 28px 0 !important;
  background: #fbfdfd !important;
}

.calc-box--compact {
  width: min(1220px, calc(100% - 44px)) !important;
  padding: 0 !important;
  border: 1px solid rgba(16, 35, 60, .1) !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 16px 42px rgba(16, 35, 60, .08) !important;
  overflow: hidden !important;
}

.calc-box--compact .calc-head {
  max-width: none !important;
  margin: 0 !important;
  padding: 22px 28px 4px !important;
}

.calc-box--compact .calc-head h2 {
  margin: 0 !important;
  font-size: 31px !important;
  line-height: 1.08 !important;
}

.calc-box--compact .calc-head p {
  max-width: 560px !important;
  margin: 7px 0 0 !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
  font-weight: 600 !important;
}

.calc-compact-grid {
  display: grid !important;
  grid-template-columns: 1.02fr 1fr 1.22fr .9fr 1.08fr !important;
  gap: 0 !important;
  align-items: stretch !important;
  padding: 16px 22px 22px !important;
}

.calc-compact-grid > * {
  min-width: 0 !important;
}

.calc-box--compact .calc-panel,
.calc-box--compact .calc-result {
  min-height: 100% !important;
  padding: 0 20px !important;
  border: 0 !important;
  border-left: 1px solid rgba(16, 35, 60, .1) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.calc-box--compact .calc-depth-panel {
  padding-left: 0 !important;
  border-left: 0 !important;
}

.calc-box--compact .calc-panel-title {
  min-height: 34px !important;
  margin: 0 0 10px !important;
  align-items: flex-start !important;
}

.calc-box--compact .calc-panel-title h3 {
  font-size: 13px !important;
  line-height: 1.25 !important;
}

.calc-box--compact .calc-panel-title span,
.calc-box--compact .calc-panel-title small {
  color: #657185 !important;
  font-size: 11px !important;
  font-weight: 650 !important;
}

.calc-depth-field--large {
  width: 100% !important;
  height: auto !important;
  min-height: 50px !important;
  justify-content: center !important;
  gap: 4px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.calc-depth-field--large input {
  width: 72px !important;
  height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 32px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  color: #10233c !important;
  text-align: right !important;
  appearance: textfield !important;
}

.calc-depth-field--large input::-webkit-outer-spin-button,
.calc-depth-field--large input::-webkit-inner-spin-button {
  margin: 0 !important;
  -webkit-appearance: none !important;
}

.calc-depth-field--large span {
  padding: 0 !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 22px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  color: #10233c !important;
}

.calc-box--compact .calc-range-wrap {
  margin-top: 7px !important;
}

.calc-box--compact .calc-range {
  height: 24px !important;
}

.calc-box--compact .calc-range::-webkit-slider-runnable-track {
  height: 6px !important;
  border-radius: 999px !important;
}

.calc-box--compact .calc-range::-webkit-slider-thumb {
  width: 18px !important;
  height: 18px !important;
  margin-top: -6px !important;
  border-width: 3px !important;
}

.calc-box--compact .calc-scale {
  margin-top: 2px !important;
  font-size: 11px !important;
  font-weight: 650 !important;
}

.calc-box--compact .calc-pipe-list,
.calc-box--compact .calc-setup-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 8px !important;
}

.calc-box--compact .calc-pipe-option,
.calc-box--compact .calc-setup-option {
  min-height: 48px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 22px !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 8px 10px 8px 12px !important;
  border: 1px solid rgba(16, 35, 60, .12) !important;
  border-radius: 8px !important;
  background: #fff !important;
  color: #10233c !important;
  box-shadow: none !important;
  transform: none !important;
}

.calc-box--compact .calc-pipe-option.is-selected,
.calc-box--compact .calc-setup-option.is-selected {
  border-color: rgba(42, 150, 96, .42) !important;
  background: #f5fbf7 !important;
}

.calc-box--compact .calc-pipe-option i,
.calc-box--compact .calc-setup-option i {
  display: none !important;
}

.calc-box--compact .calc-pipe-option b,
.calc-box--compact .calc-equipment-name {
  font-size: 12px !important;
  line-height: 1.2 !important;
}

.calc-box--compact .calc-pipe-option em,
.calc-box--compact .calc-equipment-price {
  margin-top: 3px !important;
  color: #657185 !important;
  font-size: 11px !important;
  font-weight: 650 !important;
  font-style: normal !important;
}

.calc-box--compact .calc-pipe-option mark,
.calc-box--compact .calc-setup-option mark {
  position: static !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
  font-size: 10px !important;
  line-height: 1 !important;
}

.calc-box--compact .calc-result-list {
  gap: 7px !important;
}

.calc-box--compact .calc-result-list div {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 8px !important;
  padding: 0 !important;
  border: 0 !important;
}

.calc-box--compact .calc-result-list span {
  color: #657185 !important;
  font-size: 12px !important;
  font-weight: 650 !important;
}

.calc-box--compact .calc-result-list b {
  color: #10233c !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  text-align: right !important;
}

.calc-box--compact .calc-result-total {
  margin: 16px 0 0 !important;
  padding: 13px 0 0 !important;
  border: 0 !important;
  border-top: 1px solid rgba(16, 35, 60, .1) !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.calc-box--compact .calc-result-total span {
  color: #657185 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: none !important;
}

.calc-box--compact .calc-result-total strong {
  margin-top: 5px !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 30px !important;
  line-height: 1 !important;
  color: #10233c !important;
  letter-spacing: 0 !important;
}

.calc-lead-form--compact {
  width: 100% !important;
  margin: 0 !important;
  padding-left: 20px !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
  align-content: start !important;
  border-left: 1px solid rgba(16, 35, 60, .1) !important;
}

.calc-lead-form--compact p {
  grid-column: auto !important;
  max-width: none !important;
  margin: 0 0 2px !important;
  color: #10233c !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
  font-weight: 650 !important;
}

.calc-box--compact .calc-phone-field,
.calc-box--compact .calc-lead-form button {
  min-height: 43px !important;
  height: 43px !important;
  border-radius: 8px !important;
  box-shadow: none !important;
}

.calc-box--compact .calc-phone-field span {
  min-width: 58px !important;
  padding-left: 12px !important;
  font-size: 12px !important;
}

.calc-box--compact .calc-phone-field input {
  height: 43px !important;
  font-size: 12px !important;
}

.calc-box--compact .calc-lead-form button {
  width: 100% !important;
  border: 0 !important;
  background: #16843f !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  white-space: nowrap !important;
}

.ob-cards {
  align-items: stretch !important;
}

.ob-card {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(112px, 46%) !important;
  grid-template-rows: auto minmax(0, 1fr) auto !important;
  column-gap: 12px !important;
  row-gap: 8px !important;
  align-items: start !important;
  padding: 15px 12px 12px 15px !important;
  border-radius: 8px !important;
  min-height: 176px !important;
}

.ob-card-head,
.ob-desc,
.ob-price-row {
  grid-column: 1 !important;
  min-width: 0 !important;
}

.ob-photo {
  grid-column: 2 !important;
  grid-row: 1 / 4 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 142px !important;
  margin: 0 !important;
  border-radius: 8px !important;
  background-size: cover !important;
  background-position: center !important;
}

.ob-photo-placeholder {
  display: none !important;
}

.ob-card h3 {
  font-size: 17px !important;
  line-height: 1.15 !important;
  letter-spacing: 0 !important;
}

.ob-desc {
  align-self: start !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
}

.choice-editorial__grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .78fr) !important;
  gap: 22px !important;
  align-items: stretch !important;
}

.choice-editorial__content {
  display: grid !important;
  gap: 16px !important;
  align-content: start !important;
  grid-column: 1 !important;
  grid-row: 1 !important;
}

.choice-editorial__media {
  display: grid !important;
  gap: 14px !important;
  align-content: start !important;
  grid-column: 2 !important;
  grid-row: 1 !important;
  min-width: 0 !important;
}

.choice-editorial__photo,
.choice-editorial__info-card,
.choice-editorial__phone-field,
.choice-editorial__submit {
  border-radius: 8px !important;
}

.work-shell {
  display: block !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.work-menu {
  counter-reset: work-step !important;
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.work-step {
  position: relative !important;
  counter-increment: work-step !important;
  min-height: 0 !important;
  border: 0 !important;
  list-style: none !important;
}

.work-step::before {
  content: counter(work-step) !important;
  position: absolute !important;
  z-index: 2 !important;
  top: 18px !important;
  left: 18px !important;
  width: 28px !important;
  height: 28px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 50% !important;
  background: #16843f !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}

.work-btn {
  min-height: 156px !important;
  height: 100% !important;
  padding: 58px 18px 18px !important;
  border: 1px solid rgba(16, 35, 60, .12) !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 12px 28px rgba(16, 35, 60, .06) !important;
}

.work-icon,
.work-arrow,
.mobile-detail,
.work-display {
  display: none !important;
}

.work-btn > span:not(.work-icon) {
  display: grid !important;
  gap: 8px !important;
}

.work-btn b {
  color: #10233c !important;
  font-size: 15px !important;
  line-height: 1.25 !important;
}

.work-btn small {
  color: #40506a !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
}

.pw-photo-title,
.pw-photo-lines,
.pw-lb-mark {
  display: none !important;
}

.pw-photo-frame {
  border-radius: 8px !important;
}

.fc-form {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: minmax(210px, 1fr) minmax(150px, 190px) !important;
  gap: 12px !important;
  align-items: center !important;
}

.fc-phone-field,
.fc-submit {
  width: 100% !important;
  min-height: 52px !important;
  height: 52px !important;
  border-radius: 8px !important;
  box-sizing: border-box !important;
}

.fc-phone-field {
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
}

.fc-phone-field span {
  flex: 0 0 66px !important;
  min-width: 66px !important;
  padding-left: 14px !important;
  font-size: 13px !important;
}

.fc-phone-field input {
  min-width: 0 !important;
  height: 52px !important;
  font-size: 14px !important;
}

.fc-submit {
  display: inline-grid !important;
  place-items: center !important;
  padding: 0 18px !important;
  white-space: nowrap !important;
  background: #16843f !important;
  color: #fff !important;
  font-weight: 800 !important;
}

.fc-notes,
.fc-status {
  grid-column: 1 / -1 !important;
}

.hp-phone-box {
  display: flex !important;
  align-items: stretch !important;
  gap: 12px !important;
  flex-wrap: nowrap !important;
  max-width: 560px !important;
}

.hp-phone-box .hp-phone-input {
  flex: 0 1 238px !important;
  min-width: 0 !important;
  border-radius: 8px !important;
}

.hp-phone-box .hp-phone-button {
  flex: 1 1 250px !important;
  min-width: 210px !important;
  border-radius: 8px !important;
  white-space: nowrap !important;
}

@media (max-width: 1120px) {
  .calc-compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    row-gap: 18px !important;
  }

  .calc-box--compact .calc-panel,
  .calc-box--compact .calc-result,
  .calc-lead-form--compact {
    border-left: 0 !important;
    padding: 0 !important;
  }

  .calc-box--compact .calc-result,
  .calc-lead-form--compact {
    border-top: 1px solid rgba(16, 35, 60, .1) !important;
    padding-top: 16px !important;
  }

  .work-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 768px) {
  .calc-box--compact {
    width: min(100% - 24px, 1220px) !important;
  }

  .calc-box--compact .calc-head {
    padding: 20px 18px 2px !important;
  }

  .calc-box--compact .calc-head h2 {
    font-size: 26px !important;
  }

  .calc-compact-grid {
    grid-template-columns: 1fr !important;
    padding: 16px 18px 18px !important;
  }

  .calc-compact-grid > * + * {
    border-top: 1px solid rgba(16, 35, 60, .1) !important;
    padding-top: 16px !important;
  }

  .ob-card {
    grid-template-columns: minmax(0, 1fr) minmax(108px, 42%) !important;
    min-height: 168px !important;
  }

  .ob-photo {
    min-height: 132px !important;
  }

  .choice-editorial__grid {
    grid-template-columns: 1fr !important;
  }

  .choice-editorial__content,
  .choice-editorial__media {
    grid-column: 1 !important;
  }

  .choice-editorial__content {
    grid-row: 1 !important;
  }

  .choice-editorial__media {
    grid-row: 2 !important;
  }

  .work-menu {
    grid-template-columns: 1fr !important;
  }

  .work-btn {
    min-height: 124px !important;
  }

  .fc-form,
  .hp-phone-box {
    grid-template-columns: 1fr !important;
    display: grid !important;
  }

  .hp-phone-box .hp-phone-input,
  .hp-phone-box .hp-phone-button {
    width: 100% !important;
    min-width: 0 !important;
  }
}

@media (max-width: 430px) {
  .ob-card {
    grid-template-columns: minmax(0, 1fr) 104px !important;
    padding: 13px 10px 10px 13px !important;
  }

  .ob-photo {
    min-height: 120px !important;
  }

  .fc-phone-field span,
  .calc-box--compact .calc-phone-field span {
    flex-basis: 58px !important;
    min-width: 58px !important;
  }
}

.hp-benefits {
  display: flex !important;
  grid-template-columns: none !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 18px 30px !important;
  max-width: 640px !important;
  margin: 24px 0 26px !important;
}

.hp-benefit {
  flex: 0 1 178px !important;
  min-height: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 9px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.hp-benefit div {
  min-width: 0 !important;
}

.hp-benefit strong {
  margin: 0 !important;
  color: #10233c !important;
  font-size: 13px !important;
  line-height: 1.15 !important;
}

.hp-benefit span {
  margin-top: 2px !important;
  color: #40506a !important;
  font-size: 12px !important;
  line-height: 1.25 !important;
}

.hp-dot {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.hp-dot::before {
  width: 34px !important;
  height: 34px !important;
  background-color: transparent !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
}

@media (max-width: 768px) {
  .hp-benefits {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .hp-benefit {
    flex-basis: auto !important;
  }
}

/* Current fixes: generated setup images, compact work list, stable gallery */
.ob-card:nth-child(1) .ob-photo { background-image: url("images/ob-letnik-portrait.webp") !important; }
.ob-card:nth-child(2) .ob-photo { background-image: url("images/ob-adapter-portrait.webp") !important; }
.ob-card:nth-child(3) .ob-photo { background-image: url("images/ob-kesson-portrait.webp") !important; }
.ob-card:nth-child(4) .ob-photo { background-image: url("images/ob-conservation-portrait.webp") !important; }

.ob-card {
  grid-template-columns: minmax(0, 1fr) minmax(122px, 42%) !important;
  grid-template-rows: auto auto auto !important;
  min-height: 0 !important;
  align-content: start !important;
}

.ob-photo {
  height: auto !important;
  min-height: 210px !important;
  aspect-ratio: 2 / 3 !important;
  align-self: start !important;
  background-position: center !important;
}

.work-section {
  padding-top: 28px !important;
  padding-bottom: 24px !important;
}

.work-head {
  margin-bottom: 16px !important;
}

.work-shell {
  min-height: 0 !important;
  height: auto !important;
}

.work-menu {
  align-items: stretch !important;
}

.work-step {
  min-height: 0 !important;
}

.work-btn {
  min-height: 128px !important;
}

.pw-section {
  padding-top: 24px !important;
}

.pw-layout,
.pw-gallery {
  width: 100% !important;
}

.pw-viewport {
  width: 100% !important;
  overflow: hidden !important;
}

.pw-track {
  display: flex !important;
  align-items: stretch !important;
  gap: 14px !important;
  transform: translateX(0);
  transition: transform .28s ease !important;
  will-change: transform;
}

.pw-photo {
  flex: 0 0 calc((100% - 42px) / 4) !important;
  width: calc((100% - 42px) / 4) !important;
  min-width: 0 !important;
  max-width: none !important;
}

.pw-photo-frame {
  width: 100% !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 10 !important;
  background-image: var(--pw-image) !important;
  background-size: cover !important;
  background-position: center !important;
}

.pw-controls {
  display: grid !important;
  grid-template-columns: auto minmax(160px, 1fr) auto !important;
  align-items: center !important;
  gap: 14px !important;
  margin-top: 14px !important;
}

.pw-nav-row,
.pw-count,
.pw-arrows {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.pw-count {
  display: contents !important;
}

.pw-counter,
.pw-count [data-pw-counter] {
  display: none !important;
  min-width: 0 !important;
}

.pw-nav,
.pw-arrow {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;
  display: inline-grid !important;
  place-items: center !important;
}

.pw-progress {
  width: 100% !important;
  height: 6px !important;
  overflow: hidden !important;
  border-radius: 999px !important;
  background: #e5eef0 !important;
}

.pw-progress > *,
.pw-progress [data-pw-progress] {
  display: block !important;
  width: 0;
  height: 100% !important;
  border-radius: inherit !important;
  background: #16843f !important;
  transition: width .28s ease !important;
}

.pw-more-link {
  min-height: 40px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 0 16px !important;
  white-space: nowrap !important;
}

.choice-editorial {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

.choice-editorial__panel {
  padding: clamp(22px, 2.8vw, 34px) !important;
  min-height: 0 !important;
}

.choice-editorial__grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr) !important;
  grid-template-rows: auto !important;
  gap: clamp(28px, 4vw, 50px) !important;
  min-height: 0 !important;
  align-items: start !important;
  padding: 12px 0 !important;
}

.choice-editorial__content {
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-rows: auto !important;
  gap: 22px !important;
  align-content: start !important;
  justify-content: start !important;
}

.choice-editorial__media {
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-rows: auto auto !important;
  gap: 18px !important;
  align-content: start !important;
}

.choice-editorial__top,
.choice-editorial__description,
.choice-editorial__info,
.choice-editorial__bottom,
.choice-editorial__price,
.choice-editorial__form-wrap,
.choice-editorial__photo,
.choice-editorial__advantage {
  grid-column: auto !important;
  grid-row: auto !important;
  transform: none !important;
}

.choice-editorial__photo {
  min-height: 0 !important;
  aspect-ratio: 2 / 1 !important;
  overflow: hidden !important;
}

.choice-editorial__photo-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.choice-editorial__photo .choice-editorial__photo-img,
.choice-editorial__photo.is-fallback .choice-editorial__photo-img {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.choice-editorial__photo-fallback {
  display: none !important;
}

.form-status,
.fc-status {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(7, 91, 99, .16);
  border-radius: 8px;
  background: rgba(7, 91, 99, .055);
  color: #10233c;
  font-size: .86rem;
  line-height: 1.35;
  font-weight: 650;
}

.form-status[data-state="success"],
.fc-status[data-state="success"] {
  border-color: rgba(31, 143, 69, .24);
  background: rgba(31, 143, 69, .08);
  color: #0f6631;
}

.form-status[data-state="error"],
.fc-status[data-state="error"] {
  border-color: rgba(176, 59, 59, .24);
  background: rgba(176, 59, 59, .08);
  color: #8b2d2d;
}

.form-status[data-state="loading"],
.fc-status[data-state="loading"] {
  border-color: rgba(7, 91, 99, .22);
  background: rgba(7, 91, 99, .075);
  color: #075b63;
}

button[disabled] {
  cursor: wait !important;
  opacity: .72;
}

.pw-counter,
.pw-lb-counter {
  display: none !important;
}

.pw-lb-top {
  justify-content: flex-end !important;
}

/* Home, contacts and informational pages */
.site-page {
  min-height: 100vh;
  background: #fbfcfb;
  color: #10233c;
}

.home-hero,
.info-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 112px 0 72px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(251,252,251,.98) 0%, rgba(251,252,251,.92) 38%, rgba(251,252,251,.38) 74%, rgba(251,252,251,.12) 100%),
    url("images/hero-water.webp") right center / cover no-repeat;
}

.info-hero {
  min-height: 430px;
  background:
    linear-gradient(90deg, rgba(251,252,251,.98) 0%, rgba(251,252,251,.92) 46%, rgba(251,252,251,.55) 100%),
    url("images/hero-water.webp") right center / cover no-repeat;
}

.home-hero__inner,
.info-hero__inner,
.home-inner {
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
}

.home-hero__inner,
.info-hero__inner {
  max-width: 720px;
  margin-left: max(24px, calc((100vw - 1180px) / 2));
  margin-right: auto;
}

.home-eyebrow,
.home-kicker {
  margin: 0 0 14px;
  color: #16843f;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-hero h1,
.info-hero h1,
.home-section h2,
.info-article h2 {
  margin: 0;
  color: #10233c;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  letter-spacing: 0;
}

.home-hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 6vw, 5.9rem);
  line-height: .96;
}

.info-hero h1 {
  max-width: 760px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: .98;
}
/* Заголовок на странице контактов — буквы немного плотнее */
.contact-page .contact-hero h1 {
  letter-spacing: -0.05em;
}

.home-hero p:not(.home-eyebrow),
.info-hero p:not(.home-eyebrow) {
  max-width: 640px;
  margin: 24px 0 0;
  color: #34475d;
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  line-height: 1.55;
  font-weight: 650;
}

.home-hero a,
.home-about a,
.home-note a,
.home-feature-card a {
  color: #0f7b3d;
  font-weight: 820;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.home-lead-form,
.contact-form {
  width: min(100%, 560px);
  margin-top: 28px;
  padding: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  border: 1px solid rgba(16, 35, 60, .12);
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 18px 44px rgba(15,23,42,.08);
}

.home-lead-form label,
.contact-form label {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid rgba(16, 35, 60, .12);
  border-radius: 12px;
  background: #fff;
}

.home-lead-form span,
.contact-form label span {
  font-weight: 850;
  color: #10233c;
}

.home-lead-form input,
.contact-form input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  color: #10233c;
}

.home-lead-form button,
.contact-form button,
.home-cta-link,
.contact-actions a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  background: #16843f;
  color: #fff;
  font: inherit;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(22,132,63,.18);
}

.home-section {
  padding: clamp(54px, 7vw, 86px) 0;
}

.home-section-head {
  margin-bottom: clamp(24px, 4vw, 38px);
}

.home-section--soft {
  background: #f5faf7;
  border-top: 1px solid rgba(16, 35, 60, .08);
  border-bottom: 1px solid rgba(16, 35, 60, .08);
}

.home-grid {
  display: grid;
  gap: 34px;
}

.home-grid--intro {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  align-items: start;
}

.home-section h2 {
  max-width: 850px;
  font-size: clamp(2.1rem, 4vw, 4.1rem);
  line-height: 1.02;
}

.home-section p,
.info-article p,
.info-article li {
  color: #41536a;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 560;
}

.home-note,
.contact-card,
.contact-form,
.info-article,
.info-sidebar {
  border: 1px solid rgba(16, 35, 60, .10);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(15,23,42,.055);
}

.home-note,
.contact-card,
.info-article,
.info-sidebar {
  padding: clamp(24px, 3vw, 34px);
}

.home-card-grid {
  display: grid;
  gap: 14px;
}

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

.home-info-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(16, 35, 60, .10);
  border-radius: 8px;
  background: #fff;
  color: #10233c;
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(15,23,42,.045);
}

.home-info-card span {
  color: #16843f;
  font-size: .86rem;
  font-weight: 850;
}

.home-info-card h3,
.home-service-card h3,
.contact-card h2,
.contact-form h2,
.info-sidebar h2 {
  margin: 0;
  color: #10233c;
  font-size: 1.22rem;
  line-height: 1.15;
}

.home-info-card p {
  margin: 0;
  font-size: .94rem;
  line-height: 1.55;
}

.home-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.home-feature-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(16, 35, 60, .10);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(15,23,42,.045);
}

.home-feature-card span {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(22, 132, 63, .10);
  color: #16843f;
  font-size: .86rem;
  font-weight: 900;
}

.home-feature-card h3 {
  margin: 0;
  color: #10233c;
  font-size: 1.18rem;
  line-height: 1.2;
}

.home-feature-card p {
  margin: 0;
  color: #42546a;
  font-size: .94rem;
  line-height: 1.58;
}

.home-feature-grid--trust .home-feature-card {
  min-height: 210px;
}

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

.home-step-list li {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  border: 1px solid rgba(16, 35, 60, .10);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(15,23,42,.045);
}

.home-step-list span {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #10233c;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
}

.home-step-list h3 {
  margin: 0 0 8px;
  color: #10233c;
  font-size: 1.16rem;
  line-height: 1.2;
}

.home-step-list p {
  margin: 0;
  color: #42546a;
  font-size: .94rem;
  line-height: 1.58;
}

.home-info-card--accent {
  background: #10233c;
  color: #fff;
}

.home-info-card--accent h3,
.home-info-card--accent p {
  color: #fff;
}

.home-service-grid,
.contact-grid,
.info-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.home-service-card {
  min-height: 280px;
  display: grid;
  grid-template-columns: minmax(180px, .82fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(16, 35, 60, .10);
  border-radius: 8px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 18px 46px rgba(15,23,42,.055);
}

.home-service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.home-link-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}

.home-link-list a,
.info-sidebar a {
  display: block;
  padding: 16px 18px;
  border: 1px solid rgba(16, 35, 60, .10);
  border-radius: 8px;
  background: #fff;
  color: #10233c;
  text-decoration: none;
  font-weight: 780;
}

.info-layout {
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  align-items: start;
}

.info-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 8px;
}

.info-article {
  display: grid;
  gap: 18px;
}

.info-article__lead {
  margin: 0;
  color: #24384f;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.65;
  font-weight: 680;
}

.info-card-list,
.info-benefit-grid,
.info-related {
  display: grid;
  gap: 12px;
}

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

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

.info-card,
.info-benefit,
.info-related a,
.info-cta-panel {
  border: 1px solid rgba(16, 35, 60, .10);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(15, 23, 42, .045);
}

.info-card,
.info-benefit,
.info-related a {
  padding: 18px;
}

.info-card b,
.info-benefit b,
.info-related a b {
  display: block;
  margin-bottom: 8px;
  color: #10233c;
  font-size: 1rem;
  line-height: 1.25;
}

.info-card span,
.info-benefit span,
.info-related a span {
  display: block;
  color: #526479;
  font-size: .94rem;
  line-height: 1.55;
}

.info-related a {
  color: inherit;
  text-decoration: none;
}

.info-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: clamp(22px, 3vw, 30px);
  background: #0b3d43;
  color: #fff;
}

.info-cta-panel h2,
.info-cta-panel p {
  color: #fff;
}

.info-cta-panel p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .76);
}

.info-article ul {
  margin: 0;
  padding-left: 22px;
}

.info-article a:not(.home-cta-link) {
  color: #0f7b3d;
  font-weight: 760;
  text-underline-offset: 3px;
}

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

.info-table div,
.info-steps li {
  padding: 16px;
  border: 1px solid rgba(16, 35, 60, .10);
  border-radius: 8px;
  background: #f8fbfa;
}

.info-table b,
.info-table span {
  display: block;
}

.info-steps {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.contact-actions a {
  min-height: 44px;
  padding: 0 16px;
}

.contact-page {
  background: #f7faf8;
}

.contact-page .contact-hero {
  min-height: 520px;
  background:
    linear-gradient(
      90deg,
      rgba(247, 250, 248, .98) 0%,
      rgba(247, 250, 248, .95) 34%,
      rgba(247, 250, 248, .62) 44%,
      rgba(247, 250, 248, .20) 55%,
      rgba(247, 250, 248, 0) 66%
    ),
  url("images/contact-hero-truck.webp") 72% 72% / cover no-repeat;
}

.contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-hero__phone,
.contact-hero__button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.contact-hero__phone {
  border: 1px solid rgba(16, 35, 60, .12);
  background: rgba(255, 255, 255, .88);
  color: #10233c;
}

.contact-hero__button {
  background: #16843f;
  color: #fff;
  box-shadow: 0 16px 34px rgba(22, 132, 63, .18);
}

.contact-section {
  padding: clamp(54px, 7vw, 86px) 0;
}

.contact-section--lead {
  background: #fff;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .72fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: stretch;
}

.contact-primary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}

.contact-primary h2,
.contact-region h2,
.contact-section--after h2 {
  margin: 0;
  color: #10233c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.contact-primary > p:not(.home-kicker),
.contact-region__copy p {
  max-width: 700px;
  margin: 0;
  color: #42546a;
  font-size: 1.04rem;
  line-height: 1.7;
  font-weight: 580;
}

.contact-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.contact-method {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(16, 35, 60, .10);
  border-radius: 8px;
  background: #f8fbfa;
  color: #10233c;
  text-decoration: none;
}



.contact-method span {
  color: #16843f;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}


.contact-method strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.25;
}

.contact-method small {
  color: #66778a;
  font-size: .86rem;
  line-height: 1.45;
}

.contact-form--styled {
  width: 100%;
  margin: 0;
  align-self: stretch;
  grid-template-columns: 1fr;
  align-content: center;
  padding: clamp(22px, 3vw, 34px);
  border: 0;
  border-radius: 8px;
  background: #0b3d43;
  color: #fff;
  box-shadow: 0 24px 58px rgba(7, 63, 67, .18);
}

.contact-form--styled h2 {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.contact-form--styled p {
  margin: 0;
  color: rgba(255, 255, 255, .76);
  line-height: 1.55;
}

.contact-form--styled label {
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .10);
}

.contact-form--styled label span,
.contact-form--styled input {
  color: #fff;
}

.contact-form--styled input::placeholder {
  color: rgba(255, 255, 255, .58);
}

.contact-form--styled button {
  background: #16843f;
  box-shadow: 0 16px 34px rgba(22, 132, 63, .22);
}

.contact-form--styled .form-status {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .82);
}

.contact-form--styled .form-status[data-state="success"] {
  border-color: rgba(158, 229, 191, .34);
  background: rgba(158, 229, 191, .14);
  color: #d8ffe8;
}

.contact-form--styled .form-status[data-state="error"] {
  border-color: rgba(255, 190, 190, .34);
  background: rgba(255, 190, 190, .12);
  color: #ffe1e1;
}

/* Блок «Работаем по всей Гродненской области» */
.contact-section--region {
  background: #eef1f3;
  color: #10233c;
}

.contact-region {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.contact-region .home-kicker {
  color: #218447;
}

.contact-region h2 {
  color: #10233c;
}

.contact-region__copy p {
  color: #526174;
}

/* Карта Гродненской области */
.contact-region__map {
  width: min(100%, 390px);
  justify-self: end;
  align-self: start;
  margin-top: -25px;
}

.contact-region__map img {
  display: block;
  width: 100%;
  height: auto;

  border-radius: 12px;
  background: #ffffff;

  box-shadow:
    0 18px 45px rgba(16, 35, 60, 0.12);
}

/* Расположение карты на небольших экранах */
@media (max-width: 1180px) {
  .contact-region__map {
    width: min(100%, 480px);
    justify-self: center;
    margin-top: 25px;
  }
}

.contact-section--after {
  background: #f5faf7;
}

.contact-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.contact-step-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(16, 35, 60, .10);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(15, 23, 42, .045);
}

.contact-step-grid span {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(22, 132, 63, .10);
  color: #16843f;
  font-weight: 900;
}

.contact-step-grid h3 {
  margin: 0 0 10px;
  color: #10233c;
  font-size: 1.18rem;
  line-height: 1.2;
}

.contact-step-grid p {
  margin: 0;
  color: #42546a;
  font-size: .96rem;
  line-height: 1.6;
}
/* Заголовок справа от цифры в карточках на странице контактов */
.contact-step-grid article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  column-gap: 16px;
  row-gap: 18px;
  align-items: center;
}

.contact-step-grid article > span {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0;

  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 2px solid #2d8a49;
  border-radius: 10px;
  background: transparent;

  color: #1f7f3f;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;

  box-shadow: none;
}

.contact-step-grid article > h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
}

.contact-step-grid article > p {
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: start;
  margin: 0;
}
.home-section--about {
  background: #fff;
}

.home-section--about .home-about {
  padding: clamp(28px, 4vw, 48px) 0;
  border-top: 1px solid rgba(16, 35, 60, .10);
  border-bottom: 1px solid rgba(16, 35, 60, .10);
}

.home-section--about .home-about > div {
  max-width: 760px;
}

.home-section--about .home-about > div p {
  max-width: 680px;
}

.home-section--about .home-note {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 300px;
  border: 0;
  background:
    linear-gradient(0deg, rgba(7, 55, 61, .88), rgba(7, 55, 61, .70)),
    url("images/case-generated-02.webp") center / cover no-repeat;
  color: #fff;
}

.home-section--about .home-note strong,
.home-section--about .home-note p,
.home-section--about .home-note a {
  color: #fff;
}

.home-section--benefits {
  background: #eef8f4;
}

.home-section--benefits .home-section-head {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1fr);
  gap: 28px;
  align-items: end;
}

.home-section--benefits .home-feature-card {
  border: 0;
  box-shadow: 0 12px 34px rgba(18, 70, 55, .06);
}

.home-section--benefits .home-feature-card:nth-child(1),
.home-section--benefits .home-feature-card:nth-child(4) {
  background: #fff;
}

.home-section--benefits .home-feature-card:nth-child(2),
.home-section--benefits .home-feature-card:nth-child(3) {
  transform: translateY(18px);
  background: #f8fbff;
}

.home-section--benefits .home-feature-card:nth-child(3) span {
  background: rgba(15, 91, 135, .10);
  color: #0f5b87;
}

.home-section--types {
  background: #fff;
}

.home-section--types .home-card-grid--types {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.home-section--types .home-info-card {
  grid-column: span 2;
  min-height: 190px;
}

.home-section--types .home-info-card:nth-child(1),
.home-section--types .home-info-card:nth-child(8) {
  grid-column: span 3;
}

.home-section--types .home-info-card:nth-child(1) {
  background: #f5fbf8;
}

.home-section--types .home-info-card:nth-child(4),
.home-section--types .home-info-card:nth-child(6) {
  background: #f8fbff;
}

.home-section--types .home-info-card--accent {
  background: #0b3d43;
}

.home-section--trust {
  background: #073f43;
  color: #fff;
}

.home-section--trust .home-kicker {
  color: #9ee5bf;
}

.home-section--trust h2 {
  color: #fff;
}

.home-section--trust .home-feature-card {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .08);
  box-shadow: none;
}

.home-section--trust .home-feature-card span {
  background: #fff;
  color: #0b6640;
}

.home-section--trust .home-feature-card h3,
.home-section--trust .home-feature-card p,
.home-section--trust .home-feature-card a {
  color: #fff;
}

.home-section--steps {
  background: #f7fbff;
}

.home-section--steps .home-step-list li {
  position: relative;
  border-left: 4px solid #16843f;
}

.home-section--steps .home-step-list span {
  background: #16843f;
}

.home-section--services {
  background: #fff;
}

.home-section--services .home-service-grid {
  gap: 24px;
}

.home-section--services .home-service-card {
  min-height: 340px;
  grid-template-columns: minmax(220px, .95fr) minmax(0, 1fr);
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.home-section--services .home-service-card:first-child {
  background: #f8fbff;
}

.home-section--services .home-service-card:nth-child(2) {
  background: #f5fbf8;
}

.home-section--services .home-service-card img {
  height: 100%;
  min-height: 300px;
  border-radius: 0;
}

.home-section--services .home-service-card div {
  padding: clamp(24px, 3vw, 34px);
}

.home-section--resources {
  background: #10233c;
  color: #fff;
}

.home-section--resources .home-kicker {
  color: #9ee5bf;
}

.home-section--resources h2 {
  color: #fff;
}

.home-section--resources .home-link-list a {
  position: relative;
  min-height: 112px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.home-section--resources .home-link-list a::after {
  content: "->";
  position: absolute;
  top: 18px;
  right: 18px;
  color: #9ee5bf;
  font-weight: 900;
}

@media (min-width: 981px) {
  .home-section--steps .home-step-list li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 45px;
    left: 100%;
    width: 14px;
    height: 2px;
    background: rgba(22, 132, 63, .34);
  }
}

@media (max-width: 980px) {
  .home-card-grid--types,
  .home-feature-grid,
  .home-step-list,
  .home-link-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-grid--intro,
  .home-service-grid,
  .contact-grid,
  .contact-shell,
  .contact-region,
  .info-layout {
    grid-template-columns: 1fr;
  }

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

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

  .info-sidebar {
    position: static;
  }

  .home-section--benefits .home-section-head,
  .home-section--types .home-card-grid--types {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .info-card-list,
  .info-benefit-grid,
  .info-related,
  .info-cta-panel {
    grid-template-columns: 1fr;
  }

  .home-section--types .home-info-card,
  .home-section--types .home-info-card:nth-child(1),
  .home-section--types .home-info-card:nth-child(8) {
    grid-column: auto;
  }

  .home-section--benefits .home-feature-card:nth-child(2),
  .home-section--benefits .home-feature-card:nth-child(3) {
    transform: none;
  }
}

@media (max-width: 640px) {
  .home-hero,
  .info-hero {
    min-height: 0;
    padding-top: 104px;
  }

  .home-lead-form,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-hero__actions,
  .contact-hero__phone,
  .contact-hero__button {
    width: 100%;
  }

  .contact-method-grid,
  .contact-step-grid,
  .contact-region__list {
    grid-template-columns: 1fr;
  }

  .contact-method,
  .contact-step-grid article {
    min-height: 0;
  }

  .home-card-grid--types,
  .home-feature-grid,
  .home-step-list,
  .home-link-list,
  .home-service-card {
    grid-template-columns: 1fr;
  }

  .home-info-card,
  .home-feature-card,
  .home-step-list li {
    min-height: 0;
  }

  .home-section--benefits .home-section-head,
  .home-section--types .home-card-grid--types {
    grid-template-columns: 1fr;
  }

  .home-section--about .home-note {
    min-height: 240px;
  }

  .home-section--services .home-service-card img {
    min-height: 220px;
  }

  .home-section--services .home-service-card {
    grid-template-columns: 1fr;
  }

  .home-section--resources .home-link-list a {
    min-height: 88px;
  }
}

.choice-editorial__info {
  gap: 14px !important;
}

.choice-editorial__info-card,
.choice-editorial__advantage {
  padding: 18px !important;
}

.choice-editorial__bottom {
  grid-template-columns: 1fr !important;
  gap: 20px !important;
  padding-top: 8px !important;
  margin-top: 0 !important;
  align-items: start !important;
}

.choice-editorial__form-wrap {
  width: min(100%, 560px) !important;
  justify-self: start !important;
}

.choice-editorial__price {
  justify-self: start !important;
}

.choice-editorial__form {
  display: grid !important;
  grid-template-columns: minmax(210px, 1fr) minmax(170px, auto) !important;
  gap: 10px !important;
}

.fc-form {
  grid-template-columns: 1fr !important;
  max-width: 360px !important;
  justify-self: end !important;
}

.fc-submit {
  min-width: 0 !important;
  overflow: visible !important;
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  white-space: nowrap !important;
}

.fc-submit::after {
  content: "" !important;
  position: static !important;
  flex: 0 0 15px !important;
  width: 15px !important;
  height: 15px !important;
  display: inline-block !important;
  border: 0 !important;
  background: currentColor !important;
  transform: none !important;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 8h11M9 4l4 4-4 4' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat !important;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 8h11M9 4l4 4-4 4' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat !important;
}

.fc-section--obustroystvo .fc-form {
  grid-template-columns: 1fr !important;
}

@media (max-width: 980px) {
  .pw-photo {
    flex-basis: calc((100% - 28px) / 3) !important;
    width: calc((100% - 28px) / 3) !important;
  }

  .pw-controls {
    grid-template-columns: 1fr !important;
  }

  .pw-nav-row,
  .pw-arrows {
    justify-content: center !important;
  }

  .pw-more-link {
    justify-self: center !important;
  }
}

@media (max-width: 768px) {
  .ob-card {
    grid-template-columns: minmax(0, 1fr) minmax(112px, 38%) !important;
  }

  .ob-photo {
    min-height: 190px !important;
  }

  .choice-editorial__panel {
    padding: 22px !important;
  }

  .choice-editorial__grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .choice-editorial__form {
    grid-template-columns: 1fr !important;
  }

  .fc-form {
    max-width: none !important;
    justify-self: stretch !important;
  }
}

@media (max-width: 560px) {
  .pw-photo {
    flex-basis: calc((100% - 12px) / 2) !important;
    width: calc((100% - 12px) / 2) !important;
  }

  .pw-track {
    gap: 12px !important;
  }
}

/* Stable responsive shell and shared mobile header */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body,
.site-page,
main,
section,
header,
footer {
  min-width: 0;
}

img,
video,
canvas,
svg {
  max-width: 100%;
}

.site-header__inner,
.site-header__nav,
.site-header__nav-links,
.site-header__actions,
.home-inner,
.info-hero__inner,
.contact-shell,
.contact-region,
.info-layout,
.home-card-grid,
.home-feature-grid,
.home-step-list,
.home-link-list,
.home-service-grid,
.contact-method-grid,
.contact-step-grid {
  min-width: 0 !important;
}

.home-card-grid > *,
.home-feature-grid > *,
.home-step-list > *,
.home-link-list > *,
.home-service-grid > *,
.contact-method-grid > *,
.contact-step-grid > *,
.info-layout > *,
.info-card-list > *,
.info-benefit-grid > *,
.info-related > * {
  min-width: 0 !important;
}

@media (max-width: 768px) {
  .site-header .header-container {
    width: min(100% - 28px, var(--container)) !important;
  }

  .site-header__inner {
    min-height: 62px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 12px !important;
  }

  .site-header__logo {
    grid-column: 1 !important;
    justify-self: start !important;
    max-width: 100% !important;
    margin: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    transform: none !important;
  }

  .site-header__logo [data-header-logo-text]::before {
    content: none !important;
  }

  .site-header__nav,
  .site-header__actions,
  .site-header__phone-wrap,
  .site-header__phone,
  .site-header__mobile-actions,
  .site-header__mobile-contact-row {
    display: none !important;
  }

  .site-header__mobile-toggle {
    grid-column: 2 !important;
    justify-self: end !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 92px !important;
    height: 42px !important;
    padding: 0 13px !important;
    gap: 10px !important;
    border-radius: 8px !important;
    flex: 0 0 auto !important;
  }

  .site-header__mobile-panel {
    top: 70px !important;
    left: 14px !important;
    right: 14px !important;
    width: auto !important;
    max-width: none !important;
  }
}

@media (max-width: 420px) {
  .site-header__logo {
    font-size: 18px !important;
  }

  .site-header__mobile-toggle {
    min-width: 82px !important;
    padding-inline: 11px !important;
  }

  .site-header__mobile-toggle-label {
    font-size: .78rem !important;
  }
}

/* Shared header from the drilling template */
.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1500 !important;
}

@media (min-width: 769px) {
  .site-header__actions {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .site-header__phone-worktime,
  .site-header__online-status,
  .site-header__header-contact,
  .site-header__desktop-instagram {
    display: inline-flex !important;
  }

  .site-header__phone-stack {
    align-items: flex-end !important;
  }

  .site-header__phone-worktime {
    margin-top: 3px !important;
    color: #64748b !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
  }

  .site-header__header-contact .site-header__icon-button,
  .site-header__desktop-instagram {
    width: 38px !important;
    height: 38px !important;
    border: 1px solid rgba(7, 91, 99, .14) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, .72) !important;
    color: var(--text) !important;
  }

  .site-header__header-contact .site-header__icon-button:hover,
  .site-header__desktop-instagram:hover,
  .site-header__header-contact .site-header__icon-button:focus-visible,
  .site-header__desktop-instagram:focus-visible {
    color: var(--green) !important;
    border-color: rgba(31, 143, 69, .28) !important;
    background: rgba(31, 143, 69, .06) !important;
  }

  .site-header__desktop-instagram svg,
  .site-header__header-contact .site-header__icon-button svg {
    width: 20px !important;
    height: 20px !important;
  }
}

@media (max-width: 768px) {
  .site-header__phone-worktime,
  .site-header__online-status,
  .site-header__header-contact,
  .site-header__desktop-instagram {
    display: none !important;
  }
}

.site-header__desktop-floating-contact .site-header__floating-contact::after {
  content: "" !important;
  position: absolute !important;
  right: 28px !important;
  bottom: 40px !important;
  width: 270px !important;
  height: 96px !important;
  pointer-events: auto !important;
}

.site-header__desktop-floating-contact .site-header__contact-popup {
  transition:
    opacity .22s ease .08s,
    transform .22s ease .08s,
    visibility 0s linear .42s !important;
}

.site-header__desktop-floating-contact .site-header__floating-contact:hover .site-header__contact-popup,
.site-header__desktop-floating-contact .site-header__floating-contact:focus-within .site-header__contact-popup,
.site-header__desktop-floating-contact .site-header__contact-popup:hover,
.site-header__desktop-floating-contact .site-header__floating-contact.is-contact-open .site-header__contact-popup {
  transition:
    opacity .18s ease 0s,
    transform .18s ease 0s,
    visibility 0s linear 0s !important;
}

.back-to-top.is-visible {
  animation: backToTopFloat 1.55s ease-in-out infinite !important;
}

@keyframes backToTopFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.015); }
}

/* Home page additions */
.home-benefits-note {
  max-width: 760px;
  margin: 28px auto 0;
  padding: 18px 22px;
  border: 1px solid rgba(31, 143, 69, .18);
  border-radius: 8px;
  background: #fff;
  color: #304255;
  font-size: 17px;
  line-height: 1.6;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .05);
}

.home-benefits-note a,
.home-geo-card a {
  color: var(--green);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.home-type-photo {
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 35, 60, .08);
  border-radius: 8px;
  background: #eaf4f5;
  box-shadow: 0 18px 38px rgba(15, 23, 42, .08);
}

.home-type-photo--wide {
  grid-column: span 2;
}

.home-type-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-section--types .home-info-card,
.home-section--types .home-info-card:nth-child(1),
.home-section--types .home-info-card:nth-child(4),
.home-section--types .home-info-card:nth-child(6),
.home-section--types .home-info-card:nth-child(8),
.home-section--types .home-info-card:nth-child(10) {
  grid-column: auto !important;
  transform: none !important;
}

.home-section--start {
  background: linear-gradient(135deg, #0b2a3d 0%, #0f6f70 100%);
}

.home-start-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 28px;
  align-items: center;
  padding-block: 44px;
  color: #fff;
}

.home-start-card h2,
.home-start-card p,
.home-start-card .home-kicker {
  color: #fff !important;
}

.home-start-card p {
  max-width: 660px;
  opacity: .84;
}

.home-start-form {
  max-width: none !important;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
}

.home-section--geo {
  background: #f4f8f6;
}

.home-geo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}

.home-geo-card {
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(16, 35, 60, .08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 46px rgba(15, 23, 42, .07);
}

.home-geo-card--dark {
  background: #10233c;
  color: #fff;
}

.home-geo-card--dark h2,
.home-geo-card--dark p {
  color: #fff !important;
}

.home-service-card {
  position: relative;
  border: 1px solid rgba(16, 35, 60, .08) !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .08) !important;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease !important;
}

.home-service-card::after {
  content: "Перейти";
  position: absolute;
  right: 22px;
  bottom: 22px;
  color: var(--green);
  font-weight: 850;
}

.home-service-card:hover,
.home-service-card:focus-visible {
  border-color: rgba(31, 143, 69, .35) !important;
  box-shadow: 0 26px 56px rgba(15, 23, 42, .12) !important;
  transform: translateY(-4px);
}

/* Drilling hero icons */
.hp-benefit .hp-dot {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 50px !important;
  height: 50px !important;
  min-width: 50px !important;
  border-radius: 50% !important;
  border-color: rgba(31, 143, 69, .18) !important;
}

.hp-benefit .hp-dot::before {
  content: "" !important;
  width: 28px !important;
  height: 28px !important;
  display: block !important;
  background: var(--green) !important;
  -webkit-mask: var(--hp-icon) center / contain no-repeat;
  mask: var(--hp-icon) center / contain no-repeat;
}

.hp-benefit:nth-child(1) .hp-dot {
  --hp-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 3 26 7v7c0 6.7-3.9 11.8-10 15C9.9 25.8 6 20.7 6 14V7l10-4Z' fill='none' stroke='black' stroke-width='2.4' stroke-linejoin='round'/%3E%3Cpath d='M16 9v14M12 13h6a3 3 0 1 1 0 6h-6M12 19h8' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.hp-benefit:nth-child(2) .hp-dot {
  --hp-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 25c8-1 14-7 17-18 2 10-1 18-8 22' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M7 25c5-7 10-10 17-18' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E");
}

.hp-benefit:nth-child(3) .hp-dot {
  --hp-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 20h4l3-8h10l5 5h2v8h-4M12 25h9M9 25a3 3 0 1 0 0-6 3 3 0 0 0 0 6ZM24 25a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M13 12v8' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* Solution cards like the reference */
.ben-section {
  background: #f7fafb !important;
}

.ben-wrap {
  display: block !important;
  padding: clamp(44px, 6vw, 70px) clamp(28px, 4vw, 54px) !important;
  border: 1px solid rgba(16, 35, 60, .06);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(15, 23, 42, .06);
}

.ben-head {
  max-width: 620px !important;
  margin-bottom: 34px !important;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(16, 35, 60, .12);
}

.ben-list {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
}

.ben-item {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.ben-item + .ben-item {
  border-left: 1px solid rgba(16, 35, 60, .12) !important;
}

.ben-button {
  min-height: 260px !important;
  display: flex !important;
  align-items: flex-start !important;
  padding: 0 clamp(20px, 3vw, 34px) !important;
  border: 0 !important;
  background: transparent !important;
  cursor: default !important;
}

.ben-title {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 20px !important;
}

.ben-num-icon {
  width: 86px !important;
  height: 86px !important;
  border: 1.5px solid rgba(7, 112, 119, .44) !important;
  border-radius: 50% !important;
  background: #f5fbfb !important;
  color: #087378 !important;
}

.ben-num-icon svg {
  display: none !important;
}

.ben-num-icon::before {
  content: "";
  width: 54px;
  height: 54px;
  display: block;
  background: currentColor;
  -webkit-mask: var(--ben-icon) center / contain no-repeat;
  mask: var(--ben-icon) center / contain no-repeat;
}

.ben-item:nth-child(1) .ben-num-icon {
  --ben-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 35h25M17 34V14l11-5v25M11 34l6-9M36 34l-8-12M18 23h10M8 39h32' fill='none' stroke='black' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ben-item:nth-child(2) .ben-num-icon {
  --ben-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 7h16l6 6v28H13zM29 7v8h6' fill='none' stroke='black' stroke-width='2.8' stroke-linejoin='round'/%3E%3Cpath d='M21 20v14M18 24h7a4 4 0 0 1 0 8h-7M18 32h10' fill='none' stroke='black' stroke-width='2.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.ben-item:nth-child(3) .ben-num-icon {
  --ben-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 24 24 10l16 14v17H8zM19 41V29h10v12' fill='none' stroke='black' stroke-width='2.8' stroke-linejoin='round'/%3E%3Cpath d='M34 18v-7h4v10M12 41h30' fill='none' stroke='black' stroke-width='2.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.ben-item:nth-child(4) .ben-num-icon {
  --ben-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 6 38 12v10c0 9-5.5 15-14 19-8.5-4-14-10-14-19V12z' fill='none' stroke='black' stroke-width='2.8' stroke-linejoin='round'/%3E%3Cpath d='M19 25c0-4 5-9 5-9s5 5 5 9a5 5 0 0 1-10 0ZM28 32l3 3 6-7' fill='none' stroke='black' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ben-item-heading {
  color: #10233c !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 24px !important;
  line-height: 1.14 !important;
  font-weight: 700 !important;
}

.ben-short {
  margin-top: 16px !important;
  color: #657386 !important;
  font-size: 17px !important;
  line-height: 1.5 !important;
}

.ben-icon,
.ben-panel {
  display: none !important;
}

/* Calculator redesign */
.calc-box--compact {
  padding: clamp(34px, 4vw, 52px) !important;
  border: 1px solid rgba(16, 35, 60, .08);
  border-radius: 8px;
  background: #fff !important;
  box-shadow: 0 24px 58px rgba(15, 23, 42, .08);
}

.calc-compact-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr) !important;
  grid-template-areas:
    "depth result"
    "pipe result"
    "setup form" !important;
  gap: 14px 48px !important;
  align-items: stretch !important;
}

.calc-depth-panel { grid-area: depth; }
.calc-pipe-panel { grid-area: pipe; }
.calc-setup-panel { grid-area: setup; }
.calc-result--compact { grid-area: result; }
.calc-lead-form--compact { grid-area: form; }

.calc-box--compact .calc-panel {
  position: relative;
  min-height: 128px;
  padding: 28px 28px 24px 86px !important;
  border-radius: 8px !important;
  box-shadow: none !important;
}

.calc-box--compact .calc-panel::before {
  position: absolute;
  left: 22px;
  top: 26px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #07858a;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.calc-depth-panel::before { content: "1"; }
.calc-pipe-panel::before { content: "2"; }
.calc-setup-panel::before { content: "3"; }

.calc-depth-field--large {
  position: absolute !important;
  top: 21px !important;
  right: 28px !important;
  width: 120px !important;
  border: 0 !important;
  background: transparent !important;
}

.calc-depth-field--large input {
  color: #057075 !important;
  font-size: 42px !important;
  font-weight: 850 !important;
}

.calc-box--compact .calc-pipe-list {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.calc-box--compact .calc-pipe-option,
.calc-box--compact .calc-setup-option {
  position: relative !important;
  display: block !important;
  padding-left: 58px !important;
  border-radius: 8px !important;
}

.calc-box--compact .calc-pipe-option::before,
.calc-box--compact .calc-setup-option::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 26px;
  height: 26px;
  background: #758392;
  transform: translateY(-50%);
  -webkit-mask: var(--option-icon) center / contain no-repeat;
  mask: var(--option-icon) center / contain no-repeat;
}

.calc-box--compact .calc-pipe-option {
  --option-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 22 20 9a5 5 0 0 1 7 7L14 29 5 31z' fill='none' stroke='black' stroke-width='2.4' stroke-linejoin='round'/%3E%3Cpath d='M18 11l7 7' fill='none' stroke='black' stroke-width='2.4'/%3E%3C/svg%3E");
}

.calc-box--compact .calc-setup-option {
  --option-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 16 16 7l11 9v11H5zM12 27v-8h8v8' fill='none' stroke='black' stroke-width='2.4' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.calc-box--compact .calc-pipe-option.is-selected::before,
.calc-box--compact .calc-setup-option.is-selected::before {
  background: #07858a;
}

.calc-result--compact {
  position: relative;
  overflow: hidden;
  padding: 34px 28px !important;
  border-radius: 8px !important;
  background:
    linear-gradient(180deg, rgba(245, 251, 252, .94), rgba(237, 249, 249, .92)),
    url("images/case-drilling.webp") right bottom / 42% auto no-repeat !important;
}

.calc-result-list div {
  grid-template-columns: 42px minmax(0, .8fr) minmax(0, 1fr) !important;
}

.calc-result-list div::before {
  content: "";
  width: 26px;
  height: 26px;
  align-self: center;
  background: #748493;
  -webkit-mask: var(--calc-icon) center / contain no-repeat;
  mask: var(--calc-icon) center / contain no-repeat;
}

.calc-result-list div:nth-child(1) { --calc-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 17c2 0 2-2 4-2s2 2 4 2 2-2 4-2 2 2 4 2M7 12V5M12 14V3M17 12V7' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.calc-result-list div:nth-child(2) { --calc-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3v18M8 6h8M8 18h8M10 9h4M10 15h4' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.calc-result-list div:nth-child(3) { --calc-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 16 16 5a3 3 0 0 1 4 4L9 20 4 21l1-5Z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.calc-result-list div:nth-child(4) { --calc-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 12 12 5l8 7v8H4v-8Z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M9 20v-6h6v6' fill='none' stroke='black' stroke-width='2'/%3E%3C/svg%3E"); }

.calc-lead-form--compact {
  align-self: start;
  max-width: none !important;
}

/* Drilling setup cards */
.ob-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
  overflow: hidden;
  border: 1px solid rgba(16, 35, 60, .08);
  border-radius: 8px;
  background: #fff;
}

.ob-card {
  display: flex !important;
  flex-direction: column !important;
  gap: 18px !important;
  min-height: 560px !important;
  padding: 28px 20px !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.ob-card + .ob-card {
  border-left: 1px solid rgba(16, 35, 60, .10) !important;
}

.ob-card-head {
  text-align: center !important;
}

.ob-card-subtitle {
  color: #087378 !important;
  font-weight: 850 !important;
}

.ob-photo {
  width: 100% !important;
  min-height: 220px !important;
  aspect-ratio: 1.24 / 1 !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  background: #edf7f3 !important;
}

.ob-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ob-desc {
  min-height: 96px;
  color: #334155 !important;
  font-size: 17px !important;
  line-height: 1.55 !important;
}

.ob-price-row {
  margin-top: auto !important;
  border-top: 1px solid rgba(16, 35, 60, .10);
  padding-top: 18px;
}

/* Work section like the reference */
.work-shell {
  display: grid !important;
  grid-template-columns: minmax(320px, .55fr) minmax(0, 1fr) !important;
  gap: 0 !important;
  overflow: hidden;
  border: 1px solid rgba(16, 35, 60, .08) !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 22px 54px rgba(15, 23, 42, .08) !important;
}

.work-menu {
  display: block !important;
  border-right: 1px solid rgba(16, 35, 60, .10);
}

.work-step {
  border-bottom: 1px solid rgba(16, 35, 60, .08) !important;
}

.work-step:last-child {
  border-bottom: 0 !important;
}

.work-btn {
  min-height: 112px !important;
  padding: 26px 28px 26px 88px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #fff !important;
}

.work-step::before {
  left: 32px !important;
  top: 34px !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 8px !important;
  background: #edf7f6 !important;
  color: #0a6870 !important;
  font-size: 18px !important;
}

.work-step.is-active .work-btn {
  background: #eef8f8 !important;
  color: #0a6870 !important;
}

.work-step.is-active {
  box-shadow: inset 4px 0 0 #07858a;
}

.work-icon {
  display: none !important;
}

.work-arrow {
  display: block !important;
  margin-left: auto !important;
}

.work-display {
  display: flex !important;
  align-items: center;
  min-height: 560px;
  padding: clamp(28px, 4vw, 44px) !important;
  background: #fff !important;
}

.active-card {
  max-width: none !important;
}

.active-card img {
  width: 100%;
  margin-top: 24px;
  aspect-ratio: 16 / 8;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

@media (max-width: 1120px) {
  .ben-list,
  .ob-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .ben-item + .ben-item,
  .ob-card + .ob-card {
    border-left: 0 !important;
  }

  .ben-item:nth-child(even),
  .ob-card:nth-child(even) {
    border-left: 1px solid rgba(16, 35, 60, .10) !important;
  }
}

@media (max-width: 980px) {
  .home-start-card,
  .home-geo-grid,
  .calc-compact-grid,
  .work-shell {
    grid-template-columns: 1fr !important;
  }

  .calc-compact-grid {
    grid-template-areas:
      "depth"
      "pipe"
      "setup"
      "result"
      "form" !important;
  }

  .work-menu {
    border-right: 0;
  }

  .work-display {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .home-type-photo,
  .home-type-photo--wide {
    grid-column: auto;
    min-height: 190px;
  }

  .ben-list,
  .ob-cards {
    grid-template-columns: 1fr !important;
  }

  .ben-item:nth-child(even),
  .ob-card:nth-child(even) {
    border-left: 0 !important;
  }

  .ben-button {
    min-height: 0 !important;
    padding: 22px 0 !important;
  }

  .calc-box--compact {
    width: min(100% - 24px, var(--container)) !important;
    padding: 22px !important;
  }

  .calc-box--compact .calc-panel {
    padding: 72px 18px 20px !important;
  }

  .calc-depth-field--large {
    left: 70px !important;
    right: auto !important;
  }
}

/* Final drilling-page alignment and safer social hover menus */
.site-header__header-contact::after {
  content: "" !important;
  position: absolute !important;
  left: -24px !important;
  top: 100% !important;
  width: 260px !important;
  height: 42px !important;
  pointer-events: auto !important;
}

.site-header__header-contact .site-header__contact-popup,
.site-header__desktop-floating-contact .site-header__contact-popup {
  transition:
    opacity .24s ease .28s,
    transform .24s ease .28s,
    visibility 0s linear .72s !important;
}

.site-header__header-contact:hover .site-header__contact-popup,
.site-header__header-contact:focus-within .site-header__contact-popup,
.site-header__header-contact .site-header__contact-popup:hover,
.site-header__header-contact .site-header__contact-popup:focus-within,
.site-header__header-contact.is-contact-open .site-header__contact-popup,
.site-header__desktop-floating-contact .site-header__floating-contact:hover .site-header__contact-popup,
.site-header__desktop-floating-contact .site-header__floating-contact:focus-within .site-header__contact-popup,
.site-header__desktop-floating-contact .site-header__contact-popup:hover,
.site-header__desktop-floating-contact .site-header__contact-popup:focus-within,
.site-header__desktop-floating-contact .site-header__floating-contact.is-contact-open .site-header__contact-popup {
  transition:
    opacity .18s ease 0s,
    transform .18s ease 0s,
    visibility 0s linear 0s !important;
}

.site-header__desktop-floating-contact .site-header__floating-contact::after {
  right: 20px !important;
  bottom: 34px !important;
  width: 300px !important;
  height: 118px !important;
}

#hero .hp-benefits {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  width: min(100%, 650px) !important;
  max-width: 650px !important;
  margin: 28px 0 24px !important;
}

#hero .hp-benefit {
  min-height: 132px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 14px !important;
  padding: 22px !important;
  border: 1px solid rgba(16, 35, 60, .08) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, .82) !important;
  box-shadow: 0 14px 32px rgba(15, 23, 42, .06) !important;
}

#hero .hp-benefit strong {
  font-size: 17px !important;
  line-height: 1.2 !important;
}

#hero .hp-benefit span {
  font-size: 15px !important;
  line-height: 1.35 !important;
}

#hero .hp-phone-box {
  width: min(100%, 650px) !important;
  max-width: 650px !important;
  display: grid !important;
  grid-template-columns: minmax(220px, 1fr) minmax(260px, 1fr) !important;
  gap: 18px !important;
  margin-top: 10px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.calc-compact-grid {
  grid-template-columns: minmax(0, 1.14fr) minmax(360px, .86fr) !important;
  grid-template-areas:
    "depth result"
    "pipe result"
    "setup result" !important;
  gap: 14px 48px !important;
}

.calc-result--compact {
  min-height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}

.calc-result-total {
  margin-top: 24px !important;
}

.calc-result--compact .calc-lead-form--compact {
  width: 100% !important;
  max-width: none !important;
  margin: 24px 0 0 !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 12px !important;
}

.calc-result--compact .calc-lead-form--compact p {
  grid-column: auto !important;
  margin: 0 0 4px !important;
  max-width: 100% !important;
}

.calc-result--compact .calc-phone-field,
.calc-result--compact .calc-lead-form--compact button {
  width: 100% !important;
}

.well-faq__header {
  max-width: 780px !important;
  margin-inline: auto !important;
  text-align: center !important;
}

.well-faq__title {
  text-align: center !important;
}

.well-faq__title-line {
  display: inline !important;
}

#hero .hp-benefit-icon {
  display: block !important;
  width: 56px !important;
  height: 56px !important;
  flex: 0 0 56px !important;
  object-fit: contain !important;
  border-radius: 50% !important;
}

#hero .hp-benefits {
  align-items: stretch !important;
  grid-auto-rows: minmax(170px, auto) !important;
}

#hero .hp-benefit {
  width: 100% !important;
  height: auto !important;
  min-height: 170px !important;
  box-sizing: border-box !important;
  overflow: visible !important;
}

#hero .hp-benefit > div {
  display: flex !important;
  min-height: 0 !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  max-width: 100% !important;
  overflow-wrap: anywhere !important;
}

@media (max-width: 980px) {
  .calc-compact-grid {
    grid-template-areas:
      "depth"
      "pipe"
      "setup"
      "result" !important;
  }
}

@media (max-width: 720px) {
  #hero .hp-benefits,
  #hero .hp-phone-box {
    grid-template-columns: 1fr !important;
  }

  #hero .hp-benefit {
    height: auto !important;
    min-height: 148px !important;
  }
}

/* Fixed header on every page */
:root {
  --fixed-header-offset: 70px;
}

html {
  scroll-padding-top: calc(var(--fixed-header-offset) + 14px) !important;
}

body {
  padding-top: var(--fixed-header-offset) !important;
}

.site-header {
  position: fixed !important;
  inset: 0 0 auto 0 !important;
  z-index: 5000 !important;
  width: 100% !important;
  min-height: var(--fixed-header-offset) !important;
}

.site-header__mobile-panel {
  top: var(--fixed-header-offset) !important;
}

@media (max-width: 768px) {
  :root {
    --fixed-header-offset: 67px;
  }
}

/* Reference layout for the drilling solution section */
#benefits.ben-section {
  padding: clamp(28px, 4.5vw, 58px) 0 !important;
  background: #f8fafc !important;
}

#benefits .ben-wrap {
  width: min(var(--container), calc(100% - 48px)) !important;
  max-width: var(--container) !important;
  margin-inline: auto !important;
  padding: clamp(42px, 5.2vw, 70px) clamp(32px, 5vw, 64px) clamp(42px, 5vw, 64px) !important;
  display: block !important;
  border: 1px solid rgba(16, 35, 60, .06) !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 18px 54px rgba(15, 23, 42, .045) !important;
}

#benefits .ben-head {
  position: static !important;
  max-width: 680px !important;
  margin: 0 !important;
  padding: 0 0 30px !important;
  border-bottom: 1px solid rgba(16, 35, 60, .14) !important;
}

#benefits .ben-head h2 {
  max-width: 660px !important;
  margin: 0 !important;
  color: #10233c !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(2.9rem, 5vw, 4.5rem) !important;
  font-weight: 800 !important;
  line-height: .96 !important;
  letter-spacing: 0 !important;
}

#benefits .ben-head p {
  max-width: 620px !important;
  margin: 18px 0 0 !important;
  color: #5f6f83 !important;
  font-size: clamp(1.12rem, 1.8vw, 1.34rem) !important;
  line-height: 1.36 !important;
  font-weight: 650 !important;
}

#benefits .ben-list {
  margin: 28px 0 0 !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
  border: 0 !important;
}

#benefits .ben-item {
  min-height: 300px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  padding: 0 clamp(24px, 3.2vw, 48px) 0 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

#benefits .ben-item + .ben-item {
  padding-left: clamp(24px, 3.2vw, 48px) !important;
  border-left: 1px solid rgba(16, 35, 60, .16) !important;
}

#benefits .ben-num-icon {
  width: 104px !important;
  height: 104px !important;
  min-width: 104px !important;
  margin: 0 0 26px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1.5px solid rgba(7, 112, 119, .48) !important;
  border-radius: 50% !important;
  background: rgba(245, 251, 251, .86) !important;
  color: #087378 !important;
}

#benefits .ben-num-icon::before {
  content: "" !important;
  width: 68px !important;
  height: 68px !important;
  display: block !important;
  background: currentColor !important;
  -webkit-mask: var(--ben-icon) center / contain no-repeat !important;
  mask: var(--ben-icon) center / contain no-repeat !important;
}

#benefits .ben-item:nth-child(1) .ben-num-icon {
  --ben-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 48h36M25 47V15l17-7v39M13 48l10-15M51 48l-11-19M25 25h16M24 56h28'/%3E%3Cpath d='M16 48V33M14 33h8'/%3E%3Cpath d='M19 33v-8'/%3E%3Cpath d='M35 47V31'/%3E%3C/g%3E%3C/svg%3E");
}

#benefits .ben-item:nth-child(2) .ben-num-icon {
  --ben-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 8h24l8 8v40H16zM40 8v10h8'/%3E%3Cpath d='M27 25v19M23 30h9a5 5 0 0 1 0 10h-9M23 40h13'/%3E%3Cpath d='M43 33h9v19h-9zM43 39h9M46 45h.1M50 45h.1M46 49h.1M50 49h.1'/%3E%3C/g%3E%3C/svg%3E");
}

#benefits .ben-item:nth-child(3) .ben-num-icon {
  --ben-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 31 32 12l22 19v23H10zM25 54V39h14v15'/%3E%3Cpath d='M46 23v-9h6v14M8 54h50'/%3E%3Cpath d='M14 45c-4-4-4-10 1-14 5 4 5 10 1 14M50 54v-8'/%3E%3C/g%3E%3C/svg%3E");
}

#benefits .ben-item:nth-child(4) .ben-num-icon {
  --ben-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M32 8 50 16v13c0 12-7 20-18 26-11-6-18-14-18-26V16z'/%3E%3Cpath d='M25 32c0-6 7-13 7-13s7 7 7 13a7 7 0 0 1-14 0Z'/%3E%3Cpath d='m39 43 4 4 9-10'/%3E%3C/g%3E%3C/svg%3E");
}

#benefits .ben-main {
  max-width: 250px !important;
  min-width: 0 !important;
}

#benefits .ben-item-heading {
  display: block !important;
  margin: 0 !important;
  color: #10233c !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(1.45rem, 2.1vw, 1.72rem) !important;
  font-weight: 800 !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
}

#benefits .ben-short {
  display: block !important;
  margin-top: 22px !important;
  color: #657386 !important;
  font-size: clamp(1.05rem, 1.45vw, 1.22rem) !important;
  font-weight: 600 !important;
  line-height: 1.42 !important;
}

@media (max-width: 1120px) {
  #benefits .ben-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    row-gap: 34px !important;
  }

  #benefits .ben-item {
    min-height: 250px !important;
    padding: 0 28px 28px 0 !important;
    border-bottom: 1px solid rgba(16, 35, 60, .12) !important;
  }

  #benefits .ben-item + .ben-item {
    padding-left: 28px !important;
    border-left: 1px solid rgba(16, 35, 60, .12) !important;
  }

  #benefits .ben-item:nth-child(3) {
    border-left: 0 !important;
    padding-left: 0 !important;
  }
}

@media (max-width: 640px) {
  #benefits .ben-wrap {
    width: min(100% - 24px, var(--container)) !important;
    padding: 32px 22px !important;
  }

  #benefits .ben-list {
    grid-template-columns: 1fr !important;
    row-gap: 0 !important;
  }

  #benefits .ben-item,
  #benefits .ben-item + .ben-item,
  #benefits .ben-item:nth-child(3) {
    min-height: 0 !important;
    padding: 26px 0 !important;
    border-left: 0 !important;
    border-bottom: 1px solid rgba(16, 35, 60, .12) !important;
  }

  #benefits .ben-item:last-child {
    border-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  #benefits .ben-num-icon {
    width: 88px !important;
    height: 88px !important;
    min-width: 88px !important;
    margin-bottom: 18px !important;
  }

  #benefits .ben-num-icon::before {
    width: 56px !important;
    height: 56px !important;
  }
}

/* Final typography and calculator icon pass */
.site-header__phone-wrap .site-header__online-status {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.site-header__phone-wrap .site-header__online-dot {
  width: 9px !important;
  height: 9px !important;
  background: #16a34a !important;
}

#price .calc-result-list div::before {
  width: 32px !important;
  height: 32px !important;
  background: #718391 !important;
  opacity: .95 !important;
}

#price .calc-result-list div:nth-child(1) {
  --calc-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22c2.4 0 2.4-2 4.8-2s2.4 2 4.8 2 2.4-2 4.8-2 2.4 2 4.8 2 2.4-2 4.8-2'/%3E%3Cpath d='M7 16V7M13 18V4M19 16V9'/%3E%3Cpath d='M7 7h4M13 4h4M19 9h4'/%3E%3C/g%3E%3C/svg%3E");
}

#price .calc-result-list div:nth-child(2) {
  --calc-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 4v24M10 8h12M10 24h12M12 12h8M12 20h8'/%3E%3Cpath d='M8 28h16M6 28l10-24 10 24'/%3E%3Cpath d='M14 28v-5h4v5'/%3E%3C/g%3E%3C/svg%3E");
}

#price .calc-result-list div:nth-child(3),
#price .calc-box--compact .calc-pipe-option {
  --option-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 23 22 9a4.2 4.2 0 0 1 6 6L14 29 5 31z'/%3E%3Cpath d='m20 11 6 6M7 23l7 6'/%3E%3C/g%3E%3C/svg%3E");
  --calc-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 23 22 9a4.2 4.2 0 0 1 6 6L14 29 5 31z'/%3E%3Cpath d='m20 11 6 6M7 23l7 6'/%3E%3C/g%3E%3C/svg%3E");
}

#price .calc-result-list div:nth-child(4),
#price .calc-box--compact .calc-setup-option {
  --option-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.15' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 16 16 7l11 9v11H5zM12 27v-8h8v8'/%3E%3Cpath d='M6 27h21M9 20h3M20 14h3'/%3E%3C/g%3E%3C/svg%3E");
  --calc-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.15' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 16 16 7l11 9v11H5zM12 27v-8h8v8'/%3E%3Cpath d='M6 27h21M9 20h3M20 14h3'/%3E%3C/g%3E%3C/svg%3E");
}

#price .calc-box--compact .calc-pipe-option::before,
#price .calc-box--compact .calc-setup-option::before {
  width: 30px !important;
  height: 30px !important;
}

#price .calc-box--compact .calc-setup-option:nth-child(1) {
  --option-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.15' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 21V10h12v11'/%3E%3Cpath d='M7 21h18v6H7z'/%3E%3Cpath d='M13 14h6M13 18h6M16 10V6'/%3E%3Cpath d='M11 27h10'/%3E%3C/g%3E%3C/svg%3E");
}

#price .calc-box--compact .calc-setup-option:nth-child(2) {
  --option-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.15' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 20h8l5-8h9'/%3E%3Cpath d='M18 12v-3h7v6h-7z'/%3E%3Cpath d='M9 20v7M22 15v12'/%3E%3Cpath d='M6 27h20'/%3E%3Ccircle cx='13' cy='20' r='2.5'/%3E%3C/g%3E%3C/svg%3E");
}

#price .calc-box--compact .calc-setup-option:nth-child(3) {
  --option-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.05' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 11c0-3 16-3 16 0v12c0 3-16 3-16 0z'/%3E%3Cpath d='M8 11c0 3 16 3 16 0'/%3E%3Cpath d='M12 16h8M12 21h8'/%3E%3Cpath d='M16 14v11'/%3E%3Cpath d='M21 25l4 4M11 25l-4 4'/%3E%3C/g%3E%3C/svg%3E");
}

#price .calc-box--compact .calc-setup-option:nth-child(4) {
  --option-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.15' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 21h10c3 0 5-2 5-5v-3'/%3E%3Cpath d='M19 13h8M23 9v4'/%3E%3Cpath d='M9 21v6M17 21v6M6 27h14'/%3E%3Cpath d='M25 18c2 3 3 4.5 3 6a3 3 0 0 1-6 0c0-1.5 1-3 3-6Z'/%3E%3C/g%3E%3C/svg%3E");
}

#hero .hp-benefit strong {
  font-size: 19px !important;
  line-height: 1.18 !important;
}

#hero .hp-benefit span {
  font-size: 16.5px !important;
  line-height: 1.38 !important;
}

.fc-title,
.home-start-card h2 {
  font-size: clamp(3rem, 5.8vw, 5.35rem) !important;
  line-height: .96 !important;
}

.fc-text,
.home-start-card p,
.fc-note,
.fc-status {
  font-size: 18px !important;
  line-height: 1.58 !important;
}

.fc-submit,
.home-start-form button {
  font-size: 18px !important;
}

.well-faq__title {
  font-size: clamp(3rem, 5.4vw, 5.6rem) !important;
  line-height: .94 !important;
}

@media (max-width: 720px) {
  #hero .hp-benefit strong {
    font-size: 18px !important;
  }

  #hero .hp-benefit span,
  .fc-text,
  .home-start-card p,
  .fc-note,
  .fc-status {
    font-size: 16.5px !important;
  }

  .fc-title,
  .home-start-card h2,
  .well-faq__title {
    font-size: clamp(2.5rem, 11vw, 3.7rem) !important;
  }
}

/* Usable social menus: keep links clickable, JS handles delayed closing */
.site-header__header-contact::after,
.site-header__desktop-floating-contact .site-header__floating-contact::after {
  pointer-events: none !important;
}

.site-header__header-contact,
.site-header__floating-contact {
  z-index: 7000 !important;
}

.site-header__contact-popup {
  z-index: 7100 !important;
  pointer-events: none !important;
}

.site-header__contact-popup a {
  pointer-events: auto !important;
}

.site-header__header-contact .site-header__contact-popup {
  top: calc(100% + 10px) !important;
  right: 0 !important;
}

.site-header__desktop-floating-contact .site-header__contact-popup {
  right: calc(100% + 12px) !important;
  bottom: 0 !important;
  transform: translate(8px, 0) !important;
}

.site-header__header-contact.is-contact-open .site-header__contact-popup,
.site-header__header-contact .site-header__contact-popup.is-open,
.site-header__header-contact:hover .site-header__contact-popup,
.site-header__header-contact:focus-within .site-header__contact-popup,
.site-header__header-contact .site-header__contact-popup:hover,
.site-header__header-contact .site-header__contact-popup:focus-within,
.site-header__desktop-floating-contact .site-header__floating-contact.is-contact-open .site-header__contact-popup,
.site-header__desktop-floating-contact .site-header__contact-popup.is-open,
.site-header__desktop-floating-contact .site-header__floating-contact:hover .site-header__contact-popup,
.site-header__desktop-floating-contact .site-header__floating-contact:focus-within .site-header__contact-popup,
.site-header__desktop-floating-contact .site-header__contact-popup:hover,
.site-header__desktop-floating-contact .site-header__contact-popup:focus-within {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translate(0, 0) !important;
  transition:
    opacity .16s ease 0s,
    transform .16s ease 0s,
    visibility 0s linear 0s !important;
}

/* Info pages: clearer clickable cards */
.info-page .info-sidebar a,
.info-page .info-related a,
.info-page .home-link-list a {
  position: relative !important;
  display: grid !important;
  align-content: start !important;
  min-height: 112px !important;
  padding: 20px 58px 20px 20px !important;
  border: 1px solid rgba(15, 118, 110, .18) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(135deg, rgba(239, 253, 249, .94), rgba(255, 255, 255, .98) 46%),
    #fff !important;
  color: #10233c !important;
  text-decoration: none !important;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .055) !important;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease !important;
}

.info-page .info-sidebar a {
  min-height: 0 !important;
  padding: 14px 48px 14px 16px !important;
  font-weight: 800 !important;
}

.info-page .info-related a::after,
.info-page .home-link-list a::after,
.info-page .info-sidebar a::after {
  content: "→";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #0f7b3d;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(15, 123, 61, .22);
  transition: transform .18s ease, background .18s ease;
}

.info-page .info-sidebar a::after {
  top: 50%;
  right: 14px;
  width: 26px;
  height: 26px;
  font-size: 16px;
  transform: translateY(-50%);
}

.info-page .info-related a b,
.info-page .home-link-list a b {
  color: #10233c !important;
  font-size: clamp(1.02rem, 1.4vw, 1.16rem) !important;
}

.info-page .info-related a span,
.info-page .home-link-list a span {
  color: #4d6176 !important;
}

.info-page .info-sidebar a:hover,
.info-page .info-sidebar a:focus-visible,
.info-page .info-related a:hover,
.info-page .info-related a:focus-visible,
.info-page .home-link-list a:hover,
.info-page .home-link-list a:focus-visible {
  transform: translateY(-4px) !important;
  border-color: rgba(15, 123, 61, .46) !important;
  background:
    linear-gradient(135deg, rgba(229, 250, 244, .98), rgba(255, 255, 255, 1) 42%),
    #fff !important;
  box-shadow: 0 22px 48px rgba(15, 23, 42, .11) !important;
}

.info-page .info-related a:hover::after,
.info-page .info-related a:focus-visible::after,
.info-page .home-link-list a:hover::after,
.info-page .home-link-list a:focus-visible::after {
  transform: translateX(4px);
  background: #0b5f34;
}

.info-page .info-sidebar a:hover::after,
.info-page .info-sidebar a:focus-visible::after {
  transform: translate(4px, -50%);
  background: #0b5f34;
}

/* Examples page */
.works-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(18, 132, 101, .10), transparent 30%),
    linear-gradient(180deg, #f8fbfa 0%, #fff 42%, #f8fbfa 100%);
}

.works-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(248, 251, 250, .98) 0%, rgba(248, 251, 250, .9) 44%, rgba(248, 251, 250, .42) 78%, rgba(248, 251, 250, .18) 100%),
    url("images/work-real-02.webp") right center / cover no-repeat;
}

.works-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 74px;
  background: linear-gradient(178deg, transparent 0 44%, #fff 45% 100%);
  pointer-events: none;
}

.works-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 1180px);
  max-width: 720px;
  margin-left: max(24px, calc((100vw - 1180px) / 2));
  margin-right: auto;
  padding: clamp(64px, 7vw, 96px) 0 clamp(74px, 8vw, 112px);
}

.works-hero h1 {
  margin: 0;
  color: #10233c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 850;
  line-height: .96;
  letter-spacing: 0;
}

.works-hero p:not(.home-eyebrow) {
  max-width: 640px;
  margin: 22px 0 0;
  color: #24384f;
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.56;
  font-weight: 650;
}

.works-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
/* Кнопка «Заказать бурение» на странице примеров работ */
.works-page .works-hero__actions .home-cta-link {
  background: linear-gradient(
    135deg,
    #0f7d39 0%,
    #19984a 52%,
    #0c6e32 100%
  ) !important;

  box-shadow:
    0 12px 28px rgba(15, 125, 57, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.16) !important;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease !important;
}

/* Прыгает только текст внутри кнопки */
.works-page .works-hero__actions .home-cta-link span {
  display: inline-block;
  animation: worksCtaTextBounce 2.6s ease-in-out infinite;
}

/* Небольшое периодическое подпрыгивание */
@keyframes worksCtaTextBounce {
  0%,
  68%,
  100% {
    transform: translateY(0);
  }

  74% {
    transform: translateY(-4px);
  }

  80% {
    transform: translateY(0);
  }

  85% {
    transform: translateY(-2px);
  }

  90% {
    transform: translateY(0);
  }
}

/* Эффект при наведении */
.works-page .works-hero__actions .home-cta-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);

  box-shadow:
    0 16px 34px rgba(15, 125, 57, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
}

/* Отключение анимации для пользователей, запретивших движение */
@media (prefers-reduced-motion: reduce) {
  .works-page .works-hero__actions .home-cta-link span {
    animation: none;
  }
}
/* Кнопка «Посмотреть обустройство» */
.works-page .works-hero__actions .works-ghost-link {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease !important;
}

/* Увеличение при наведении */
.works-page .works-hero__actions .works-ghost-link:hover {
  transform: translateY(-2px) scale(1.035);
  background: #ffffff !important;
  box-shadow: 0 14px 30px rgba(16, 35, 60, 0.18) !important;
}
.works-ghost-link {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(16, 35, 60, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
  color: #10233c;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .08);
}

.works-section {
  padding-block: clamp(56px, 7vw, 96px);
}

.works-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 180px;
  gap: 16px;
}

.works-photo,
.works-video-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 35, 60, .10);
  border-radius: 8px;
  background: #fff;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 48px rgba(15, 23, 42, .08);
  isolation: isolate;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.works-photo {
  grid-column: span 4;
  grid-row: span 2;
}

.works-photo--wide {
  grid-column: span 8;
}

.works-photo--tall {
  grid-row: span 3;
}

.works-photo img,
.works-video-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}

.works-photo::before,
.works-video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 42%, rgba(7, 20, 35, .78) 100%);
  pointer-events: none;
}

.works-photo span,
.works-video-card span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  color: #fff;
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  font-weight: 850;
  line-height: 1.25;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .32);
}

.works-photo:hover,
.works-photo:focus-visible,
.works-video-card:hover,
.works-video-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(15, 123, 61, .34);
  box-shadow: 0 26px 58px rgba(15, 23, 42, .14);
}

.works-photo:hover img,
.works-photo:focus-visible img,
.works-video-card:hover img,
.works-video-card:focus-visible img {
  transform: scale(1.045);
}

.works-section--videos {
  background: #f4f8f7;
}

.works-video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.works-video-card {
  aspect-ratio: 16 / 10;
}

.works-video-card::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent 0 37%, #fff 38% 63%, transparent 64%),
    #0f7b3d;
  clip-path: polygon(0 0, 100% 50%, 0 100%, 0 0);
  transform: scale(.58);
  box-shadow: 0 14px 32px rgba(15, 123, 61, .32);
}

.works-section--cta {
  padding-block: clamp(52px, 7vw, 86px);
  background: linear-gradient(135deg, #0b2a3d 0%, #0f6f70 100%);
  color: #fff;
}

.works-section--cta .home-start-card h2,
.works-section--cta .home-start-card p,
.works-section--cta .home-start-card .home-kicker {
  color: #fff !important;
}

.works-section--cta .home-start-card p {
  opacity: .86;
}

/* Форма в блоке «Хотите такой же результат» — в две строки */
.works-section--cta .home-start-form {
  width: 100% !important;
  max-width: 520px !important;

  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 12px !important;

  padding: 14px !important;

  background: rgba(255, 255, 255, .12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
}

/* Поле телефона на всю ширину */
.works-section--cta .home-start-form label {
  width: 100% !important;
  min-width: 0 !important;

  gap: 0 !important;
  padding: 0 16px !important;
}

/* Код +375 и вертикальная линия от верхнего до нижнего края */
.works-section--cta .home-start-form label > span {
  align-self: stretch !important;
  display: flex !important;
  align-items: center !important;
  flex-shrink: 0 !important;

  padding-right: 16px !important;
  margin-right: 16px !important;

  border-right: 1px solid rgba(16, 35, 60, 0.22) !important;
}

/* Кнопка под полем телефона */
.works-section--cta .home-start-form button {
  width: 100% !important;
  min-height: 58px !important;
}

@media (max-width: 980px) {
  .works-gallery {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 170px;
  }

  .works-photo,
  .works-photo--wide,
  .works-photo--tall {
    grid-column: span 3;
    grid-row: span 2;
  }

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

@media (max-width: 640px) {
  .works-hero {
    min-height: 0;
    background:
      linear-gradient(180deg, rgba(248, 251, 250, .98) 0%, rgba(248, 251, 250, .9) 56%, rgba(248, 251, 250, .72) 100%),
      url("images/work-real-02.webp") center / cover no-repeat;
  }

  .works-hero__inner {
    width: min(100% - 28px, 1180px);
    margin-inline: auto;
    padding-block: 58px 86px;
  }

  .works-hero h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .works-hero__actions {
    display: grid;
  }

  .works-gallery,
  .works-video-grid {
    grid-template-columns: 1fr;
  }

  .works-gallery {
    grid-auto-rows: auto;
  }

  .works-photo,
  .works-photo--wide,
  .works-photo--tall {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .works-video-card {
    aspect-ratio: 16 / 10;
  }

  .info-page .info-related a,
  .info-page .home-link-list a {
    min-height: 0 !important;
    padding-right: 54px !important;
  }
}

@media (min-width: 769px) and (max-width: 1120px) {
  .site-header__inner {
    gap: 16px !important;
  }

  .site-header__nav-links {
    gap: 18px !important;
  }

  .site-header__nav-links a {
    font-size: 12.5px !important;
  }

  .site-header__phone {
    font-size: 15.5px !important;
  }

  .site-header__phone-worktime {
    font-size: 10px !important;
  }

  .site-header__header-contact .site-header__icon-button,
  .site-header__desktop-instagram {
    width: 34px !important;
    height: 34px !important;
  }
}

/* Global responsive safety layer: centered shells, no text overlap */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

:root {
  --responsive-shell: min(1220px, calc(100% - clamp(24px, 5vw, 64px)));
}

.header-container,
.site-inner,
.home-inner,
.home-hero__inner,
.info-hero__inner,
.works-hero__inner,
.ob-inner,
.ob-final__box,
.well-faq__container,
.org-footer__inner {
  width: var(--responsive-shell) !important;
  max-width: var(--responsive-shell) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.site-page h1,
.site-page h2,
.site-page h3,
.hp-title,
.ben-head h2,
.calc-head h2,
.ob-title,
.choice-editorial__title,
.well-faq__title,
.works-hero h1 {
  overflow-wrap: break-word;
}

.home-lead-form button,
.contact-form button,
.calc-lead-form button,
.choice-editorial__submit,
.home-cta-link,
.works-ghost-link,
.fc-submit,
.ob-btn,
.ob-phone-button {
  white-space: normal !important;
  text-align: center !important;
  line-height: 1.16 !important;
}

.site-header {
  isolation: isolate;
}

.site-header__inner {
  width: var(--responsive-shell) !important;
  max-width: var(--responsive-shell) !important;
  min-width: 0 !important;
  margin-inline: auto !important;
}

.site-header__logo,
.site-header__nav,
.site-header__nav-links,
.site-header__actions,
.site-header__phone-wrap,
.site-header__phone-stack {
  min-width: 0 !important;
}

.site-header__nav-links {
  flex-wrap: wrap !important;
  row-gap: 6px !important;
  column-gap: clamp(12px, 1.7vw, 28px) !important;
}

.site-header__nav-links a {
  white-space: nowrap !important;
  line-height: 1.12 !important;
}

.site-header__phone {
  white-space: nowrap !important;
}

@media (min-width: 1061px) {
  .site-header__inner {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    align-items: center !important;
  }

  .site-header__logo {
    grid-column: 1 !important;
  }

  .site-header__nav {
    grid-column: 2 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: clamp(10px, 1.6vw, 22px) !important;
    width: auto !important;
    max-width: 100% !important;
    justify-self: stretch !important;
    overflow: hidden !important;
  }

  .site-header__nav-links {
    grid-column: 1 !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .site-header__inner > .site-header__actions,
  .site-header__nav > .site-header__actions {
    grid-column: 3 !important;
    width: auto !important;
    max-width: 100% !important;
    justify-self: end !important;
    margin-left: 0 !important;
  }

  .site-header__nav > .site-header__actions {
    grid-column: 2 !important;
    position: relative !important;
  }
}

@media (min-width: 1061px) and (max-width: 1240px) {
  .site-header__inner {
    gap: 14px !important;
  }

  .site-header__logo {
    font-size: 20px !important;
  }

  .site-header__nav-links {
    column-gap: 14px !important;
  }

  .site-header__nav-links a {
    font-size: 12.25px !important;
  }

  .site-header__actions {
    gap: 8px !important;
  }

  .site-header__phone {
    font-size: 14.5px !important;
  }

  .site-header__phone-worktime {
    font-size: 9.5px !important;
  }
}

@media (max-width: 1060px) {
  :root {
    --fixed-header-offset: 67px;
  }

  .site-header .header-container,
  .site-header__inner {
    width: min(100% - 28px, 1220px) !important;
    max-width: min(100% - 28px, 1220px) !important;
  }

  .site-header__inner {
    min-height: var(--fixed-header-offset) !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .site-header__logo {
    max-width: 100% !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .site-header__nav,
  .site-header__actions,
  .site-header__phone-wrap,
  .site-header__phone,
  .site-header__mobile-actions,
  .site-header__mobile-contact-row {
    display: none !important;
  }

  .site-header__mobile-toggle {
    display: inline-flex !important;
    justify-self: end !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 92px !important;
    height: 42px !important;
    padding: 0 13px !important;
    gap: 10px !important;
    flex: 0 0 auto !important;
  }

  .site-header__mobile-panel {
    top: var(--fixed-header-offset) !important;
    left: 14px !important;
    right: 14px !important;
    width: auto !important;
    max-width: none !important;
  }
}

@media (max-width: 1180px) {
  .hp-hero,
  .ob-hero__grid,
  .water-scenarios,
  .choice-editorial__grid,
  .ob-scope--split,
  .contact-shell,
  .contact-region,
  .home-grid,
  .home-section--benefits .home-section-head,
  .home-section--types .home-card-grid,
  .home-section--services .home-service-grid,
  .calc-compact-grid {
    grid-template-columns: 1fr !important;
  }

  .calc-compact-grid {
    grid-template-areas:
      "depth"
      "pipe"
      "setup"
      "result"
      "form" !important;
  }

  .hp-copy,
  .ob-hero__content,
  .water-scenarios__intro,
  .choice-editorial__content,
  .choice-editorial__media,
  .contact-hero__inner,
  .works-hero__inner,
  .home-hero__inner,
  .info-hero__inner {
    max-width: 760px !important;
  }

  .hp-hero,
  .ob-hero__grid,
  .water-scenarios,
  .choice-editorial__grid,
  .ob-scope--split,
  .contact-shell,
  .contact-region {
    justify-items: stretch !important;
    align-items: start !important;
  }

  .hp-benefits,
  .home-feature-grid,
  .home-card-grid,
  .home-step-list,
  .home-service-grid,
  .contact-method-grid,
  .contact-step-grid,
  .info-benefit-grid,
  .info-related,
  .works-video-grid,
  .water-scenarios__variants,
  .ob-cards,
  .ben-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .works-gallery {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }

  .works-photo,
  .works-photo--wide,
  .works-photo--tall {
    grid-column: span 3 !important;
    grid-row: span 2 !important;
  }
}

@media (max-width: 860px) {
  :root {
    --responsive-shell: min(100% - 28px, 1220px);
  }

  .home-hero,
  .info-hero,
  .works-hero,
  .hp-hero-section,
  .ob-hero {
    min-height: 0 !important;
  }

  .home-hero__inner,
  .info-hero__inner,
  .works-hero__inner {
    margin-inline: auto !important;
    padding-block: clamp(48px, 10vw, 76px) !important;
  }

  .hp-hero {
    min-height: 0 !important;
    padding-block: clamp(42px, 9vw, 72px) !important;
  }

  .home-lead-form,
  .contact-form,
  .home-start-form,
  .calc-lead-form,
  .calc-lead-form--compact,
  .choice-editorial__form,
  .fc-form {
    width: 100% !important;
    max-width: none !important;
    grid-template-columns: 1fr !important;
  }

  .choice-editorial__bottom,
  .choice-editorial__form-wrap,
  .calc-result--compact,
  .calc-result-list div,
  .fc-actions,
  .contact-hero__actions,
  .works-hero__actions {
    grid-template-columns: 1fr !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .choice-editorial__phone-field,
  .calc-phone-field,
  .home-lead-form label,
  .contact-form label {
    width: 100% !important;
    min-width: 0 !important;
  }
}

@media (max-width: 720px) {
  .hp-benefits,
  .home-feature-grid,
  .home-card-grid,
  .home-step-list,
  .home-service-grid,
  .home-geo-grid,
  .contact-method-grid,
  .contact-step-grid,
  .contact-region__list,
  .info-card-list,
  .info-benefit-grid,
  .info-related,
  .water-scenarios__variants,
  .ob-cards,
  .ben-list,
  .works-gallery,
  .works-video-grid {
    grid-template-columns: 1fr !important;
  }

  .works-photo,
  .works-photo--wide,
  .works-photo--tall {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .info-layout {
    grid-template-columns: 1fr !important;
  }

  .info-sidebar {
    position: static !important;
  }

  .home-info-card,
  .home-feature-card,
  .info-card,
  .info-benefit,
  .info-related a,
  .contact-method-card,
  .contact-step-grid article,
  .works-photo,
  .works-video-card,
  .ben-item,
  .ob-card {
    min-width: 0 !important;
    max-width: 100% !important;
  }
}

@media (max-width: 520px) {
  :root {
    --responsive-shell: min(100% - 24px, 1220px);
    --fixed-header-offset: 64px;
  }

  .site-header .header-container,
  .site-header__inner {
    width: min(100% - 24px, 1220px) !important;
    max-width: min(100% - 24px, 1220px) !important;
  }

  .site-header__logo {
    font-size: 18px !important;
  }

  .site-header__mobile-toggle {
    min-width: 80px !important;
    height: 40px !important;
    padding-inline: 10px !important;
  }

  .home-lead-form,
  .contact-form,
  .home-start-form,
  .calc-lead-form,
  .choice-editorial__form {
    padding: 10px !important;
    border-radius: 12px !important;
  }

  .home-lead-form label,
  .contact-form label,
  .choice-editorial__phone-field,
  .calc-phone-field {
    min-height: 50px !important;
    padding-inline: 12px !important;
  }

  .home-lead-form button,
  .contact-form button,
  .calc-lead-form button,
  .choice-editorial__submit,
  .home-cta-link,
  .works-ghost-link {
    width: 100% !important;
    min-height: 50px !important;
    padding-inline: 14px !important;
  }
}

/* Choice section sizing fix: keep photo from squeezing the text column */
.choice-editorial .choice-editorial__grid {
  grid-template-columns: minmax(360px, .95fr) minmax(340px, 1fr) !important;
  gap: clamp(24px, 3.4vw, 42px) !important;
  align-items: start !important;
}

.choice-editorial .choice-editorial__content,
.choice-editorial .choice-editorial__media {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
}

.choice-editorial .choice-editorial__media {
  justify-self: stretch !important;
}

.choice-editorial .choice-editorial__photo {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 9 !important;
}

.choice-editorial .choice-editorial__photo-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

@media (max-width: 980px) {
  .choice-editorial .choice-editorial__grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .choice-editorial .choice-editorial__content,
  .choice-editorial .choice-editorial__media {
    grid-column: 1 / -1 !important;
    max-width: 100% !important;
  }

  .choice-editorial .choice-editorial__media {
    justify-self: stretch !important;
  }

  .choice-editorial .choice-editorial__photo {
    aspect-ratio: 16 / 8.5 !important;
  }
}

@media (max-width: 560px) {
  .choice-editorial .choice-editorial__photo {
    aspect-ratio: 4 / 3 !important;
  }
}

/* Burger menu reliability: the toggle appears up to 1060px, so the panel must open in the same range. */
@media (max-width: 1060px) {
  .site-header__mobile-panel {
    position: fixed !important;
    top: var(--fixed-header-offset) !important;
    left: 14px !important;
    right: 14px !important;
    z-index: 4999 !important;
    display: grid !important;
    grid-template-rows: 0fr !important;
    width: auto !important;
    max-width: none !important;
    max-height: calc(100svh - var(--fixed-header-offset) - 18px) !important;
    overflow: hidden !important;
    border-radius: 16px !important;
    background: #fff !important;
    box-shadow: 0 22px 54px rgba(15, 23, 42, .16) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-8px) !important;
    transition: grid-template-rows .24s ease, opacity .2s ease, transform .2s ease, visibility 0s linear .24s !important;
  }

  .site-header__mobile-panel.is-open {
    grid-template-rows: 1fr !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    overscroll-behavior: contain !important;
    -webkit-overflow-scrolling: touch !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
    transition: grid-template-rows .24s ease, opacity .2s ease, transform .2s ease, visibility 0s linear 0s !important;
  }

  .site-header__mobile-panel-inner {
    min-height: 0 !important;
    overflow: visible !important;
    padding: 6px 0 !important;
    background: #fff !important;
  }

  .site-header__mobile-panel a {
    display: block !important;
    padding: 15px 20px !important;
    border-bottom: 1px solid rgba(7, 91, 99, .08) !important;
    background: #fff !important;
    color: #10233c !important;
    font-size: clamp(1rem, 2.2vw, 1.12rem) !important;
    font-weight: 720 !important;
    line-height: 1.25 !important;
    text-decoration: none !important;
  }

  .site-header__mobile-panel a:last-child {
    border-bottom: 0 !important;
  }

  body.site-header-mobile-menu-open {
    overflow: hidden !important;
    touch-action: none !important;
  }
}
/* ==================================================
   Логотипы в шапке и подвале
   ================================================== */

.site-header__logo {
  gap: 12px;
}

.site-header__logo-icon {
  display: block;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  object-fit: contain;
  transform: translateX(-4px);
}

.org-footer__brand-row {
  display: flex !important;
  align-items: flex-end !important;
  gap: 14px !important;
}

.org-footer__logo-img {
  display: block !important;
  width: 64px !important;
  height: 64px !important;
  max-width: 64px !important;
  max-height: 64px !important;
  flex: 0 0 58px !important;
  object-fit: contain !important;
  transform: translateY(-6px) !important;
}

.org-footer__brand-row h2 {
  margin: 0 !important;
}
/* =========================================
   Страница «Контакты»: исправление шапки
   и цвета подвала
   ========================================= */

/* Убираем старый нарисованный логотип перед новой иконкой */
.contact-page .site-header__logo::before {
  content: none !important;
  display: none !important;
}

/* Делаем фон подвала таким же, как на странице «Бурение» */
.contact-page .org-footer {
  --org-footer-dark: #071619;
  --org-footer-dark-2: #0d2227;

  background:
    radial-gradient(
      circle at 14% 18%,
      rgba(111, 208, 204, 0.11),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      var(--org-footer-dark),
      var(--org-footer-dark-2)
    ) !important;
}
/* Заголовок региона в две строки и сверху слева */
.contact-region__copy {
  align-self: start;
  justify-self: start;
  width: 100%;

  position: relative;
  left: -55px;
  top: -33px;
}
@media (max-width: 1180px) {
  .contact-region__copy {
    left: 0;
    top: 0;
  }
}

.contact-region h2 {
  width: max-content;
  max-width: none;
  margin-top: 6px;
  margin-bottom: 16px;
  line-height: 0.95;
  white-space: nowrap;
}
/* Прозрачная карта на странице контактов */
.contact-section--region .contact-region__map {
  background: transparent !important;
  transform: translate(35px, 0px) !important;
}

.contact-section--region .contact-region__map img {
  display: block !important;
  width: 100% !important;
  height: auto !important;

  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;

  object-fit: contain !important;
}
/* Список городов под текстом в блоке региона */
.contact-section--region .contact-region__cities {
  width: 100%;
  max-width: 760px;
  margin-top: 55px;
}

.contact-section--region .contact-region__cities h3 {
  margin: 0 0 20px;

  color: #10233c;
  font-size: 1.25rem;
  font-weight: 850;
  line-height: 1.25;
}

.contact-section--region .contact-region__cities ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 34px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.contact-section--region .contact-region__cities li {
  position: relative;

  padding-left: 19px;

  color: #42546a;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.contact-section--region .contact-region__cities li::before {
  content: "";

  position: absolute;
  top: 50%;
  left: 0;

  width: 8px;
  height: 8px;

  border-radius: 50%;
  background: #16843f;

  transform: translateY(-50%);
}

/* Планшет */
@media (max-width: 900px) {
  .contact-section--region .contact-region__cities ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Телефон */
@media (max-width: 560px) {
  .contact-section--region .contact-region__cities {
    margin-top: 35px;
  }

  .contact-section--region .contact-region__cities ul {
    grid-template-columns: 1fr;
    gap: 11px;
  }
}
/* Компактный блок «Работаем по всей Гродненской области» */
.contact-section.contact-section--region {
  min-height: auto !important;
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.contact-section--region .contact-region {
  grid-template-columns:
    minmax(0, 1fr)
    minmax(370px, 470px) !important;

  gap: 46px !important;
  align-items: center !important;

  margin: 0 auto !important;
}

/* Левая часть */
.contact-section--region .contact-region__copy {
  position: static !important;

  width: 100% !important;
  left: auto !important;
  top: auto !important;

  align-self: center !important;
}

/* Маленькая надпись «Регион работ» */
.contact-section--region .contact-region .home-kicker {
  margin: 0 0 10px !important;
  font-size: 14px !important;
}

/* Основной заголовок */
.contact-section--region .contact-region h2 {
  width: auto !important;
  max-width: 780px !important;

  margin: 0 0 16px !important;

  font-size: clamp(42px, 3.5vw, 58px) !important;
  line-height: 0.98 !important;
  white-space: normal !important;
}

/* Описание */
.contact-section--region .contact-region__copy > p {
  max-width: 700px !important;
  margin: 0 !important;

  font-size: 15px !important;
  line-height: 1.52 !important;
}

/* Список городов */
.contact-section--region .contact-region__cities {
  width: 100% !important;
  max-width: 720px !important;

  margin-top: 30px !important;
}

.contact-section--region .contact-region__cities h3 {
  margin: 0 0 14px !important;

  font-size: 18px !important;
  line-height: 1.2 !important;
}

.contact-section--region .contact-region__cities ul {
  gap: 10px 30px !important;
}

.contact-section--region .contact-region__cities li {
  padding-left: 17px !important;

  font-size: 15px !important;
  line-height: 1.3 !important;
}

.contact-section--region .contact-region__cities li::before {
  width: 7px !important;
  height: 7px !important;
}

/* Карта */
.contact-section--region .contact-region__map {
  width: 100% !important;
  max-width: 500px !important;

  margin: 0 !important;
  justify-self: end !important;

  transform: none !important;
}

.contact-section--region .contact-region__map img {
  width: 100% !important;
  height: auto !important;
}

/* Планшет */
@media (max-width: 1180px) {
  .contact-section--region .contact-region {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .contact-section--region .contact-region__map {
    max-width: 450px !important;
    justify-self: center !important;
  }
}

/* Телефон */
@media (max-width: 560px) {
  .contact-section.contact-section--region {
    padding-top: 28px !important;
    padding-bottom: 32px !important;
  }

  .contact-section--region .contact-region h2 {
    font-size: 36px !important;
  }

  .contact-section--region .contact-region__cities {
    margin-top: 24px !important;
  }

  .contact-section--region .contact-region__cities ul {
    grid-template-columns: 1fr !important;
    gap: 9px !important;
  }

  .contact-section--region .contact-region__map {
    max-width: 290px !important;
  }
}
/* Убираем лишнее пустое место в блоке «Как быстро начнем» */
html body .contact-section.contact-section--after {
  padding-top: 38px !important;
  padding-bottom: 55px !important;
  min-height: auto !important;
}
/* Компактный блок «Расскажем, какой вариант подойдет вашему участку» */

.contact-section.contact-section--lead {
  padding-top: 34px !important;
  padding-bottom: 50px !important;
  min-height: auto !important;
}

.contact-section--lead .contact-shell {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px) !important;
  gap: 30px !important;
  align-items: center !important;
}

/* Левая часть */
.contact-section--lead .contact-primary {
  gap: 14px !important;
}

.contact-section--lead .contact-primary .home-kicker {
  font-size: 0.72rem !important;
}

.contact-section--lead .contact-primary h2 {
  font-size: clamp(2.4rem, 3.5vw, 3.5rem) !important;
  line-height: 1.02 !important;
}

.contact-section--lead .contact-primary > p:not(.home-kicker) {
  font-size: 0.92rem !important;
  line-height: 1.55 !important;
}
/* Поднимаем верхний текст слева, не меняя размер блока */
.contact-section--lead .contact-primary > .home-kicker,
.contact-section--lead .contact-primary > h2,
.contact-section--lead .contact-primary > p:not(.home-kicker) {
  transform: translateY(-15px) !important;
}
/* Три нижние карточки */
.contact-section--lead .contact-method-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
  margin-top: 12px !important;
}

.contact-section--lead .contact-method {
  min-height: 175px !important;
  padding: 22px 20px !important;
  gap: 12px !important;
}

/* Верхняя надпись: ТЕЛЕФОН / WHATSAPP / VIBER */
.contact-section--lead .contact-method span {
  font-size: 0.78rem !important;
  line-height: 1.2 !important;
}

/* Главный текст внутри карточки */
.contact-section--lead .contact-method strong {
  font-size: 1.08rem !important;
  line-height: 1.3 !important;
}

/* Нижний текст внутри карточки */
.contact-section--lead .contact-method small {
  font-size: 0.9rem !important;
  line-height: 1.45 !important;
}

/* Правая зелёная форма */
.contact-section--lead .contact-form.contact-form--styled {
  width: 100% !important;
  max-width: 560px !important;
  min-height: 455px !important;

  padding: 38px 34px !important;
  gap: 17px !important;

  align-self: center !important;
  justify-self: end !important;
  align-content: center !important;
   background: #0b3d2e !important;
}

/* Заголовок «Заявка на звонок» */
.contact-section--lead .contact-form--styled h2 {
  margin: 0 !important;

  font-size: clamp(2.5rem, 3.2vw, 3.15rem) !important;
  line-height: 1 !important;
}

/* Текст под заголовком */
.contact-section--lead .contact-form--styled p {
  margin: 0 !important;

  max-width: 460px !important;

  font-size: 1.03rem !important;
  line-height: 1.5 !important;
}

/* Поле с номером телефона */
.contact-section--lead .contact-form--styled label {
  width: 100% !important;
  min-height: 62px !important;

  padding: 0 20px !important;
  gap: 14px !important;

  border-radius: 14px !important;
}


/* Код +375 и разделительная полоска */
/* Код +375 */
.contact-section--lead .contact-form--styled label span {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  align-self: stretch !important;

  padding-right: 18px !important;

  font-size: 1.05rem !important;
  font-weight: 850 !important;
}

/* Разделительная полоска на всю высоту поля */
.contact-section--lead .contact-form--styled label span::after {
  content: "" !important;

  position: absolute !important;
  top: -1px !important;
  right: 0 !important;
  bottom: -1px !important;

  width: 1px !important;
  height: auto !important;

  background: rgba(255, 255, 255, 0.3) !important;
}

/* Текст внутри поля */
.contact-section--lead .contact-form--styled input {
  font-size: 1.02rem !important;
}

/* Зелёная кнопка */
.contact-section--lead .contact-form--styled button {
  width: 100% !important;
  min-height: 62px !important;

  padding: 0 22px !important;

  border-radius: 14px !important;

  font-size: 1.05rem !important;
  font-weight: 850 !important;
}

/* Нижний информационный блок */
.contact-section--lead .contact-form--styled .form-status {
  min-height: 62px !important;

  display: flex !important;
  align-items: center !important;

  padding: 13px 16px !important;

  border-radius: 13px !important;

  font-size: 0.84rem !important;
  line-height: 1.4 !important;
}
/* Адаптация */
@media (max-width: 980px) {
  .contact-section--lead .contact-shell {
    grid-template-columns: 1fr !important;
  }

  .contact-section--lead .contact-form.contact-form--styled {
    max-width: 100% !important;
    justify-self: stretch !important;
  }
}



/* ================================================================
   Техническое задание 12.07 — финальные визуальные правки
   ================================================================ */

/* 2.1. Главный экран «Обустройство» — композиция как на «Бурении» */
.obustroystvo-page .ob-page .ob-hero.ob-hero--drilling-style {
  min-height: 560px !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-bottom: 1px solid rgba(16, 35, 60, .10) !important;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.96) 34%, rgba(255,255,255,.62) 56%, rgba(255,255,255,.04) 78%),
    url("images/hero-water.webp") right center / cover no-repeat !important;
}

.obustroystvo-page .ob-hero--drilling-style .ob-hero__grid {
  min-height: 560px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 535px) 1fr !important;
  gap: clamp(24px, 5vw, 64px) !important;
  align-items: center !important;
  padding-block: 64px 54px !important;
}

.obustroystvo-page .ob-hero--drilling-style .ob-hero__content {
  position: relative !important;
  z-index: 1 !important;
  max-width: 535px !important;
}

.obustroystvo-page .ob-hero--drilling-style .ob-hero__eyebrow {
  margin: 0 0 16px !important;
  color: #16823a !important;
  font-size: 12px !important;
  font-weight: 850 !important;
  line-height: 1.2 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
}

.obustroystvo-page .ob-hero--drilling-style .ob-title {
  max-width: 520px !important;
  margin: 0 0 22px !important;
  color: #10233c !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 47px !important;
  font-weight: 700 !important;
  line-height: 1.06 !important;
  letter-spacing: -.02em !important;
}

.obustroystvo-page .ob-hero--drilling-style .ob-lead {
  max-width: 430px !important;
  margin: 0 0 28px !important;
  color: #304255 !important;
  font-size: 17px !important;
  font-weight: 500 !important;
  line-height: 1.55 !important;
}

.obustroystvo-page .ob-hero--drilling-style .ob-hero__facts {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  max-width: 600px !important;
  margin: 0 0 30px !important;
}

.obustroystvo-page .ob-hero--drilling-style .ob-fact {
  min-width: 0 !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.obustroystvo-page .ob-hero--drilling-style .ob-fact__icon {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  display: grid !important;
  place-items: center !important;
  border: 1px solid rgba(22,130,58,.28) !important;
  border-radius: 10px !important;
  background: rgba(22,130,58,.08) !important;
  color: #16823a !important;
}

.obustroystvo-page .ob-hero--drilling-style .ob-fact__icon svg {
  width: 25px !important;
  height: 25px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2.1 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.obustroystvo-page .ob-hero--drilling-style .ob-fact > div {
  min-width: 0 !important;
}

.obustroystvo-page .ob-hero--drilling-style .ob-fact strong {
  display: block !important;
  margin: 1px 0 3px !important;
  color: #10233c !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
}

.obustroystvo-page .ob-hero--drilling-style .ob-fact > div > span {
  display: block !important;
  color: #5a6d82 !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
}

.obustroystvo-page .ob-hero--drilling-style .ob-visual {
  display: none !important;
}

.obustroystvo-page .ob-hero--drilling-style .ob-hero-phone.hp-phone-box {
  width: min(100%, 520px) !important;
  max-width: 520px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  grid-template-columns: none !important;
  align-items: stretch !important;
  gap: 14px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.obustroystvo-page .ob-hero--drilling-style .ob-hero-phone .hp-phone-input,
.obustroystvo-page .ob-hero--drilling-style .ob-hero-phone .hp-phone-button {
  min-height: 50px !important;
  border-radius: 8px !important;
}

/* 2.2. «После бурения» — карточная композиция как «Подберем решение...» */
.obustroystvo-page .ob-section--water-scenarios {
  padding: 38px 0 !important;
  background: #f5f8f9 !important;
}

.obustroystvo-page .water-scenarios {
  display: grid !important;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.35fr) !important;
  gap: 28px !important;
  align-items: stretch !important;
  padding: 32px !important;
  border: 1px solid rgba(16,35,60,.10) !important;
  border-radius: 24px !important;
  background:
    radial-gradient(circle at 8% 0%, rgba(22,130,58,.10), transparent 32%),
    #fff !important;
  box-shadow: 0 22px 52px rgba(16,35,60,.08) !important;
}

.obustroystvo-page .water-scenarios__intro {
  padding: 8px 8px 8px 2px !important;
}

.obustroystvo-page .water-scenarios__eyebrow {
  margin: 0 0 12px !important;
  color: #16823a !important;
  font-size: 12px !important;
  font-weight: 850 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
}

.obustroystvo-page .water-scenarios__title {
  margin: 0 0 16px !important;
  color: #10233c !important;
  font-size: clamp(32px, 3.2vw, 45px) !important;
  line-height: 1.04 !important;
}

.obustroystvo-page .water-scenarios__lead,
.obustroystvo-page .water-scenarios__text {
  margin: 0 0 12px !important;
  color: #53667b !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
}

.obustroystvo-page .water-scenarios__variants {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.obustroystvo-page .water-scenarios__variant {
  min-height: 150px !important;
  padding: 22px 22px 20px !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 10px !important;

  border: 1px solid rgba(16,35,60,.10) !important;
  border-radius: 16px !important;

  background: #fff !important;
  box-shadow: 0 12px 28px rgba(16,35,60,.055) !important;
}

.obustroystvo-page .water-scenarios__icon {
  width: 46px !important;
  height: 46px !important;
  flex: 0 0 46px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  border-radius: 14px !important;
  background: rgba(22,130,58,.10) !important;
  border: 1px solid rgba(22,130,58,.16) !important;
}

.obustroystvo-page .water-scenarios__icon svg {
  width: 24px !important;
  height: 24px !important;

  fill: none !important;
  stroke: #16823a !important;
  stroke-width: 2.1 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.obustroystvo-page .water-scenarios__variant strong {
  margin: 2px 0 2px !important;
  color: #10233c !important;
  font-size: 17px !important;
  line-height: 1.22 !important;
}

.obustroystvo-page .water-scenarios__variant > span:last-child {
  color: #5b6d80 !important;
  font-size: 14px !important;
  line-height: 1.42 !important;
}

.obustroystvo-page .water-scenarios__variant span {
  color: #5b6d80 !important;
  font-size: 14px !important;
  line-height: 1.42 !important;
}

.obustroystvo-page .water-scenarios__variant--accent {
  border-color: rgba(22,130,58,.28) !important;
  background: linear-gradient(145deg, rgba(235,249,239,.96), #fff 72%) !important;
}

/* 2.3. Компактный блок выбора — целиком в desktop-экране */
@media (min-width: 981px) {
  .obustroystvo-page .choice-editorial {
    padding: 24px 0 28px !important;
  }

  .obustroystvo-page .choice-editorial__title {
    margin: 0 0 12px !important;
    font-size: 36px !important;
    line-height: 1.06 !important;
  }

  .obustroystvo-page .choice-editorial__tabs {
    min-height: 44px !important;
    margin-bottom: 12px !important;
  }

  .obustroystvo-page .choice-editorial__tab {
    min-height: 44px !important;
    padding-block: 8px !important;
  }

  .obustroystvo-page .choice-editorial__panel {
    padding: 20px !important;
  }

  .obustroystvo-page .choice-editorial__grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(390px, .98fr) !important;
    gap: 24px !important;
    align-items: stretch !important;
  }

  .obustroystvo-page .choice-editorial__content {
    grid-column: 1 !important;
    grid-row: 1 !important;
    gap: 10px !important;
  }

  .obustroystvo-page .choice-editorial__media {
    grid-column: 2 !important;
    grid-row: 1 !important;
    gap: 10px !important;
  }

  .obustroystvo-page .choice-editorial__photo {
    height: 250px !important;
    min-height: 250px !important;
  }

  .obustroystvo-page .choice-editorial__advantage {
  padding: 13px 14px !important;
  border: 1px solid var(--line) !important;
  border-radius: 8px !important;
  background: var(--surface) !important;
  box-shadow: 0 10px 28px rgba(21, 61, 38, 0.05) !important;
}

  .obustroystvo-page .choice-editorial__advantage-list {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px 14px !important;
    margin-top: 8px !important;
  }

  .obustroystvo-page .choice-editorial__advantage-list li {
    font-size: 12px !important;
    line-height: 1.35 !important;
  }

  .obustroystvo-page .choice-editorial__name {
    margin: 0 !important;
    font-size: 34px !important;
  }

  .obustroystvo-page .choice-editorial__summary,
  .obustroystvo-page .choice-editorial__description {
    margin: 0 !important;
  }

  .obustroystvo-page .choice-editorial__description {
    font-size: 14px !important;
    line-height: 1.45 !important;
  }

  .obustroystvo-page .choice-editorial__info {
    gap: 10px !important;
  }

  .obustroystvo-page .choice-editorial__info-card {
    min-height: 104px !important;
    padding: 13px 14px !important;
  }

  .obustroystvo-page .choice-editorial__info-card p {
    margin-top: 6px !important;
    font-size: 12.5px !important;
    line-height: 1.4 !important;
  }

  .obustroystvo-page .choice-editorial__bottom {
    gap: 12px !important;
    margin-top: 0 !important;
  }

  .obustroystvo-page .choice-editorial__price {
    min-width: 150px !important;
  }

  .obustroystvo-page .choice-editorial__current-price {
    font-size: 36px !important;
  }

  .obustroystvo-page .choice-editorial__form {
    gap: 10px !important;
  }

  .obustroystvo-page .choice-editorial__phone-field,
  .obustroystvo-page .choice-editorial__submit {
    min-height: 48px !important;
  }

  .obustroystvo-page .choice-editorial__note {
    margin-top: 6px !important;
    font-size: 11.5px !important;
  }
}

/* 2.4. Уменьшенный блок «Что входит в обустройство скважины» */
.obustroystvo-page .ob-scope-section {
  padding: 36px 0 42px !important;
  border-top: 1px solid rgba(3, 11, 47, 0.08) !important;
  background: #f7f8fa !important;
}

/* Белый блок делаем шире и добавляем нормальные отступы от краёв */
.obustroystvo-page .ob-scope--split {
  display: block !important;

  width: min(1460px, calc(100% - 48px)) !important;
  max-width: 1460px !important;
  margin-left: auto !important;
  margin-right: auto !important;

  padding: 28px 32px 32px !important;
  box-sizing: border-box !important;

  border: 1px solid rgba(16, 35, 60, 0.10) !important;
  border-radius: 24px !important;

  background: #ffffff !important;
  box-shadow: 0 18px 42px rgba(16, 35, 60, 0.07) !important;
}

/* Верхняя часть: заголовок и фотография */
.obustroystvo-page .ob-scope__aside {
  display: grid !important;
  grid-template-columns: minmax(300px, 0.85fr) minmax(480px, 1.15fr) !important;
  gap: 36px !important;
  align-items: start !important;

  margin: 0 0 24px !important;
  padding: 0 !important;

  border: 0 !important;
  background: transparent !important;
}

/* Фотография становится ниже */
.obustroystvo-page .ob-scope__aside::after {
  content: "" !important;

  width: 100% !important;
  height: 190px !important;

  border-radius: 14px !important;

  background:
    url("images/adapter.webp")
    center / cover no-repeat !important;

  box-shadow: 0 10px 24px rgba(3, 11, 47, 0.07) !important;
}

.obustroystvo-page .ob-scope__intro {
  padding: 0 !important;
}

/* Надпись «СОСТАВ РАБОТ» */
.obustroystvo-page .ob-scope__intro .ob-eyebrow {
  display: block !important;
  margin: 0 0 10px !important;

  color: #16823a !important;

  font-size: 11px !important;
  font-weight: 850 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

/* Уменьшаем большой заголовок */
.obustroystvo-page .ob-scope__intro .ob-title {
  max-width: 440px !important;
  margin: 0 !important;

  color: #030b2f !important;

  font-family: "Onest", "Segoe UI", Arial, sans-serif !important;
  font-size: 45px !important;
  font-weight: 850 !important;
  line-height: 1.02 !important;
  letter-spacing: -0.05em !important;
}

.obustroystvo-page .ob-scope__intro .ob-title::after {
  display: none !important;
}

/* Пять карточек */
.obustroystvo-page .ob-scope__panel {
  width: 100% !important;

  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 12px !important;

  padding: 0 !important;

  border: 0 !important;
  border-radius: 0 !important;

  background: transparent !important;
  box-shadow: none !important;
}

/* Уменьшаем сами карточки */
.obustroystvo-page .ob-scope__item {
  min-height: 250px !important;

  display: grid !important;
  grid-template-columns: 58px 1fr !important;
  grid-template-rows: auto 1fr !important;
  column-gap: 14px !important;
  row-gap: 14px !important;
  align-items: start !important;

  padding: 18px 17px !important;
  box-sizing: border-box !important;

  border: 1px solid #e2e7ec !important;
  border-radius: 10px !important;

  background: #ffffff !important;
  box-shadow: 0 8px 20px rgba(3, 11, 47, 0.035) !important;
}

/* Уменьшаем номера */
.obustroystvo-page .ob-scope__num {
  width: 40px !important;
  height: 40px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  margin: 0 !important;

  grid-column: 1 !important;
  grid-row: 1 !important;
  align-self: start !important;

  border: 2px solid #16823a !important;
  border-radius: 10px !important;

  background: rgba(22, 130, 58, 0.04) !important;
  color: #16823a !important;

  font-size: 22px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

/* Заголовки карточек */
.obustroystvo-page .ob-scope__body h3 {
  margin: 0 !important;

  grid-column: 2 !important;
  grid-row: 1 !important;
  align-self: center !important;

  color: #030b2f !important;

  font-size: 17px !important;
  font-weight: 800 !important;
  line-height: 1.22 !important;
}

/* Описание карточек */
.obustroystvo-page .ob-scope__body p {
  margin: 0 !important;

  grid-column: 1 / -1 !important;
  grid-row: 2 !important;

  color: rgba(3, 11, 47, 0.78) !important;

  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
}
.obustroystvo-page .ob-scope__body {
  display: contents !important;
}

/* 2.7. Уменьшенный FAQ */
.obustroystvo-page .well-faq {
  padding: 34px 0 40px !important;
  background: #f7f8fa !important;
}

/* Ограничиваем ширину содержимого */
.obustroystvo-page .well-faq__container {
  width: min(1280px, calc(100% - 48px)) !important;
  margin: 0 auto !important;
}

/* Уменьшаем расстояние после заголовка */
.obustroystvo-page .well-faq__header {
  margin-bottom: 22px !important;
  text-align: center !important;
}

/* Заголовок немного меньше и одного цвета */
.obustroystvo-page .well-faq__title {
  margin: 0 auto !important;

  color: #030b2f !important;

  font-family: "Onest", "Segoe UI", Arial, sans-serif !important;
  font-size: clamp(36px, 3.8vw, 52px) !important;
  font-weight: 850 !important;
  line-height: 1.02 !important;
  letter-spacing: -0.045em !important;
}

.obustroystvo-page .well-faq__title-line {
  color: #030b2f !important;
}

/* Карточки вопросов */
.obustroystvo-page .well-faq__list {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px 12px !important;
}

.obustroystvo-page .well-faq__item {
  min-height: 66px !important;

  border: 1px solid #dfe6ea !important;
  border-radius: 13px !important;

  background: #ffffff !important;
  box-shadow: 0 7px 18px rgba(3, 11, 47, 0.035) !important;
}

/* Текст вопроса и внутренние отступы */
.obustroystvo-page .well-faq__question {
  min-height: 64px !important;
  padding: 14px 17px !important;

  color: #030b2f !important;

  font-family: "Onest", "Segoe UI", Arial, sans-serif !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
}

/* Уменьшаем круг с плюсом */
.obustroystvo-page .well-faq__icon {
  width: 30px !important;
  height: 30px !important;
  flex: 0 0 30px !important;
}

/* Уменьшаем открывающийся ответ */
.obustroystvo-page .well-faq__answer-inner {
  padding: 0 17px 16px !important;
}

.obustroystvo-page .well-faq__answer p {
  font-size: 14px !important;
  line-height: 1.55 !important;
}

/* Планшеты и телефоны */
@media (max-width: 760px) {
  .obustroystvo-page .well-faq {
    padding: 28px 0 34px !important;
  }

  .obustroystvo-page .well-faq__container {
    width: calc(100% - 28px) !important;
  }

  .obustroystvo-page .well-faq__title {
    font-size: 32px !important;
  }

  .obustroystvo-page .well-faq__header {
    margin-bottom: 18px !important;
  }

  .obustroystvo-page .well-faq__list {
    grid-template-columns: 1fr !important;
    gap: 9px !important;
  }

  .obustroystvo-page .well-faq__question {
    min-height: 60px !important;
    padding: 13px 15px !important;
    font-size: 14px !important;
  }
}

/* 4. «Примеры работ» — современная композиция */
.works-page .works-hero {
  min-height: 590px !important;
  border-bottom: 1px solid rgba(16,35,60,.09) !important;

  background:
    linear-gradient(
      90deg,
      rgba(248,251,250,.92) 0%,
      rgba(248,251,250,.92) 20%,
      rgba(248,251,250,0) 36%
    ),
    url("images/work-real-02.webp") right center / cover no-repeat !important;
}

.works-page .works-hero::after {
  height: 54px !important;
  background: linear-gradient(178deg, transparent 0 46%, #fff 47% 100%) !important;
}

.works-page .works-hero__inner {
  max-width: 690px !important;
  margin-left: max(24px, calc((100vw - 1380px) / 2)) !important;
  margin-right: auto !important;
  padding-block: 78px 100px !important;
}

.works-page .works-hero h1 {
  font-size: clamp(3.4rem, 5.6vw, 5.4rem) !important;
  line-height: .94 !important;
}

.works-page .works-hero p:not(.home-eyebrow) {
  max-width: 610px !important;
  font-size: clamp(1.05rem, 1.55vw, 1.25rem) !important;
  font-weight: 560 !important;
}

.works-page .works-hero__highlights {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin-top: 24px !important;
}

.works-page .works-hero__highlights span {
  min-height: 36px !important;
  display: inline-flex !important;
  align-items: center !important;
  padding: 0 14px !important;
  border: 1px solid rgba(22,130,58,.18) !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.84) !important;
  color: #27503b !important;
  font-size: 13px !important;
  font-weight: 750 !important;
  box-shadow: 0 8px 22px rgba(16,35,60,.05) !important;
}

.works-page .works-section {
  padding-block: 72px !important;
}

.works-page .home-section-head {
  max-width: 720px !important;
  margin-bottom: 34px !important;
}

.works-page .home-section-head h2 {
  margin: 0 !important;
  color: #10233c !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(38px, 4.3vw, 58px) !important;
  line-height: 1.02 !important;
}

.works-page .home-section-head .home-kicker {
  margin-bottom: 11px !important;
  color: #16823a !important;
}

.works-page .works-gallery {
  grid-auto-rows: 190px !important;
  gap: 20px !important;
}

.works-page .works-photo,
.works-page .works-video-card {
  border-radius: 18px !important;
  border-color: rgba(16,35,60,.08) !important;
  box-shadow: 0 18px 46px rgba(16,35,60,.09) !important;
}

.works-page .works-photo span,
.works-page .works-video-card span {
  left: 22px !important;
  right: 22px !important;
  bottom: 20px !important;
  font-size: 17px !important;
}

.works-page .works-section--videos {
  position: relative !important;
  background:
    radial-gradient(circle at 85% 10%, rgba(22,130,58,.09), transparent 28%),
    #f3f7f6 !important;
}

.works-page .works-video-grid {
  gap: 20px !important;
}

.works-page .works-video-card::after {
  left: 22px !important;
  top: 22px !important;
  width: 52px !important;
  height: 52px !important;
  clip-path: none !important;
  transform: none !important;
  background:
    linear-gradient(30deg, transparent 0 38%, #fff 39% 61%, transparent 62%) center / 13px 15px no-repeat,
    #16823a !important;
  border: 4px solid rgba(255,255,255,.82) !important;
  box-shadow: 0 14px 34px rgba(22,130,58,.30) !important;
}

/* Уменьшенный блок «Хотите такой же результат» */
.works-page .works-section--cta {
  padding-block: 46px !important;

  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(118, 219, 166, .18),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #082f28 0%,
      #0b5741 58%,
      #0f7b3d 100%
    ) !important;
}

.works-page .works-section--cta .home-start-card {
  padding: 28px 32px !important;
  gap: 24px !important;

  border: 1px solid rgba(255, 255, 255, .16) !important;
  border-radius: 20px !important;

  background: rgba(255, 255, 255, .07) !important;
  box-shadow: 0 20px 48px rgba(0, 0, 0, .14) !important;
}

/* Уменьшаем большой заголовок только в этом блоке */
.works-page .works-section--cta .home-start-card h2 {
  font-size: clamp(3rem, 4.5vw, 4.55rem) !important;
  line-height: .98 !important;
}

/* Немного уменьшаем описание */
.works-page .works-section--cta .home-start-card p:not(.home-kicker) {
  font-size: 17px !important;
  line-height: 1.5 !important;
  margin-top: 10px !important;
}

/* 6. Стрелки в зеленых кругах — строго по центру */
.info-page .info-related a::after,
.info-page .home-link-list a::after,
.info-page .info-sidebar a::after {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  text-align: center !important;
  text-indent: 0 !important;
  font-family: Arial, sans-serif !important;
  line-height: 1 !important;
  box-sizing: border-box !important;
}

@media (max-width: 1100px) {
  .obustroystvo-page .ob-scope__aside {
    grid-template-columns: 1fr !important;
    gap: 26px !important;
  }

  .obustroystvo-page .ob-scope__panel {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 900px) {
  .obustroystvo-page .water-scenarios {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .obustroystvo-page .ob-page .ob-hero.ob-hero--drilling-style {
    min-height: auto !important;
    background:
      linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.92) 58%, rgba(255,255,255,.74) 100%),
      url("images/hero-water.webp") center top / cover no-repeat !important;
  }

  .obustroystvo-page .ob-hero--drilling-style .ob-hero__grid {
    min-height: auto !important;
    display: block !important;
    padding-block: 42px 34px !important;
  }

  .obustroystvo-page .ob-hero--drilling-style .ob-title {
    font-size: 34px !important;
  }

  .obustroystvo-page .ob-hero--drilling-style .ob-hero__facts {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .obustroystvo-page .ob-hero--drilling-style .ob-hero-phone.hp-phone-box {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .obustroystvo-page .water-scenarios {
    padding: 22px !important;
    border-radius: 18px !important;
  }

  .obustroystvo-page .water-scenarios__variants,
  .obustroystvo-page .ob-scope__panel,
  .obustroystvo-page .well-faq__list {
    grid-template-columns: 1fr !important;
  }

  .obustroystvo-page .ob-scope-section {
    padding-block: 42px 48px !important;
  }

  .obustroystvo-page .ob-scope__aside::after {
    height: 210px !important;
  }

  .obustroystvo-page .ob-scope__intro .ob-title {
    font-size: 36px !important;
  }

  .obustroystvo-page .ob-scope__item {
    min-height: auto !important;
  }

  .works-page .works-hero {
    min-height: 0 !important;
  }

  .works-page .works-hero__inner {
    padding-block: 58px 86px !important;
  }

  .works-page .works-section {
    padding-block: 50px !important;
  }

  .works-page .works-section--cta .home-start-card {
    padding: 24px !important;
  }
}

@media (max-width: 560px) {
  .obustroystvo-page .water-scenarios__variants {
    grid-template-columns: 1fr !important;
  }

  .obustroystvo-page .well-faq__title {
    font-size: 32px !important;
  }

  .works-page .works-hero__highlights {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }
}
/* Уменьшенный блок описания перед подвалом */
.works-page .works-empty-section {
  width: 100%;
  padding: 42px 32px 54px;
  background: #ffffff;
}

/* Уменьшенная внутренняя карточка */
.works-page .works-description-card {
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: 36px 44px 40px;

  background: #fbfcfc;
  border: 1px solid rgba(16, 35, 60, 0.12);
  border-radius: 24px;

  box-shadow: 0 16px 38px rgba(16, 35, 60, 0.07);

  font-family: "Onest", sans-serif;
}

/* Верхняя надпись */
.works-page .works-description-card__label {
  margin-bottom: 16px;

  font-family: "Onest", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.1em;

  color: #66717d;
}

/* Заголовок */
.works-page .works-description-card__title {
  max-width: 900px;
  margin: 0 0 16px;

  font-family: "Onest", sans-serif;
  font-size: clamp(32px, 2.7vw, 46px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;

  color: #10233c;
}

/* Основной текст */
.works-page .works-description-card__text {
  max-width: 1240px;

  font-family: "Onest", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;

  color: #5f6975;
}

.works-page .works-description-card__text p {
  margin: 0;
}

.works-page .works-description-card__text p + p {
  margin-top: 3px;
}

/* Планшеты */
@media (max-width: 1024px) {
  .works-page .works-empty-section {
    padding: 36px 22px 46px;
  }

  .works-page .works-description-card {
    padding: 32px 34px 36px;
    border-radius: 22px;
  }

  .works-page .works-description-card__title {
    font-size: clamp(30px, 4.5vw, 40px);
  }
}

/* Телефоны */
@media (max-width: 600px) {
  .works-page .works-empty-section {
    padding: 24px 14px 34px;
  }

  .works-page .works-description-card {
    padding: 24px 18px 28px;
    border-radius: 18px;
  }

  .works-page .works-description-card__label {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .works-page .works-description-card__title {
    margin-bottom: 14px;
    font-size: 27px;
    line-height: 1.1;
  }

  .works-page .works-description-card__text {
    font-size: 14px;
    line-height: 1.55;
  }

  .works-page .works-description-card__text p + p {
    margin-top: 9px;
  }
}

/* Телефоны */
@media (max-width: 600px) {
  .works-page .works-empty-section {
    padding: 32px 16px 48px;
  }

  .works-page .works-description-card {
    padding: 30px 22px 34px;
    border-radius: 22px;
  }

  .works-page .works-description-card__label {
    margin-bottom: 16px;
    font-size: 14px;
  }

  .works-page .works-description-card__title {
    margin-bottom: 18px;
    font-size: 32px;
    line-height: 1.1;
  }

  .works-page .works-description-card__text {
    font-size: 16px;
    line-height: 1.6;
  }

  .works-page .works-description-card__text p + p {
    margin-top: 12px;
  }
}
/* ================================================================
   Первый экран страницы «Обустройство» — по новому референсу
   ================================================================ */

.obustroystvo-page .ob-page .ob-hero.ob-hero--drilling-style {
  position: relative !important;

  width: 100% !important;
  min-height: 650px !important;

  padding: 0 !important;
  overflow: hidden !important;

  border-bottom: 1px solid rgba(16, 35, 60, 0.1) !important;

  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.93) 27%,
      rgba(255, 255, 255, 0.58) 46%,
      rgba(255, 255, 255, 0.1) 65%,
      rgba(255, 255, 255, 0) 77%
    ),
    url("images/obustroystvo-hero.webp")
      center 58% / cover no-repeat !important;
}

/* Широкий контейнер первого экрана */
.obustroystvo-page
  .ob-hero--drilling-style
  .ob-hero__grid {
  width: min(1640px, calc(100% - 96px)) !important;
  max-width: 1640px !important;
  min-height: 650px !important;

  margin: 0 auto !important;
  padding: 64px 0 46px !important;

  display: block !important;
}

/* Левая часть с текстом */
.obustroystvo-page
  .ob-hero--drilling-style
  .ob-hero__content {
  position: relative !important;
  z-index: 2 !important;

  width: 100% !important;
  max-width: 760px !important;
}

/* Геолокация */
.obustroystvo-page
  .ob-hero--drilling-style
  .ob-hero__eyebrow {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;

  margin: 0 0 30px !important;

  font-family: "Onest", "Segoe UI", Arial, sans-serif !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;

  color: #168d45 !important;
}

.obustroystvo-page
  .ob-hero--drilling-style
  .ob-hero__eyebrow svg {
  width: 20px !important;
  height: 20px !important;
  flex-shrink: 0 !important;

  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.9 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

/* Большой заголовок */
.obustroystvo-page
  .ob-hero--drilling-style
  .ob-title {
  width: 100% !important;
  max-width: 760px !important;

  margin: 0 0 26px !important;

  font-family: "Onest", "Segoe UI", Arial, sans-serif !important;
  font-size: clamp(56px, 4.5vw, 82px) !important;
  font-weight: 700 !important;
  line-height: 1.03 !important;
  letter-spacing: -0.055em !important;

  color: #071b3a !important;
}

/* Подзаголовок */
.obustroystvo-page
  .ob-hero--drilling-style
  .ob-lead {
  width: 100% !important;
  max-width: 620px !important;

  margin: 0 0 28px !important;

  font-family: "Onest", "Segoe UI", Arial, sans-serif !important;
  font-size: 19px !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;

  color: #314154 !important;
}

/* Форма телефона */
.obustroystvo-page
  .ob-hero--drilling-style
  .ob-hero-phone.hp-phone-box {
  width: 100% !important;
  max-width: 650px !important;

  margin: 0 !important;
  padding: 0 !important;

  display: grid !important;
  grid-template-columns: minmax(250px, 1fr) minmax(280px, 1.05fr) !important;
  gap: 18px !important;

  border: 0 !important;
  border-radius: 0 !important;

  background: transparent !important;
  box-shadow: none !important;
}

/* Поле номера */
.obustroystvo-page
  .ob-hero--drilling-style
  .ob-hero-phone
  .hp-phone-input {
  width: 100% !important;
  min-height: 64px !important;

  display: flex !important;
  align-items: stretch !important;

  padding: 0 !important;
  overflow: hidden !important;

  border: 1px solid rgba(16, 35, 60, 0.16) !important;
  border-radius: 7px !important;

  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 8px 24px rgba(16, 35, 60, 0.05) !important;
}

/* Код +375 */
.obustroystvo-page
  .ob-hero--drilling-style
  .ob-hero-phone
  .hp-phone-input
  > span {
  min-width: 82px !important;
  height: auto !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 0 18px !important;

  border-right: 1px solid rgba(16, 35, 60, 0.14) !important;

  font-family: "Onest", "Segoe UI", Arial, sans-serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;

  color: #10233c !important;
}

/* Само поле */
.obustroystvo-page
  .ob-hero--drilling-style
  .ob-hero-phone
  .hp-phone-input
  input {
  width: 100% !important;
  height: 62px !important;

  padding: 0 18px !important;

  border: 0 !important;
  outline: 0 !important;

  background: transparent !important;

  font-family: "Onest", "Segoe UI", Arial, sans-serif !important;
  font-size: 17px !important;
  font-weight: 400 !important;

  color: #10233c !important;
}

.obustroystvo-page
  .ob-hero--drilling-style
  .ob-hero-phone
  .hp-phone-input
  input::placeholder {
  color: #9aa3ad !important;
}

/* Зелёная кнопка */
.obustroystvo-page
  .ob-hero--drilling-style
  .ob-hero-phone
  .hp-phone-button {
  width: 100% !important;
  min-height: 64px !important;

  padding: 0 24px !important;

  border: 0 !important;
  border-radius: 7px !important;

  background:
    linear-gradient(
      135deg,
      #1b9a4c 0%,
      #168d43 52%,
      #107737 100%
    ) !important;

  color: #ffffff !important;

  font-family: "Onest", "Segoe UI", Arial, sans-serif !important;
  font-size: 18px !important;
  font-weight: 600 !important;

  box-shadow: 0 12px 26px rgba(20, 137, 64, 0.2) !important;

  cursor: pointer !important;

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease !important;
}

.obustroystvo-page
  .ob-hero--drilling-style
  .ob-hero-phone
  .hp-phone-button:hover {
  transform: translateY(-2px) !important;
  filter: brightness(1.05) !important;

  box-shadow: 0 16px 32px rgba(20, 137, 64, 0.28) !important;
}

/* Преимущества под формой */
.obustroystvo-page
  .ob-hero--drilling-style
  .ob-hero__facts {
  width: 100% !important;
  max-width: 730px !important;

  margin: 54px 0 0 !important;

  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0 !important;
}

/* Отдельное преимущество */
.obustroystvo-page
  .ob-hero--drilling-style
  .ob-fact {
  min-width: 0 !important;

  display: block !important;

  padding: 0 28px !important;

  border: 0 !important;
  border-radius: 0 !important;

  background: transparent !important;
  box-shadow: none !important;
}

.obustroystvo-page
  .ob-hero--drilling-style
  .ob-fact:first-child {
  padding-left: 0 !important;
}

.obustroystvo-page
  .ob-hero--drilling-style
  .ob-fact + .ob-fact {
  border-left: 1px solid rgba(16, 35, 60, 0.12) !important;
}

/* Скрываем старые иконки как на референсе */
.obustroystvo-page
  .ob-hero--drilling-style
  .ob-fact__icon {
  display: none !important;
}

/* Название преимущества */
.obustroystvo-page
  .ob-hero--drilling-style
  .ob-fact
  strong {
  display: block !important;

  margin: 0 0 8px !important;

  font-family: "Onest", "Segoe UI", Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;

  color: #10233c !important;
}

/* Описание преимущества */
.obustroystvo-page
  .ob-hero--drilling-style
  .ob-fact
  > div
  > span {
  display: block !important;

  font-family: "Onest", "Segoe UI", Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;

  color: #536273 !important;
}

/* Старую декоративную картинку отключаем */
.obustroystvo-page
  .ob-hero--drilling-style
  .ob-visual {
  display: none !important;
}

/* Планшеты */
@media (max-width: 1050px) {
  .obustroystvo-page
    .ob-page
    .ob-hero.ob-hero--drilling-style {
    background:
      linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.94) 48%,
        rgba(255, 255, 255, 0.48) 75%,
        rgba(255, 255, 255, 0.12) 100%
      ),
      url("images/obustroystvo-hero.webp")
        62% center / cover no-repeat !important;
  }

  .obustroystvo-page
    .ob-hero--drilling-style
    .ob-hero__grid {
    width: min(100% - 48px, 900px) !important;
  }

  .obustroystvo-page
    .ob-hero--drilling-style
    .ob-title {
    max-width: 650px !important;
    font-size: clamp(50px, 7vw, 68px) !important;
  }
}

/* Телефоны */
@media (max-width: 700px) {
  .obustroystvo-page
    .ob-page
    .ob-hero.ob-hero--drilling-style {
    min-height: auto !important;

    background:
      linear-gradient(
        rgba(255, 255, 255, 0.94),
        rgba(255, 255, 255, 0.94)
      ),
      url("images/obustroystvo-hero.webp")
        67% center / cover no-repeat !important;
  }

  .obustroystvo-page
    .ob-hero--drilling-style
    .ob-hero__grid {
    width: calc(100% - 32px) !important;
    min-height: auto !important;

    padding: 48px 0 42px !important;
  }

  .obustroystvo-page
    .ob-hero--drilling-style
    .ob-hero__eyebrow {
    margin-bottom: 22px !important;
    font-size: 11px !important;
  }

  .obustroystvo-page
    .ob-hero--drilling-style
    .ob-title {
    margin-bottom: 20px !important;
    font-size: 43px !important;
  }

  .obustroystvo-page
    .ob-hero--drilling-style
    .ob-lead {
    margin-bottom: 22px !important;
    font-size: 17px !important;
  }

  .obustroystvo-page
    .ob-hero--drilling-style
    .ob-hero-phone.hp-phone-box {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .obustroystvo-page
    .ob-hero--drilling-style
    .ob-hero__facts {
    margin-top: 36px !important;
    grid-template-columns: 1fr !important;
  }

  .obustroystvo-page
    .ob-hero--drilling-style
    .ob-fact,
  .obustroystvo-page
    .ob-hero--drilling-style
    .ob-fact:first-child {
    padding: 16px 0 !important;
  }

  .obustroystvo-page
    .ob-hero--drilling-style
    .ob-fact + .ob-fact {
    border-left: 0 !important;
    border-top: 1px solid rgba(16, 35, 60, 0.12) !important;
  }
}
/* Зелёные акценты в блоке выбора обустройства */
.obustroystvo-page .choice-editorial__tab:hover,
.obustroystvo-page .choice-editorial__tab:focus-visible,
.obustroystvo-page .choice-editorial__tab[aria-selected="true"] {
  color: #16823a !important;
}

/* Полоска под активной вкладкой */
.obustroystvo-page
  .choice-editorial__tab[aria-selected="true"]::after {
  background: #16823a !important;
}

/* Название выбранного варианта: Летник, Адаптер и т. д. */
.obustroystvo-page .choice-editorial__name {
  color: #16823a !important;
}

/* Новая цена */
.obustroystvo-page .choice-editorial__current-price {
  color: #16823a !important;
}

/* Надпись «ПРЕИМУЩЕСТВА» */
.obustroystvo-page .choice-editorial__mini-title {
  color: #16823a !important;
}

/* Маленькие точки возле преимуществ */
.obustroystvo-page
  .choice-editorial__advantage-list
  li::before {
  background: #16823a !important;
}
/* Чёрный текст и стрелка кнопки «Показать больше» */
.obustroystvo-page .pw-more-link,
.obustroystvo-page .pw-more-link span {
  color: #111111 !important;
}

.obustroystvo-page .pw-more-link i {
  border-top-color: #111111 !important;
  border-right-color: #111111 !important;
}

.obustroystvo-page .pw-more-link:hover,
.obustroystvo-page .pw-more-link:hover span {
  color: #111111 !important;
}
/* Шрифт Onest для всего сайта */
html,
body,
button,
input,
textarea,
select,
a,
p,
span,
div,
li,
strong,
small,
label,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Onest", "Segoe UI", Arial, sans-serif !important;
}
/* =========================================================
   Чередование светло-серого фона между блоками всего сайта
   ========================================================= */

:root {
  /* Более светлый серый */
  --section-gray-light: #f6f8f9;

  /* Более насыщенный серый */
  --section-gray-strong: #e9eef1;
}

/* Первый экран каждой страницы не трогаем */
main > section:first-of-type {
  /* Сохраняется текущий фон первого экрана */
}

/* Первый оттенок */
main > section:nth-of-type(odd):not(:first-of-type):not(.fc-section):not(.works-section--cta) {
  background: var(--section-gray-light) !important;
}

/* Второй, более насыщенный оттенок */
main > section:nth-of-type(even):not(:first-of-type):not(.fc-section):not(.works-section--cta) {
  background: var(--section-gray-strong) !important;
}

/* Тонкая граница дополнительно подчёркивает смену блоков */
main > section:not(:first-of-type) {
  border-top: 1px solid rgba(16, 35, 60, 0.07);
}
/* Страница «Примеры работ»:
   внешний фон серый, внутренний блок остаётся зелёным */

body.works-page main > section.works-section--cta {
  background: #eceeef !important;
  background-image: none !important;
}

/* Фиксируем прежний зелёный цвет внутреннего блока */
body.works-page
main > section.works-section--cta
> .home-start-card {
  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(118, 219, 166, 0.18),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #193e37 0%,
      #1c634e 58%,
      #20844a 100%
    ) !important;
}
/* Два преимущества в первом экране страницы «Обустройство» */
@media (min-width: 701px) {
  .obustroystvo-page
    .ob-hero--drilling-style
    .ob-hero__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .obustroystvo-page
    .ob-hero--drilling-style
    .ob-fact {
    padding: 0 !important;
  }

  /* Левый блок */
  .obustroystvo-page
    .ob-hero--drilling-style
    .ob-fact:first-child {
    padding-right: 40px !important;
  }

  /* Правый блок */
  .obustroystvo-page
    .ob-hero--drilling-style
    .ob-fact:last-child {
    padding-left: 40px !important;
    padding-right: 0 !important;
  }

  .obustroystvo-page
    .ob-hero--drilling-style
    .ob-fact + .ob-fact {
    border-left: 1px solid rgba(16, 35, 60, 0.12) !important;
  }
}
/* Сдвигаем два блока преимуществ левее на странице «Обустройство» */
@media (min-width: 701px) {
  .obustroystvo-page
    .ob-hero--drilling-style
    .ob-hero__facts {
    width: 100% !important;
    max-width: 620px !important; /* было шире, из-за этого полоска и правый текст были слишком справа */
    margin-top: 54px !important;
    margin-left: 0 !important;

    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0 !important;
  }

  .obustroystvo-page
    .ob-hero--drilling-style
    .ob-fact {
    padding: 0 22px !important;
  }

  .obustroystvo-page
    .ob-hero--drilling-style
    .ob-fact:first-child {
    padding-left: 0 !important;
    padding-right: 26px !important;
  }

  .obustroystvo-page
    .ob-hero--drilling-style
    .ob-fact:last-child {
    padding-left: 26px !important;
    padding-right: 0 !important;
  }

  .obustroystvo-page
    .ob-hero--drilling-style
    .ob-fact + .ob-fact {
    border-left: 1px solid rgba(16, 35, 60, 0.12) !important;
  }
}
/* Блок «После бурения» — как на референсе */
.obustroystvo-page .ob-section--water-scenarios {
  padding: 46px 0 58px !important;
  background: #f3f7f8 !important;
}

.obustroystvo-page .water-scenarios {
  display: block !important;
  padding: 30px 34px 36px !important;

  border: 1px solid rgba(16, 35, 60, 0.08) !important;
  border-radius: 28px !important;

  background: #ffffff !important;
  box-shadow: 0 18px 42px rgba(16, 35, 60, 0.08) !important;
}

.obustroystvo-page .water-scenarios__intro {
  width: 100% !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 0 24px !important;
}

.obustroystvo-page .water-scenarios__eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  margin: 0 0 14px !important;
  padding: 6px 12px !important;

  border-radius: 999px !important;
  background: #e8f4ea !important;

  color: #16823a !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

.obustroystvo-page .water-scenarios__title {
  max-width: none !important;
  margin: 0 0 10px !important;

  color: #10233c !important;
  font-size: clamp(34px, 3.3vw, 52px) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.03em !important;
}

.obustroystvo-page .water-scenarios__lead,
.obustroystvo-page .water-scenarios__text {
  width: 100% !important;
  max-width: none !important;
  margin: 0 0 8px !important;

  color: #2f3a46 !important;
  font-size: 16px !important;
  line-height: 1.45 !important;
}

.obustroystvo-page .water-scenarios__variants {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
  margin-top: 26px !important;
}

.obustroystvo-page .water-scenarios__variant {
  min-height: auto !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;

  gap: 14px !important;
  padding: 0 24px !important;

  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;

  text-align: center !important;
}

.obustroystvo-page .water-scenarios__variant + .water-scenarios__variant {
  border-left: 1px solid rgba(16, 35, 60, 0.22) !important;
}

.obustroystvo-page .water-scenarios__variant--accent {
  border-color: transparent !important;
  background: transparent !important;
}

.obustroystvo-page .water-scenarios__icon {
  width: 150px !important;
  height: 150px !important;
  flex: 0 0 150px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  overflow: hidden !important;
}

.obustroystvo-page .water-scenarios__icon img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: contain !important;
}

.obustroystvo-page .water-scenarios__variant strong {
  margin: 0 !important;

  color: #10233c !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
}

.obustroystvo-page .water-scenarios__variant > span:last-child,
.obustroystvo-page .water-scenarios__variant span {
  max-width: 210px !important;
  margin: 0 auto !important;

  color: #2f3a46 !important;
  font-size: 15px !important;
  line-height: 1.38 !important;
}

/* Планшет */
@media (max-width: 1100px) {
  .obustroystvo-page .water-scenarios__variants {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    row-gap: 26px !important;
  }

  .obustroystvo-page .water-scenarios__variant {
    padding: 0 18px !important;
  }

  .obustroystvo-page .water-scenarios__variant:nth-child(3),
  .obustroystvo-page .water-scenarios__variant:nth-child(4) {
    padding-top: 22px !important;
    border-top: 1px solid rgba(16, 35, 60, 0.16) !important;
  }

  .obustroystvo-page .water-scenarios__variant:nth-child(3) {
    border-left: 0 !important;
  }
}

/* Телефон */
@media (max-width: 700px) {
  .obustroystvo-page .water-scenarios {
    padding: 22px 18px 24px !important;
    border-radius: 22px !important;
  }

  .obustroystvo-page .water-scenarios__title {
    font-size: 34px !important;
  }

  .obustroystvo-page .water-scenarios__lead,
  .obustroystvo-page .water-scenarios__text {
    font-size: 15px !important;
  }

  .obustroystvo-page .water-scenarios__variants {
    grid-template-columns: 1fr !important;
    row-gap: 18px !important;
  }

  .obustroystvo-page .water-scenarios__variant,
  .obustroystvo-page .water-scenarios__variant:nth-child(3),
  .obustroystvo-page .water-scenarios__variant:nth-child(4) {
    padding: 0 !important;
    border-left: 0 !important;
    border-top: 0 !important;
  }

  .obustroystvo-page .water-scenarios__icon {
  width: 122px !important;
  height: 122px !important;
  flex-basis: 122px !important;
}

.obustroystvo-page .water-scenarios__icon img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}
/* Форма на первом экране страницы «Примеры работ» */
.works-page .works-hero__form {
  position: relative !important;
  z-index: 2 !important;

  width: min(100%, 650px) !important;
  margin: 30px 0 0 !important;
  padding: 0 !important;

  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 230px !important;
  gap: 12px !important;

  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Общее поле телефона */
.works-page .works-hero__phone-field {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 60px !important;

  display: flex !important;
  align-items: center !important;

  padding: 0 !important;

  border: 1px solid rgba(16, 35, 60, 0.16) !important;
  border-radius: 8px !important;

  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 10px 28px rgba(16, 35, 60, 0.06) !important;

  overflow: hidden !important;
}

/* Код +375 с вертикальной чертой */
.works-page .works-hero__phone-prefix {
  align-self: stretch !important;
  flex: 0 0 auto !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 0 22px !important;

  border-right: 1px solid rgba(16, 35, 60, 0.18) !important;

  color: #10233c !important;
  font-family: "Onest", "Segoe UI", Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}

/* Ввод номера */
.works-page .works-hero__phone-field input {
  width: 100% !important;
  min-width: 0 !important;
  height: 58px !important;

  padding: 0 22px !important;

  border: 0 !important;
  outline: 0 !important;

  background: transparent !important;
  color: #10233c !important;

  font-family: "Onest", "Segoe UI", Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
}

.works-page .works-hero__phone-field input::placeholder {
  color: rgba(16, 35, 60, 0.46) !important;
  opacity: 1 !important;
}

/* Кнопка отправки */
.works-page .works-hero__form button {
  min-height: 60px !important;
  padding: 0 24px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  border: 0 !important;
  border-radius: 8px !important;

  background: linear-gradient(
    135deg,
    #16823a 0%,
    #159144 52%,
    #107333 100%
  ) !important;

  color: #ffffff !important;

  font-family: "Onest", "Segoe UI", Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 800 !important;

  cursor: pointer !important;

  box-shadow: 0 12px 28px rgba(22, 130, 58, 0.24) !important;

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease !important;
}

.works-page .works-hero__form button:hover {
  transform: translateY(-2px) !important;
  filter: brightness(1.05) !important;
  box-shadow: 0 16px 34px rgba(22, 130, 58, 0.3) !important;
}

.works-page .works-hero__form button:disabled {
  cursor: wait !important;
  opacity: 0.72 !important;
}

/* Сообщение после отправки */
.works-page .works-hero__form .form-status {
  grid-column: 1 / -1 !important;
  margin-top: 0 !important;
}

/* Телефон */
@media (max-width: 700px) {
  .works-page .works-hero__form {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .works-page .works-hero__form button {
    width: 100% !important;
  }
}
/* Форма на первом экране страницы «Примеры работ» */
.works-page .hp-phone-box {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Само поле телефона */
.works-page .hp-phone-box .hp-phone-input {
  border: 1px solid rgba(13, 18, 24, 0.16) !important;
  border-radius: 15px !important;
  background: #ffffff !important;
  overflow: hidden !important;
}

/* Блок +375 */
.works-page .hp-phone-box .hp-phone-input span {
  min-width: 84px !important;
  height: 100% !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 0 16px !important;
  border-right: 1px solid rgba(13, 18, 24, 0.16) !important;

  color: #111 !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
}

/* Поле ввода */
.works-page .hp-phone-box .hp-phone-input input {
  padding: 0 16px !important;
}
/* Компактнее весь блок фотографий на странице «Примеры работ» */
body.works-page .works-section--photos {
  padding-top: 54px !important;
  padding-bottom: 58px !important;
}

body.works-page .works-section--photos .home-inner {
  width: min(calc(100% - 48px), 1080px) !important;
  max-width: 1080px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Компактнее заголовок блока */
body.works-page .works-section--photos .home-section-head {
  max-width: 680px !important;
  margin-bottom: 26px !important;
}

body.works-page .works-section--photos .home-section-head h2 {
  font-size: clamp(36px, 4vw, 52px) !important;
}

/* Чуть меньше расстояния между фотографиями */
body.works-page .works-section--photos .works-gallery {
  gap: 16px !important;
}
/* Разделительная линия между +375 и номером телефона */
body.obustroystvo-page
.choice-editorial__phone-field {
  gap: 0 !important;
  align-items: stretch !important;
}

body.obustroystvo-page
.choice-editorial__prefix {
  min-width: 72px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 0 14px !important;

  border-right: 1px solid rgba(16, 35, 60, 0.18) !important;
}

body.obustroystvo-page
.choice-editorial__input {
  padding: 0 16px !important;
}
/* ================================================================
   Страница «Контакты» — четыре карточки после первого экрана
   ================================================================ */

.contact-page .contact-quick-info {
  width: 100%;
  padding: 42px 0 46px;
  background: #f3f6f4;
}

.contact-page .contact-quick-info__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

/* Общий вид карточки */
.contact-page .contact-quick-card {
  min-width: 0;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 24px 22px;
  border: 1px solid rgba(16, 35, 60, 0.08);
  border-radius: 10px;
  background: #ffffff;
  box-shadow:
    0 3px 8px rgba(16, 35, 60, 0.035),
    0 14px 32px rgba(16, 35, 60, 0.045);
}

/* Светло-зелёный квадрат с иконкой */
.contact-page .contact-quick-card__icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 11px;
  background: #edf7ef;
  color: #54a96d;
}

.contact-page .contact-quick-card__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

/* Название карточки */
.contact-page .contact-quick-card h2 {
  margin: 0 0 16px;
  color: #17283d;
  font-family: "Onest", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

/* Телефон */
.contact-page .contact-quick-card__main-link {
  display: inline-block;
  margin: 0 0 10px;
  color: #26384c;
  font-size: 0.93rem;
  font-weight: 750;
  line-height: 1.4;
  text-decoration: none;
}

/* Режим работы и регион */
.contact-page .contact-quick-card__schedule,
.contact-page .contact-quick-card__region {
  display: block;
  margin: 0 0 10px;
  color: #26384c;
  font-size: 0.93rem;
  font-weight: 750;
  line-height: 1.55;
}

/* Обычный поясняющий текст */
.contact-page .contact-quick-card p {
  margin: 0;
  color: #75808d;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.55;
}

/* Ссылки WhatsApp, Telegram, Viber */
.contact-page .contact-quick-card__messengers {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  margin: 0;
}

.contact-page .contact-quick-card__messengers a {
  color: #657383;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
}

.contact-page .contact-quick-card__messengers a:hover {
  color: #16843f;
}

/* Нижняя зелёная ссылка */
.contact-page .contact-quick-card__action {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding-top: 20px;
  color: #16843f;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.contact-page .contact-quick-card__action span {
  display: inline-block;
  font-size: 1.08rem;
  transition: transform 0.2s ease;
}

.contact-page .contact-quick-card__action:hover span {
  transform: translateX(4px);
}

/* Планшет */
@media (max-width: 980px) {
  .contact-page .contact-quick-info__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Телефон */
@media (max-width: 580px) {
  .contact-page .contact-quick-info {
    padding: 26px 0 30px;
  }

  .contact-page .contact-quick-info__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-page .contact-quick-card {
    min-height: 230px;
    padding: 22px 20px;
  }
}
/* Серый цвет ссылок навигации в подвале */
.org-footer .org-footer__links a {
  color: rgba(244, 248, 248, 0.72) !important;
}

/* При наведении ссылка остаётся белой */
.org-footer .org-footer__links a:hover,
.org-footer .org-footer__links a:focus-visible {
  color: #ffffff !important;
}
/* Контакты — положение машины только на ПК */
@media (min-width: 768px) {
  .contact-page .contact-hero {
    background-position: 72% 68% !important;
  }
}
