:root {
  color-scheme: light;
  --site-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ink: #f7f8fa;
  --muted: rgba(247, 248, 250, 0.82);
  --line: rgba(255, 255, 255, 0.28);
  --panel: rgba(255, 255, 255, 0.42);
  --panel-strong: rgba(255, 255, 255, 0.68);
  --blue: #e10f0a;
  --cyan: #aeb4ba;
  --green: #6f7378;
  --dark: #1b1d21;
  --shadow: 0 24px 80px rgba(24, 24, 27, 0.15);
  --red-soft: rgba(225, 15, 10, 0.14);
  --gray-soft: rgba(98, 105, 112, 0.16);
  --page-bg-start: #25272b;
  --page-bg-mid: #34373c;
  --page-bg-end: #484c52;
  --page-red-glow: 0.12;
  --page-gray-glow: 0.2;
  --page-sheen: 0.18;
  --text-soft-shadow: 0 1px 18px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  font-family:
    var(--site-font);
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.22), transparent 28rem),
    radial-gradient(circle at 86% 2%, rgba(92, 96, 104, var(--page-gray-glow)), transparent 30rem),
    linear-gradient(145deg, var(--page-bg-start) 0%, var(--page-bg-mid) 48%, var(--page-bg-end) 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(250deg, rgba(70, 74, 82, 0.16), transparent 42%);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  display: none;
}

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

.topbar {
  position: sticky;
  top: 14px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: min(1160px, calc(100% - 32px));
  min-height: 64px;
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 18px 70px rgba(16, 38, 62, 0.12);
  backdrop-filter: blur(24px) saturate(170%);
  transition: min-height 0.3s ease, padding 0.3s ease, background 0.3s ease, backdrop-filter 0.3s ease;
}

.topbar.is-scrolled {
  min-height: 54px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px) saturate(150%);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  justify-content: center;
  width: 300px;
  height: 68px;
}

.brand img {
  display: block;
  width: 282px;
  height: auto;
  opacity: 1;
  filter: drop-shadow(0 8px 16px rgba(13, 23, 38, 0.16));
}

.topbar-call::before {
  position: absolute;
  top: -45%;
  bottom: -45%;
  left: -62%;
  width: 42%;
  pointer-events: none;
  content: "";
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.12) 24%,
    rgba(255, 255, 255, 0.82) 50%,
    rgba(225, 15, 10, 0.18) 68%,
    transparent 100%
  );
  transform: skewX(-18deg);
  transition: left 680ms cubic-bezier(.18, .84, .28, 1);
}

.topbar-call:hover::before {
  left: 122%;
}

.nav {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  padding: 4px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.38);
}

.mobile-menu-toggle {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-right: 10px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 16px;
  color: #2a2d31;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 24px rgba(16, 38, 62, 0.08);
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.mobile-menu-toggle span + span {
  margin-top: 4px;
}

.topbar.is-menu-open .mobile-menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.topbar.is-menu-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.topbar.is-menu-open .mobile-menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav > a,
.nav-dropdown > a {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.nav > a,
.nav-dropdown > a,
.topbar-call {
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 18px;
  color: #2a2d31;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition:
    transform 240ms cubic-bezier(.2, .9, .2, 1.35);
}

.nav > a:hover,
.nav-dropdown > a:hover {
  transform: translateY(-1px) scale(1.08);
}

.nav > a::before,
.nav-dropdown > a::before {
  position: absolute;
  inset: 50%;
  z-index: -1;
  content: "";
  border-radius: inherit;
  opacity: 0;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.4) 38%, transparent 70%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(246, 229, 229, 0.72));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    inset 0 -10px 18px rgba(225, 15, 10, 0.06),
    0 10px 24px rgba(120, 25, 25, 0.12);
  transform: translate(-50%, -50%) scale(0.35);
  transition:
    inset 260ms cubic-bezier(.2, .9, .2, 1.25),
    opacity 180ms ease,
    transform 260ms cubic-bezier(.2, .9, .2, 1.25);
}

.nav > a:hover::before,
.nav-dropdown > a:hover::before {
  inset: -4px;
  opacity: 1;
  transform: translate(0) scale(1);
}

.nav-dropdown {
  position: relative;
  display: flex;
}

.nav-dropdown:hover > a,
.nav-dropdown:focus-within > a {
  transform: translateY(-1px) scale(1.08);
}

.nav-dropdown:hover > a::before,
.nav-dropdown:focus-within > a::before {
  inset: -4px;
  opacity: 1;
  transform: translate(0) scale(1);
}

.dropdown-wrapper {
  position: absolute;
  top: 100%;
  left: 50%;
  padding-top: 12px;
  transform: translateX(-50%) translateY(8px) scale(0.95);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 20;
}

.nav-dropdown:hover .dropdown-wrapper,
.nav-dropdown:focus-within .dropdown-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
}

.dropdown-content {
  display: flex;
  flex-direction: column;
  min-width: 120px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(246, 248, 250, 0.8));
  box-shadow: 0 14px 32px rgba(16, 38, 62, 0.12);
  backdrop-filter: blur(20px) saturate(160%);
  text-align: center;
}

.dropdown-content a {
  min-height: auto;
  padding: 10px 20px;
  border-radius: 14px;
  font-size: 13px;
  white-space: nowrap;
  color: #2a2d31;
  font-weight: 700;
}

.dropdown-content a:hover {
  transform: translateY(0) scale(1.04);
}

.topbar-call {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  overflow: hidden;
  padding: 8px 14px 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  color: #1f2d3d;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(210, 220, 229, 0.34)),
    rgba(124, 138, 152, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    inset 0 -12px 20px rgba(77, 91, 108, 0.1),
    0 12px 30px rgba(16, 38, 62, 0.12);
  backdrop-filter: blur(18px) saturate(150%);
}

.topbar-call:hover {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(218, 227, 235, 0.4)),
    rgba(124, 138, 152, 0.3);
}

.topbar-call > * {
  position: relative;
  z-index: 1;
}

.call-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  flex: 0 0 30px;
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(210, 220, 229, 0.34)),
    rgba(255, 255, 255, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 6px 14px rgba(16, 38, 62, 0.1);
}

.call-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.call-text {
  display: grid;
  gap: 3px;
  line-height: 1.05;
}

.call-text small {
  display: block;
  color: rgba(31, 45, 61, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  .nav > a,
  .nav-dropdown > a,
  .topbar-call,
  .topbar-call::before,
  .nav > a::before,
  .nav-dropdown > a::before {
    transition-duration: 1ms;
  }

  .fade-in-section {
    transition: none !important;
  }

  .hero-actions .button.primary,
  .center-address-card::after,
  .selected-brand-preview.is-visible img {
    animation: none !important;
  }

  .scroll-to-top {
    transition: none !important;
  }
}

main,
.footer {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

main {
  display: flex;
  flex-direction: column;
}

.annual-promo-slide { order: 0; }
.service-priority { order: 1; }
.service-centers { order: 2; }
.quick-panel#request { order: 3; }
.insurance-partners { order: 4; }
.company-info { order: 5; }
.reviews-section { order: 6; }

.annual-promo-slide {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 22px;
  min-height: 270px;
  margin-top: 52px;
  padding: clamp(22px, 3.6vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 34px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 23%),
    radial-gradient(circle at 16% 12%, rgba(255, 255, 255, 0.2), transparent 18rem),
    radial-gradient(circle at 92% 12%, rgba(255, 255, 255, 0.14), transparent 19rem),
    linear-gradient(125deg, rgba(125, 10, 12, 0.92) 0%, rgba(225, 15, 10, 0.94) 46%, rgba(145, 8, 11, 0.96) 100%);
  box-shadow: 0 28px 90px rgba(24, 24, 27, 0.22);
  backdrop-filter: blur(22px) saturate(165%);
}

.annual-promo-slide::before,
.annual-promo-slide::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.service-priority {
  margin-top: 42px;
}

.insurance-partners,
.company-info,
.reviews-section {
  margin-bottom: 64px;
}

.insurance-partners + .company-info,
.company-info + .reviews-section {
  margin-top: -22px;
}

.annual-promo-slide::before {
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 26px;
}

.annual-promo-slide::after {
  right: -90px;
  bottom: -135px;
  width: 470px;
  height: 270px;
  border: 8px solid rgba(255, 255, 255, 0.52);
  border-radius: 52% 48% 36% 42%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transform: rotate(-5deg);
}

.annual-promo-copy,
.annual-promo-action {
  position: relative;
  z-index: 1;
}

.annual-promo-terms {
  max-width: 720px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.76) !important;
  font-size: clamp(13px, 1.35vw, 17px);
  font-weight: 800;
  line-height: 1.28;
}

.annual-promo-main {
  display: grid;
  grid-template-columns: minmax(190px, 280px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(12px, 2vw, 22px);
  max-width: 980px;
}

.annual-promo-label {
  display: grid;
  min-height: 78px;
  padding: 0 clamp(22px, 3vw, 36px);
  place-items: center;
  color: #12345f !important;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(40, 40, 45, 0.18);
  border-radius: 24px;
  font-size: clamp(38px, 4.6vw, 58px);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  transform: skewX(-6deg);
}

.annual-promo-label::first-letter {
  letter-spacing: 0;
}

.annual-promo-ribbon {
  display: flex;
  min-width: 0;
  min-height: 76px;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(18px, 2.8vw, 32px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(33, 35, 40, 0.92), rgba(17, 18, 22, 0.9) 52%, rgba(140, 10, 10, 0.9));
  box-shadow: 0 18px 42px rgba(24, 24, 27, 0.26);
  transform: skewX(-6deg);
}

.annual-promo-ribbon > * {
  transform: skewX(6deg);
}

.annual-promo-ribbon strong {
  min-width: 0;
  color: #fff !important;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.annual-promo-subtitle {
  max-width: 860px;
  margin: 18px 0 0;
  color: #fff !important;
  font-size: clamp(22px, 2.7vw, 36px);
  font-weight: 900;
  font-style: italic;
  line-height: 1.12;
  text-align: right;
  text-shadow: 0 8px 22px rgba(24, 24, 27, 0.28);
}

.annual-promo-action {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 16px;
  color: #9f1110 !important;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 34px rgba(40, 40, 45, 0.18);
  font-weight: 900;
  white-space: nowrap;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.92fr);
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 92px);
  padding: 72px 0 48px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

p {
  line-height: 1.48;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: var(--text-soft-shadow);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.04;
  letter-spacing: 0;
  text-shadow: var(--text-soft-shadow);
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.12;
}

.hero-lead {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.48;
  text-shadow: var(--text-soft-shadow);
}

.hero-actions,
.hero-metrics,
.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 18px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, #e10f0a, #9f1110);
  box-shadow: 0 18px 34px rgba(159, 17, 16, 0.22);
}

