:root {
  --black: #080809;
  --black-soft: #111114;
  --black-raised: #17171b;
  --white: #f7f7f8;
  --muted: #b3b3ba;
  --line: rgba(255, 255, 255, 0.12);
  --red: #ed1717;
  --red-deep: #a70000;
  --max: 1180px;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 77% 8%, rgba(237, 23, 23, 0.12), transparent 28rem),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--black);
  background: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 9, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner,
.hero-grid,
.trust-strip,
.section,
.contact-inner,
.footer-inner {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: block;
  width: 96px;
  margin-right: auto;
}

.brand img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 650;
}

.desktop-nav a {
  color: #d8d8dc;
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--white);
}

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

.language-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #77777e;
}

.language-button {
  padding: 6px 2px;
  border: 0;
  color: #88888f;
  background: transparent;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
}

.language-button.active {
  color: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--red);
  border-radius: 6px;
  color: #fff;
  background: var(--red);
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: #ff2525;
  border-color: #ff2525;
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding-inline: 17px;
  font-size: 0.86rem;
}

.hero {
  padding: 84px 0 0;
  overflow: hidden;
}

.hero-grid {
  min-height: 570px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 50px;
}

.eyebrow {
  margin: 0 0 17px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 400;
  letter-spacing: 0.012em;
  line-height: 0.97;
  text-transform: uppercase;
}

h1 {
  max-width: 690px;
  margin-bottom: 24px;
  font-size: clamp(4rem, 8vw, 7.8rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
  line-height: 1.25;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 34px;
  color: #cbcbcf;
  font-size: clamp(1.1rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
}

.text-link span:last-child {
  color: var(--red);
}

.hero-mark {
  position: relative;
  min-height: 450px;
  display: grid;
  place-items: center;
}

.hero-mark::before,
.hero-mark::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero-mark::before {
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 90px rgba(237, 23, 23, 0.14);
}

.hero-mark::after {
  width: 315px;
  height: 315px;
  border: 1px dashed rgba(237, 23, 23, 0.34);
}

.hero-mark-inner {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-width: 100%;
  filter: drop-shadow(0 28px 30px rgba(0, 0, 0, 0.6));
}

.hero-mark-inner img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip > div {
  min-height: 90px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 28px;
  border-right: 1px solid var(--line);
}

.trust-strip > div:last-child {
  border-right: 0;
}

.trust-strip span,
.service-number {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.trust-strip strong {
  font-size: 0.9rem;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.section {
  padding-block: 120px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 54px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 500px;
  margin-bottom: 6px;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 250px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(17, 17, 20, 0.72);
  transition: background 180ms ease, transform 180ms ease;
}

.service-card:hover {
  background: var(--black-raised);
  transform: translateY(-3px);
}

.service-card h3 {
  margin-top: 50px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-card-accent {
  background: var(--red);
}

.service-card-accent:hover {
  background: #ff2020;
}

.service-card-accent .service-number,
.service-card-accent p {
  color: #fff;
}

.service-card-accent a {
  display: inline-block;
  margin-top: 24px;
  font-weight: 850;
}

.about {
  padding-top: 20px;
}

.about-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 540px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--black-soft);
}

.about-graphic {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #ef1c1c, #8f0000);
}

.about-graphic strong {
  position: relative;
  z-index: 2;
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(7rem, 14vw, 12rem);
  font-style: italic;
  letter-spacing: -0.04em;
  line-height: 1;
  text-shadow: 10px 12px 0 rgba(0, 0, 0, 0.22);
}

.ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
}

.ring-one {
  width: 430px;
  height: 430px;
}

.ring-two {
  width: 290px;
  height: 290px;
}

.cross-line {
  position: absolute;
  width: 140%;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(-34deg);
}

.about-copy {
  align-self: center;
  padding: clamp(42px, 7vw, 90px);
}

.about-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.process {
  padding-top: 90px;
}

.section-heading.compact {
  grid-template-columns: 1fr;
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 26px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.process-list > li > span {
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 850;
}

.process-list h3 {
  margin-bottom: 4px;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.cars {
  padding-top: 0;
}

.cars-card {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: end;
  gap: 50px;
  padding: clamp(34px, 7vw, 76px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.04), transparent 55%),
    var(--black-soft);
}

.cars-card h2 {
  margin-bottom: 0;
}

.cars-card > p {
  margin-bottom: 5px;
  color: var(--muted);
}

.contact {
  padding-block: 125px;
  color: #fff;
  background: var(--red);
}

.contact-inner {
  text-align: center;
}

.contact .eyebrow {
  color: #fff;
  opacity: 0.78;
}

.contact h2 {
  max-width: 920px;
  margin-inline: auto;
}

.contact p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 auto 34px;
  font-size: 1.08rem;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 980px;
  margin: 0 auto 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.32);
  text-align: left;
}

.contact-detail {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 26px;
  background: rgba(170, 0, 0, 0.55);
}

a.contact-detail {
  transition: background 160ms ease;
}

a.contact-detail:hover,
a.contact-detail:focus-visible {
  background: rgba(110, 0, 0, 0.72);
}

.contact-detail span {
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.78;
}

.contact-detail strong {
  font-size: 1.06rem;
  line-height: 1.45;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.button-light {
  border-color: #fff;
  color: var(--black);
  background: #fff;
}

.button-light:hover,
.button-light:focus-visible {
  border-color: var(--black);
  color: #fff;
  background: var(--black);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.76);
  background: transparent;
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  border-color: #fff;
  color: var(--red);
  background: #fff;
}

.site-footer {
  padding-block: 36px;
  border-top: 1px solid var(--line);
  background: #050506;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-brand img {
  width: 86px;
  height: 42px;
  object-fit: cover;
}

.footer-inner p {
  margin-bottom: 0;
  color: #8f8f96;
  font-size: 0.82rem;
}

:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-mark {
    min-height: 360px;
  }

  .hero-mark-inner {
    width: min(430px, 86vw);
  }

  .hero-mark::before {
    width: 340px;
    height: 340px;
  }

  .hero-mark::after {
    width: 245px;
    height: 245px;
  }

  .hero-copy {
    padding-bottom: 56px;
  }

  .section-heading,
  .cars-card {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }

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

  .about-panel {
    grid-template-columns: 1fr;
  }

  .about-graphic {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .header-inner,
  .hero-grid,
  .trust-strip,
  .section,
  .contact-inner,
  .footer-inner {
    width: min(calc(100% - 28px), var(--max));
  }

  .header-inner {
    min-height: 68px;
    gap: 14px;
  }

  .brand {
    width: 78px;
  }

  .header-actions {
    gap: 12px;
  }

  .button-small {
    display: none;
  }

  .hero-mark {
    display: none;
  }

  .hero-mark::before {
    width: 270px;
    height: 270px;
  }

  .hero-mark::after {
    width: 190px;
    height: 190px;
  }

  h1 {
    font-size: clamp(3.5rem, 18vw, 5rem);
  }

  h2 {
    font-size: clamp(2.55rem, 13vw, 3.8rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip > div {
    min-height: 68px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 86px;
  }

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

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

  .about {
    padding-top: 0;
  }

  .about-graphic {
    min-height: 290px;
  }

  .about-copy {
    padding: 38px 26px 42px;
  }

  .process-list li {
    grid-template-columns: 48px 1fr;
    gap: 10px;
  }

  .cars {
    padding-top: 0;
  }

  .contact {
    padding-block: 90px;
  }

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

  .contact-detail {
    min-height: 124px;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-inner,
  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
