@font-face {
  font-family: "Fira Sans Condensed";
  src: url("assets/fonts/FiraSansCondensed-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Fira Sans Condensed";
  src: url("assets/fonts/FiraSansCondensed-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Fira Sans Condensed";
  src: url("assets/fonts/FiraSansCondensed-ExtraBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --lake-ink: #052f35;
  --lake-deep: #021f24;
  --graphite: #15383c;
  --graphite-soft: #48666a;
  --cobalt: #1747e8;
  --cobalt-deep: #0c2fa9;
  --aqua: #26d2cc;
  --aqua-soft: #bff5f1;
  --lime: #d7ff58;
  --textile: #f2f8f7;
  --white: #ffffff;
  --line-dark: rgba(5, 47, 53, .18);
  --line-light: rgba(255, 255, 255, .24);
  --shell: min(1240px, calc(100% - 48px));
  --font: "Fira Sans Condensed", "Arial Narrow", "DejaVu Sans", sans-serif;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--graphite);
  background: var(--textile);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
svg { display: block; max-width: 100%; }

h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 { margin-top: 0; line-height: .96; letter-spacing: -.035em; }
h1 { font-size: clamp(3.45rem, 7.2vw, 6rem); }
h2 { font-size: clamp(2.75rem, 5.5vw, 5rem); }
h3 { font-size: clamp(2rem, 3.2vw, 3.4rem); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--lake-deep);
  background: var(--lime);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform .2s var(--ease-out);
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 5px;
  box-shadow: 0 0 0 6px var(--cobalt);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 60;
  top: 0;
  color: var(--lake-ink);
  background: var(--textile);
  border-bottom: 1px solid var(--line-dark);
  transition: box-shadow .25s var(--ease-out);
}
.site-header.scrolled { box-shadow: 0 12px 30px rgba(2, 31, 36, .12); }

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: none;
  min-height: 44px;
  text-decoration: none;
}
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--lime);
  background: var(--lake-ink);
  border: 1px solid var(--lake-ink);
  font-size: .85rem;
  font-weight: 800;
  clip-path: polygon(0 0, 72% 0, 100% 28%, 100% 100%, 28% 100%, 0 72%);
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand-copy strong { font-size: 1.05rem; font-weight: 800; text-transform: uppercase; }
.brand-copy small { margin-top: 5px; color: var(--graphite-soft); font-size: .72rem; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}
.primary-nav > a {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
}
.primary-nav > a:not(.nav-action) { position: relative; }
.primary-nav > a:not(.nav-action)::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -8px;
  left: 0;
  height: 3px;
  background: var(--cobalt);
  transition: right .25s var(--ease-out);
}
.primary-nav > a:not(.nav-action):hover::after { right: 0; }

.nav-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  color: var(--white);
  background: var(--cobalt);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: background .2s, transform .2s var(--ease-out);
}
.nav-action:hover { background: var(--cobalt-deep); transform: translateY(-2px); }

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  padding: 12px;
  color: var(--lake-ink);
  background: transparent;
  border: 1px solid var(--line-dark);
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform .2s var(--ease-out), opacity .2s;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 13px 22px;
  border: 0;
  font-weight: 800;
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: transform .22s var(--ease-out), background .22s, color .22s;
}
.button:hover { transform: translateY(-3px); }
.button-primary { color: var(--lake-deep); background: var(--lime); }
.button-primary:hover { background: var(--white); }
.button-dark { color: var(--lime); background: var(--lake-deep); }
.button-dark:hover { color: var(--white); }
.closing .button-dark:focus-visible {
  outline-color: var(--cobalt-deep);
  box-shadow: none;
}

.text-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 2px solid currentColor;
  font-weight: 600;
  text-decoration: none;
}
.text-action:hover { color: var(--lime); }
.text-action-light { color: var(--white); }