.hero-actions .button.primary {
  animation: hero-button-glow 3s infinite ease-in-out;
}

@keyframes hero-button-glow {
  0%, 100% {
    box-shadow: 0 18px 34px rgba(159, 17, 16, 0.22);
  }
  50% {
    box-shadow: 0 18px 34px rgba(159, 17, 16, 0.45), 0 0 24px rgba(225, 15, 10, 0.4);
  }
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(18px);
}

.admin-launcher {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 999px;
  color: #1f2d3d;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(210, 220, 229, 0.46)),
    rgba(124, 138, 152, 0.28);
  box-shadow: 0 14px 36px rgba(16, 38, 62, 0.16);
  backdrop-filter: blur(18px) saturate(150%);
  cursor: pointer;
  font-weight: 850;
}

.scroll-to-top {
  position: fixed;
  right: 18px;
  bottom: 76px;
  z-index: 30;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 50%;
  color: #1f2d3d;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(210, 220, 229, 0.46)),
    rgba(124, 138, 152, 0.28);
  box-shadow: 0 14px 36px rgba(16, 38, 62, 0.16);
  backdrop-filter: blur(18px) saturate(150%);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s, background 0.3s ease;
}

.scroll-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top.is-visible:hover {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(220, 230, 239, 0.56)),
    rgba(124, 138, 152, 0.38);
  transform: translateY(-3px);
}

.scroll-to-top svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.admin-auth {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(13, 23, 38, 0.42);
  backdrop-filter: blur(10px);
}

.admin-auth[hidden],
.admin-panel[hidden],
.admin-image-editor[hidden] {
  display: none;
}

.admin-login,
.admin-panel,
.admin-image-editor {
  border: 1px solid rgba(255, 255, 255, 0.68);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(229, 237, 244, 0.78)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 80px rgba(13, 23, 38, 0.2);
  backdrop-filter: blur(24px) saturate(150%);
}

.admin-login {
  position: relative;
  display: grid;
  gap: 14px;
  width: min(100%, 360px);
  padding: 24px;
  border-radius: 24px;
}

.admin-login h2 {
  margin-bottom: 2px;
  font-size: 28px;
}

.admin-login label,
.admin-image-editor label {
  display: grid;
  gap: 7px;
  color: #314155;
  font-size: 13px;
  font-weight: 800;
}

.admin-login input,
.admin-image-editor input {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(71, 85, 105, 0.18);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  font: inherit;
}

.admin-close,
.admin-panel-close {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #27384c;
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.admin-close {
  position: absolute;
  top: 12px;
  right: 12px;
}

.admin-error,
.admin-status {
  min-height: 18px;
  margin: 0;
  color: #b42318;
  font-size: 13px;
  font-weight: 750;
}

.admin-panel {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 45;
  display: grid;
  gap: 14px;
  width: min(360px, calc(100% - 36px));
  max-height: calc(100vh - 36px);
  overflow: auto;
  padding: 16px;
  border-radius: 24px;
}

.admin-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.admin-panel-head p,
.admin-image-editor p {
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.admin-panel-head strong,
.admin-image-editor strong {
  display: block;
  color: var(--ink);
}

.admin-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.admin-actions button,
.admin-import,
.admin-apply-image,
.admin-blog-submit,
.admin-style-save,
.admin-style-reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 12px;
  border: 0;
  border-radius: 14px;
  color: white;
  background: #1f2d3d;
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
}

.admin-import input {
  display: none;
}

.admin-stats {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

[data-theme="dark"] .admin-stats {
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .admin-style-form,
[data-theme="dark"] .admin-blog-form,
[data-theme="dark"] .admin-review-form,
[data-theme="dark"] .admin-blog-list,
[data-theme="dark"] .admin-review-list {
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .admin-style-form p,
[data-theme="dark"] .admin-blog-form p,
[data-theme="dark"] .admin-review-form p,
[data-theme="dark"] .admin-blog-list p,
[data-theme="dark"] .admin-review-list p,
[data-theme="dark"] .admin-style-form label,
[data-theme="dark"] .admin-blog-form label,
[data-theme="dark"] .admin-review-form label {
  color: #e2e8f0;
}

[data-theme="dark"] .admin-style-form select,
[data-theme="dark"] .admin-style-form input,
[data-theme="dark"] .admin-blog-form input,
[data-theme="dark"] .admin-blog-form textarea,
[data-theme="dark"] .admin-review-form input,
[data-theme="dark"] .admin-review-form select,
[data-theme="dark"] .admin-review-form textarea {
  color: #e2e8f0;
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.16);
}

[data-theme="dark"] .admin-blog-item {
  background: rgba(0, 0, 0, 0.18);
  border-color: rgba(255, 255, 255, 0.12);
}

[data-theme="dark"] .admin-blog-item strong {
  color: #f8fafc;
}

[data-theme="dark"] .admin-blog-item small {
  color: #94a3b8;
}

.admin-stats p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  text-align: center;
}

.admin-stats-grid div {
  display: flex;
  flex-direction: column;
}

.admin-stats-grid span {
  font-size: 22px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1.1;
}

.admin-stats-grid small {
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
}

.admin-image-editor {
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 18px;
}

.admin-style-form,
.admin-blog-form,
.admin-review-form,
.admin-blog-list,
.admin-review-list {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.36);
}

.admin-style-form p,
.admin-blog-form p,
.admin-review-form p,
.admin-blog-list p,
.admin-review-list p {
  margin: 0;
  color: #314155;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.admin-style-form label,
.admin-blog-form label,
.admin-review-form label {
  display: grid;
  gap: 7px;
  color: #314155;
  font-size: 13px;
  font-weight: 800;
}

.admin-style-form select,
.admin-style-form input,
.admin-blog-form input,
.admin-blog-form textarea,
.admin-review-form input,
.admin-review-form select,
.admin-review-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(71, 85, 105, 0.18);
  border-radius: 14px;
  color: #111827;
  background: rgba(255, 255, 255, 0.82);
  font: inherit;
  resize: vertical;
}

.admin-style-form input[type="color"] {
  height: 42px;
  padding: 4px;
  cursor: pointer;
}

.admin-color-grid,
.admin-style-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.admin-style-actions {
  grid-template-columns: 1fr 1fr;
}

.admin-blog-form input::placeholder,
.admin-blog-form textarea::placeholder,
.admin-review-form input::placeholder,
.admin-review-form textarea::placeholder {
  color: #6b7280;
}

.admin-blog-items,
.admin-review-items {
  display: grid;
  gap: 8px;
}

.admin-blog-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(71, 85, 105, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
}

.admin-blog-item strong {
  display: block;
  color: #111827;
  font-size: 13px;
  line-height: 1.25;
}

.admin-blog-item small {
  display: block;
  margin-top: 3px;
  color: #6b7280;
  font-size: 11px;
  font-weight: 700;
}

.admin-item-actions {
  display: grid;
  gap: 6px;
}

.admin-blog-delete,
.admin-blog-edit,
.admin-review-submit {
  min-height: 34px;
  padding: 8px 10px;
  border: 0;
  border-radius: 12px;
  color: white;
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
}

.admin-blog-delete {
  background: #b42318;
}

.admin-blog-edit,
.admin-review-submit {
  background: #1f2d3d;
}

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

body.admin-editing [data-admin-text] {
  outline: 2px dashed rgba(225, 15, 10, 0.34);
  outline-offset: 4px;
  cursor: text;
}

body.admin-editing [data-admin-text]:focus {
  outline-color: rgba(225, 15, 10, 0.85);
  background: rgba(255, 255, 255, 0.56);
}

body.admin-editing img[data-admin-image] {
  outline: 2px dashed rgba(107, 114, 128, 0.62);
  outline-offset: 5px;
  cursor: pointer;
}

body.admin-editing img.admin-selected-image {
  outline-color: rgba(225, 15, 10, 0.95);
}

.hero-metrics {
  margin-top: 34px;
}

.hero-metrics div {
  min-width: 138px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.44);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 4px;
  font-size: 24px;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.hero-visual {
  display: grid;
  gap: 16px;
  min-height: 560px;
}

.visual-shell {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 36px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.2) 48%, rgba(225, 15, 10, 0.08)),
    radial-gradient(circle at 50% 34%, rgba(255,255,255,.95), transparent 17rem);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(26px) saturate(160%);
}

