* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #050505;
  --charcoal: #111111;
  --dark: #181818;
  --gray: #8e8e8e;
  --silver: #d7d7d7;
  --white: #ffffff;
  --line: rgba(255,255,255,.16);
  --shadow: 0 20px 70px rgba(0,0,0,.35);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand img {
  width: 170px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .08em;
}

.nav-links a {
  opacity: .88;
  transition: opacity .2s ease, transform .2s ease;
}

.nav-links a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.nav-call,
.pill {
  border: 1px solid var(--white);
  border-radius: 999px;
  padding: 10px 16px;
}

.menu-toggle {
  display: none;
  background: transparent;
  color: white;
  border: 0;
  font-size: 30px;
}

.hero {
  min-height: 100vh;
  position: relative;
  padding: 155px 5vw 80px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,.68), rgba(0,0,0,.86)),
    url("bmw-night.jpeg") center/cover no-repeat;
  transform: scale(1.04);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -20% -20% -20%;
  height: 45%;
  background: radial-gradient(circle, rgba(255,255,255,.18), transparent 65%);
  filter: blur(40px);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  text-align: center;
}

.pill-label {
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--silver);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 28px;
}

h1 {
  font-size: clamp(58px, 10vw, 148px);
  line-height: .9;
  letter-spacing: -.08em;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.hero-subtitle {
  max-width: 780px;
  margin: 0 auto 34px;
  color: #d4d4d4;
  font-size: clamp(18px, 2vw, 24px);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  border: 1px solid transparent;
  cursor: pointer;
}

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

.secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--line);
}

.hero-actions,
.buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 920px;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(0,0,0,.46);
  backdrop-filter: blur(18px);
}

.hero-stats div {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  font-size: 28px;
}

.hero-stats span {
  color: var(--gray);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.ticker {
  background: var(--white);
  color: var(--black);
  overflow: hidden;
  white-space: nowrap;
  padding: 18px 0;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.ticker-track {
  display: inline-flex;
  gap: 22px;
  min-width: max-content;
  animation: scrollTicker 26s linear infinite;
}

.ticker b {
  color: var(--gray);
}

@keyframes scrollTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  padding: 110px 5vw;
  max-width: 1280px;
  margin: 0 auto;
}

.section-kicker {
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 900;
  margin-bottom: 14px;
  font-size: 13px;
}

h2 {
  font-size: clamp(40px, 6vw, 86px);
  line-height: .92;
  letter-spacing: -.055em;
  text-transform: uppercase;
  margin-bottom: 45px;
}

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

.service-card,
.step,
.price-card,
.review {
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.045));
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 250px;
  transition: transform .25s ease, border-color .25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,.38);
}

.service-card span {
  display: inline-block;
  color: var(--black);
  background: var(--white);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 18px;
}

.service-card h3,
.step h3 {
  font-size: 28px;
  margin-bottom: 14px;
  line-height: 1;
}

.service-card p,
.step p,
.about-text p,
.about-text li,
.pricing-note,
.coverage p {
  color: #cfcfcf;
}

.process-section {
  border-top: 1px solid var(--line);
}

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

.step strong {
  font-size: 52px;
  color: transparent;
  -webkit-text-stroke: 1px var(--silver);
}

.about-section {
  padding: 110px 5vw;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 54px;
  align-items: center;
  max-width: 1280px;
  margin: auto;
}

.about-image img {
  height: 680px;
  width: 100%;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.about-text ul {
  margin: 26px 0 0 20px;
}

.about-text li {
  margin: 10px 0;
}

.pricing-section {
  background: var(--white);
  color: var(--black);
  max-width: none;
}

.pricing-section .section-kicker,
.pricing-section .pricing-note {
  color: #676767;
}

.pricing-grid {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card {
  background: #f3f3f3;
  color: var(--black);
  border-color: #dedede;
  box-shadow: none;
}

.price-card span {
  display: block;
  color: #666;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
}

.price-card strong {
  font-size: 42px;
  line-height: 1;
}

.pricing-note {
  max-width: 880px;
  margin: 28px auto 0;
}

.dark-panel {
  max-width: none;
  background: #0b0b0b;
}

.dark-panel > .section-kicker,
.dark-panel > h2 {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.reviews {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.review p {
  font-size: 20px;
  margin-bottom: 24px;
}

.review div {
  color: var(--silver);
  font-weight: 900;
}

.review span {
  display: block;
  color: var(--gray);
  margin-top: 6px;
}

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

.gallery img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid var(--line);
  filter: grayscale(.12) contrast(1.05);
  transition: transform .25s ease, filter .25s ease;
}

.gallery img:hover {
  transform: scale(1.02);
  filter: grayscale(0) contrast(1.08);
}

.coverage {
  text-align: center;
  padding: 100px 5vw;
  background: var(--white);
  color: var(--black);
}

.coverage .section-kicker,
.coverage p {
  color: #666;
}

.contact-section {
  padding: 110px 5vw;
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.contact-info img {
  width: 360px;
  margin-bottom: 30px;
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
}

.contact-info p {
  color: #cfcfcf;
  margin-bottom: 24px;
  font-size: 18px;
}

.contact-methods {
  display: grid;
  gap: 12px;
}

.contact-methods a {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  color: var(--silver);
  font-weight: 900;
}

.contact-form {
  background: var(--white);
  color: var(--black);
  border-radius: 28px;
  padding: 28px;
}

.contact-form label {
  display: block;
  font-weight: 900;
  margin-bottom: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 15px 14px;
  border-radius: 14px;
  border: 1px solid #d6d6d6;
  font: inherit;
}

.hidden {
  display: none;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 50px 5vw;
  text-align: center;
  color: var(--gray);
}

.footer img {
  width: 210px;
  margin: 0 auto 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    padding: 28px;
    background: rgba(0,0,0,.94);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .hero-stats,
  .cards,
  .steps,
  .pricing-grid,
  .reviews,
  .gallery,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .about-image img {
    height: 480px;
  }

  .gallery img {
    height: 280px;
  }

  .brand img {
    width: 145px;
  }
}