.field-label {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 28px;
  color: var(--cobalt-deep);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.field-label span {
  padding: 5px 8px;
  color: var(--white);
  background: var(--cobalt);
}
.field-label-light { color: var(--aqua-soft); }
.field-label-light span { color: var(--lake-deep); background: var(--aqua); }
.field-label-dark { color: var(--lake-deep); }
.field-label-dark span { color: var(--lake-deep); background: var(--lime); }

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background: var(--lake-ink);
}
.hero-weave {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .14;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: 12px 12px;
  mask-image: linear-gradient(90deg, black, transparent 56%);
}
.hero-layout {
  position: relative;
  z-index: 1;
  min-height: 760px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 55px;
  padding-top: 64px;
  padding-bottom: 64px;
}
.hero-copy { position: relative; z-index: 2; }
.hero h1 {
  max-width: 720px;
  margin-bottom: 32px;
  font-weight: 800;
}
.hero h1 span { color: var(--aqua); }
.hero-lead {
  max-width: 650px;
  margin: 0 0 34px;
  color: #d4e6e7;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.fact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 45px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line-light);
  color: #bad0d2;
  font-size: .84rem;
  list-style: none;
}
.fact-line span { margin-right: 6px; color: var(--lime); font-size: .55rem; }

.route-map {
  position: relative;
  min-height: 650px;
  isolation: isolate;
}
.route-map::before {
  content: "ТЕКСТИЛЕН АТЛАС";
  position: absolute;
  z-index: -2;
  right: -50px;
  top: 45%;
  color: rgba(255,255,255,.05);
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 800;
  line-height: .8;
  transform: rotate(90deg) translateY(-50%);
  transform-origin: right top;
  white-space: nowrap;
}
.route-line {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}
.route-line path { fill: none; stroke-linecap: square; }
.route-shadow { stroke: rgba(2,31,36,.65); stroke-width: 26; }
.route-water {
  stroke: var(--aqua);
  stroke-width: 12;
  stroke-dasharray: 18 12;
  animation: route-flow 2.6s linear infinite;
}
.route-line circle { fill: var(--lime); stroke: var(--lake-deep); stroke-width: 5; }

@keyframes route-flow { to { stroke-dashoffset: -60; } }

.territory {
  position: absolute;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  text-decoration: none;
  box-shadow: 14px 16px 0 rgba(2,31,36,.55);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.territory:hover {
  z-index: 5;
  transform: translate(-5px, -8px);
  box-shadow: 20px 24px 0 rgba(2,31,36,.4);
}
.territory-home {
  top: 0;
  right: 7%;
  width: 54%;
  height: 37%;
  color: var(--white);
  background-color: var(--cobalt);
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.12) 0 1px, transparent 1px 8px);
  clip-path: polygon(0 0, 90% 0, 100% 18%, 95% 100%, 6% 94%);
}
.territory-car {
  top: 33%;
  left: 1%;
  width: 55%;
  height: 34%;
  color: var(--lake-deep);
  background-color: var(--aqua);
  background-image: repeating-linear-gradient(135deg, rgba(5,47,53,.11) 0 2px, transparent 2px 11px);
  clip-path: polygon(7% 7%, 100% 0, 94% 91%, 0 100%);
}
.territory-business {
  right: 0;
  bottom: 0;
  width: 58%;
  height: 37%;
  color: var(--lake-deep);
  background-color: var(--lime);
  background-image: radial-gradient(rgba(5,47,53,.16) 1px, transparent 1px);
  background-size: 10px 10px;
  clip-path: polygon(5% 0, 100% 8%, 94% 100%, 0 91%);
}
.territory-index { margin-bottom: auto; font-size: .75rem; font-weight: 800; }
.territory strong { max-width: 390px; font-size: clamp(1.75rem, 3vw, 3rem); line-height: .95; }
.territory small { margin-top: 10px; font-size: .82rem; font-weight: 600; }
.map-note {
  position: absolute;
  z-index: 5;
  top: 47%;
  right: 4%;
  padding: 9px 12px;
  color: var(--lake-deep);
  background: var(--white);
  border: 2px solid var(--lake-deep);
  font-size: .68rem;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  transform: rotate(5deg);
}

.truth-band {
  color: var(--lake-deep);
  background: var(--aqua);
  border-bottom: 1px solid var(--lake-deep);
}
.truth-content {
  min-height: 104px;
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 40px;
}
.truth-content strong { font-size: 1.05rem; text-transform: uppercase; }
.truth-content p { max-width: 850px; margin: 0; font-size: 1.05rem; }

.services { padding: 120px 0 0; background: var(--textile); }
.section-intro {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 50px 90px;
  align-items: end;
  padding-bottom: 75px;
}
.section-intro .field-label { grid-column: 1 / -1; margin-bottom: -18px; }
.section-intro h2 { max-width: 780px; margin: 0; color: var(--lake-ink); }
.section-intro > p:last-child { max-width: 510px; margin: 0 0 8px; color: var(--graphite-soft); }