.visual-shell-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.visual-shell::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28), transparent 38%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.18), transparent 44%);
}

.visual-shell::after {
  display: none;
}

.windshield {
  position: relative;
  z-index: 1;
  width: min(78%, 430px);
  aspect-ratio: 1.55;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 34% 34% 21% 21% / 42% 42% 18% 18%;
  background:
    linear-gradient(126deg, rgba(255,255,255,.86), rgba(255,255,255,.18) 32%, rgba(190, 196, 202, 0.28) 78%),
    linear-gradient(180deg, rgba(255,255,255,.28), rgba(225,15,10,.1));
  box-shadow:
    inset 0 2px 2px rgba(255, 255, 255, 0.9),
    inset 0 -28px 60px rgba(225, 15, 10, 0.09),
    0 34px 80px rgba(40, 40, 45, 0.2);
  transform: perspective(800px) rotateX(9deg) rotateZ(-2deg);
}

.windshield-glare {
  position: absolute;
  inset: 12% 18% auto auto;
  width: 38%;
  height: 15%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  filter: blur(5px);
  transform: rotate(-22deg);
}

.sensor {
  position: absolute;
  bottom: 12%;
  left: 50%;
  display: grid;
  width: 74px;
  height: 46px;
  place-items: center;
  border-radius: 16px 16px 26px 26px;
  background: rgba(13, 23, 38, 0.76);
  transform: translateX(-50%);
}

.sensor span {
  width: 24px;
  height: 24px;
  border: 5px solid rgba(255,255,255,.65);
  border-radius: 50%;
}

.car-line {
  position: absolute;
  z-index: 1;
  bottom: 105px;
  left: 14%;
  width: 72%;
  height: 92px;
  border: 4px solid rgba(13, 23, 38, 0.58);
  border-top: 0;
  border-radius: 0 0 110px 110px;
}

.car-line span {
  position: absolute;
  bottom: -18px;
  left: 18%;
  width: 64%;
  height: 10px;
  border-radius: 999px;
  background: rgba(13, 23, 38, 0.72);
}

.floating-card {
  position: absolute;
  z-index: 2;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 20px 42px rgba(40, 40, 45, 0.14);
  backdrop-filter: blur(22px) saturate(170%);
}

.floating-card p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 13px;
}

.card-model strong {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  margin-top: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff !important;
  background: linear-gradient(135deg, #e10f0a, #9f1110);
  box-shadow: 0 12px 24px rgba(225, 15, 10, 0.24);
  font-weight: 900;
  line-height: 1;
}

.card-model {
  left: 28px;
  top: 34px;
}

.card-price {
  right: 28px;
  bottom: 44px;
}

.ad-carousel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 52px rgba(40, 40, 45, 0.12);
  backdrop-filter: blur(22px) saturate(160%);
}

.ad-track {
  position: relative;
  aspect-ratio: 16 / 7;
  min-height: 172px;
}

.ad-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(260px, 46%) minmax(0, 1fr);
  align-items: center;
  gap: clamp(16px, 3vw, 42px);
  overflow: hidden;
  padding: clamp(18px, 2.7vw, 34px) clamp(20px, 3.2vw, 44px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 680ms ease;
}

.ad-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.ad-slide--windshield {
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 255, 255, 0.13), transparent 26%),
    radial-gradient(circle at 8% 95%, rgba(255, 255, 255, 0.08), transparent 32%),
    linear-gradient(130deg, #16181d 0%, #2c3138 52%, #b40f0c 100%);
}

