:root {
  --bg: #06101f;
  --bg-2: #0a1830;
  --panel: #0d2039;
  --panel-2: #102943;
  --line: rgba(176, 232, 255, 0.18);
  --text: #f4fbff;
  --muted: #b6c7d7;
  --soft: #d9eef8;
  --accent: #42d4ff;
  --accent-2: #13a8d8;
  --warning: #ffd166;
  --dark-text: #07111f;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 0%, rgba(66, 212, 255, 0.12), transparent 34%),
    linear-gradient(180deg, #06101f 0%, #08182b 38%, #07111f 100%);
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
}

body::before {
  inset: 76px 0 0;
  z-index: 0;
  opacity: 0;
  background-repeat: no-repeat;
  background-size: min(980px, 72vw) auto;
  background-position: right -160px top 140px;
  transition: opacity 0.2s ease;
}

body::after {
  right: clamp(20px, 5vw, 90px);
  top: 118px;
  z-index: 0;
  opacity: 0;
  color: rgba(217, 238, 248, 0.035);
  font-size: clamp(64px, 14vw, 210px);
  font-weight: 950;
  line-height: 0.85;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

body.surface-sto::before {
  opacity: 0.13;
  background-image:
    linear-gradient(180deg, rgba(6, 16, 31, 0), rgba(6, 16, 31, 0.84)),
    url("/assets/img/blueprint-chassis.png");
}

body.surface-diagnostics::before {
  background-image:
    linear-gradient(180deg, rgba(6, 16, 31, 0), rgba(6, 16, 31, 0.84)),
    url("/assets/img/blueprint-diagnostics.png");
}

body.surface-electric::before {
  background-image:
    linear-gradient(180deg, rgba(6, 16, 31, 0), rgba(6, 16, 31, 0.84)),
    url("/assets/img/blueprint-electric.png");
}

body.surface-brakes::before {
  background-image:
    linear-gradient(180deg, rgba(6, 16, 31, 0), rgba(6, 16, 31, 0.84)),
    url("/assets/img/blueprint-brakes.png");
}

body.surface-maintenance::before {
  background-image:
    linear-gradient(180deg, rgba(6, 16, 31, 0), rgba(6, 16, 31, 0.84)),
    url("/assets/img/blueprint-maintenance.png");
}

body.surface-trailer::before {
  background-image:
    linear-gradient(180deg, rgba(6, 16, 31, 0), rgba(6, 16, 31, 0.84)),
    url("/assets/img/blueprint-trailer.png");
}

body.surface-alignment::before {
  background-image:
    linear-gradient(180deg, rgba(6, 16, 31, 0), rgba(6, 16, 31, 0.84)),
    url("/assets/img/blueprint-alignment.png");
}

body.surface-wash::before {
  opacity: 0.16;
  background:
    radial-gradient(ellipse at 78% 18%, rgba(66, 212, 255, 0.18), transparent 34%),
    linear-gradient(135deg, transparent 0 18%, rgba(66, 212, 255, 0.08) 18.4% 18.8%, transparent 19.2% 100%),
    linear-gradient(115deg, transparent 0 42%, rgba(217, 238, 248, 0.06) 42.2% 42.7%, transparent 43% 100%);
  background-size: auto, 360px 360px, 520px 520px;
  background-position: center, right 40px top 110px, left 80px top 240px;
}

body.surface-home::before {
  opacity: 0.18;
  background:
    radial-gradient(ellipse at 84% 16%, rgba(66, 212, 255, 0.18), transparent 36%),
    linear-gradient(118deg, transparent 0 24%, rgba(66, 212, 255, 0.08) 24.2% 24.55%, transparent 24.8% 100%),
    linear-gradient(145deg, transparent 0 58%, rgba(217, 238, 248, 0.05) 58.2% 58.55%, transparent 58.8% 100%);
  background-size: auto, 460px 460px, 620px 620px;
  background-position: center, right 8vw top 120px, right 24vw top 260px;
}

body.surface-home::after {
  content: "SCANIA\A VOLVO\A MAN\A MERCEDES-BENZ\A HOWO\A SHACMAN\A SITRAK";
  top: 128px;
  right: -70px;
  z-index: 0;
  opacity: 0.72;
  color: rgba(217, 238, 248, 0.075);
  font-size: clamp(58px, 8.8vw, 142px);
  line-height: 0.72;
  text-align: right;
  white-space: pre;
  transform: rotate(-7deg);
  text-shadow: 0 0 42px rgba(66, 212, 255, 0.1);
}

body.surface-brand::after {
  content: attr(data-brand);
  opacity: 1;
}

.site-header,
main,
.site-footer {
  position: relative;
}

main,
.site-footer {
  z-index: 1;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(6, 16, 31, 0.9);
  backdrop-filter: blur(18px);
}

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

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand img {
  width: 46px;
  height: 46px;
}

.brand strong {
  display: block;
  font-size: 15px;
  line-height: 1.15;
}

.brand span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--soft);
  font-size: 14px;
}

