:root {
  --bg: #070909;
  --bg-2: #101313;
  --panel: rgba(21, 24, 24, 0.82);
  --panel-2: rgba(14, 16, 16, 0.92);
  --line: rgba(255, 255, 255, 0.16);
  --line-yellow: rgba(255, 190, 18, 0.58);
  --text: #f4f5f1;
  --muted: #c6cbc5;
  --muted-2: #8d9690;
  --yellow: #ffc21a;
  --yellow-2: #ff9e00;
  --dark: #030404;
  --radius: 8px;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.52);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 194, 26, 0.08), transparent 32%),
    linear-gradient(180deg, #050606 0%, #111515 34%, #070909 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 74px 74px;
  content: "";
  opacity: 0.35;
  pointer-events: none;
}

body::after {
  position: fixed;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle at 50% 26%, rgba(255, 194, 26, 0.09), transparent 24%);
  content: "";
  pointer-events: none;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  color: #fff;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.05;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.14;
  text-transform: uppercase;
}

p {
  margin-bottom: 0;
}

.container {
  width: min(1090px, calc(100% - 80px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 80;
  top: 18px;
  left: 50%;
  display: flex;
  width: min(1090px, calc(100% - 80px));
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 14px 8px 12px;
  border: 1px solid rgba(255, 194, 26, 0.22);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(8, 14, 13, 0.94), rgba(16, 18, 14, 0.9) 54%, rgba(34, 25, 8, 0.86)),
    rgba(7, 9, 9, 0.92);
  box-shadow:
    0 18px 58px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    inset 0 -1px 0 rgba(255, 194, 26, 0.12);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
}

.logo-number {
  color: var(--yellow);
  font-size: 58px;
  font-style: italic;
  font-weight: 950;
  line-height: 0.85;
  text-shadow: 0 7px 22px rgba(255, 194, 26, 0.28);
}

.logo-copy {
  display: grid;
  transform: translateY(2px);
}

.logo-copy strong {
  font-size: 26px;
  font-style: italic;
  font-weight: 950;
  letter-spacing: -0.02em;
  line-height: 0.82;
  text-transform: uppercase;
}

.logo-copy small {
  color: var(--yellow);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav a {
  color: #fff;
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
  transition: color 0.18s ease;
}

.nav a:hover {
  color: var(--yellow);
}

.mobile-menu {
  position: relative;
  display: none;
}

.mobile-menu summary {
  display: grid;
  width: 46px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 194, 26, 0.48);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.42);
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--yellow);
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  width: min(250px, calc(100vw - 24px));
  overflow: hidden;
  border: 1px solid rgba(255, 194, 26, 0.42);
  border-radius: 10px;
  background: rgba(8, 10, 10, 0.96);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.54);
  backdrop-filter: blur(16px);
}

.mobile-menu-panel a {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.mobile-menu-panel a:last-child {
  border-bottom: 0;
}

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

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.phone-link span {
  color: var(--yellow);
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

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

.btn-yellow {
  border-color: rgba(255, 222, 96, 0.74);
  background: linear-gradient(180deg, #ffd34b 0%, #ffb400 100%);
  box-shadow: 0 13px 30px rgba(255, 180, 0, 0.24);
  color: #101010;
}

.btn-yellow:hover {
  box-shadow: 0 18px 46px rgba(255, 180, 0, 0.34);
}

.btn-outline,
.btn-route {
  border-color: var(--line-yellow);
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
}

.btn-outline:hover,
.btn-route:hover {
  background: rgba(255, 194, 26, 0.1);
}

.header-btn {
  min-height: 52px;
  padding-inline: 30px;
}

.hero {
  position: relative;
  min-height: 452px;
  padding-top: 104px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(5, 8, 8, 0.66) 44%, rgba(5, 8, 8, 0.9) 100%),
    url("assets/hero-workshop.jpg") center 36% / cover;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 64% 38%, rgba(255, 190, 18, 0.22), transparent 18%),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(7, 9, 9, 0.9));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 430px 190px;
  gap: 18px;
  align-items: center;
}

.hero-copy {
  padding-top: 0;
}