.ad-slide--kasko {
  color: #171a20;
  background:
    radial-gradient(circle at 85% 18%, rgba(225, 15, 10, 0.12), transparent 25%),
    linear-gradient(130deg, #ffffff 0%, #eef3f8 52%, #dfe7ef 100%);
}

.ad-slide--adas {
  color: #ffffff;
  background:
    radial-gradient(circle at 84% 22%, rgba(225, 15, 10, 0.34), transparent 28%),
    linear-gradient(130deg, #0d0f14 0%, #202731 55%, #33404c 100%);
}

.ad-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: start;
  max-width: 390px;
}

.ad-eyebrow {
  margin-bottom: 10px;
  color: currentColor;
  font-size: clamp(11px, 1vw, 15px) !important;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.ad-slide--kasko .ad-eyebrow {
  color: var(--red);
}

.ad-copy h3 {
  margin: 0 0 8px;
  color: currentColor;
  font-size: clamp(22px, 2vw, 30px) !important;
  font-weight: 900;
  line-height: 1.04;
}

.ad-copy p {
  margin: 0 0 16px;
  color: currentColor;
  font-size: clamp(13px, 1.1vw, 16px) !important;
  font-weight: 850;
  line-height: 1.1;
  opacity: 0.86;
}

.ad-slide--windshield .ad-copy p {
  color: #ffe7e6;
  opacity: 1;
}

.ad-cta {
  display: inline-grid;
  min-height: 40px;
  padding: 0 20px;
  place-items: center;
  border-radius: 18px;
  color: #ffffff !important;
  background: var(--red);
  box-shadow: 0 18px 36px rgba(225, 15, 10, 0.28);
  font-size: clamp(13px, 1vw, 15px) !important;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.ad-cta--light {
  color: #9f1110 !important;
  background: linear-gradient(90deg, #ffffff 0%, #ffe7e6 100%);
}

.ad-note {
  margin-top: 16px;
  color: currentColor;
  font-size: clamp(11px, 0.9vw, 13px) !important;
  font-weight: 750;
  line-height: 1.3;
  opacity: 0.78;
}

.ad-slide--kasko .ad-note {
  color: #3c4652;
  opacity: 1;
}

.ad-visual {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(100%, 180px);
  aspect-ratio: 1;
}

.ad-visual::before,
.ad-visual::after {
  content: "";
  position: absolute;
}

.ad-visual--windshield::before {
  inset: 24% 0 20% 4%;
  border: 5px solid rgba(255, 255, 255, 0.78);
  border-radius: 46% 54% 38% 40%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(220, 232, 242, 0.34) 48%, rgba(255, 255, 255, 0.7));
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.24);
  transform: rotate(-4deg);
}

.ad-visual--windshield::after {
  right: 0;
  bottom: 18%;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: var(--red);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.ad-visual--kasko::before {
  inset: 8% 8% 15% 18%;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 24px 48px rgba(42, 52, 66, 0.16);
  transform: rotate(-6deg);
}

.ad-visual--kasko::after {
  right: 7%;
  bottom: 19%;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background:
    linear-gradient(#ffffff, #ffffff) center / 62px 14px no-repeat,
    linear-gradient(90deg, transparent 44%, #ffffff 44% 56%, transparent 56%) center / 62px 62px no-repeat,
    var(--red);
  box-shadow: 0 18px 36px rgba(225, 15, 10, 0.24);
}

.ad-visual--adas::before {
  inset: 8%;
  border-radius: 44px;
  background: rgba(13, 15, 20, 0.86);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.32);
}

.ad-visual--adas::after {
  inset: 28%;
  border: 14px solid var(--red);
  border-radius: 50%;
  box-shadow:
    0 -88px 0 -46px rgba(225, 15, 10, 0.75),
    0 88px 0 -46px rgba(225, 15, 10, 0.75),
    88px 0 0 -46px rgba(225, 15, 10, 0.75),
    -88px 0 0 -46px rgba(225, 15, 10, 0.75);
}

.ad-dots {
  position: absolute;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  display: flex;
  gap: 7px;
  padding: 7px;
  border-radius: 999px;
  background: rgba(13, 23, 38, 0.22);
  backdrop-filter: blur(12px);
}

.ad-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
}

.ad-dots button.is-active {
  width: 24px;
  border-radius: 999px;
  background: white;
}

.mini-icon {
  display: inline-grid;
  height: 26px;
  min-width: 44px;
  margin-bottom: 10px;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: var(--dark);
  font-size: 11px;
  font-weight: 900;
}

.quick-panel,
.section,
.install,
.repair,
.service-band,
.footer {
  margin-bottom: 92px;
}

.quick-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  gap: 34px;
  align-items: center;
  padding: 34px 38px;
  border: 1px solid var(--line);
  border-radius: 38px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(165%);
}

.operator-call {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 750;
}

.operator-call a {
  color: var(--ink);
  font-weight: 900;
  white-space: nowrap;
}

.selected-brand-preview {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 10px 24px rgba(16, 38, 62, 0.06);
  backdrop-filter: blur(14px) saturate(150%);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.selected-brand-preview.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.selected-brand-preview img {
  width: 40px;
  height: 40px;
  opacity: 0.85;
}

.selected-brand-fallback {
  display: none;
  min-width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 14px;
  color: var(--blue) !important;
  font-size: 14px;
  font-weight: 950;
  line-height: 1;
}

.selected-brand-preview.has-fallback img {
  display: none;
}

.selected-brand-preview.has-fallback .selected-brand-fallback {
  display: grid;
}

.selected-brand-preview.is-visible img {
  animation: brand-spin 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.selected-brand-preview.is-visible .selected-brand-fallback {
  animation: brand-spin 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.priority-service-card,
.insurance-partner-card,
.company-info {
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(165%);
}

.company-info {
  padding: 30px 34px;
  overflow: hidden;
}

.company-info .section-heading {
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 0;
  text-align: center;
}

.company-info .section-heading p {
  max-width: 960px;
  margin: 0 auto;
}

.company-wordmark {
  display: inline-flex;
  align-items: baseline;
  justify-self: center;
  gap: 0.22em;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(38px, 4.6vw, 64px);
  font-weight: 950;
  line-height: 1;
  text-shadow: none;
}

.company-wordmark span {
  color: #e10f0a !important;
  letter-spacing: 0;
}

.priority-service-card {
  display: grid;
  gap: 18px;
  padding: 26px;
  border-radius: 30px;
}

.service-badge {
  justify-self: start;
  padding: 7px 12px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, #e10f0a, #9f1110);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.service-facts div {
  min-height: 86px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.42);
}

.service-facts small {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.service-facts strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.1;
}

.priority-service-card p,
.insurance-partner-card p,
.company-info .section-heading p {
  color: var(--muted);
  font-weight: 620;
  line-height: 1.44;
}

.insurance-partner-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 28px;
  border-radius: 30px;
}

.insurance-partner-text {
  display: grid;
  gap: 10px;
}

.insurance-partner-text strong {
  display: block;
  color: var(--ink);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.08;
}

.insurance-partner-text p {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 17px;
}

.insurance-logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.insurance-logo {
  display: inline-grid;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-width: 76px;
  height: 54px;
  margin-bottom: 4px;
  border-radius: 18px;
  color: #f7f8fa !important;
  font-size: 17px;
  font-weight: 950;
  letter-spacing: 0;
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.14);
}

.insurance-logo-reso {
  padding: 0 12px;
  background: linear-gradient(135deg, #0c66b2, #004990);
}

.insurance-logo-ingos {
  width: 54px;
  min-width: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f8fd6, #0054a6);
}

.insurance-logo-ingos span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  color: inherit !important;
  font-size: 18px;
  line-height: 1;
}

.insurance-logo-alfa {
  width: 54px;
  min-width: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ef3124, #b91519);
}

.insurance-logo-alfa span {
  color: inherit !important;
  font-size: 30px;
  line-height: 1;
}

.blog-hero {
  padding: 92px 0 28px;
}

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

.blog-card,
.article-content {
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(165%);
}

.blog-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  color: var(--ink);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.blog-card:hover {
  border-color: rgba(225, 15, 10, 0.28);
  background: var(--panel-strong);
  transform: translateY(-6px);
}

.blog-card img,
.article-content img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.blog-card img {
  aspect-ratio: 16 / 10;
  border-radius: 24px;
}

.blog-card span {
  justify-self: start;
  padding: 6px 10px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, #e10f0a, #9f1110);
  font-size: 12px;
  font-weight: 900;
}

.blog-card h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.08;
}

.blog-card p,
.article-content p {
  color: var(--muted);
  font-weight: 620;
  line-height: 1.48;
}

.article-page {
  width: min(860px, calc(100% - 32px));
  padding: 34px 0 80px;
}

.article-back {
  display: inline-flex;
  margin: 16px 0 24px;
  color: var(--muted);
  font-weight: 850;
}

.article-content {
  padding: 34px;
}

.article-content img {
  max-height: 420px;
  margin: 10px 0 28px;
  border-radius: 26px;
}

.article-content h2 {
  margin-top: 28px;
  font-size: 32px;
}

@keyframes brand-spin {
  0% {
    transform: perspective(400px) rotateY(-180deg) scale(0.5);
  }
  100% {
    transform: perspective(400px) rotateY(0deg) scale(1);
  }
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 14px 22px;
  align-items: start;
}

.glass-code-field {
  grid-column: 1 / -1;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.3);
}

.glass-code-row {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 12px;
}

.glass-code-head {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.request-form label {
  display: grid;
  gap: 8px;
  align-content: start;
}

.request-form label span {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.18;
}

.request-form input,
.request-form select,
.review-form input,
.review-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(169, 176, 184, 0.48);
  border-radius: 27px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  font: inherit;
  font-size: 16px;
  font-weight: 750;
  outline: 0;
  text-overflow: ellipsis;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.request-form input,
.request-form select,
.review-form input {
  height: 54px;
}

.review-form textarea {
  min-height: 132px;
  padding: 16px;
  border-radius: 22px;
  line-height: 1.45;
  resize: vertical;
}

.request-form select {
  border-radius: 27px;
}

.request-form .button {
  grid-column: 1 / -1;
  justify-self: start;
  min-width: 260px;
  min-height: 58px;
  padding-inline: 42px;
  border-radius: 999px;
  font-size: 17px;
  box-shadow: 0 18px 40px rgba(159, 17, 16, 0.24);
  background: linear-gradient(135deg, #e10f0a, #9f1110, #e10f0a);
  background-size: 200% auto;
  transition: background-position 0.4s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.review-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 14px 22px;
}

.review-form label {
  display: grid;
  gap: 8px;
}

.review-form label span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.18;
}

.review-star-picker {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.review-star-picker button {
  width: 34px;
  height: 34px;
  min-height: 34px;
  padding: 0;
  border: 0;
  color: #f7f8fa !important;
  background: transparent;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  transition: color 0.18s ease, transform 0.18s ease;
}

.review-star-picker button.is-active {
  color: #e10f0a !important;
}

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

.review-text-field,
.review-form .button {
  grid-column: 1 / -1;
}

.review-form .button {
  justify-self: start;
  min-width: 220px;
  min-height: 58px;
  border-radius: 999px;
}

.reviews-carousel {
  width: 100%;
  overflow: hidden;
}

.reviews-marquee-wrap {
  grid-column: 1 / -1;
  min-width: 0;
  margin-top: 4px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.reviews-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: reviews-marquee 42s linear infinite;
}

.reviews-carousel:hover .reviews-track {
  animation-play-state: paused;
}

.review-card {
  flex: 0 0 min(360px, 82vw);
  display: grid;
  align-content: space-between;
  gap: 16px;
  min-height: 232px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.review-rating {
  color: var(--blue);
  font-size: 18px;
  letter-spacing: 0;
}

.review-card p {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 720;
  line-height: 1.42;
}

.review-card strong {
  color: var(--muted);
  font-size: 14px;
}

@keyframes reviews-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 8px));
  }
}

.request-form .button:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(159, 17, 16, 0.32);
}

.request-form input:focus,
.request-form select:focus {
  border-color: rgba(225, 15, 10, 0.56);
  box-shadow: 0 0 0 4px rgba(225, 15, 10, 0.1);
}

.request-form input.has-error {
  border-color: rgba(225, 15, 10, 0.86);
  background: rgba(255, 246, 246, 0.92);
  box-shadow: 0 0 0 4px rgba(225, 15, 10, 0.12);
}