.nav-link,
.main-nav > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 10px;
  border-radius: var(--radius);
  opacity: 0.9;
}

.main-nav a:hover,
.main-nav a.active,
.nav-item.is-active > .nav-link {
  color: var(--accent);
  background: rgba(66, 212, 255, 0.08);
  opacity: 1;
}

.nav-item {
  position: relative;
}

.has-dropdown > .nav-link::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.78;
}

.dropdown-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  z-index: 70;
  min-width: 230px;
  display: none;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(176, 232, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(7, 17, 31, 0.98);
  box-shadow: var(--shadow);
  opacity: 1;
  visibility: visible;
  transform: translateY(-6px);
  transition: transform 0.16s ease;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}

.nav-item:hover > .dropdown-menu {
  display: grid;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  border-radius: calc(var(--radius) - 2px);
  padding: 10px 12px;
  color: var(--soft);
  opacity: 0.92;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
  color: var(--accent);
  background: rgba(66, 212, 255, 0.1);
}

.wide-dropdown {
  min-width: 290px;
}

.brands-dropdown {
  min-width: 300px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-link {
  color: var(--soft);
  font-weight: 700;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

.btn-primary {
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  color: #001724;
  box-shadow: 0 16px 40px rgba(19, 168, 216, 0.28);
}

.btn-secondary {
  color: var(--text);
  border-color: rgba(217, 238, 248, 0.46);
  background: rgba(255, 255, 255, 0.045);
}

.btn-ghost {
  color: var(--accent);
  border-color: rgba(66, 212, 255, 0.38);
  background: transparent;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 92px 0 72px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 16, 31, 0.96) 0%, rgba(6, 16, 31, 0.82) 44%, rgba(6, 16, 31, 0.34) 100%),
    linear-gradient(180deg, rgba(6, 16, 31, 0.2) 0%, rgba(6, 16, 31, 0.88) 100%);
}

.hero-grid {
  display: block;
}

.hero-grid > div:first-child {
  max-width: 920px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
}

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

h1 {
  max-width: 920px;
  font-size: clamp(32px, 5vw, 56px);
}

h2 {
  font-size: clamp(26px, 3.2vw, 40px);
}

h3 {
  font-size: 22px;
}

p {
  margin: 0;
}

.lead {
  margin-top: 22px;
  max-width: 760px;
  color: var(--soft);
  font-size: 19px;
}

.sublead {
  margin-top: 14px;
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.facts li,
.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.04);
  font-size: 14px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #0b1627;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.breadcrumb {
  margin: 28px 0 -28px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--accent);
}

.section {
  position: relative;
  padding: 70px 0;
}

.section.alt {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.048), rgba(255, 255, 255, 0.024)),
    rgba(255, 255, 255, 0.035);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

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

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

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

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

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

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(66, 212, 255, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.032));
  padding: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(66, 212, 255, 0.62), transparent);
  opacity: 0.6;
}

.card p,
.step p,
.contact-card p {
  margin-top: 12px;
  color: var(--muted);
}

.card .btn {
  margin-top: 22px;
}

.service-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 0;
}

.service-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.service-card-content {
  padding: 24px;
}

.icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: var(--radius);
  background: rgba(66, 212, 255, 0.13);
  color: var(--accent);
  font-weight: 900;
}

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

.tile-list li {
  position: relative;
  overflow: hidden;
  min-height: 64px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px 14px 42px;
  background:
    linear-gradient(135deg, rgba(66, 212, 255, 0.08), transparent 44%),
    rgba(255, 255, 255, 0.045);
  color: var(--soft);
  font-weight: 700;
}

.tile-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 18px rgba(66, 212, 255, 0.42);
}

.tile-list li::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -42px;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(66, 212, 255, 0.12);
  border-radius: 50%;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.equipment-card {
  position: relative;
  min-height: 250px;
  display: flex;
  align-items: end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0b1627;
}

