:root {
  --black: #070811;
  --panel: #10121d;
  --ink: #f8f8ff;
  --muted: #b7bbcc;
  --line: rgba(255, 255, 255, 0.12);
  --blue: #16245f;
  --blue-2: #24357f;
  --white: #ffffff;
  --paper: #f5f6fb;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  min-height: 100vh;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 72% 48%, rgba(22, 36, 95, 0.24), transparent 34%),
    linear-gradient(90deg, rgba(7, 8, 17, 1) 0%, rgba(7, 8, 17, 0.96) 42%, rgba(7, 8, 17, 0.68) 100%),
    #070811;
}

.nav {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 3;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--black);
  font-size: 12px;
  transform: skew(-12deg);
}

.nav-links {
  display: flex;
  gap: clamp(18px, 4vw, 52px);
  color: var(--muted);
  font-size: 14px;
}

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

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 4px;
  padding: 0 22px;
  font-weight: 800;
  cursor: pointer;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(22, 36, 95, 0.36);
}

.btn-light {
  background: var(--white);
  color: var(--black);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: minmax(620px, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 56px;
  position: relative;
  z-index: 2;
}

.hero-copy {
  padding: 40px 0 70px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #8992ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: "Anton", Impact, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 0.98;
  margin: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(52px, 5.4vw, 74px);
  line-height: 1.06;
}

h2 {
  font-size: clamp(38px, 5vw, 64px);
}

h3 {
  margin: 0;
}

.hero-text {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 42px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
}

.stars {
  color: #dfe4ff;
  letter-spacing: 3px;
}

.brand-strip {
  margin-top: 92px;
}

.brand-strip p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.brand-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.brand-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 15px;
  color: var(--white);
  font-weight: 800;
}

.hero-car {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-car img {
  width: min(560px, 42vw);
  mix-blend-mode: screen;
  filter: contrast(1.08) drop-shadow(0 26px 70px rgba(0, 0, 0, 0.68));
  opacity: 0.9;
}

main {
  background: var(--paper);
  color: #090a12;
}

section {
  padding: 92px max(20px, calc((100vw - 1180px) / 2));
}

.section-dark {
  background: var(--black);
  color: var(--ink);
}

.section-head {
  margin-bottom: 36px;
}

.reviews {
  transform: skewY(-3deg);
  transform-origin: top left;
}

.reviews > * {
  transform: skewY(3deg);
}

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

.review-grid article {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  padding: 26px;
  min-height: 190px;
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.review-top span {
  color: #dfe4ff;
  font-size: 12px;
}

.review-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.services {
  background: var(--paper);
}

.services .section-head {
  max-width: 620px;
}

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

.service-card {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  background: #080912;
  color: var(--white);
  padding: 26px;
  display: flex;
  align-items: flex-end;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.1));
  z-index: 1;
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.service-card div {
  position: relative;
  z-index: 2;
}

.service-card span {
  position: absolute;
  right: 4px;
  bottom: -22px;
  font-size: 86px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.14);
}

.service-card h3 {
  max-width: 260px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.service-card p {
  max-width: 310px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.service-blue {
  background: #0a0c15;
}

.service-blue::before {
  background: linear-gradient(0deg, rgba(7, 8, 17, 0.9), rgba(7, 8, 17, 0.36));
}

.service-wide {
  grid-column: span 2;
}

.multi-brand {
  background:
    linear-gradient(90deg, rgba(8, 12, 30, 0.95), rgba(14, 22, 58, 0.72)),
    url("assets/repair_v2.png") center / cover;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.multi-brand div {
  max-width: 760px;
}

.multi-brand p:last-child {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
}

.multi-brand .eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.booking {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 34px;
  background: var(--paper);
}

.booking-options {
  min-width: 0;
}

.option-group {
  padding: 28px 0;
  border-top: 1px solid rgba(7, 8, 17, 0.15);
}

.option-group h3 {
  margin-bottom: 18px;
  text-transform: uppercase;
  font-size: 15px;
}

.option-group button {
  border: 1px solid rgba(7, 8, 17, 0.18);
  background: var(--white);
  border-radius: 999px;
  padding: 11px 15px;
  margin: 0 8px 10px 0;
  cursor: pointer;
  color: #303342;
}

.option-group button.is-selected {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.booking-form {
  align-self: start;
  background: var(--blue);
  color: var(--white);
  padding: 34px;
  display: grid;
  gap: 16px;
}

.booking-form .eyebrow {
  color: rgba(255, 255, 255, 0.75);
}

.booking-form h2 {
  font-size: clamp(34px, 5vw, 54px);
}

.booking-form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  padding: 14px 15px;
  outline: 1px solid transparent;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.booking-form input:focus,
.booking-form textarea:focus {
  outline-color: rgba(255, 255, 255, 0.8);
}

.footer {
  padding: 70px max(20px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 34px;
  background: var(--black);
  color: var(--white);
}

.footer h2 {
  font-size: 42px;
}

.footer h3 {
  margin-bottom: 14px;
  text-transform: uppercase;
}

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

@media (min-width: 921px) {
  .hero-copy {
    transform: translateX(-28px);
  }
}

@media (max-width: 920px) {
  .nav {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

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

  .hero-car {
    order: -1;
    min-height: 240px;
    align-items: end;
  }

  .hero-car img {
    width: min(620px, 100%);
  }

  .brand-strip {
    margin-top: 54px;
  }

  .review-grid,
  .booking,
  .footer {
    grid-template-columns: 1fr;
  }

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

  .multi-brand {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .nav {
    width: min(100% - 28px, 1180px);
  }

  .btn-light {
    display: none;
  }

  .hero,
  section {
    width: auto;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 38px;
  }

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

  .service-wide {
    grid-column: span 1;
  }

  .booking-form {
    padding: 26px;
  }
}