.request-form .field-error {
  display: block;
  min-height: 16px;
  margin-top: -2px;
  color: #e10f0a !important;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.request-form input[type="checkbox"] {
  height: 18px;
  accent-color: var(--blue);
  cursor: pointer;
}

.request-form .agreement-label {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin-top: 4px;
}

.request-form .agreement-label input {
  width: 18px;
  min-height: 18px;
  flex-shrink: 0;
}

.request-form .agreement-label span {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 26px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 16px;
  font-weight: 620;
  line-height: 1.46;
}

.prices .section-heading {
  display: block;
  text-align: center;
}

.glass-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.glass-card {
  min-height: 330px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px) saturate(160%);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.glass-card:hover {
  border-color: rgba(225, 15, 10, 0.22);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 30px 86px rgba(24, 24, 27, 0.19);
  transform: translateY(-8px);
}

.glass-card p {
  color: var(--muted);
  font-weight: 620;
  line-height: 1.44;
}

.glass-card span {
  display: inline-flex;
  margin-top: 10px;
  color: var(--blue);
  font-weight: 900;
}

.glass-thumb {
  display: block;
  width: 100%;
  height: 190px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(242, 244, 246, 0.74));
  object-fit: cover;
  object-position: center;
  transition: transform 0.34s ease, filter 0.34s ease;
}

.glass-card:hover .glass-thumb {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.035);
}

.brands-showcase {
  margin-top: 54px;
  text-align: center;
}

.brands-showcase h3 {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.brands-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 10px 0; /* отступы для теней при hover */
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.brands-track {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.brands-track:hover {
  animation-play-state: paused;
}

.brands-list {
  display: flex;
  gap: 12px;
  padding-right: 12px;
}

.brand-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 10px 24px rgba(16, 38, 62, 0.06);
  backdrop-filter: blur(14px) saturate(150%);
  font-size: 15px;
  font-weight: 750;
  cursor: default;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.brand-tag:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 32px rgba(16, 38, 62, 0.1);
}

.brand-tag img {
  width: 22px;
  height: 22px;
  opacity: 0.8;
}

.brand-icon-text {
  display: inline-grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 7px;
  color: var(--blue) !important;
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.install {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.install-media {
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(27,29,33,.94), rgba(159,17,16,.44)),
    radial-gradient(circle at 25% 20%, rgba(255,255,255,.22), transparent 16rem);
  box-shadow: var(--shadow);
}

.install-media-photo {
  display: block;
  width: 100%;
  height: 470px;
  object-fit: cover;
  object-position: 54% center;
}

.repair {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.repair-media {
  height: 470px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
}

.repair-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.repair-lead {
  color: var(--muted);
  font-size: 17px;
  font-weight: 620;
  line-height: 1.46;
  margin-bottom: 32px;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps div,
.price-table,
.service-band {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px) saturate(160%);
}

.steps div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 6px 18px;
  padding: 18px;
  border-radius: 24px;
}

.steps span {
  grid-row: span 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 18px;
  color: white;
  background: var(--dark);
  font-weight: 900;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 620;
  line-height: 1.42;
}

.price-table {
  overflow: hidden;
  border-radius: 30px;
}

.price-row {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr 0.55fr;
  gap: 16px;
  align-items: center;
  min-height: 72px;
  padding: 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.44);
  transition: background-color 0.2s ease;
}

.price-row.repair-row {
  grid-template-columns: 1fr auto;
}

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

.price-row.head {
  min-height: 58px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-row:not(.head):hover {
  background-color: rgba(255, 255, 255, 0.82);
}

.price-row strong {
  color: var(--blue);
}

.service-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: center;
  padding: 30px;
  border-radius: 34px;
}

.service-band p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 620;
  line-height: 1.46;
}

.benefits {
  justify-content: flex-end;
}

.benefits > span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 10px 18px 10px 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.76), rgba(244,246,248,.48)),
    rgba(255,255,255,.52);
  box-shadow: 0 18px 46px rgba(40, 40, 45, 0.08);
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.benefits > span::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.72) 42%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
}

.benefits > span:hover {
  border-color: rgba(225, 15, 10, 0.22);
  box-shadow: 0 24px 56px rgba(40, 40, 45, 0.12);
  transform: translateY(-4px);
}

.benefits > span:hover::before {
  transform: translateX(120%);
}

.benefit-icon {
  z-index: 1;
  display: grid;
  width: 38px;
  height: 38px;
  min-height: 38px;
  padding: 0;
  place-items: center;
  flex: 0 0 38px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 50%;
  color: white;
  background:
    linear-gradient(135deg, #e10f0a, #9f1110 48%, #d9dde2 52%, #767d86);
  background-size: 180% 180%;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.48),
    0 10px 22px rgba(159, 17, 16, 0.2);
  animation: benefit-shimmer 4.8s ease-in-out infinite;
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes benefit-shimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.service-centers {
  margin-bottom: 92px;
}

.insurance-hero {
  padding: 72px 0 46px;
  text-align: center;
}

.insurance-hero h1 {
  max-width: 940px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(38px, 5.6vw, 70px);
}

.insurance-hero .hero-lead {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

.insurance-hero .hero-actions {
  justify-content: center;
}

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

.insurance-request {
  margin-top: 0;
}

.kasko-offer {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 92px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(225, 15, 10, 0.18);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 244, 242, 0.78)),
    var(--panel);
  box-shadow: 0 26px 78px rgba(24, 24, 27, 0.16);
  backdrop-filter: blur(22px) saturate(165%);
}

.kasko-offer::before {
  position: absolute;
  inset: -45%;
  z-index: -1;
  content: "";
  background:
    linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.78) 36%, rgba(225, 15, 10, 0.18) 48%, transparent 62%),
    radial-gradient(circle at 18% 20%, rgba(225, 15, 10, 0.2), transparent 28%),
    radial-gradient(circle at 86% 78%, rgba(26, 76, 143, 0.16), transparent 24%);
  opacity: 0.78;
  transform: translateX(-28%) rotate(8deg);
  transition: transform 0.8s ease, opacity 0.35s ease;
}

.kasko-offer:hover::before {
  opacity: 1;
  transform: translateX(22%) rotate(8deg);
}

.kasko-offer h2 {
  max-width: 640px;
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 0.98;
}

.kasko-offer p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 750;
  line-height: 1.5;
}

.kasko-offer-copy,
.kasko-offer-details {
  position: relative;
  z-index: 1;
}

.kasko-offer-details {
  display: grid;
  gap: 16px;
  align-content: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.kasko-companies {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.kasko-companies span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  color: white;
  background: #2a2d31;
  box-shadow: 0 10px 24px rgba(24, 24, 27, 0.08);
  font-size: 13px;
  font-weight: 900;
}

.kasko-companies .company-ingos {
  background: linear-gradient(135deg, #0066b3, #00a3e0);
}

.kasko-companies .company-reso {
  color: #083a78;
  background: linear-gradient(135deg, #ffe04b, #f6b700);
}

.kasko-companies .company-vtb {
  background: linear-gradient(135deg, #003f8f, #00a3e0);
}

.kasko-companies .company-alfa {
  background: linear-gradient(135deg, #ef3124, #b91519);
}

.kasko-companies .company-renessans {
  background: linear-gradient(135deg, #f37021, #d8272e);
}

.kasko-offer-details strong {
  display: block;
  padding: 14px 16px;
  border-radius: 18px;
  color: #111827;
  background: rgba(255, 255, 255, 0.94);
  border: 2px solid rgba(225, 15, 10, 0.36);
  box-shadow: 0 16px 34px rgba(225, 15, 10, 0.18);
  font-size: 16px;
  font-weight: 950;
  line-height: 1.45;
}

.centers-heading {
  display: block;
  text-align: center;
}

.center-info-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(720px, 100%);
  margin: 0 auto 34px;
}

.center-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 72px;
  padding: 16px 22px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 22px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(232, 234, 236, 0.48)),
    rgba(255, 255, 255, 0.42);
  box-shadow: 0 18px 46px rgba(40, 40, 45, 0.1);
  backdrop-filter: blur(18px) saturate(150%);
}

.center-info-card strong {
  font-size: 20px;
}

.center-info-card strong span {
  display: block;
}

.center-info-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 42px;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, #e10f0a, #9f1110);
  font-size: 21px;
  font-weight: 900;
}

.center-info-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.center-address-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 26px;
}

.center-address-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: stretch;
  gap: 14px;
  min-height: 148px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 18px 46px rgba(40, 40, 45, 0.09);
  backdrop-filter: blur(20px) saturate(150%);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.center-address-card > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.center-address-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 24px 60px rgba(40, 40, 45, 0.16);
}

.center-address-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
}