.equipment-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.equipment-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 16, 31, 0.03) 0%, rgba(6, 16, 31, 0.82) 100%);
}

.equipment-card:hover img {
  transform: scale(1.04);
}

.equipment-card-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 20px 22px;
}

.equipment-card-content h3 {
  color: var(--accent);
  font-size: 20px;
  line-height: 1.15;
}

.feature-card {
  display: block;
  min-height: 230px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(66, 212, 255, 0.42);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(66, 212, 255, 0.24), rgba(19, 168, 216, 0.12));
  color: #dff9ff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  font-size: 15px;
  font-weight: 950;
  margin-bottom: 18px;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
}

.feature-card h3 {
  font-size: 21px;
  min-height: 46px;
}

.feature-card p {
  margin-top: 18px;
}

.fleet-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(6, 16, 31, 0.94), rgba(6, 16, 31, 0.72)),
    url("/assets/img/alignment-service.webp") center / cover;
}

.fleet-section .cta-band {
  max-width: 760px;
  background: rgba(8, 22, 39, 0.76);
  backdrop-filter: blur(10px);
}

.price-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.price-table th,
.price-table td {
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.price-table th {
  color: var(--accent);
  background: rgba(66, 212, 255, 0.07);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.price-table td:last-child,
.price-table th:last-child {
  text-align: right;
  white-space: nowrap;
  font-weight: 800;
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.wash-switcher {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

.wash-options {
  display: grid;
  gap: 12px;
}

.wash-option {
  width: 100%;
  min-height: 150px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  text-align: left;
  cursor: pointer;
}

.wash-option:hover,
.wash-option.is-active {
  border-color: rgba(66, 212, 255, 0.7);
  background: rgba(66, 212, 255, 0.095);
}

.wash-option-num {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(66, 212, 255, 0.16);
  color: var(--accent);
  border: 1px solid rgba(66, 212, 255, 0.38);
  font-weight: 950;
}

.wash-option strong {
  display: block;
  font-size: 21px;
  line-height: 1.15;
}

.wash-option span:last-child {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.4;
}

.wash-detail {
  display: none;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 22px;
  min-height: 312px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.035));
}

.wash-detail.is-active {
  display: grid;
}

.wash-scheme {
  min-height: 300px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
}

.wash-scheme img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(176, 232, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.wash-detail-text h3 {
  font-size: 28px;
}

.wash-detail-text p {
  margin-top: 12px;
  color: var(--soft);
}

.wash-detail-text ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.wash-detail-text li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.wash-detail-text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.price-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.price-group {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
}

.price-group h3 {
  padding: 18px 20px;
  background: rgba(66, 212, 255, 0.08);
  border-bottom: 1px solid var(--line);
  font-size: 20px;
}

.price-list {
  margin: 0;
  padding: 0;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 13px 20px;
  border-bottom: 1px solid var(--line);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row dt,
.price-row dd {
  margin: 0;
}

.price-row dt {
  color: var(--soft);
}

.price-row dd {
  color: var(--text);
  font-weight: 900;
  white-space: nowrap;
}

.tech-bonus {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 72% 24%, rgba(66, 212, 255, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
}

.tech-bonus-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: 34px;
  align-items: center;
}

.bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  border: 1px solid rgba(66, 212, 255, 0.36);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--accent);
  background: rgba(66, 212, 255, 0.1);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.bonus-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(66, 212, 255, 0.85);
}

.tech-bonus h2 {
  max-width: 620px;
}

.tech-bonus .lead {
  font-size: 18px;
}

.bonus-conditions {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.bonus-conditions li {
  position: relative;
  padding-left: 28px;
  color: var(--soft);
}

.bonus-conditions li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 950;
}

.bonus-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(66, 212, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(2, 9, 18, 0.54);
  box-shadow: var(--shadow);
}

.bonus-visual img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.bonus-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(66, 212, 255, 0.18) 46%, rgba(255, 255, 255, 0.34) 50%, rgba(66, 212, 255, 0.18) 54%, transparent 100%);
  transform: translateX(-115%);
  animation: scan-pass 4.8s ease-in-out infinite;
  pointer-events: none;
}

.bonus-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(66, 212, 255, 0.22);
  border-radius: inherit;
  box-shadow: inset 0 0 42px rgba(66, 212, 255, 0.16);
  pointer-events: none;
}