.pill {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1 {
  max-width: 520px;
  margin-bottom: 12px;
  font-size: clamp(48px, 5.6vw, 64px);
  font-weight: 950;
  line-height: 0.98;
  text-transform: uppercase;
}

h1 span,
.bottom-cta h2 span {
  display: block;
  color: var(--yellow);
}

.hero-text {
  max-width: 430px;
  color: #fff;
  font-size: 19px;
  line-height: 1.45;
}

.hero-actions-main {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 18px;
}

.hero-actions-main .btn {
  min-width: 210px;
  min-height: 48px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 610px;
  margin-top: 16px;
}

.hero-stats div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-icon,
.work-icon {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  place-items: center;
  color: var(--yellow);
  font-size: 24px;
  font-weight: 950;
}

.hero-stats p {
  color: #fff;
  font-size: 13px;
  line-height: 1.15;
}

.hero-wheel {
  height: 392px;
  margin-top: -4px;
  background-image: url("assets/wheel-cutout.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.7));
}

.work-card {
  align-self: start;
  padding: 20px 16px;
  border: 1px solid rgba(255, 194, 26, 0.38);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(33, 36, 37, 0.9), rgba(9, 10, 10, 0.86));
  box-shadow: var(--shadow);
}

.work-row {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.work-row strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 13px;
}

.work-row p {
  color: #fff;
  font-size: 14px;
  line-height: 1.3;
}

.work-row b {
  display: inline-block;
  font-size: 20px;
  line-height: 1.15;
}

.work-card .btn {
  width: 100%;
  min-height: 40px;
  padding-inline: 12px;
  font-size: 12px;
  line-height: 1.15;
}

.section {
  padding-top: 14px;
  scroll-margin-top: 112px;
}

.section-kicker {
  margin-bottom: 6px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.service-card {
  position: relative;
  isolation: isolate;
  display: grid;
  height: 214px;
  min-height: 214px;
  align-content: end;
  overflow: hidden;
  padding: 15px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.62) 45%, rgba(0, 0, 0, 0.95) 100%),
    var(--photo) var(--photo-pos, center) / var(--photo-size, cover) no-repeat;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.service-card::before,
.service-card::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.service-card::before {
  inset: 0;
  background:
    radial-gradient(circle at 78% 14%, rgba(255, 194, 26, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%);
  opacity: 0.55;
  transition: opacity 0.18s ease;
}

.service-card::after {
  right: -38px;
  bottom: -54px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(255, 194, 26, 0.2);
  border-radius: 999px;
  background:
    radial-gradient(circle, transparent 0 34%, rgba(255, 194, 26, 0.12) 35% 36%, transparent 37% 100%),
    repeating-radial-gradient(circle, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 12px);
  opacity: 0.34;
}

.service-card:hover,
.why-grid article:hover,
.review-card:hover,
.contact-card:hover,
.photo-card:hover {
  border-color: rgba(255, 194, 26, 0.7);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.42);
  transform: translateY(-3px);
}

.service-card:hover::before {
  opacity: 0.82;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.round-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 20px;
  border: 2px solid var(--yellow);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
  color: var(--yellow);
  font-size: 27px;
  font-weight: 900;
}

.service-icon {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  transition: transform 0.22s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.08) rotate(-4deg);
}

.service-card h3 {
  font-size: 15px;
}

.service-card p {
  display: -webkit-box;
  min-height: auto;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.28;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.service-card strong {
  margin-top: 10px;
  color: var(--yellow);
  font-size: 17px;
  font-weight: 950;
}

.service-card-cta {
  display: flex;
  min-height: 214px;
  flex-direction: column;
  justify-content: flex-end;
  border-color: rgba(255, 194, 26, 0.48);
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 194, 26, 0.28), transparent 30%),
    radial-gradient(circle at 16% 76%, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(145deg, rgba(21, 24, 24, 0.96), rgba(6, 8, 8, 0.96));
}

.service-card-cta::before {
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(255, 194, 26, 0.18) 43%, transparent 58%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 42px);
}

.service-card-cta .round-icon {
  margin-bottom: 16px;
}