.center-address-card:hover::after {
  animation: card-shine 0.8s ease;
}

@keyframes card-shine {
  100% {
    left: 200%;
  }
}

.center-address-card > span {
  display: grid;
  align-self: flex-start;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, #e10f0a, #9f1110);
  font-weight: 900;
}

.center-address-card h3 {
  margin-bottom: 8px;
  color: #4d5156;
  font-size: 19px;
  line-height: 1.15;
}

.center-address-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

.center-route-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 184px;
  min-height: 40px;
  margin-top: auto;
  padding: 0 16px;
  border: 1px solid rgba(225, 15, 10, 0.34);
  border-radius: 14px;
  color: #fff !important;
  background: linear-gradient(135deg, #e10f0a, #9f1110);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.center-route-link::after {
  width: 14px;
  height: 14px;
  content: "";
  background-color: currentColor;
  clip-path: polygon(18% 48%, 66% 48%, 48% 30%, 58% 20%, 94% 56%, 58% 92%, 48% 82%, 66% 64%, 18% 64%);
  opacity: 0.92;
}

.center-route-link:hover {
  border-color: rgba(225, 15, 10, 0.56);
  background: linear-gradient(135deg, #f01a14, #a8100f);
  transform: translateY(-1px);
}

.map-glass-card {
  position: relative;
  overflow: hidden;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(232, 234, 236, 0.42)),
    rgba(255, 255, 255, 0.44);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(160%);
}

.service-map {
  height: min(62vh, 620px);
  min-height: 430px;
  overflow: hidden;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(225, 15, 10, 0.08)),
    #eef0f1;
}

.map-fallback {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: min(420px, calc(100% - 48px));
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
  transform: translate(-50%, -50%);
}

.map-glass-card.is-loaded .map-fallback {
  display: none;
}

.map-car-marker {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 3px solid white;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, #e10f0a, #9f1110);
  box-shadow: 0 14px 26px rgba(104, 18, 18, 0.28);
}

.map-car-marker svg {
  display: block;
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 30px 0 44px;
}

.footer p,
address {
  margin: 10px 0 0;
  color: var(--muted);
  font-style: normal;
  line-height: 1.7;
}

.footer .brand img {
  width: 318px;
  filter: drop-shadow(0 8px 16px rgba(13, 23, 38, 0.14));
}

.footer .brand {
  width: 340px;
  height: 84px;
}

address a {
  color: var(--blue);
  font-weight: 800;
}

.footer-copyright {
  grid-column: 1 / -1;
  margin-top: 10px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.fade-in-section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Темная тема и переключатель */
.topbar-actions {
  display: flex;
  align-items: center;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 56px;
  height: 30px;
  margin-right: 12px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background 0.3s, border-color 0.3s;
  outline: none;
}

[data-theme="dark"] .theme-toggle {
  background: rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.theme-toggle-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 100%;
  color: var(--ink);
  transition: opacity 0.3s, color 0.3s;
}

[data-theme="dark"] .theme-toggle-icon {
  color: #fff;
}

.theme-toggle-icon svg {
  width: 14px;
  height: 14px;
}

.theme-toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1), background 0.3s;
}

[data-theme="dark"] .theme-toggle-thumb {
  transform: translateX(26px);
  background: #2a2d31;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* Цвета темной темы */
[data-theme="dark"] {
  --ink: #f7f8fa;
  --muted: rgba(247, 248, 250, 0.82);
  --line: rgba(255, 255, 255, 0.12);
  --panel: rgba(30, 32, 36, 0.6);
  --panel-strong: rgba(30, 32, 36, 0.8);
  --dark: #f1f5f9;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  --text-soft-shadow: 0 1px 18px rgba(0, 0, 0, 0.38);
  background-color: #0f1115;
}

[data-theme="dark"] body {
  background:
    radial-gradient(circle at 16% 12%, rgba(225, 15, 10, var(--page-red-glow)), transparent 28rem),
    radial-gradient(circle at 86% 2%, rgba(100, 105, 115, var(--page-gray-glow)), transparent 28rem),
    linear-gradient(135deg, var(--page-bg-start) 0%, var(--page-bg-mid) 44%, var(--page-bg-end) 100%);
}

[data-theme="dark"] body::before {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, var(--page-sheen)), transparent 22%),
    linear-gradient(250deg, rgba(225, 15, 10, 0.08), transparent 38%);
}

[data-theme="dark"] .topbar,
[data-theme="dark"] .glass-card,
[data-theme="dark"] .center-info-card,
[data-theme="dark"] .center-address-card,
[data-theme="dark"] .map-glass-card,
[data-theme="dark"] .promo-table-wrapper,
[data-theme="dark"] .steps > div,
[data-theme="dark"] .price-table,
[data-theme="dark"] .service-band,
[data-theme="dark"] .quick-panel,
[data-theme="dark"] .priority-service-card,
[data-theme="dark"] .insurance-partner-card,
[data-theme="dark"] .company-info,
[data-theme="dark"] .blog-card,
[data-theme="dark"] .article-content,
[data-theme="dark"] .install-media,
[data-theme="dark"] .promo-search,
[data-theme="dark"] .ad-carousel,
[data-theme="dark"] .kasko-offer,
[data-theme="dark"] .hero-metrics div,
[data-theme="dark"] .floating-card,
[data-theme="dark"] .benefits > span,
[data-theme="dark"] .admin-panel,
[data-theme="dark"] .admin-login,
  [data-theme="dark"] .visual-shell,
  [data-theme="dark"] .selected-brand-preview {
  background: rgba(30, 32, 36, 0.55);
  border-color: rgba(255, 255, 255, 0.12);
}