.territory-list { border-top: 1px solid var(--line-dark); }
.service-band { position: relative; overflow: hidden; }
.service-band::after {
  content: "";
  position: absolute;
  pointer-events: none;
  inset: 0;
  opacity: .17;
}
.service-home { background: var(--white); }
.service-home::after {
  background-image: repeating-linear-gradient(90deg, var(--cobalt) 0 1px, transparent 1px 15px);
  mask-image: linear-gradient(90deg, transparent 55%, black);
}
.service-car { color: var(--white); background: var(--cobalt); }
.service-car::after {
  background-image: repeating-linear-gradient(135deg, var(--white) 0 1px, transparent 1px 13px);
  mask-image: linear-gradient(90deg, black, transparent 45%);
}
.service-business { background: var(--aqua); }
.service-business::after {
  background-image: radial-gradient(var(--lake-deep) 1px, transparent 1px);
  background-size: 12px 12px;
  mask-image: linear-gradient(90deg, transparent 45%, black);
}
.band-layout {
  position: relative;
  z-index: 1;
  min-height: 390px;
  display: grid;
  grid-template-columns: 120px 1.05fr .95fr;
  grid-template-areas:
    "tag title list"
    "tag limit limit";
  gap: 25px 50px;
  align-items: center;
  padding-top: 74px;
  padding-bottom: 68px;
  border-bottom: 1px solid currentColor;
}
.band-tag { grid-area: tag; align-self: stretch; border-right: 1px solid currentColor; }
.band-tag span { display: block; font-size: 4.5rem; font-weight: 800; line-height: .8; }
.band-tag small { display: block; margin-top: 16px; font-weight: 600; text-transform: uppercase; }
.band-title { grid-area: title; }
.band-title h3 { max-width: 560px; margin-bottom: 0; }
.material-code { margin: 0 0 22px; font-size: .72rem; font-weight: 800; letter-spacing: .08em; }
.band-layout ul {
  grid-area: list;
  margin: 0;
  padding: 0;
  list-style: none;
}
.band-layout li { padding: 8px 0; border-bottom: 1px solid currentColor; font-weight: 600; }
.band-limit { grid-area: limit; max-width: 860px; margin: 8px 0 0; font-size: .86rem; opacity: .8; }

.suitability {
  padding: 125px 0;
  color: var(--white);
  background: var(--lake-ink);
}
.suitability-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
  align-items: center;
}
.inspection-copy h2 { max-width: 590px; margin-bottom: 28px; }
.inspection-copy > p:not(.field-label) { max-width: 590px; margin: 0 0 35px; color: #c4dadb; }
.inspection-sheet {
  position: relative;
  padding: 52px 56px;
  color: var(--lake-deep);
  background: var(--textile);
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 28px 100%, 0 calc(100% - 28px));
}
.inspection-sheet::before {
  content: "";
  position: absolute;
  top: 0;
  right: 70px;
  width: 75px;
  height: 18px;
  background: var(--lime);
}
.sheet-title { margin: 0 0 28px; font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.inspection-sheet ul { margin: 0; padding: 0; list-style: none; }
.inspection-sheet li {
  display: grid;
  grid-template-columns: 42px 1fr;
  padding: 18px 0;
  border-top: 1px solid var(--line-dark);
}
.inspection-sheet li > span { grid-row: span 2; color: var(--cobalt); font-weight: 800; }
.inspection-sheet strong { font-size: 1rem; }
.inspection-sheet small { margin-top: 4px; color: var(--graphite-soft); font-size: .82rem; }
.sheet-warning {
  display: flex;
  gap: 12px;
  margin: 28px 0 0;
  padding-top: 20px;
  border-top: 3px solid var(--cobalt);
  font-size: .84rem;
  font-weight: 600;
}
.sheet-warning span { color: var(--cobalt); font-size: 1.3rem; line-height: 1; }

.process {
  position: relative;
  overflow: hidden;
  padding: 125px 0 135px;
  color: var(--white);
  background: var(--cobalt);
}
.process::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(90deg, white 1px, transparent 1px),
    linear-gradient(white 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, black, transparent 65%);
}
.process-heading { position: relative; z-index: 1; }
.process-heading h2 { max-width: 830px; margin-bottom: 28px; }
.process-heading > p:last-child { max-width: 600px; color: #dbe4ff; }
.process-route { position: relative; z-index: 1; margin-top: 85px; }
.process-line {
  width: 100%;
  height: 90px;
  color: var(--aqua);
}
.process-line path { fill: none; stroke: currentColor; stroke-width: 7; stroke-linecap: square; stroke-dasharray: 16 10; }
.process-route ol {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: -28px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}
.process-route li { min-height: 280px; padding: 35px 24px 0 0; }
.process-route li + li { padding-left: 24px; border-left: 1px solid var(--line-light); }
.process-route li > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 56px;
  color: var(--lake-deep);
  background: var(--lime);
  font-size: .78rem;
  font-weight: 800;
}
.process-route h3 { margin-bottom: 16px; font-size: 1.45rem; line-height: 1; }
.process-route p { margin: 0; color: #dbe4ff; font-size: .86rem; }

.expectations { padding: 125px 0; background: var(--white); }
.expectations-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
}
.expectations h2 { max-width: 640px; color: var(--lake-ink); }
.expectation-list { border-top: 1px solid var(--line-dark); }
.expectation-list article {
  display: grid;
  grid-template-columns: .62fr 1.38fr;
  gap: 35px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-dark);
}
.expectation-list strong { font-size: 1.12rem; line-height: 1.2; }
.expectation-list p { margin: 0; color: var(--graphite-soft); }
.route-jump {
  margin: 42px 0 0;
  grid-column: 1 / -1;
}
.route-jump .button { width: fit-content; max-width: 100%; }