.service-card-cta p {
  display: block;
  color: #e4e8df;
  font-size: 13px;
  -webkit-line-clamp: unset;
}

.service-card-cta strong {
  font-size: 15px;
}

.service-card-cta .btn {
  width: 100%;
  min-height: 42px;
  margin-top: 12px;
  padding-inline: 12px;
  border-radius: 7px;
  font-size: 13px;
}

.price-panel {
  position: relative;
  display: block;
  height: auto;
  margin-top: 14px;
  min-height: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(23, 26, 26, 0.84), rgba(7, 9, 9, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: visible;
}

.price-panel::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 194, 26, 0.16), transparent 26%),
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.05) 38%, transparent 58%);
  content: "";
  opacity: 0.7;
  pointer-events: none;
}

.price-table-wrap,
.price-cta {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.price-panel h2 {
  margin-bottom: 8px;
}

.price-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.price-heading h2 {
  margin-bottom: 4px;
}

.price-call-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--line-yellow);
  border-radius: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}

.price-call-link:hover {
  border-color: var(--yellow);
  background: rgba(255, 194, 26, 0.12);
  transform: translateY(-2px);
}

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

.price-highlights article {
  position: relative;
  overflow: hidden;
  min-height: 110px;
  padding: 16px;
  border: 1px solid rgba(255, 194, 26, 0.22);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 194, 26, 0.16), rgba(255, 194, 26, 0.02) 46%),
    rgba(5, 6, 6, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.price-highlights article::after {
  position: absolute;
  top: -40%;
  left: -70%;
  width: 52%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  content: "";
  transform: rotate(18deg);
  animation: priceShine 5.5s ease-in-out infinite;
}

.price-highlights article:nth-child(2)::after {
  animation-delay: 0.7s;
}

.price-highlights article:nth-child(3)::after {
  animation-delay: 1.4s;
}

.price-highlights article:nth-child(4)::after {
  animation-delay: 2.1s;
}

.price-highlights article:hover {
  border-color: rgba(255, 194, 26, 0.72);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
  transform: translateY(-3px);
}

.price-highlights span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.price-highlights strong {
  display: block;
  margin-top: 10px;
  color: var(--yellow);
  font-size: 28px;
  line-height: 1;
}

.price-highlights p {
  margin-top: 8px;
  color: #fff;
  font-size: 13px;
}

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

.price-card,
.price-extra-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    rgba(0, 0, 0, 0.22);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.price-card {
  overflow-x: auto;
}

.price-card:hover,
.price-extra-card:hover {
  border-color: rgba(255, 194, 26, 0.56);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.price-card h3,
.price-extra-card h3 {
  margin: 0;
  padding: 11px 12px;
  background: linear-gradient(90deg, rgba(255, 194, 26, 0.12), rgba(0, 0, 0, 0.32));
  color: #fff;
  font-size: 14px;
}

.price-card-wide {
  grid-column: 1 / -1;
}

table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 4px;
  table-layout: fixed;
}

th,
td {
  padding: 7px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 13px;
  text-align: left;
}

th {
  background: rgba(0, 0, 0, 0.35);
  font-size: 12px;
  text-transform: uppercase;
}

td {
  white-space: nowrap;
  transition: background 0.16s ease, color 0.16s ease;
}

tbody tr:hover td {
  background: rgba(255, 194, 26, 0.08);
}

.price-note {
  display: none;
  margin-top: 10px;
  color: var(--muted-2);
  font-size: 12px;
}

.price-note-visible {
  display: block;
  margin: 0 0 4px;
}

.price-card table {
  border-radius: 0;
}

.price-card-wide table {
  min-width: 620px;
}

.price-card th,
.price-card td {
  padding: 7px 12px;
}

.price-card td:first-child,
.price-card th:first-child {
  width: 26%;
}

.price-card td:last-child,
.price-card th:last-child {
  color: #fff;
  font-weight: 850;
}

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

.price-extra-card {
  padding-bottom: 10px;
}

.price-extra-card p {
  margin: 8px 12px 0;
  padding-left: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.28;
  position: relative;
}

.price-extra-card p::before {
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--yellow);
  content: "";
}