@keyframes scan-pass {
  0%, 22% {
    transform: translateX(-115%);
  }
  58%, 100% {
    transform: translateX(115%);
  }
}

.tech-zones {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.tech-zone {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.tech-zone span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 50%;
  color: var(--dark-text);
  background: var(--accent);
  font-weight: 950;
}

.tech-zone h3 {
  font-size: 18px;
}

.tech-zone p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.fleet-contract {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.035));
}

.fleet-contract-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  gap: 0;
}

.fleet-contract-content {
  padding: 34px;
}

.fleet-contract-content p {
  margin-top: 14px;
  color: var(--soft);
}

.fleet-terms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.fleet-term {
  border: 1px solid rgba(176, 232, 255, 0.16);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(2, 9, 18, 0.28);
}

.fleet-term strong {
  display: block;
  color: var(--text);
  font-size: 16px;
}

.fleet-term span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
}

.fleet-contract-media {
  position: relative;
  min-height: 430px;
  overflow: hidden;
}

.fleet-contract-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-contract-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 16, 31, 0.56), rgba(6, 16, 31, 0.06));
}

.fleet-contract.compact .fleet-contract-content {
  padding: 30px;
}

.fleet-contract.compact .fleet-contract-media {
  min-height: 360px;
}

.price-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.decision-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
  align-items: stretch;
}

.decision-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(66, 212, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
}

.decision-panel h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.decision-panel p {
  margin-top: 14px;
  color: var(--soft);
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(66, 212, 255, 0.42);
}

.summary-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.summary-row {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  border: 1px solid rgba(66, 212, 255, 0.26);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: rgba(66, 212, 255, 0.06);
}

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

.summary-row strong {
  color: var(--text);
  font-size: 18px;
  line-height: 1.3;
}

.equipment-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.equipment-real-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 74% 10%, rgba(66, 212, 255, 0.15), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
}

.equipment-real-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(217, 238, 248, 0.12), rgba(66, 212, 255, 0.035)),
    #0b1627;
  border-bottom: 1px solid rgba(176, 232, 255, 0.16);
  filter: saturate(0.92) contrast(1.04);
}

.equipment-real-card-content {
  padding: 20px;
}

.equipment-real-card-content h3 {
  font-size: 20px;
}

.equipment-real-card-content p {
  margin-top: 10px;
  color: var(--muted);
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  counter-reset: result;
}

.result-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.result-item::before {
  counter-increment: result;
  content: "0" counter(result);
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent);
  font-weight: 950;
}

.result-item h3 {
  font-size: 20px;
}

.result-item p {
  margin-top: 10px;
  color: var(--muted);
}

.service-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.service-link-card {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.service-link-card span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-link-card strong {
  display: block;
  margin-top: 10px;
  font-size: 20px;
  line-height: 1.15;
}

.service-link-card small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.price-pill {
  border: 1px solid rgba(66, 212, 255, 0.32);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(66, 212, 255, 0.08);
}

.price-pill span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.price-pill strong {
  display: block;
  margin-top: 5px;
  color: var(--text);
  font-size: 26px;
}

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.step {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--dark-text);
  font-weight: 900;
}

.cta-band {
  border: 1px solid rgba(66, 212, 255, 0.32);
  border-radius: var(--radius);
  padding: 34px;
  background:
    linear-gradient(90deg, rgba(66, 212, 255, 0.13), rgba(255, 255, 255, 0.035)),
    var(--panel);
}

.cta-band p {
  max-width: 820px;
  margin-top: 12px;
  color: var(--soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
}

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

.map-box {
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(66, 212, 255, 0.18), transparent 40%),
    linear-gradient(45deg, rgba(255, 255, 255, 0.045) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.045) 50%, rgba(255, 255, 255, 0.045) 75%, transparent 75%, transparent);
  background-size: auto, 36px 36px;
  color: var(--soft);
  text-align: center;
}

.yandex-map {
  width: 100%;
  height: 100%;
  min-height: 330px;
}

.map-box strong {
  display: block;
  color: var(--text);
  font-size: 24px;
}

.form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(255, 255, 255, 0.055);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.form-grid .wide {
  grid-column: 1 / -1;
}

label {
  display: block;
  color: var(--soft);
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid rgba(217, 238, 248, 0.22);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--text);
  background: rgba(3, 10, 20, 0.72);
  outline: none;
}

textarea {
  min-height: 108px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
}

.form-note,
.success-message {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.form-consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 4px 0 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--accent);
}