.quote { padding: 125px 0; color: var(--lake-deep); background: var(--aqua); }
.quote-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(50px, 7vw, 100px);
  align-items: start;
}
.quote-guidance { position: sticky; top: 118px; }
.quote-copy h2 { max-width: 580px; margin-bottom: 28px; }
.quote-copy > p:not(.field-label):not(.contact-status) { max-width: 600px; font-size: 1.1rem; }
.contact-status {
  max-width: 600px;
  margin: 40px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(5,47,53,.4);
  font-size: .85rem;
}
.contact-status span { margin-right: 8px; color: var(--cobalt); }
.quote-index { padding-top: 8px; }
.index-heading { margin: 0 0 20px; font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.quote-index ol { margin: 0; padding: 0; list-style: none; border-top: 2px solid var(--lake-deep); }
.quote-index li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 30px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(5,47,53,.4);
}
.quote-index span { color: var(--cobalt-deep); font-size: .8rem; font-weight: 800; text-transform: uppercase; }
.quote-index strong { font-size: 1.12rem; line-height: 1.25; }
.inquiry-panel {
  padding: clamp(28px, 4vw, 52px);
  color: var(--white);
  background: var(--lake-ink);
  box-shadow: 14px 16px 0 rgba(2,31,36,.18);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}
.inquiry-panel .index-heading { color: var(--aqua); }
.inquiry-panel h3 { margin-bottom: 20px; font-size: clamp(2rem, 3.5vw, 3.5rem); }
.inquiry-panel > p { color: #d4e6e7; }
.inquiry-panel form:not([method="get"]) { display: grid; gap: 9px; margin-top: 32px; }
.inquiry-panel label { margin-top: 12px; font-weight: 800; }
.inquiry-panel label span { color: var(--aqua-soft); font-size: .78rem; font-weight: 400; }
/* Text fields only — file/hidden/honeypot inputs must not inherit full-width sizing. */
.inquiry-panel input:not([type="file"]):not([type="hidden"]):not([type="checkbox"]):not([type="radio"]),
.inquiry-panel textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--lake-deep);
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 0;
  font: inherit;
}
.inquiry-panel textarea { min-height: 150px; resize: vertical; }
.inquiry-panel input:not([type="file"]):not([type="hidden"]):focus,
.inquiry-panel textarea:focus { border-color: var(--lime); outline: 3px solid var(--lime); outline-offset: 2px; }
.inquiry-panel small { color: #bad0d2; }
.inquiry-panel .button { width: 100%; margin-top: 22px; cursor: pointer; }
.inquiry-panel .button:disabled { cursor: wait; opacity: .65; }
/* Clip in place — off-canvas left offsets expand document scrollWidth. */
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.inquiry-status { min-height: 1.6em; margin: 8px 0 0; color: var(--lime) !important; font-weight: 800; }
.inquiry-status.error { color: #ffd8d8 !important; }
.inquiry-panel [aria-invalid="true"] { border-color: #ffb7b7; }
.field-error { margin: 0; color: #ffd8d8; font-size: .86rem; font-weight: 600; }
.image-picker {
  position: relative;
  display: grid;
  gap: 9px;
  min-width: 0;
  margin: 20px 0 0;
  padding: 18px;
  border: 1px solid var(--line-light);
}
.image-picker legend { padding: 0 8px; font-weight: 800; }
.image-picker legend span { color: var(--aqua-soft); font-size: .78rem; font-weight: 400; }
.image-picker-control { display: inline-flex; justify-content: center; margin: 0 !important; padding: 12px 16px; color: var(--lake-ink); background: var(--aqua-soft); cursor: pointer; }
.inquiry-panel .image-picker-input,
.image-picker-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.image-picker-input:focus + .image-warning,
.image-picker-control:focus-within {
  outline: 3px solid var(--lime);
  outline-offset: 2px;
}
.image-picker-input:focus-visible ~ .image-warning { outline: none; }
.image-picker:has(.image-picker-input:focus-visible) .image-picker-control {
  outline: 3px solid var(--lime);
  outline-offset: 2px;
}
.image-warning { margin: 5px 0; color: #ffd8d8; font-size: .86rem; }
.image-limits {
  border: 0;
  border-top: 1px solid var(--line-light);
  margin: 0;
}
.image-limits summary {
  min-height: 44px;
  padding: 10px 0;
  color: var(--aqua-soft);
  font-size: .9rem;
  font-weight: 600;
}
.image-limits #image-help,
.image-limits p {
  margin: 0 0 10px;
  color: #bad0d2;
  font-size: .84rem;
}
.surface-picker {
  margin: 4px 0 8px;
  padding: 16px 0 4px;
  border: 0;
  border-top: 1px solid var(--line-light);
}
.surface-picker legend {
  padding: 0;
  font-weight: 800;
}
.surface-picker legend span {
  color: var(--aqua-soft);
  font-size: .78rem;
  font-weight: 400;
}
.surface-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.surface-chip {
  min-height: 44px;
  padding: 8px 14px;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--aqua-soft);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.surface-chip.is-active,
.surface-chip[aria-pressed="true"] {
  color: var(--lake-ink);
  background: var(--lime);
  border-color: var(--lime);
}
.surface-chip:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 2px;
}
.surface-hint {
  margin: 12px 0 0 !important;
  color: #bad0d2 !important;
  font-size: .88rem;
}
.image-previews { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 10px; }
.image-preview { display: grid; align-content: start; gap: 7px; min-width: 0; padding: 9px; background: rgba(255,255,255,.08); }
.image-preview-visual { display: grid; place-items: center; aspect-ratio: 4 / 3; padding: 8px; color: #d4e6e7; background: rgba(0,0,0,.22); font-size: .75rem; text-align: center; }
.image-preview-visual img { width: 100%; height: 100%; object-fit: cover; }
.image-preview-name { overflow: hidden; font-size: .76rem; text-overflow: ellipsis; white-space: nowrap; }
.image-preview-remove { min-height: 40px; border: 1px solid var(--aqua-soft); color: var(--white); background: transparent; font: inherit; font-size: .8rem; cursor: pointer; }
.image-preview-remove:focus-visible { outline: 3px solid var(--lime); outline-offset: 2px; }
.image-status { min-height: 1.3em; margin: 0; color: var(--aqua-soft); font-size: .84rem; }
.image-status.error { color: #ffd8d8; }
.collection-summary { margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line-light); font-size: .9rem; }
.collection-notice { border-top: 1px solid var(--line-light); border-bottom-color: var(--line-light); }
.collection-notice summary { color: var(--white); }
.collection-notice div { padding-bottom: 8px; }
.collection-notice p { margin: 0 0 18px; color: #d4e6e7; font-size: .86rem; }
noscript .button { margin-top: 20px; }

.faq { padding: 125px 0; background: var(--textile); }
.faq-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 100px;
  align-items: start;
}
.faq-heading { position: sticky; top: 120px; }
.faq-heading h2 { max-width: 500px; color: var(--lake-ink); }
.faq-heading > p:last-child { max-width: 420px; color: var(--graphite-soft); }
.faq-list { border-top: 2px solid var(--lake-ink); }
details { border-bottom: 1px solid var(--line-dark); }
summary {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 21px 0;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 600;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary span {
  color: var(--cobalt);
  font-size: 1.65rem;
  font-weight: 400;
  transition: transform .25s var(--ease-out);
}
details[open] summary span { transform: rotate(45deg); }
details p { max-width: 720px; margin: -4px 55px 26px 0; color: var(--graphite-soft); }

.closing { padding: 100px 0; color: var(--lake-deep); background: var(--lime); }
.closing-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px 60px;
  align-items: end;
}
.closing-layout .field-label { grid-column: 1 / -1; margin-bottom: -4px; }
.closing-layout h2 { max-width: 900px; margin: 0; font-size: clamp(2.5rem, 5vw, 4.8rem); }

.site-footer { padding: 80px 0 28px; color: #bdd1d3; background: var(--lake-deep); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .6fr .7fr;
  gap: 70px;
  padding-bottom: 65px;
}
.footer-brand .brand { color: var(--white); }
.footer-brand .brand-mark { color: var(--lake-deep); background: var(--lime); border-color: var(--lime); }
.footer-brand .brand-copy small { color: #92afb1; }
.footer-brand > p { max-width: 440px; margin: 28px 0 0; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; font-size: .88rem; }
.footer-links strong { margin-bottom: 10px; color: var(--aqua); font-size: .78rem; text-transform: uppercase; }
.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.footer-links a:hover { color: var(--lime); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 25px;
  border-top: 1px solid var(--line-light);
  font-size: .72rem;
}
.footer-bottom p { margin: 0; }

@media (max-width: 1080px) {
  .primary-nav { gap: 18px; }
  .primary-nav > a { font-size: .82rem; }
  .hero-layout { grid-template-columns: .9fr 1.1fr; gap: 25px; }
  .route-map { transform: scale(.92); transform-origin: center; }
  .band-layout { grid-template-columns: 90px 1fr 1fr; gap: 25px 35px; }
  .suitability-layout, .expectations-layout, .quote-layout, .faq-layout { gap: 65px; }
  .process-route li { padding-right: 14px; }
  .process-route li + li { padding-left: 14px; }
}

@media (max-width: 860px) {
  :root { --shell: min(100% - 32px, 720px); }
  html { scroll-padding-top: 76px; }
  .nav-wrap { min-height: 72px; }
  .js .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }
  .js .primary-nav {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 22px 16px 32px;
    color: var(--white);
    background: var(--lake-ink);
    border-bottom: 1px solid var(--aqua);
  }
  .js .primary-nav.open { display: flex; }
  .js .primary-nav > a { min-height: 50px; display: flex; align-items: center; padding: 9px 12px; font-size: 1rem; }
  .js .primary-nav .nav-action { margin-top: 10px; color: var(--lake-deep); background: var(--lime); }
  html:not(.js) .nav-wrap {
    flex-wrap: wrap;
    height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  html:not(.js) .primary-nav {
    flex-basis: 100%;
    flex-wrap: wrap;
    gap: 4px 18px;
  }
  html:not(.js) .nav-action { display: none; }
  .hero, .hero-layout { min-height: auto; }
  .hero-layout { grid-template-columns: 1fr; gap: 28px; padding-top: 48px; padding-bottom: 40px; }
  .hero-copy { max-width: 680px; }
  .hero h1 { margin-bottom: 22px; }
  .hero-lead { margin-bottom: 24px; }
  .fact-line { margin-top: 28px; padding-top: 18px; }
  .route-map { width: min(100%, 520px); min-height: 420px; margin-inline: auto; transform: none; }
  .truth-content { grid-template-columns: 1fr; gap: 8px; padding-top: 20px; padding-bottom: 20px; }
  /* Early convert block: less chrome so fields arrive sooner after the hero. */
  .quote { padding: 56px 0 72px; }
  .quote-copy h2 { margin-bottom: 18px; }
  .quote-index { margin-top: 8px; }
  .inquiry-panel { padding: clamp(22px, 5vw, 36px); }
  .section-intro { grid-template-columns: 1fr; gap: 25px; }
  .section-intro .field-label { margin-bottom: 0; }
  .band-layout {
    grid-template-columns: 75px 1fr;
    grid-template-areas:
      "tag title"
      "tag list"
      "tag limit";
  }
  .suitability-layout, .expectations-layout, .quote-layout, .faq-layout { grid-template-columns: 1fr; gap: 60px; }
  /* Act first on small screens: form panel before the long prep copy. */
  .quote-layout { display: flex; flex-direction: column; gap: 36px; }
  .inquiry-panel { order: -1; }
  .quote-guidance { position: static; }
  .faq-heading { position: static; }
  .process-route ol { grid-template-columns: repeat(2, 1fr); margin-top: 10px; }
  .process-route li { min-height: 250px; padding: 28px 24px 28px 0; border-top: 1px solid var(--line-light); }
  .process-route li + li { padding-left: 24px; }
  .process-route li:nth-child(3), .process-route li:nth-child(5) { padding-left: 0; border-left: 0; }
  .process-route li > span { margin-bottom: 38px; }
  .process-line { display: none; }
  .closing-layout { grid-template-columns: 1fr; align-items: start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  :root { --shell: min(100% - 24px, 520px); }
  body { font-size: 16px; }
  h1 { font-size: clamp(3rem, 14.5vw, 4.4rem); }
  h2 { font-size: clamp(2.55rem, 12vw, 3.7rem); }
  .brand-mark { width: 42px; height: 42px; }
  .brand-copy strong { font-size: .9rem; }
  .brand-copy small { font-size: .64rem; }
  .hero-layout { padding-top: 42px; padding-bottom: 32px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .text-action { align-self: flex-start; }
  .fact-line { flex-direction: column; gap: 8px; }
  .route-map { min-height: 360px; margin-top: 0; }
  .route-map::before { display: none; }
  .territory { padding: 16px; box-shadow: 8px 10px 0 rgba(2,31,36,.5); }
  .territory-home { right: 1%; width: 62%; height: 34%; }
  .territory-car { top: 31%; width: 63%; height: 33%; }
  .territory-business { width: 68%; height: 34%; }
  .territory strong { font-size: 1.45rem; }
  .territory small { font-size: .68rem; }
  .map-note { display: none; }
  .route-water { stroke-width: 9; }
  .route-shadow { stroke-width: 20; }
  .quote { padding: 48px 0 64px; }
  .inquiry-panel h3 { font-size: clamp(1.65rem, 8vw, 2.2rem); margin-bottom: 14px; }
  .inquiry-panel > p { font-size: .95rem; }
  .services { padding-top: 72px; }
  .section-intro { padding-bottom: 50px; }
  .band-layout {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-areas:
      "tag"
      "title"
      "list"
      "limit";
    gap: 25px;
    padding-top: 55px;
    padding-bottom: 52px;
  }
  .band-tag { display: flex; align-items: center; gap: 14px; padding-bottom: 17px; border-right: 0; border-bottom: 1px solid currentColor; }
  .band-tag span { font-size: 3rem; }
  .band-tag small { margin: 0; }
  .suitability, .process, .expectations, .faq { padding-top: 88px; padding-bottom: 92px; }
  .inspection-sheet { padding: 42px 24px 32px; }
  .inspection-sheet li { grid-template-columns: 36px 1fr; }
  .process-route { margin-top: 55px; }
  .process-route ol { grid-template-columns: 1fr; }
  .process-route li, .process-route li + li, .process-route li:nth-child(3), .process-route li:nth-child(5) {
    min-height: auto;
    display: grid;
    grid-template-columns: 48px 1fr;
    padding: 25px 0;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }
  .process-route li > span { grid-row: span 2; margin: 0; }
  .process-route h3 { margin: 2px 0 8px; }
  .process-route p { grid-column: 2; }
  .expectation-list article { grid-template-columns: 1fr; gap: 10px; }
  .quote-index li { grid-template-columns: 78px 1fr; gap: 18px; }
  .faq-layout { gap: 40px; }
  summary { font-size: 1rem; }
  .closing { padding: 76px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

/* —— Multi-page service landings —— */
.service-hero {
  position: relative;
  padding: 118px 0 54px;
  background:
    radial-gradient(circle at 12% 18%, rgba(38, 210, 204, .14), transparent 42%),
    linear-gradient(165deg, #041f24 0%, #0a3a42 55%, #052f35 140%);
  color: var(--white);
  overflow: clip;
}
.service-hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -28% auto;
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  border-radius: 40% 60% 55% 45%;
  background: rgba(38, 210, 204, .1);
  pointer-events: none;
}
.service-mebel .service-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(196, 247, 92, .12), transparent 40%),
    linear-gradient(155deg, #041f24 0%, #0b3d46 50%, #0a2a6e 130%);
}
.service-dusheci .service-hero {
  background:
    radial-gradient(circle at 20% 70%, rgba(38, 210, 204, .16), transparent 45%),
    linear-gradient(175deg, #031a1e 0%, #0d4550 60%, #052f35 120%);
}
.service-tepisi .service-hero {
  background:
    repeating-linear-gradient(-18deg, transparent 0 14px, rgba(196, 247, 92, .05) 14px 15px),
    linear-gradient(160deg, #041f24 0%, #12343b 55%, #0c2fa9 150%);
}
.service-vozila .service-hero {
  background:
    radial-gradient(circle at 70% 60%, rgba(12, 47, 169, .35), transparent 50%),
    linear-gradient(145deg, #03161a 0%, #0a3038 45%, #081f5c 130%);
}
.service-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  max-width: 860px;
}
.service-hero h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  max-width: 18ch;
  text-shadow: 0 2px 18px rgba(2, 20, 24, .45);
}
.service-hero .field-label {
  color: #e7fffd;
}
.service-hero .field-label span {
  color: var(--lime);
}
.service-hero .text-action {
  color: var(--lime);
}
.service-mark {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  max-width: 340px;
  margin-top: 8px;
  padding: 12px 14px;
  border: 1px solid rgba(231, 255, 253, .28);
  background: rgba(2, 31, 36, .35);
}
.service-mark svg {
  width: 52px;
  height: 52px;
  display: block;
}
.service-mark strong {
  display: block;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--lime);
}
.service-mark small {
  display: block;
  margin-top: 4px;
  color: #d4e6e7;
  font-size: .9rem;
}
.service-body {
  padding: 64px 0 88px;
}
.prose {
  max-width: 68ch;
}
.prose h2 {
  margin: 1.5em 0 .55em;
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
  color: var(--lake-ink);
}
.prose p {
  margin: 0 0 1em;
  color: var(--graphite);
  font-size: 1.05rem;
}
.prose ul,
.prose ol {
  margin: 0 0 1.2em;
  padding-left: 1.2em;
  color: var(--graphite);
}
.prose li + li {
  margin-top: .45em;
}
.prose a {
  color: var(--cobalt-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.prose a:hover {
  color: var(--cobalt);
}
.service-cta-line {
  margin-top: 2.2em;
}
.service-mid-cta {
  margin: 2em 0;
  padding: 1.1em 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.specimen-index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0 48px;
}
.specimen {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 168px;
  padding: 22px 22px 20px;
  color: var(--white);
  text-decoration: none;
  overflow: hidden;
  box-shadow: 10px 12px 0 rgba(2, 31, 36, .12);
}
.specimen:hover,
.specimen:focus-visible {
  transform: translateY(-2px);
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}
.specimen-index-mark {
  position: absolute;
  right: 16px;
  top: 14px;
  font-size: 2rem;
  font-weight: 800;
  opacity: .22;
}
.specimen-kicker {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--lime);
}
.specimen strong {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  line-height: 1.15;
}
.specimen small {
  color: #d4e6e7;
  font-size: .95rem;
  line-height: 1.35;
}
.specimen-mebel {
  background:
    linear-gradient(145deg, #0a3a42 0%, #0c2fa9 120%);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}
.specimen-dusheci {
  background:
    linear-gradient(160deg, #052f35 0%, #147a74 110%);
  clip-path: polygon(0 12px, 12px 0, 100% 0, 100% 100%, 0 100%);
}
.specimen-tepisi {
  background:
    repeating-linear-gradient(90deg, rgba(196,247,92,.08) 0 2px, transparent 2px 18px),
    linear-gradient(150deg, #0b2f36 0%, #0a3a42 55%, #1b4d18 140%);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
}
.specimen-vozila {
  background:
    linear-gradient(135deg, #031a1e 0%, #0c2fa9 90%);
  clip-path: polygon(14px 0, 100% 0, 100% 100%, 0 100%, 0 14px);
}
.footer-links a[aria-current="page"] {
  color: var(--lime);
  font-weight: 800;
}
.primary-nav a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 5px;
}

@media (max-width: 720px) {
  .service-hero {
    padding: 100px 0 42px;
  }
  .service-body {
    padding: 48px 0 72px;
  }
  .specimen-index {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .route-water { stroke-dasharray: none; }
  .specimen:hover,
  .specimen:focus-visible {
    transform: none;
  }
}