.price-cta {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  align-items: center;
  position: relative;
  min-height: 172px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--line-yellow);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.34), rgba(255, 194, 26, 0.05));
}

@keyframes priceShine {
  0%,
  58% {
    transform: translateX(0) rotate(18deg);
  }

  82%,
  100% {
    transform: translateX(360%) rotate(18deg);
  }
}

@keyframes mapPulse {
  0% {
    opacity: 0.75;
    transform: scale(0.75);
  }

  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

.mini-wheel {
  min-height: 144px;
  background-image: url("assets/wheel-cutout.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.price-cta h3 {
  font-size: 22px;
}

.price-cta p {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}

.price-cta .btn {
  position: absolute;
  right: 14px;
  bottom: 14px;
  min-width: 160px;
  min-height: 42px;
  padding-inline: 18px;
}

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

.why-grid article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  height: 88px;
  min-height: 88px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.why-grid span {
  color: var(--yellow);
  font-size: 40px;
  line-height: 1;
}

.why-grid p,
.process-line p,
.review-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.why-grid p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.why-grid h3 {
  margin-bottom: 4px;
  font-size: 14px;
}

.process-section {
  padding-top: 14px;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  height: 92px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.process-line article {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  grid-template-rows: auto 1fr;
  gap: 14px;
  height: 92px;
  min-height: 92px;
  padding: 14px;
}

.process-line article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.process-line article + article::before {
  position: absolute;
  top: 44%;
  left: -9px;
  color: rgba(255, 255, 255, 0.28);
  content: "→";
  font-size: 34px;
}

.process-line span {
  display: grid;
  grid-row: 1 / 3;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--yellow);
  border-radius: 999px;
  color: var(--yellow);
  font-size: 19px;
  font-weight: 950;
}

.process-line h3,
.process-line p {
  grid-column: 2;
}

.process-line h3 {
  margin-bottom: 0;
  font-size: 14px;
}

.process-line p {
  align-self: end;
  font-size: 11px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 0.9fr repeat(4, 1fr);
  gap: 12px;
  align-items: stretch;
}

.rating-card,
.review-card {
  display: flex;
  min-height: 164px;
  padding: 14px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.rating-card strong {
  display: block;
  color: var(--yellow);
  font-size: 40px;
  line-height: 0.94;
}

.rating-card span,
.review-card span {
  display: block;
  margin: 7px 0 8px;
  color: var(--yellow);
  letter-spacing: 2px;
}

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

.rating-card a {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding: 7px 10px;
  border: 1px solid var(--line-yellow);
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.review-card {
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.review-card p {
  display: block;
  overflow: visible;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.28;
}

.avatar {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  margin-bottom: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d9e0d6, #838b83);
  color: #101010;
  font-weight: 950;
}

.review-card h3 {
  margin-bottom: 0;
  font-size: 14px;
  text-transform: none;
}

.review-card small {
  display: block;
  margin-top: auto;
  padding-top: 8px;
  color: var(--muted-2);
  font-size: 11px;
}

.contacts-section {
  padding-top: 30px;
  padding-bottom: 8px;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 0.74fr 1.42fr 0.88fr;
  gap: 12px;
  min-height: 188px;
}

.contact-card,
.map-card,
.photo-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.contact-card {
  padding: 14px;
}

.contact-card p {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  margin-bottom: 7px;
  color: #fff;
  font-size: 13px;
  line-height: 1.25;
}

.contact-card span {
  color: var(--yellow);
  font-size: 18px;
  line-height: 1;
}

.contact-card a {
  font-weight: 850;
  text-decoration: none;
}

.contact-buttons {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 10px;
  margin-top: 10px;
}

.contact-buttons .btn {
  min-height: 32px;
  padding-inline: 10px;
  font-size: 11px;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 188px;
  border: 0;
  filter: grayscale(1) invert(0.92) contrast(1.1) hue-rotate(170deg);
  opacity: 0;
  pointer-events: none;
}

.map-card {
  position: relative;
  min-height: 188px;
  background: url("assets/contact-map-clean.png") center / cover no-repeat;
}

.map-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 58% 32%, rgba(255, 194, 26, 0.36), transparent 18%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent 44%, rgba(0, 0, 0, 0.36));
  content: "";
  pointer-events: none;
}

.map-overlay,
.map-actions {
  position: absolute;
  z-index: 3;
}

.map-center-pin {
  position: absolute;
  z-index: 2;
  top: 47%;
  left: 59%;
  width: 38px;
  height: 38px;
  border: 4px solid #111;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(180deg, #ffd34b, #ffae00);
  box-shadow: 0 0 0 10px rgba(255, 194, 26, 0.16), 0 18px 34px rgba(255, 174, 0, 0.34);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.map-center-pin::before {
  position: absolute;
  inset: -16px;
  border: 2px solid rgba(255, 194, 26, 0.32);
  border-radius: 999px;
  content: "";
  animation: mapPulse 2.4s ease-out infinite;
}

.map-center-pin::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #111;
  content: "";
  transform: translate(-50%, -50%);
}

.map-overlay {
  inset: 14px 16px 58px;
  pointer-events: none;
}

.map-location {
  position: absolute;
  top: 10px;
  left: 14px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  max-width: 260px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 194, 26, 0.38);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.62);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(12px);
}

.map-pin {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffd34b, #ffae00);
  color: #111;
  font-size: 26px;
  font-weight: 950;
  box-shadow: 0 0 0 8px rgba(255, 194, 26, 0.16), 0 12px 24px rgba(0, 0, 0, 0.38);
}

.map-location strong {
  display: block;
  color: #fff;
  font-size: 15px;
  line-height: 1.1;
}

.map-location p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.map-guide {
  position: absolute;
  right: 12px;
  bottom: 0;
  max-width: 255px;
  padding: 10px 12px;
  border-radius: 9px;
  background: rgba(255, 194, 26, 0.96);
  color: #111;
  box-shadow: 0 16px 34px rgba(255, 194, 26, 0.16);
}

.map-guide span,
.map-guide b {
  display: block;
}

.map-guide span {
  font-size: 11px;
  font-weight: 800;
  opacity: 0.78;
}

.map-guide b {
  margin-top: 2px;
  font-size: 13px;
  line-height: 1.2;
}

.map-actions {
  right: 16px;
  bottom: 14px;
  left: 16px;
  display: flex;
  gap: 8px;
}

.map-actions a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 194, 26, 0.5);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.68);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.map-actions a:first-child {
  background: linear-gradient(180deg, #ffd34b, #ffae00);
  color: #111;
}

.map-actions a:hover {
  border-color: var(--yellow);
  transform: translateY(-2px);
}

.photo-card {
  position: relative;
}

.photo-card::before {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 72px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
  content: "";
  pointer-events: none;
}

.photo-card::after {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 240px;
  height: 112px;
  background: #000;
  content: "";
  pointer-events: none;
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 188px;
  object-fit: cover;
  filter: brightness(0.72) contrast(1.06);
}

.btn-dark-glass {
  position: absolute;
  z-index: 2;
  bottom: 16px;
  left: 16px;
  min-height: 38px;
  padding-inline: 18px;
  background: rgba(0, 0, 0, 0.52);
  color: #fff;
  backdrop-filter: blur(12px);
}

@media (min-width: 921px) {
  .photo-card {
    background: url("assets/contact-photo-clean.png") center / cover no-repeat;
  }

  .photo-card img {
    opacity: 0;
  }
}

.bottom-cta {
  position: relative;
  overflow: hidden;
  padding: 26px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 84% 45%, rgba(255, 194, 26, 0.2), transparent 22%),
    linear-gradient(90deg, #030404 0%, rgba(12, 15, 15, 0.98) 45%, #030404 100%);
}

.bottom-cta::before {
  position: absolute;
  right: -40px;
  bottom: -72px;
  width: 270px;
  height: 270px;
  background: url("assets/wheel-cutout.png") center / contain no-repeat;
  content: "";
  opacity: 0.28;
  pointer-events: none;
}

.bottom-cta::after {
  position: absolute;
  right: 190px;
  bottom: 0;
  width: 220px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 194, 26, 0.55) 0 2px, transparent 3px);
  background-size: 22px 16px;
  content: "";
  opacity: 0.22;
  transform: rotate(-14deg);
  pointer-events: none;
}