.form-consent a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.success-message {
  display: none;
  color: var(--accent);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

summary {
  position: relative;
  cursor: pointer;
  padding: 18px 52px 18px 20px;
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: translateY(-62%) rotate(45deg);
  transform-origin: 62% 62%;
  transition: transform 0.24s ease, border-color 0.24s ease;
}

details.is-open > summary::after,
details[open] > summary::after {
  transform: translateY(-42%) rotate(225deg);
}

summary:hover::after {
  border-color: var(--text);
}

details p {
  padding: 0 20px 20px;
  color: var(--muted);
}

.site-footer {
  padding: 46px 0 96px;
  border-top: 1px solid var(--line);
  background: #050d19;
}

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

.footer-grid p,
.footer-grid a {
  color: var(--muted);
}

.footer-grid a {
  display: block;
  margin-top: 8px;
}

.legal {
  margin-top: 26px;
  color: rgba(217, 238, 248, 0.58);
  font-size: 13px;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px;
  background: rgba(6, 16, 31, 0.94);
  border-top: 1px solid var(--line);
}

.blueprint-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(66, 212, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(66, 212, 255, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, rgba(66, 212, 255, 0.08), rgba(7, 17, 31, 0.18) 46%, rgba(255, 209, 102, 0.05));
  background-size: 30px 30px, 30px 30px, auto;
  border-top: 1px solid rgba(176, 232, 255, 0.12);
  border-bottom: 1px solid rgba(176, 232, 255, 0.12);
}

.blueprint-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 28px;
  align-items: center;
}

.blueprint-copy {
  max-width: 560px;
}

.blueprint-copy h2 {
  margin: 10px 0 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.blueprint-copy p {
  color: var(--soft);
  font-size: 17px;
}

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

.blueprint-list li {
  position: relative;
  padding-left: 24px;
  color: var(--soft);
}

.blueprint-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 20px rgba(66, 212, 255, 0.7);
}

.blueprint-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.blueprint-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid rgba(66, 212, 255, 0.3);
  border-radius: 999px;
  color: var(--soft);
  background: rgba(66, 212, 255, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.blueprint-visual {
  position: relative;
  min-height: 340px;
  padding: 18px;
  border: 1px solid rgba(66, 212, 255, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 70% 18%, rgba(66, 212, 255, 0.15), transparent 34%),
    rgba(4, 13, 26, 0.72);
  box-shadow: var(--shadow);
}

.blueprint-visual.generated-blueprint {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: #030c18;
}

.blueprint-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  opacity: 0.94;
  filter: saturate(1.08) contrast(1.04);
}

.generated-blueprint::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 12, 24, 0.04), rgba(3, 12, 24, 0.34)),
    radial-gradient(circle at 72% 18%, rgba(66, 212, 255, 0.16), transparent 28%);
}

.blueprint-hotspots {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.pin {
  position: absolute;
  min-width: 132px;
  max-width: 188px;
  padding: 10px 12px 10px 36px;
  border: 1px solid rgba(66, 212, 255, 0.36);
  border-radius: var(--radius);
  background: rgba(3, 12, 24, 0.78);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28), 0 0 24px rgba(66, 212, 255, 0.14);
  backdrop-filter: blur(10px);
}

.pin i {
  position: absolute;
  left: 13px;
  top: 15px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(66, 212, 255, 0.12), 0 0 22px rgba(66, 212, 255, 0.9);
}

.pin strong,
.pin small {
  display: block;
}

.pin strong {
  color: var(--text);
  font-size: 13px;
  line-height: 1.15;
}

.pin small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.pin.one {
  left: 7%;
  top: 18%;
}

.pin.two {
  left: 48%;
  top: 12%;
}

.pin.three {
  right: 7%;
  bottom: 14%;
}

.blueprint-section[data-blueprint="chassis"] .pin.one,
.blueprint-section[data-blueprint="brakes"] .pin.one {
  left: 8%;
  top: 56%;
}

.blueprint-section[data-blueprint="chassis"] .pin.two {
  left: 42%;
  top: 46%;
}

.blueprint-section[data-blueprint="chassis"] .pin.three {
  right: 8%;
  bottom: 18%;
}

.blueprint-section[data-blueprint="brakes"] .pin.two {
  left: 39%;
  top: 20%;
}

.blueprint-section[data-blueprint="brakes"] .pin.three {
  right: 8%;
  bottom: 22%;
}