[data-theme="dark"] .topbar.is-scrolled { background: rgba(30, 32, 36, 0.35); }
[data-theme="dark"] .visual-shell::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 42%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.12), transparent 46%);
}
[data-theme="dark"] .visual-shell::after { display: none; }
[data-theme="dark"] .nav { background: rgba(0, 0, 0, 0.25); }
[data-theme="dark"] .nav > a,
[data-theme="dark"] .nav-dropdown > a,
[data-theme="dark"] .topbar-call { color: #e2e8f0; }
[data-theme="dark"] .topbar-call { background: rgba(0, 0, 0, 0.2); }
[data-theme="dark"] .mobile-menu-toggle {
  color: #e2e8f0;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.2);
}
[data-theme="dark"] .nav > a::before,
[data-theme="dark"] .nav-dropdown > a::before {
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05) 38%, transparent 70%),
    linear-gradient(135deg, rgba(40, 40, 45, 0.9), rgba(20, 20, 25, 0.72));
}
[data-theme="dark"] .dropdown-content { background: linear-gradient(135deg, rgba(40, 42, 46, 0.9), rgba(20, 22, 26, 0.8)); }
[data-theme="dark"] .dropdown-content a { color: #e2e8f0; }
[data-theme="dark"] .kasko-offer {
  box-shadow: 0 26px 78px rgba(0, 0, 0, 0.28);
}
[data-theme="dark"] .kasko-offer-details {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .kasko-companies span {
  color: white;
}
[data-theme="dark"] .kasko-companies .company-reso {
  color: #083a78;
}
[data-theme="dark"] .kasko-offer-details strong {
  color: #111827;
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.82);
}
[data-theme="dark"] .brand-tag { background: rgba(30, 32, 36, 0.6); border-color: rgba(255, 255, 255, 0.1); color: #e2e8f0; }
[data-theme="dark"] .call-text small { color: rgba(255, 255, 255, 0.5); }
[data-theme="dark"] .admin-launcher,
[data-theme="dark"] .scroll-to-top,
[data-theme="dark"] .button.secondary { background: rgba(30, 32, 36, 0.6); color: #e2e8f0; border-color: rgba(255, 255, 255, 0.15); }
[data-theme="dark"] .scroll-to-top.is-visible:hover { background: rgba(45, 50, 56, 0.8); }
[data-theme="dark"] .request-form input,
[data-theme="dark"] .request-form select,
[data-theme="dark"] .review-form input,
[data-theme="dark"] .review-form textarea { background: rgba(0, 0, 0, 0.2); color: #e2e8f0; border-color: rgba(255, 255, 255, 0.2); }
[data-theme="dark"] .request-form input.has-error {
  border-color: rgba(248, 113, 113, 0.9);
  background: rgba(127, 29, 29, 0.22);
  box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.12);
}
[data-theme="dark"] .review-card { background: rgba(0, 0, 0, 0.2); border-color: rgba(255, 255, 255, 0.14); }
[data-theme="dark"] .price-row { border-bottom-color: rgba(255, 255, 255, 0.08); }
[data-theme="dark"] .price-row:not(.head):hover { background-color: rgba(255, 255, 255, 0.12); }
[data-theme="dark"] .promo-row:not(.head):hover { background-color: rgba(225, 15, 10, 0.15); }
[data-theme="dark"] .selected-brand-preview img { filter: invert(1) brightness(0.9); }
[data-theme="dark"] .center-address-card h3 { color: #e2e8f0; }

body,
body h1,
body h2,
body h3,
body p,
body a,
body span,
body strong,
body small,
body label,
body li,
body .hero-lead,
body .hero-metrics span,
[data-theme="dark"] .nav > a,
[data-theme="dark"] .nav-dropdown > a,
[data-theme="dark"] .topbar-call,
[data-theme="dark"] .mobile-menu-toggle,
[data-theme="dark"] .dropdown-content a,
[data-theme="dark"] .brand-tag,
[data-theme="dark"] .call-text small,
[data-theme="dark"] .button.secondary,
[data-theme="dark"] .request-form input,
[data-theme="dark"] .request-form select,
[data-theme="dark"] .review-form input,
[data-theme="dark"] .review-form textarea,
[data-theme="dark"] .center-address-card h3 {
  color: #f7f8fa;
}

.topbar,
.topbar *,
.topbar-call,
.topbar-call *,
.hero-metrics div,
.hero-metrics div *,
.floating-card,
.floating-card *,
.ad-carousel,
.ad-carousel *,
.quick-panel,
.quick-panel *,
.priority-service-card,
.priority-service-card *,
.insurance-partner-card,
.insurance-partner-card *,
.company-info,
.company-info *,
.blog-card,
.blog-card *,
.article-content,
.article-content *,
.glass-card,
.glass-card *,
.install-media,
.install-media *,
.steps > div,
.steps > div *,
.price-table,
.price-table *,
.service-band,
.service-band *,
.benefits > span,
.benefits > span *,
.brand-tag,
.brand-tag *,
.kasko-offer,
.kasko-offer *,
.center-info-card,
.center-info-card *,
.center-address-card,
.center-address-card *,
.map-glass-card,
.map-glass-card *,
.promo-table-wrapper,
.promo-table-wrapper *,
.promo-search,
.promo-search * {
  color: #111827 !important;
}

:is(
  .topbar,
  .topbar-call,
  .hero-metrics div,
  .floating-card,
  .ad-carousel,
  .quick-panel,
  .priority-service-card,
  .insurance-partner-card,
  .company-info,
  .blog-card,
  .article-content,
  .glass-card,
  .install-media,
  .steps > div,
  .price-table,
  .service-band,
  .benefits > span,
  .brand-tag,
  .kasko-offer,
  .center-info-card,
  .center-address-card,
  .map-glass-card,
  .promo-table-wrapper,
  .promo-search
) :is(
  .button,
  button,
  .topbar-call,
  .mini-icon,
  .service-badge,
  .insurance-logo,
  .call-icon,
  .theme-toggle-icon,
  .benefit-icon,
  .center-info-icon,
  svg,
  path
),
:is(
  .topbar,
  .topbar-call,
  .hero-metrics div,
  .floating-card,
  .ad-carousel,
  .quick-panel,
  .priority-service-card,
  .insurance-partner-card,
  .company-info,
  .blog-card,
  .article-content,
  .glass-card,
  .install-media,
  .steps > div,
  .price-table,
  .service-band,
  .benefits > span,
  .brand-tag,
  .kasko-offer,
  .center-info-card,
  .center-address-card,
  .map-glass-card,
  .promo-table-wrapper,
  .promo-search
) :is(
  .button,
  button,
  .topbar-call,
  .mini-icon,
  .service-badge,
  .insurance-logo,
  .call-icon,
  .theme-toggle-icon,
  .benefit-icon,
  .center-info-icon
) * {
  color: #f7f8fa !important;
}

:is(.brand-tag, .selected-brand-preview) img {
  filter: brightness(0) saturate(100%) invert(16%) sepia(99%) saturate(4943%) hue-rotate(356deg) brightness(92%) contrast(104%) !important;
  opacity: 1;
}

.brand-tag .brand-icon-text {
  color: var(--blue) !important;
}

.review-star-picker button {
  color: #f7f8fa !important;
}

.review-star-picker button.is-active {
  color: #e10f0a !important;
}

.center-address-card > span {
  color: #f7f8fa !important;
}

.blog-card > span,
.service-badge,
.mini-icon,
.button.primary,
.center-address-card > span {
  color: #fff !important;
}

.center-address-card .center-route-link,
.center-address-card .center-route-link:hover,
.center-address-card .center-route-link:focus-visible,
.center-address-card .center-route-link * {
  color: #fff !important;
}

.floating-card.card-model strong {
  color: #fff !important;
}

.ad-slide--windshield .ad-eyebrow,
.ad-slide--windshield .ad-copy h3,
.ad-slide--windshield .ad-note,
.ad-slide--adas .ad-eyebrow,
.ad-slide--adas .ad-copy h3,
.ad-slide--adas .ad-note {
  color: #fff !important;
}

.ad-slide--windshield .ad-copy p {
  color: #ffe7e6 !important;
}

.ad-slide--adas .ad-copy p {
  color: #dfe6ee !important;
}

.ad-slide--kasko .ad-copy h3 {
  color: #171a20 !important;
}

.ad-slide--kasko .ad-eyebrow {
  color: var(--red) !important;
}

.ad-slide--kasko .ad-copy p,
.ad-slide--kasko .ad-note {
  color: #3c4652 !important;
}

.ad-carousel .ad-cta,
.ad-carousel .ad-cta:hover,
.ad-carousel .ad-cta:focus-visible {
  color: #fff !important;
}

.ad-carousel .ad-cta--light,
.ad-carousel .ad-cta--light:hover,
.ad-carousel .ad-cta--light:focus-visible {
  color: #9f1110 !important;
}

.ad-carousel .ad-slide {
  grid-template-columns: 1fr !important;
  align-content: center !important;
  min-width: 0 !important;
}

.ad-carousel .ad-copy {
  max-width: 440px !important;
}

.ad-carousel .ad-eyebrow {
  margin-bottom: 8px !important;
  font-size: 14px !important;
  line-height: 1.12 !important;
}

.ad-carousel .ad-copy h3 {
  margin-bottom: 8px !important;
  font-size: 30px !important;
  line-height: 1.05 !important;
}

.ad-carousel .ad-copy p {
  margin-bottom: 14px !important;
  font-size: 16px !important;
  line-height: 1.18 !important;
}

.ad-carousel .ad-cta {
  min-height: 40px !important;
  padding: 0 20px !important;
  color: #fff !important;
  background: #e10f0a !important;
  font-size: 15px !important;
}

.ad-carousel .ad-cta--light {
  color: #9f1110 !important;
  background: linear-gradient(90deg, #ffffff 0%, #ffe7e6 100%) !important;
}

.ad-carousel .ad-note {
  display: none !important;
}

.ad-carousel .ad-visual {
  display: none !important;
}

.steps > div > span {
  color: #f7f8fa !important;
}

.promo-table-wrapper,
.promo-table-wrapper *,
.promo-table-wrapper .promo-row,
.promo-table-wrapper .promo-row span,
.promo-table-wrapper .promo-row strong {
  color: #f7f8fa !important;
}

.promo-table-wrapper {
  border-color: rgba(255, 255, 255, 0.2) !important;
  background:
    linear-gradient(135deg, rgba(42, 45, 50, 0.82), rgba(18, 20, 24, 0.72)),
    rgba(20, 22, 26, 0.76) !important;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.26) !important;
}

.promo-table-wrapper .promo-row {
  min-height: 66px;
  font-size: 16px;
}

.promo-table-wrapper .promo-row.head {
  min-height: 62px;
  font-size: 13px;
}

.promo-table-wrapper .promo-row strong {
  font-size: 17px;
}

[data-theme="dark"] body,
[data-theme="dark"] body * {
  color: #f7f8fa !important;
}

[data-theme="light"] .topbar-call,
[data-theme="light"] .topbar-call * {
  color: #111827 !important;
}

html:not([data-theme="dark"]) .topbar .topbar-call,
html:not([data-theme="dark"]) .topbar .topbar-call * {
  color: #111827 !important;
}

html[data-theme="dark"] .topbar .topbar-call,
html[data-theme="dark"] .topbar .topbar-call * {
  color: #f7f8fa !important;
}

.brand-tag .brand-icon-text,
.selected-brand-preview .selected-brand-fallback {
  color: var(--blue) !important;
}

@media (max-width: 980px) {
  body.mobile-menu-open {
    overflow: hidden;
  }

  .topbar {
    top: 8px;
    position: sticky;
  }

  .mobile-menu-toggle {
    display: grid;
    flex: 0 0 auto;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: -1px;
    left: -1px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    max-height: calc(100dvh - 90px);
    overflow: auto;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 70px rgba(16, 38, 62, 0.16);
    backdrop-filter: blur(24px) saturate(170%);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transition: opacity 0.24s ease, transform 0.24s ease;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .topbar.is-menu-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav > a,
  .nav-dropdown > a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 48px;
    padding: 13px 14px;
    border-radius: 16px;
    font-size: 15px;
  }

  .nav-dropdown {
    display: grid;
    gap: 5px;
  }

  .dropdown-wrapper {
    position: static;
    padding-top: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-dropdown:hover .dropdown-wrapper,
  .nav-dropdown:focus-within .dropdown-wrapper {
    transform: none;
  }

  .dropdown-content {
    gap: 5px;
    min-width: 0;
    padding: 6px 8px 8px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.58);
    text-align: left;
  }

  .dropdown-content a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 14px;
    font-size: 14px;
  }

  [data-theme="dark"] .nav {
    background: rgba(30, 32, 36, 0.94);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  }

  [data-theme="dark"] .dropdown-content {
    background: rgba(255, 255, 255, 0.07);
  }

  .annual-promo-slide {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .annual-promo-action {
    justify-self: start;
  }

  .annual-promo-main {
    grid-template-columns: 1fr;
    max-width: 650px;
  }

  .annual-promo-label,
  .annual-promo-ribbon {
    width: min(calc(100% - 12px), 620px);
  }

  .annual-promo-subtitle {
    max-width: 620px;
    text-align: left;
  }

  .topbar-call {
    display: none;
  }

  .hero,
  .quick-panel,
  .kasko-offer,
  .section-heading,
  .install,
  .repair,
  .service-band,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .hero-visual {
    min-height: auto;
  }

  .visual-shell {
    min-height: 480px;
  }

  .request-form,
  .review-form,
  .glass-grid,
  .blog-grid,
  .insurance-grid,
  .priority-service-grid,
  .center-address-grid {
    grid-template-columns: 1fr;
  }

  .benefits {
    justify-content: flex-start;
  }

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

  .insurance-partner-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .insurance-logo-row {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .annual-promo-slide {
    margin-top: 34px;
    padding: 22px 18px;
    border-radius: 26px;
  }

  .annual-promo-slide::before {
    inset: 10px;
    border-radius: 20px;
  }

  .annual-promo-slide::after {
    right: -120px;
    bottom: -125px;
    width: 310px;
    height: 190px;
    opacity: 0.7;
  }

  .annual-promo-terms {
    margin-bottom: 18px;
    font-size: 12px;
    line-height: 1.35;
  }

  .annual-promo-main {
    gap: 10px;
  }

  .annual-promo-label {
    min-height: 58px;
    padding-inline: 24px;
    border-radius: 18px;
    font-size: clamp(32px, 11vw, 46px);
    transform: skewX(-4deg);
  }

  .annual-promo-ribbon {
    min-height: 62px;
    padding-inline: 18px;
    border-radius: 18px;
    transform: skewX(-4deg);
  }

  .annual-promo-ribbon > * {
    transform: skewX(4deg);
  }

  .annual-promo-ribbon strong {
    font-size: clamp(21px, 6.4vw, 28px);
    white-space: normal;
  }

  .annual-promo-subtitle {
    margin-top: 14px;
    font-size: clamp(18px, 5.7vw, 25px);
  }

  .annual-promo-action {
    width: 100%;
    margin-top: 2px;
  }

  .topbar {
    top: 8px;
    width: calc(100% - 16px);
    min-height: 56px;
    margin-top: 8px;
    padding: 6px 8px;
    border-radius: 20px;
    gap: 8px;
  }

  .topbar.is-scrolled {
    min-height: 52px;
    padding: 5px 8px;
  }

  .brand img {
    width: 128px;
  }

  .brand {
    width: 136px;
    height: 46px;
    justify-content: flex-start;
  }

  .topbar-actions {
    gap: 6px;
    flex: 0 0 auto;
  }

  .theme-toggle {
    width: 54px;
    height: 36px;
    margin-right: 0;
  }

  .theme-toggle-icon {
    width: 24px;
    height: 24px;
  }

  .theme-toggle-thumb {
    top: 5px;
    width: 24px;
    height: 24px;
  }

  [data-theme="dark"] .theme-toggle-thumb {
    transform: translateX(26px);
  }

  .mobile-menu-toggle {
    width: 42px;
    height: 42px;
    margin-right: 0;
    border-radius: 14px;
  }

  main,
  .footer {
    width: min(100% - 20px, 1160px);
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.08;
  }

  .hero {
    gap: 28px;
    padding-top: 34px;
  }

  .hero-actions .button,
  .request-form .button {
    width: 100%;
  }

  .kasko-offer {
    gap: 16px;
    padding: 22px;
    border-radius: 26px;
  }

  .kasko-offer h2 {
    font-size: 32px;
  }

  .kasko-offer p {
    font-size: 16px;
  }

  .kasko-offer-details {
    padding: 14px;
    border-radius: 20px;
  }

  .visual-shell {
    min-height: 410px;
    border-radius: 28px;
  }

  .repair-media {
    height: 300px;
  }

  .ad-carousel {
    border-radius: 22px;
  }

  .ad-track {
    aspect-ratio: auto;
    min-height: 250px;
  }

  .ad-slide {
    grid-template-columns: 1fr;
    align-content: center;
    padding: 22px 20px 48px;
  }

  .ad-copy {
    max-width: 100%;
  }

  .ad-copy h3 {
    max-width: none;
    font-size: 28px !important;
    line-height: 1.04;
  }

  .ad-copy p {
    font-size: 15px !important;
    margin-bottom: 16px;
  }

  .ad-cta {
    min-height: 42px;
    padding-inline: 18px;
  }

  .ad-note {
    margin-top: 14px;
    max-width: 34ch;
  }

  .ad-visual {
    position: absolute;
    right: -26px;
    bottom: 20px;
    width: 96px;
    opacity: 0.28;
  }

  .ad-dots {
    right: 12px;
    bottom: 12px;
  }

  .floating-card {
    max-width: 180px;
    padding: 13px;
  }

  .card-model {
    left: 14px;
    top: 18px;
  }

  .card-price {
    right: 14px;
    bottom: 22px;
  }

  .quick-panel,
  .service-band,
  .priority-service-card,
  .insurance-partner-card,
  .company-info,
  .article-content,
  .center-address-card {
    padding: 20px;
    border-radius: 26px;
  }

  .quick-panel,
  .section,
  .footer,
  .service-centers,
  .insurance-partners,
  .company-info,
  .reviews-section {
    margin-bottom: 58px;
  }

  .service-priority {
    margin-top: 30px;
  }

  .insurance-partner-text p {
    font-size: 15px;
  }

  .insurance-logo-row {
    gap: 10px;
  }

  .insurance-logo {
    min-width: 62px;
    height: 46px;
    border-radius: 15px;
    font-size: 14px;
  }

  .insurance-logo-ingos,
  .insurance-logo-alfa {
    width: 46px;
    min-width: 46px;
  }

  .company-wordmark {
    flex-wrap: wrap;
    justify-content: center;
    font-size: clamp(32px, 10vw, 46px);
    text-align: center;
  }

  .service-facts {
    grid-template-columns: 1fr;
  }

  .glass-code-row {
    grid-template-columns: 1fr;
  }

  .glass-code-head {
    display: none;
  }

  .blog-hero {
    padding-top: 52px;
  }

  .blog-card h2,
  .article-content h2 {
    font-size: 26px;
  }

  .center-info-row,
  .center-address-grid {
    grid-template-columns: 1fr;
  }

  .center-info-card {
    min-height: 64px;
    padding: 14px 16px;
  }

  .center-info-card strong {
    font-size: 17px;
  }

  .center-route-link {
    width: 100%;
    max-width: 220px;
    margin-top: 14px;
  }

  .review-star-picker {
    gap: 4px;
  }

  .review-star-picker button {
    width: 34px;
    height: 34px;
    font-size: 27px;
  }

  .review-form .button {
    width: 100%;
    min-width: 0;
  }

  .map-glass-card {
    padding: 8px;
    border-radius: 26px;
  }

  .service-map {
    min-height: 360px;
    border-radius: 20px;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 6px;
    min-height: 0;
    padding: 16px;
  }

  .price-row.repair-row {
    grid-template-columns: 1fr;
  }

  .price-row.head {
    display: none;
  }
}

@media (max-width: 380px) {
  .topbar {
    width: calc(100% - 12px);
    padding-inline: 6px;
  }

  .brand {
    width: 118px;
  }

  .brand img {
    width: 112px;
  }

  .theme-toggle {
    width: 48px;
  }

  [data-theme="dark"] .theme-toggle-thumb {
    transform: translateX(20px);
  }

  h1 {
    font-size: 36px;
  }
}