.bottom-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 26px;
  align-items: center;
}

.bottom-cta h2 {
  margin-bottom: 8px;
  font-size: 31px;
  text-align: left;
}

.bottom-cta p {
  color: #fff;
  text-align: left;
}

.urgent-actions {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(170px, 0.9fr) minmax(150px, 0.75fr);
  gap: 12px;
  align-items: center;
}

.urgent-actions .btn {
  width: 100%;
  min-height: 52px;
}

.urgent-phone {
  font-size: 17px;
  box-shadow: 0 18px 44px rgba(255, 194, 26, 0.2);
}

.urgent-messenger {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.urgent-messenger:hover {
  border-color: rgba(255, 194, 26, 0.56);
  background: rgba(255, 194, 26, 0.1);
  transform: translateY(-2px);
}

.lead-form {
  display: grid;
  grid-template-columns: 0.95fr 0.95fr 1.25fr 220px;
  gap: 10px;
  align-items: end;
}

label {
  display: grid;
  gap: 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

input {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

input:focus {
  border-color: var(--line-yellow);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(255, 194, 26, 0.12);
}

::placeholder {
  color: rgba(255, 255, 255, 0.54);
}

@media (max-width: 1180px) {
  .site-header,
  .container {
    width: min(100% - 80px, 1090px);
  }

  .nav {
    gap: 22px;
  }

  .nav a {
    font-size: 14px;
  }

  .header-actions {
    gap: 12px;
  }

  .phone-link {
    font-size: 16px;
  }

  .header-btn {
    min-height: 50px;
    padding-inline: 24px;
  }

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

  .hero-grid {
    grid-template-columns: 420px 265px 151px;
    gap: 12px;
  }

  .hero-wheel {
    align-self: start;
    height: 360px;
    margin-top: -24px;
    background-size: contain;
    background-position: center;
  }

  h1 {
    font-size: 48px;
    line-height: 0.96;
  }

  h1 span {
    white-space: nowrap;
  }

  .hero-text {
    max-width: 390px;
    font-size: 18px;
    line-height: 1.35;
  }

  .hero-actions-main {
    gap: 16px;
  }

  .hero-actions-main .btn {
    min-width: 180px;
    min-height: 48px;
    padding-inline: 14px;
    font-size: 14px;
  }

  .work-card {
    align-self: start;
    margin-top: 0;
    padding: 16px 12px;
  }

  .work-row {
    gap: 8px;
    margin-bottom: 14px;
  }

  .work-row p {
    font-size: 12px;
    line-height: 1.28;
  }

  .work-row b {
    font-size: 17px;
  }

  .work-card .btn {
    font-size: 11px;
    min-height: 38px;
  }
}

@media (max-width: 920px) {
  body {
    padding-bottom: 0;
  }

  .site-header {
    top: 10px;
    padding: 8px 12px;
    border-radius: 14px;
  }

  .nav,
  .header-actions {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .logo-number {
    font-size: 48px;
  }

  .logo-copy strong {
    font-size: 22px;
  }

  .header-btn {
    min-height: 44px;
    padding-inline: 18px;
  }

  .hero {
    min-height: auto;
    padding: 96px 0 28px;
  }

  .hero-grid,
  .price-panel,
  .bottom-grid,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .contacts-grid {
    height: auto;
  }

  .map-card,
  .map-card iframe,
  .photo-card img {
    min-height: 320px;
  }

  .map-overlay {
    inset: 16px 12px 76px;
  }

  .map-location,
  .map-guide {
    right: auto;
    left: 12px;
    max-width: calc(100% - 24px);
  }

  .map-guide {
    bottom: 0;
    padding: 12px 14px;
  }

  .map-location {
    grid-template-columns: 58px 1fr;
    padding: 13px;
  }

  .map-pin {
    width: 58px;
    height: 58px;
    font-size: 32px;
  }

  .map-location strong {
    font-size: 20px;
  }

  .map-location p {
    font-size: 14px;
  }

  .map-guide span {
    font-size: 12px;
  }

  .map-guide b {
    font-size: 16px;
  }

  .map-actions {
    flex-wrap: wrap;
    right: 12px;
    bottom: 14px;
    left: 12px;
  }

  .map-actions a {
    flex: 1 1 150px;
    min-height: 44px;
  }

  .map-center-pin {
    top: 50%;
    left: 72%;
    width: 52px;
    height: 52px;
    border-width: 5px;
    box-shadow: 0 0 0 14px rgba(255, 194, 26, 0.18), 0 20px 42px rgba(255, 174, 0, 0.42);
  }

  .map-center-pin::after {
    width: 15px;
    height: 15px;
  }

  .photo-card::after {
    display: none;
  }

  .photo-card::before {
    height: 46%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
  }

  .btn-dark-glass {
    right: 18px;
    bottom: 18px;
    left: 18px;
    min-height: 54px;
    border: 1px solid rgba(255, 194, 26, 0.44);
    border-radius: 9px;
    background: rgba(0, 0, 0, 0.58);
    font-size: 15px;
  }

  .hero-wheel {
    order: -1;
    height: 280px;
    background-size: contain;
    background-position: center;
  }

  .hero-copy {
    padding-top: 0;
  }

  h1 {
    font-size: clamp(44px, 13vw, 58px);
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-actions-main {
    gap: 12px;
  }

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

  .hero-stats,
  .why-grid,
  .process-line,
  .reviews-grid,
  .price-highlights,
  .price-tables,
  .price-extra-grid,
  .urgent-actions,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .price-heading {
    display: grid;
  }

  .price-call-link {
    width: fit-content;
  }

  .price-card-wide {
    grid-column: auto;
  }

  .work-card {
    grid-column: auto;
  }

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

  .price-cta {
    grid-template-columns: 1fr;
    height: auto;
    padding: 16px;
  }

  .price-panel {
    height: auto;
  }

  .price-cta .btn {
    position: static;
    width: 100%;
    min-width: 0;
  }

  .mini-wheel {
    min-height: 178px;
    background-size: contain;
    background-position: center;
  }

  .price-cta h3 {
    font-size: 24px;
  }

  .process-line {
    height: auto;
    overflow: visible;
  }

  .process-line article {
    height: auto;
    min-height: 112px;
  }

  .process-line article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }

  .process-line article + article::before {
    display: none;
  }

  .bottom-cta h2,
  .bottom-cta p {
    text-align: left;
  }

}

@media (max-width: 560px) {
  .site-header,
  .container {
    width: calc(100% - 24px);
  }

  .header-btn {
    display: none;
  }

  .hero-wheel {
    height: 258px;
    background-size: contain;
    background-position: center;
  }

  h1 {
    font-size: clamp(38px, 10.8vw, 43px);
    line-height: 0.98;
  }

  .pill {
    font-size: 11px;
  }

  .hero-stats {
    gap: 14px;
  }

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

  .service-card {
    min-height: 230px;
  }

  .price-panel {
    padding: 14px;
  }

  .price-highlights article {
    min-height: 94px;
    padding: 14px;
  }

  .price-highlights strong {
    font-size: 24px;
  }

  .urgent-actions .btn,
  .urgent-messenger {
    min-height: 48px;
  }

  th,
  td {
    padding: 10px 8px;
    font-size: 12px;
  }

  .why-grid article {
    grid-template-columns: 48px 1fr;
    padding: 16px;
  }

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

  .bottom-cta {
    padding-bottom: 96px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
.footer-bottom {
    padding: 18px 20px 24px;
    background: #080b0b;
    border-top: 1px solid rgba(255, 199, 30, 0.12);
}

.footer-bottom__inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.footer-bottom__copyright,
.footer-bottom__dev {
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.55);
}

.footer-bottom__dev a {
    color: #f7c21b;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-bottom__dev a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer-bottom {
        padding: 16px 15px 22px;
    }

    .footer-bottom__inner {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .footer-bottom__copyright,
    .footer-bottom__dev {
        font-size: 12px;
    }
}