.blueprint-section[data-blueprint="electric"] .pin.one {
  left: 5%;
  top: 20%;
}

.blueprint-section[data-blueprint="electric"] .pin.two {
  left: 48%;
  top: 43%;
}

.blueprint-section[data-blueprint="electric"] .pin.three {
  right: 5%;
  bottom: 12%;
}

.blueprint-section[data-blueprint="maintenance"] .pin.one {
  left: 7%;
  top: 18%;
}

.blueprint-section[data-blueprint="maintenance"] .pin.two {
  left: 40%;
  top: 50%;
}

.blueprint-section[data-blueprint="maintenance"] .pin.three {
  right: 7%;
  bottom: 18%;
}

.blueprint-section[data-blueprint="trailer"] .pin.one {
  left: 7%;
  top: 54%;
}

.blueprint-section[data-blueprint="trailer"] .pin.two {
  left: 42%;
  top: 46%;
}

.blueprint-section[data-blueprint="trailer"] .pin.three {
  right: 8%;
  bottom: 16%;
}

.blueprint-section[data-blueprint="alignment"] .pin.one {
  left: 8%;
  top: 18%;
}

.blueprint-section[data-blueprint="alignment"] .pin.two {
  left: 43%;
  top: 46%;
}

.blueprint-section[data-blueprint="alignment"] .pin.three {
  right: 7%;
  bottom: 18%;
}

.blueprint-visual svg {
  width: 100%;
  height: auto;
  display: block;
}

.bp-outline,
.bp-soft,
.bp-line,
.bp-hot,
.bp-dash {
  vector-effect: non-scaling-stroke;
}

.bp-outline {
  fill: rgba(14, 37, 61, 0.56);
  stroke: rgba(217, 238, 248, 0.74);
  stroke-width: 2;
}

.bp-soft {
  fill: none;
  stroke: rgba(217, 238, 248, 0.48);
  stroke-width: 2;
}

.bp-line {
  fill: none;
  stroke: rgba(66, 212, 255, 0.92);
  stroke-width: 3;
}

.bp-hot {
  fill: rgba(66, 212, 255, 0.12);
  stroke: var(--accent);
  stroke-width: 3;
}

.bp-dash {
  fill: none;
  stroke: rgba(255, 209, 102, 0.86);
  stroke-width: 3;
  stroke-dasharray: 8 8;
}

.bp-dot {
  fill: var(--accent);
  filter: drop-shadow(0 0 8px rgba(66, 212, 255, 0.85));
  transform-origin: center;
  animation: blueprintPulse 2.6s ease-in-out infinite;
}

.bp-dot:nth-of-type(2n) {
  animation-delay: 0.5s;
}

.bp-label {
  fill: var(--text);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
}

.bp-small {
  fill: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.blueprint-caption {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.blueprint-caption span {
  padding: 10px;
  border: 1px solid rgba(176, 232, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--soft);
  font-size: 13px;
}

.blueprint-caption strong {
  display: block;
  margin-bottom: 2px;
  color: var(--text);
}

.service-detail-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 20px;
  align-items: stretch;
}

.service-detail-panel .card,
.service-detail-panel .summary-list {
  height: 100%;
}

.policy-section {
  background: transparent;
}

.policy-shell {
  max-width: 1180px;
}

.policy-document {
  color: var(--text);
}

.policy-document h2 {
  margin: 34px 0 14px;
  color: var(--text);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
}

.policy-document > h2:first-child {
  margin-top: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(26px, 3vw, 38px);
}

.policy-document h3 {
  margin: 22px 0 8px;
  color: var(--accent);
  font-size: 18px;
  line-height: 1.3;
}

.policy-document p {
  margin-top: 12px;
  color: var(--soft);
  font-size: 17px;
  line-height: 1.72;
}

.policy-document .policy-clause {
  margin-top: 14px;
}

.policy-document .policy-bullet {
  position: relative;
  margin-top: 8px;
  padding-left: 22px;
}

.policy-document .policy-bullet::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.84em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
}

.policy-document .policy-date {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-weight: 800;
}

.error-hero .hero-media img {
  filter: saturate(0.9) contrast(1.04);
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 90;
  width: min(720px, calc(100% - 32px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(66, 212, 255, 0.34);
  border-radius: var(--radius);
  background: rgba(6, 16, 31, 0.96);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.cookie-banner p {
  color: var(--soft);
  font-size: 14px;
}

.cookie-banner a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner .btn {
  min-height: 42px;
  padding: 10px 16px;
}

@keyframes blueprintPulse {
  0%,
  100% {
    opacity: 0.82;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.22);
  }
}

@media (max-width: 1180px) {
  .main-nav,
  .header-actions .phone-link,
  .header-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 24px;
    background: rgba(6, 16, 31, 0.98);
    border-bottom: 1px solid var(--line);
  }

  body.menu-open .main-nav {
    display: flex;
  }

  .main-nav a,
  .nav-link {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-item {
    border-bottom: 1px solid var(--line);
  }

  .nav-item > .nav-link {
    border-bottom: 0;
  }

  .has-dropdown > .nav-link::after {
    margin-left: auto;
  }

  .dropdown-menu,
  .wide-dropdown,
  .brands-dropdown {
    position: static;
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 0 10px 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .dropdown-menu::before {
    display: none;
  }

  .dropdown-menu a {
    padding: 9px 0;
    border-bottom: 0;
    color: var(--muted);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .grid.four,
  .price-groups,
  .wash-switcher,
  .tech-bonus-grid,
  .steps,
  .equipment-showcase,
  .result-grid,
  .service-link-grid,
  .decision-grid,
  .blueprint-layout,
  .service-detail-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .fleet-contract-grid {
    grid-template-columns: 1fr;
  }

  .fleet-contract-media {
    min-height: 320px;
  }
}

@media (max-width: 760px) {
  .header-inner,
  .container {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    min-height: 620px;
    padding: 68px 0 58px;
  }

  body.surface-home::after {
    top: 116px;
    right: -118px;
    opacity: 0.34;
    font-size: 58px;
    line-height: 0.78;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(6, 16, 31, 0.96) 0%, rgba(6, 16, 31, 0.72) 52%, rgba(6, 16, 31, 0.94) 100%),
      linear-gradient(90deg, rgba(6, 16, 31, 0.92), rgba(6, 16, 31, 0.46));
  }

  .surface-home .hero::after {
    background:
      linear-gradient(180deg, rgba(6, 16, 31, 0.98) 0%, rgba(6, 16, 31, 0.78) 50%, rgba(6, 16, 31, 0.96) 100%),
      linear-gradient(90deg, rgba(6, 16, 31, 0.95), rgba(6, 16, 31, 0.62));
  }

  .surface-home .hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(6, 16, 31, 0.34), rgba(6, 16, 31, 0.58)),
      linear-gradient(90deg, rgba(6, 16, 31, 0.52), rgba(6, 16, 31, 0.22));
  }

  .section {
    padding: 52px 0;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 14px;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .steps,
  .price-groups,
  .wash-switcher,
  .tech-bonus-grid,
  .tile-list,
  .equipment-grid,
  .equipment-showcase,
  .result-grid,
  .service-link-grid,
  .decision-grid,
  .blueprint-layout,
  .blueprint-caption,
  .service-detail-panel,
  .policy-layout,
  .price-strip,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .blueprint-layout {
    gap: 20px;
  }

  .blueprint-visual {
    min-height: 240px;
    padding: 12px;
  }

  .blueprint-visual.generated-blueprint {
    padding: 0;
  }

  .blueprint-img {
    min-height: 360px;
  }

  .pin {
    min-width: 0;
    max-width: 150px;
    padding: 8px 10px 8px 30px;
  }

  .pin i {
    left: 11px;
    top: 13px;
    width: 9px;
    height: 9px;
  }

  .pin strong {
    font-size: 12px;
  }

  .pin small {
    display: none;
  }

  .tech-zones {
    grid-template-columns: 1fr;
  }

  .fleet-terms {
    grid-template-columns: 1fr;
  }

  .fleet-contract-content {
    padding: 20px;
  }

  .summary-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .wash-detail,
  .wash-detail.is-active {
    grid-template-columns: 1fr;
  }

  .wash-option {
    min-height: auto;
  }

  .lead {
    font-size: 17px;
  }

  .sublead {
    font-size: 16px;
  }

  .hero-actions .btn,
  .section-actions .btn {
    width: 100%;
  }

  .card,
  .cta-band,
  .form-panel,
  .contact-card {
    padding: 20px;
  }

  .sticky-cta {
    display: grid;
  }

  .site-footer {
    padding-bottom: 118px;
  }

  .cookie-banner {
    bottom: 92px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cookie-banner .btn {
    width: 100%;
  }
}
