@font-face {
  font-family: "Inter";
  src: url("assets/fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "Bebas Neue";
  src: url("assets/fonts/JTUSjIg69CK48gW7PXoo9Wlhyw.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #090a0c;
  --graphite: #121416;
  --panel: #1a1d20;
  --steel: #9ca5ad;
  --line: #34393f;
  --paper: #f1f3f4;
  --white: #ffffff;
  --red: #c90016;
  --red-bright: #ff4053;
  --green: #73d6ac;
  --max: 100%;
  --pad: 32px;
  --radius: 8px;
  --header-height: 92px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

button:disabled,
select:disabled {
  cursor: not-allowed;
}

:focus-visible {
  outline: 3px solid var(--red-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--white);
  background: var(--red);
  transform: translateY(-150%);
}

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

.page-shell {
  width: min(calc(100% - (var(--pad) * 2)), var(--max));
  margin-inline: auto;
}

.section-pad {
  padding-block: 120px;
}

.kicker {
  display: none !important;
}

.kicker-dark {
  color: var(--red);
}

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

h1,
h2,
h3 {
  line-height: 1;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 24px;
  font-size: 78px;
}

h2 {
  margin-bottom: 22px;
  font-size: 58px;
}

h3 {
  font-size: 23px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

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

.button-primary:hover {
  background: var(--red-bright);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(9, 10, 12, 0.6);
}

.button-secondary:hover {
  border-color: var(--white);
  background: var(--ink);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(9, 10, 12, 0.42);
  transition: background-color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(9, 10, 12, 0.96);
}

.header-inner {
  display: grid;
  width: min(calc(100% - 40px), 1500px);
  height: 100%;
  margin-inline: auto;
  grid-template-columns: 190px 1fr auto;
  gap: 30px;
  align-items: center;
}

.brand {
  display: inline-flex;
  width: 172px;
  align-items: center;
}

.brand img {
  width: 100%;
  height: 58px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.primary-nav a {
  position: relative;
  padding-block: 10px;
  color: #e7eaed;
  font-size: 13px;
  font-weight: 700;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--red-bright);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.language-switcher {
  position: relative;
}

.language-toggle {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  padding: 8px 34px 8px 11px;
  align-items: center;
  gap: 8px;
  border: 1px solid #4a5158;
  border-radius: 4px;
  color: var(--white);
  background: #15181a;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.language-toggle::after {
  content: "";
  position: absolute;
  right: 13px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
}

.language-switcher.is-open .language-toggle::after {
  transform: translateY(-25%) rotate(225deg);
}

.language-toggle:hover,
.language-toggle:focus-visible {
  border-color: #8a939b;
  background: #202428;
  outline: 0;
}

.language-flag {
  display: block;
  width: 27px;
  height: 20px;
  flex: 0 0 27px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 3px;
  background-position: center;
  background-size: cover;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.28);
}

.language-flag[data-language-flag="de"] {
  background: linear-gradient(180deg, #050505 0 33.33%, #dd0000 33.33% 66.66%, #ffce00 66.66% 100%);
}

.language-flag[data-language-flag="en"] {
  background-color: #012169;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 36'%3E%3Cpath fill='%23012169' d='M0 0h60v36H0z'/%3E%3Cpath stroke='%23fff' stroke-width='7.2' d='M0 0l60 36M60 0L0 36'/%3E%3Cpath stroke='%23c8102e' stroke-width='4.2' d='M0 0l60 36M60 0L0 36'/%3E%3Cpath stroke='%23fff' stroke-width='12' d='M30 0v36M0 18h60'/%3E%3Cpath stroke='%23c8102e' stroke-width='7.2' d='M30 0v36M0 18h60'/%3E%3C/svg%3E");
  background-position: center;
  background-size: cover;
}

.language-flag[data-language-flag="ru"] {
  background: linear-gradient(180deg, #fff 0 33.33%, #0039a6 33.33% 66.66%, #d52b1e 66.66% 100%);
}

.language-flag[data-language-flag="hy"] {
  background: linear-gradient(180deg, #d90012 0 33.33%, #0033a0 33.33% 66.66%, #f2a800 66.66% 100%);
}

.language-current {
  font-size: 12px;
  font-weight: 800;
}

.language-menu {
  position: absolute;
  z-index: 80;
  top: calc(100% + 8px);
  right: 0;
  display: none;
  width: 186px;
  padding: 6px;
  border: 1px solid #41484e;
  border-radius: 4px;
  background: #0d0f11;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
}

.language-switcher.is-open .language-menu {
  display: grid;
  gap: 3px;
}

.language-option {
  display: flex;
  width: 100%;
  min-height: 42px;
  padding: 7px 9px;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 3px;
  color: #e8eaec;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
}

.language-option:hover,
.language-option:focus-visible,
.language-option[aria-selected="true"] {
  color: var(--white);
  background: #24282c;
  outline: 0;
}

.language-select-native,
.google-translate-host {
  position: fixed !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 8px 17px;
  border: 1px solid #25d366;
  border-radius: 4px;
  color: #07120b;
  background: #25d366;
  font-size: 13px;
  font-weight: 800;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.header-cta img {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.header-cta:hover {
  border-color: #20bd5b;
  background: #20bd5b;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--ink);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 5px;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  min-height: 86svh;
  max-height: 840px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 58%;
}

.hero-shade {
  background: rgba(4, 5, 6, 0.63);
}

.hero-frame {
  position: absolute;
  top: 122px;
  right: 36px;
  bottom: 130px;
  width: 34%;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  border-right: 1px solid rgba(255, 255, 255, 0.42);
}

.hero-frame::before,
.hero-frame::after {
  position: absolute;
  content: "";
  background: var(--red-bright);
}

.hero-frame::before {
  top: -3px;
  right: -3px;
  width: 42px;
  height: 5px;
}

.hero-frame::after {
  top: -3px;
  right: -3px;
  width: 5px;
  height: 42px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--header-height);
  padding-bottom: 112px;
}

.hero-content h1 {
  max-width: 900px;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 32px;
  color: #d9dde0;
  font-size: 18px;
}

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

.intro-band {
  padding-block: 72px;
  color: var(--white);
  border-top: 4px solid var(--red);
  background: var(--graphite);
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: start;
}

.intro-lead {
  display: grid;
}

.intro-statement {
  margin-bottom: 0;
  font-size: 28px;
  line-height: 1.35;
}

.intro-statement strong {
  display: block;
  color: var(--red-bright);
}

.intro-copy {
  margin-bottom: 0;
  color: #bfc5ca;
}

.section-heading {
  display: grid;
  margin-bottom: 56px;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 60px;
  align-items: end;
}

.section-heading h2 {
  max-width: 740px;
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 470px;
  margin-bottom: 6px;
  color: #535b62;
}

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

.services-head {
  display: grid;
  margin-bottom: 54px;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: end;
}

.services-head h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.services-head > p {
  max-width: 520px;
  margin: 0 0 5px;
  color: #535b62;
}

.services-layout {
  display: block;
}

.service-feature {
  display: grid;
  min-height: 480px;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.65fr);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.service-feature > img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.service-feature-copy {
  display: flex;
  padding: clamp(36px, 5vw, 64px);
  flex-direction: column;
  justify-content: center;
}

.service-label {
  display: none !important;
}

.service-feature h3 {
  margin-bottom: 16px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 44px;
  font-weight: 400;
  text-transform: uppercase;
}

.service-feature-copy > p:not(.service-label) {
  max-width: 520px;
  color: #d5dade;
}

.service-feature a {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-size: 14px;
  font-weight: 800;
}

.service-feature a:hover {
  color: var(--red-bright);
}

.service-list {
  display: grid;
  margin-top: 28px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #c9ced2;
  border-bottom: 1px solid #c9ced2;
}

.service-list article {
  display: flex;
  min-height: 238px;
  padding: 30px 26px;
  align-items: flex-start;
  flex-direction: column;
  border-right: 1px solid #c9ced2;
}

.service-list article:first-child {
  padding-left: 0;
}

.service-list article:last-child {
  padding-right: 0;
  border-right: 0;
}

.service-list h3 {
  margin-bottom: 8px;
}

.service-list p {
  margin-bottom: 0;
  color: #596168;
  font-size: 14px;
}

.service-list article > a {
  display: inline-flex;
  width: auto;
  min-height: 42px;
  padding: 0 16px;
  align-items: center;
  justify-content: center;
  border: 1px solid #aeb5bb;
  border-radius: 3px;
  color: var(--ink);
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  gap: 9px;
  margin-top: auto;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.service-list article > a:hover {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

.configurator {
  color: var(--white);
  background: var(--ink);
}

.configurator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
}

.configurator-panel {
  width: 100%;
  min-width: 0;
  padding: 38px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  background: var(--panel);
}

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

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

.field-grid label > span,
.form-grid label > span {
  color: #aeb5bb;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

select,
input,
textarea {
  width: 100%;
  border: 1px solid #4a5158;
  border-radius: 4px;
  color: var(--white);
  background: #0f1113;
}

select,
input {
  min-height: 52px;
  padding: 10px 14px;
}

textarea {
  min-height: 132px;
  padding: 13px 14px;
  resize: vertical;
}

select:disabled {
  color: #aeb5bb;
  background: #181b1e;
  opacity: 1;
}

input::placeholder,
textarea::placeholder {
  color: #9ca5ad;
  opacity: 1;
}

.config-submit {
  width: 100%;
  margin-top: 20px;
}

.config-submit:disabled {
  color: #d7dce0;
  border-color: #596168;
  background: #30353a;
  opacity: 1;
  transform: none;
}

.config-result {
  margin-top: 28px;
  border: 1px solid var(--line);
  background: #111315;
}

.config-result-header {
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.config-result-header span {
  color: var(--red-bright);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.config-result-header strong {
  display: block;
  margin-top: 6px;
  font-size: 18px;
}

.result-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.result-column {
  padding: 26px 24px;
  border-right: 1px solid var(--line);
}

.result-column:last-child {
  border-right: 0;
}

.result-column > span {
  display: block;
  margin-bottom: 14px;
  color: #8e979f;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.result-metric {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #282d31;
}

.result-metric:last-child {
  border-bottom: 0;
}

.result-metric strong {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 42px;
  font-weight: 400;
}

.result-column.is-tuned .result-metric strong {
  color: var(--green);
}

.config-note {
  margin: 18px 0 0;
  color: #858d94;
  font-size: 12px;
}

.price-year-field {
  grid-column: 1 / -1;
}

.price-year-field[hidden],
.price-year-field.is-hidden,
.tuning-result[hidden] {
  display: none;
}

.tuning-result {
  position: relative;
  overflow: visible;
  margin-top: 32px;
  padding: 30px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  color: var(--white);
  background: transparent;
}

.result-title {
  margin-bottom: 22px;
}

.result-title h3 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 36px;
  font-weight: 400;
}

.result-title p {
  margin: 5px 0 0;
  color: #9da5ac;
  font-size: 13px;
}

.stage-switch {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 20px;
}

.stage-choice {
  min-width: 0;
  min-height: 64px;
  padding: 10px 12px;
  border: 1px solid #4a5158;
  border-radius: 4px;
  color: var(--white);
  background: #191c1f;
  cursor: pointer;
  text-align: center;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.stage-choice:hover,
.stage-choice:focus-visible {
  border-color: #8b949c;
  outline: 0;
}

.stage-choice.is-active {
  border-color: var(--red-bright);
  background: var(--red);
}

.stage-choice-label {
  display: block;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.stage-choice-state {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.stage-current {
  display: flex;
  margin: 2px 0 0;
  padding-top: 12px;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #9da5ac;
  border-top: 1px solid #30353a;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.stage-current strong {
  color: var(--white);
}

.stage-note,
.oil-pressure-note,
.mod-only-summary {
  display: grid;
  gap: 6px;
  margin: 0 0 20px;
  padding: 15px 16px;
  border-radius: 4px;
  line-height: 1.45;
}

.stage-note {
  color: #fff4d4;
  border: 1px solid #9b761f;
  border-left: 4px solid #f3b340;
  background: #292314;
  font-size: 13px;
  font-weight: 800;
}

.oil-pressure-note {
  color: var(--white);
  border: 1px solid #8f2925;
  border-left: 4px solid var(--red-bright);
  background: #2d1010;
}

.oil-pressure-note strong {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.oil-pressure-note span {
  color: #e8eaec;
  font-size: 13px;
}

.oil-pressure-note a {
  justify-self: start;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mod-only-summary {
  color: var(--white);
  border: 1px solid #41484e;
  border-left: 4px solid #9ca5ad;
  background: #171a1d;
}

.mod-only-summary strong {
  font-size: 13px;
}

.mod-only-summary span {
  color: #aeb5bb;
  font-size: 12px;
}

.modifications-panel {
  margin: 24px 0;
  padding: 20px 0 0;
  border-top: 1px solid #30353a;
}

.modifications-head {
  display: flex;
  margin-bottom: 12px;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.modifications-head span {
  color: var(--red-bright);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.modifications-head strong {
  color: #aeb5bb;
  font-size: 12px;
}

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

.mod-option {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 68px;
  padding: 11px 12px;
  grid-template-columns: 18px 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border: 1px solid #3d4348;
  border-radius: 4px;
  background: #15181a;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.mod-option.is-none {
  grid-column: 1 / -1;
}

.mod-option:hover,
.mod-option:focus-within {
  border-color: #717a82;
}

.mod-option.is-selected {
  border-color: var(--red-bright);
  background: #291314;
}

.mod-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.mod-option-check {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid #737c84;
  border-radius: 3px;
  background: #0d0f11;
}

.mod-option.is-selected .mod-option-check {
  border-color: var(--red-bright);
  background: var(--red);
}

.mod-option.is-selected .mod-option-check::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 4px;
  left: 4px;
  top: 4px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
}

.mod-option-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #d9dde0;
  border: 1px solid #3c4247;
  border-radius: 5px;
  background: #191d20;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.mod-option.is-selected .mod-option-icon {
  color: var(--white);
  border-color: #8d2630;
  background: #281216;
}

.mod-option-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mod-option-icon .mod-icon-accent {
  stroke: #ef1028;
}

.mod-option.is-selected .mod-icon-accent {
  stroke: #ff4b5e;
}

.mod-option-copy {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.mod-option-copy strong {
  overflow-wrap: anywhere;
  color: var(--white);
  font-size: 12px;
}

.mod-option-copy small {
  color: #969fa7;
  font-size: 11px;
}

.modification-notes {
  display: grid;
  gap: 6px;
  margin-top: 12px;
}

.modification-notes p {
  margin: 0;
  color: #8f989f;
  font-size: 10px;
  line-height: 1.5;
}

.modification-discount {
  color: #bfc5ca !important;
  font-weight: 800;
}

.gain-visuals {
  display: flex;
  margin: 4px 0 22px;
  justify-content: center;
  gap: 34px;
}

.gain-wheel {
  display: grid;
  place-items: center;
  gap: 8px;
}

.wheel-tire {
  position: relative;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--green) var(--gain-angle), #343a3f 0);
}

.wheel-tire::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: #171a1d;
}

.wheel-rim,
.wheel-smoke {
  display: none;
}

.gain-value {
  position: relative;
  z-index: 1;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 26px;
}

.gain-caption {
  color: #9da5ac;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.power-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #353b40;
  border-bottom: 1px solid #353b40;
}

.power-tile {
  min-width: 0;
  padding: 18px 12px;
  border-right: 1px solid #353b40;
}

.power-tile:last-child {
  border-right: 0;
}

.power-tile strong,
.power-tile span {
  display: block;
}

.power-tile strong {
  overflow-wrap: anywhere;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 27px;
  font-weight: 400;
}

.power-tile span {
  margin-top: 3px;
  color: #8f989f;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.power-tile.stage-one strong {
  color: var(--green);
}

.gain-line {
  display: flex;
  padding: 12px 0;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #30353a;
  color: #9da5ac;
  font-size: 12px;
}

.gain-line strong {
  color: var(--green);
  font-size: 17px;
}

.result-summary {
  display: grid;
  margin-top: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
}

.price-box {
  min-width: 0;
  padding: 18px;
  border: 1px solid #42494f;
  border-left: 4px solid var(--red);
  border-radius: 4px;
  background: #171a1d;
}

.price-copy {
  display: grid;
  gap: 3px;
}

.price-copy span {
  color: var(--red-bright);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-copy strong {
  font-size: 14px;
}

.price-row {
  display: flex;
  margin-top: 12px;
  align-items: baseline;
  gap: 12px;
}

.price-row > strong {
  font-family: "Bebas Neue", Impact, sans-serif;
  color: var(--white);
  font-size: 38px;
  font-weight: 400;
}

.price-row sup {
  font-family: Arial, sans-serif;
  font-size: 12px;
}

.price-old {
  color: #858e95;
  font-size: 11px;
}

.price-request {
  font-family: Arial, sans-serif !important;
  font-size: 18px !important;
  font-weight: 800 !important;
}

.price-breakdown {
  display: grid;
  gap: 7px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #343a3f;
}

.price-breakdown > div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: #aab1b7;
  font-size: 11px;
}

.price-breakdown > div:last-child {
  color: var(--white);
  font-weight: 800;
}

.price-box > small {
  display: block;
  margin-top: 12px;
  color: #7f888f;
  font-size: 9px;
  line-height: 1.45;
}

.result-actions {
  display: grid;
  min-width: 180px;
  gap: 8px;
}

.config-result .button.primary {
  color: var(--white);
  background: var(--red);
}

.config-result .button.ghost {
  color: var(--white);
  border-color: #596168;
  background: transparent;
}

.result-live-summary {
  display: none;
  position: fixed;
  z-index: 45;
  right: 18px;
  bottom: 18px;
  width: min(360px, calc(100vw - 36px));
  padding: 14px;
  grid-template-columns: 1fr auto;
  gap: 4px 14px;
  align-items: center;
  border: 1px solid #4e555b;
  border-top: 3px solid var(--red);
  background: #111315;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.result-live-summary.is-visible {
  display: grid;
}

.result-live-summary > span {
  color: #9da5ac;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.result-live-summary > strong {
  grid-column: 1;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 28px;
  font-weight: 400;
}

.result-live-summary .button {
  min-height: 42px;
  padding: 8px 13px;
  grid-column: 2;
  grid-row: 1 / 3;
  font-size: 10px;
}

@media (max-width: 860px) {
  .stage-switch,
  .modification-grid,
  .result-summary {
    grid-template-columns: 1fr;
  }

  .stage-current,
  .mod-option.is-none {
    grid-column: auto;
  }

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

  .power-tile:nth-child(2) {
    border-right: 0;
  }

  .power-tile:nth-child(-n + 2) {
    border-bottom: 1px solid #353b40;
  }

  .result-actions {
    min-width: 0;
  }

  .result-live-summary {
    display: none !important;
  }
}

.vehicle-showcase {
  overflow: hidden;
  padding-bottom: 0;
  background: var(--white);
}

.vehicle-heading {
  grid-template-columns: 1fr auto;
  align-items: end;
}

.carousel-controls {
  display: grid;
  grid-template-columns: auto 52px 52px;
  gap: 8px;
  align-items: center;
}

.carousel-status {
  min-width: 86px;
  margin: 0 14px 0 0;
  color: #687078;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 22px;
  text-align: right;
}

.carousel-arrow {
  width: 52px;
  height: 52px;
  border: 1px solid #aab1b7;
  border-radius: 4px;
  color: var(--ink);
  background: var(--white);
  font-size: 24px;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.carousel-arrow:hover:not(:disabled) {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

.carousel-arrow:disabled {
  color: #596168;
  border-color: #9ca4aa;
  background: #eef0f1;
}

.carousel-viewport {
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
}

.vehicle-track {
  --carousel-gap: 22px;
  display: grid;
  width: 100%;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--carousel-gap) * 2)) / 3);
  gap: var(--carousel-gap);
  transition: transform 420ms cubic-bezier(0.22, 0.7, 0.2, 1);
  will-change: transform;
}

.vehicle-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #d4d8db;
  border-radius: var(--radius);
  background: #f8f9f9;
}

.vehicle-image {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  background: #25292d;
  aspect-ratio: auto;
}

.vehicle-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: initial;
  object-position: center top;
}

.vehicle-card-copy {
  min-height: 218px;
  padding: 20px;
}

.vehicle-card-copy span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.vehicle-card-copy h3 {
  min-height: 46px;
  margin-bottom: 0;
  font-size: 19px;
  line-height: 1.2;
}

.vehicle-metrics {
  display: grid;
  margin: 18px 0 0;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #d4d8db;
}

.vehicle-metric {
  display: grid;
  padding-top: 14px;
  grid-template-columns: 1fr;
  gap: 2px;
}

.vehicle-metric + .vehicle-metric {
  padding-left: 18px;
  border-left: 1px solid #d4d8db;
}

.vehicle-metric dt {
  margin-bottom: 5px;
  color: #6a7278;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.vehicle-metric dd {
  margin: 0;
  color: var(--ink);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 25px;
  line-height: 1;
}

.vehicle-metric-tuned dt,
.vehicle-metric-tuned dd {
  color: var(--red);
}

.vehicle-detail {
  margin: 18px 0 0;
  padding-top: 15px;
  border-top: 1px solid #d4d8db;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.vehicle-social {
  display: grid;
  margin-top: 64px;
  padding-block: 28px;
  grid-template-columns: minmax(240px, 0.78fr) minmax(560px, 1.22fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  border-top: 3px solid var(--red);
  background: var(--ink);
  box-shadow: 0 0 0 100vmax var(--ink);
  clip-path: inset(0 -100vmax);
}

.vehicle-social-copy {
  margin: 0;
}

.vehicle-social-copy strong {
  display: block;
  color: var(--white);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 400;
  line-height: 1;
}

.vehicle-social-copy span {
  display: block;
  margin-top: 7px;
  color: #aeb5bb;
  font-size: 13px;
}

.vehicle-social-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #3a3f43;
  border-bottom: 1px solid #3a3f43;
}

.vehicle-social-links a {
  display: grid;
  min-width: 0;
  min-height: 82px;
  padding: 16px 18px;
  grid-template-columns: 1fr auto;
  gap: 5px 18px;
  align-content: center;
  color: var(--white);
  transition: color 180ms ease, background-color 180ms ease;
}

.vehicle-social-links a + a {
  border-left: 1px solid #3a3f43;
}

.vehicle-social-links a > span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #aeb5bb;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.vehicle-social-links .social-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  opacity: 0.8;
  filter: invert(1);
  transition: opacity 180ms ease;
}

.vehicle-social-links a strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 15px;
}

.vehicle-social-links .social-arrow {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  color: var(--red);
  font-size: 22px;
}

.vehicle-social-links a:hover,
.vehicle-social-links a:focus-visible {
  color: var(--white);
  background: #1b1e20;
}

.vehicle-social-links a:hover .social-icon,
.vehicle-social-links a:focus-visible .social-icon {
  opacity: 1;
}

@media (max-width: 860px) {
  .vehicle-social {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 560px) {
  .vehicle-social {
    margin-top: 42px;
    padding-block: 28px;
  }

  .vehicle-social-links {
    grid-template-columns: 1fr;
  }

  .vehicle-social-links a + a {
    border-top: 1px solid #3a3f43;
    border-left: 0;
  }
}

.process {
  color: var(--white);
  background: var(--graphite);
}

.process .page-shell {
  display: block;
}

.process-head {
  display: grid;
  margin-bottom: 54px;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: end;
}

.process-head h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.process-head > p {
  max-width: 540px;
  margin-bottom: 5px;
  color: #aeb5bb;
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  min-width: 0;
  min-height: 245px;
  padding: 28px 26px 30px;
  border-right: 1px solid var(--line);
}

.process-list li:last-child {
  border-right: 0;
}

.process-phase {
  display: none !important;
}

.process-phase::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--red-bright);
}

.process-list h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.process-list p {
  margin-bottom: 0;
  color: #aeb5bb;
  font-size: 14px;
  line-height: 1.6;
}

.home-faq {
  color: var(--ink);
  background: var(--white);
  border-top: 1px solid #d7dadd;
}

.home-faq > .page-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(560px, 1.28fr);
  gap: clamp(64px, 10vw, 160px);
  align-items: start;
}

.home-faq-head {
  position: sticky;
  top: 118px;
}

.home-faq-head h2 {
  margin-bottom: 18px;
}

.home-faq-head p {
  max-width: 380px;
  margin: 0;
  color: #596168;
  font-size: 15px;
  line-height: 1.65;
}

.home-faq-grid {
  border-top: 3px solid var(--red);
}

.home-faq-grid details {
  min-width: 0;
  border-bottom: 1px solid #c9ced2;
}

.home-faq-grid summary {
  position: relative;
  padding: 29px 58px 29px 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.home-faq-grid summary::-webkit-details-marker {
  display: none;
}

.home-faq-grid summary::after {
  position: absolute;
  top: 50%;
  right: 7px;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  content: "";
  transform: translateY(-70%) rotate(45deg);
  transition: transform 180ms ease;
}

.home-faq-grid details[open] summary::after {
  transform: translateY(-25%) rotate(225deg);
}

.home-faq-grid p {
  max-width: 720px;
  margin: -4px 58px 30px 0;
  color: #596168;
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .home-faq > .page-shell {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .home-faq-head {
    position: static;
    margin-bottom: 0;
  }

  .home-faq-head p {
    max-width: 560px;
  }
}

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

.contact-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 72px;
}

.contact-info > p:not(.kicker) {
  max-width: 510px;
  color: #596168;
}

.contact-data {
  display: grid;
  margin: 38px 0;
  border-top: 1px solid #c8cdd1;
}

.contact-data > div {
  display: grid;
  padding: 15px 0;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  border-bottom: 1px solid #c8cdd1;
}

.contact-data dt {
  color: #5e666d;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-data dd {
  margin: 0;
  font-weight: 700;
}

.contact-data a:hover {
  color: var(--red);
}

.map-preview {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 16 / 8;
}

.map-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-preview span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 12px 14px;
  color: var(--white);
  border-left: 4px solid var(--red);
  background: rgba(9, 10, 12, 0.9);
  font-size: 13px;
  font-weight: 800;
}

.preview-form {
  padding: 38px;
  color: var(--white);
  border-top: 4px solid var(--red);
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--graphite);
}

.form-heading {
  display: block;
  margin-bottom: 28px;
}

.form-heading span {
  display: none !important;
}

.form-heading h3 {
  margin: 0;
  color: var(--white);
  font-size: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-grid .field-wide {
  grid-column: 1 / -1;
}

.consent {
  display: grid;
  margin: 20px 0;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: #abb2b8;
  font-size: 12px;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin: 1px 0 0;
  accent-color: var(--red);
}

.consent a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  min-height: 26px;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.form-status.is-success {
  color: var(--green);
}

.form-status.is-error {
  color: #ff8d98;
}

.site-footer {
  padding-top: 34px;
  color: var(--white);
  border-top: 2px solid var(--red);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  padding-bottom: 32px;
  grid-template-columns: minmax(270px, 1.25fr) repeat(3, minmax(130px, 0.65fr));
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}

.footer-brand {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.footer-brand img {
  width: 112px;
  height: 62px;
  margin: 0;
  object-fit: contain;
}

.footer-brand p {
  max-width: 270px;
  margin-bottom: 0;
  color: #929aa1;
  font-size: 13px;
  line-height: 1.55;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 6px;
}

.footer-grid strong {
  margin-bottom: 5px;
  color: #e3e6e8;
  font-size: 11px;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid button {
  padding: 0;
  border: 0;
  color: #929aa1;
  background: none;
  font-size: 12px;
  line-height: 1.5;
}

.footer-grid a:hover,
.footer-grid button:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #747d84;
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.lightbox {
  width: min(92vw, 1120px);
  max-width: 1120px;
  padding: 0;
  border: 1px solid #4c5359;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.86);
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #050607;
}

.lightbox p {
  margin: 0;
  padding: 16px 22px;
  font-weight: 700;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  color: var(--white);
  background: rgba(9, 10, 12, 0.88);
  font-size: 27px;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 180;
  max-width: min(380px, calc(100vw - 40px));
  padding: 14px 18px;
  color: var(--white);
  border-left: 4px solid var(--red);
  border-radius: 4px;
  background: var(--graphite);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  :root {
    --pad: 26px;
  }

  h1 {
    font-size: 66px;
  }

  h2 {
    font-size: 50px;
  }

  .header-inner {
    grid-template-columns: 160px 1fr auto;
    gap: 16px;
  }

  .brand {
    width: 150px;
  }

  .primary-nav {
    gap: 18px;
  }

  .header-cta {
    width: 42px;
    padding: 0;
    justify-content: center;
  }

  .header-cta span {
    display: none;
  }

  .intro-layout {
    grid-template-columns: 1.15fr 1fr;
    gap: 30px;
  }

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

  .vehicle-track {
    grid-auto-columns: calc((100% - var(--carousel-gap)) / 2);
  }

  .contact-layout {
    gap: 46px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 0.8fr);
    gap: 28px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 76px;
  }

  .section-pad {
    padding-block: 88px;
  }

  .header-inner {
    display: flex;
    width: min(calc(100% - 30px), var(--max));
    justify-content: space-between;
  }

  .brand {
    width: 142px;
  }

  .brand img {
    height: 50px;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    padding: 28px var(--pad) 40px;
    gap: 0;
    align-items: stretch;
    align-content: start;
    overflow-y: auto;
    border-top: 1px solid var(--line);
    background: #090a0c;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .primary-nav a {
    width: min(100%, 520px);
    margin-inline: auto;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  body.menu-open .site-header {
    border-color: var(--line);
    background: #090a0c;
  }

  .primary-nav a::after {
    display: none;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-frame {
    display: none;
  }

  .hero-content {
    padding-bottom: 115px;
  }

  .intro-layout,
  .configurator-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .intro-layout {
    gap: 18px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-head {
    margin-bottom: 38px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-feature {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .service-feature > img {
    height: auto;
    min-height: 380px;
    max-height: 520px;
  }

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

  .service-list article {
    border-bottom: 1px solid #c9ced2;
  }

  .service-list article:nth-child(2n) {
    padding-right: 0;
    border-right: 0;
  }

  .service-list article:nth-child(2n + 1) {
    padding-left: 0;
  }

  .service-list article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .process-head {
    margin-bottom: 38px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process-head > p {
    max-width: 680px;
    margin-bottom: 0;
  }

  .process-list {
    grid-template-columns: 1fr 1fr;
  }

  .process-list li {
    min-height: 220px;
    border-bottom: 1px solid var(--line);
  }

  .process-list li:nth-child(2n) {
    border-right: 0;
  }

  .process-list li:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .home-faq-grid {
    grid-template-columns: 1fr;
  }

  .home-faq-grid details:nth-child(odd),
  .home-faq-grid details:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
  }

  .contact-layout {
    gap: 56px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 28px 20px;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }
}

@media (max-width: 699px) {
  :root {
    --pad: 18px;
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 42px;
  }

  h3 {
    font-size: 20px;
  }

  .section-pad {
    padding-block: 72px;
  }

  .hero {
    min-height: 84svh;
    max-height: 760px;
    align-items: flex-start;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-shade {
    background: rgba(4, 5, 6, 0.7);
  }

  .hero-content {
    padding-top: 142px;
    padding-bottom: 105px;
  }

  .hero-content h1 {
    margin-bottom: 18px;
  }

  .hero-copy {
    max-width: 520px;
    margin-bottom: 24px;
    font-size: 15px;
  }

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

  .hero-actions .button {
    min-width: 0;
    padding-inline: 12px;
  }

  .intro-band {
    padding-block: 52px;
  }

  .intro-statement {
    font-size: 23px;
  }

  .service-feature {
    min-height: 0;
  }

  .service-feature-copy {
    padding: 32px 25px 36px;
  }

  .service-feature h3 {
    font-size: 36px;
  }

  .service-feature > img {
    min-height: 280px;
  }

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

  .service-list article {
    min-height: 0;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid #c9ced2;
  }

  .service-list article:nth-last-child(-n + 2) {
    border-bottom: 1px solid #c9ced2;
  }

  .service-list article:last-child {
    border-bottom: 0;
  }

  .home-faq-head {
    margin-bottom: 0;
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .home-faq-grid summary {
    padding: 23px 46px 23px 0;
    font-size: 16px;
  }

  .home-faq-grid p {
    margin-right: 46px;
  }

  .configurator-panel,
  .preview-form {
    padding: 24px;
  }

  .field-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-grid .field-wide {
    grid-column: auto;
  }

  .result-column {
    padding: 20px 16px;
  }

  .result-metric {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .result-metric strong {
    font-size: 34px;
  }

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

  .carousel-controls {
    grid-template-columns: 1fr 52px 52px;
  }

  .carousel-status {
    text-align: left;
  }

  .vehicle-track {
    grid-auto-columns: 100%;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-list li:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .process-list li:last-child {
    border-bottom: 0;
  }

  .process-phase {
    margin-bottom: 18px;
  }

  .contact-data > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .map-preview {
    aspect-ratio: 16 / 10;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .form-heading strong {
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 26px;
    gap: 26px 18px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    min-height: 0;
    padding-block: 12px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 41px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-content {
    padding-top: 126px;
  }

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

  .hero-actions .button {
    min-height: 46px;
  }

  .configurator-panel,
  .preview-form {
    padding: 20px;
  }

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

  .footer-brand,
  .footer-grid > div:last-child {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* V2 hero: the full workshop scene remains the visual focus. */
.hero-v2 {
  min-height: min(880px, 90svh);
  max-height: 880px;
}

.hero-v2 .hero-image {
  object-position: center center;
}

.hero-v2 .hero-shade {
  background: rgba(4, 5, 6, 0.12);
}

.hero-v2 .hero-frame {
  top: 112px;
  right: 32px;
  bottom: 350px;
  left: auto;
  width: min(35vw, 540px);
}

.hero-v2 .hero-content {
  position: absolute;
  right: 0;
  bottom: 94px;
  left: 0;
  display: grid;
  padding-top: 24px;
  padding-bottom: 24px;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: clamp(34px, 5vw, 84px);
  align-items: end;
}

.hero-v2 .hero-content::before {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  content: "";
  transform: translateX(-50%);
  border-top: 1px solid rgba(230, 0, 35, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(7, 8, 10, 0.76);
  backdrop-filter: blur(2px);
}

.hero-v2 .hero-title-block,
.hero-v2 .hero-action-block {
  min-width: 0;
}

.hero-v2 .kicker {
  margin-bottom: 10px;
}

.hero-v2 .hero-content h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(48px, 4.25vw, 68px);
  line-height: 0.94;
}

.hero-v2 .hero-copy {
  max-width: 620px;
  margin-bottom: 20px;
  color: #f0f2f3;
  font-size: 16px;
  line-height: 1.55;
}

.hero-v2 .hero-actions {
  flex-wrap: nowrap;
}

.hero-v2 .hero-actions .button {
  min-width: 0;
  padding-inline: 20px;
}

@media (max-width: 980px) {
  .hero-v2 .hero-content {
    grid-template-columns: minmax(0, 0.95fr) minmax(330px, 1.05fr);
    gap: 28px;
  }

  .hero-v2 .hero-content h1 {
    font-size: 50px;
  }

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

@media (max-width: 860px) {
  .hero-v2 {
    display: block;
    min-height: 0;
    max-height: none;
    padding-top: var(--header-height);
    overflow: hidden;
  }

  .hero-v2 .hero-image {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center center;
  }

  .hero-v2 .hero-shade,
  .hero-v2 .hero-frame {
    display: none;
  }

  .hero-v2 .hero-content {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    display: block;
    padding-top: 30px;
    padding-bottom: 28px;
  }

  .hero-v2 .hero-content::before {
    top: 0;
    border-top: 3px solid var(--red-bright);
    border-bottom: 0;
    background: var(--ink);
    backdrop-filter: none;
  }

  .hero-v2 .hero-content h1 {
    margin-bottom: 22px;
    font-size: clamp(40px, 12vw, 52px);
    line-height: 0.96;
  }

  .hero-v2 .hero-copy {
    margin-bottom: 22px;
    font-size: 15px;
  }

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

}

@media (min-width: 700px) and (max-width: 860px) {
  .hero-v2 .hero-content {
    display: grid;
    padding-top: 22px;
    padding-bottom: 22px;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 28px;
    align-items: end;
  }

  .hero-v2 .hero-content h1 {
    margin-bottom: 0;
    font-size: clamp(42px, 5.8vw, 48px);
  }

  .hero-v2 .hero-copy {
    margin-bottom: 16px;
  }

}

@media (max-width: 430px) {
  .hero-v2 .hero-content {
    padding-top: 26px;
    padding-bottom: 24px;
  }

  .hero-v2 .hero-content h1 {
    font-size: 40px;
  }

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

/* V2 revision: show the complete hero artwork without covering the cars. */
.hero-v2 {
  display: block;
  min-height: 0;
  max-height: none;
  padding-top: var(--header-height);
  overflow: hidden;
  background: #050607;
}

.hero-v2 .hero-media {
  position: relative;
  display: grid;
  width: 100%;
  height: min(620px, 64svh);
  place-items: center;
  overflow: hidden;
  border-bottom: 3px solid var(--red-bright);
  background: #050607;
}

.hero-v2 .hero-media::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: rgba(3, 4, 5, 0.04);
}

.hero-v2 .hero-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  filter: brightness(0.86) saturate(0.9) contrast(1.02);
}

.hero-v2 .hero-content {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  display: block;
  padding-top: 32px;
  padding-bottom: 36px;
}

.hero-v2 .hero-content::before {
  border-top: 0;
  background: var(--paper);
  backdrop-filter: none;
}

.hero-v2 .hero-content h1 {
  max-width: none;
  color: var(--ink);
  font-size: 50px;
  line-height: 1;
}

.hero-v2 .hero-action-block {
  max-width: 1060px;
  margin-top: 22px;
  padding-left: 24px;
  border-left: 3px solid var(--red-bright);
}

.hero-v2 .hero-copy {
  max-width: 1020px;
  margin: 0;
  color: #4f575e;
  font-size: 18px;
  line-height: 1.65;
}

@media (max-width: 860px) {
  .hero-v2 .hero-media {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .hero-v2 .hero-image {
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center center;
  }
}

@media (max-width: 699px) {
  .hero-v2 .hero-media {
    height: clamp(380px, 58svh, 520px);
    height: clamp(380px, 58dvh, 520px);
    aspect-ratio: auto;
    border-bottom: 0;
  }

  .hero-v2 .hero-image {
    object-fit: cover;
    object-position: center center;
  }

  .hero-v2 .hero-media::after {
    background: linear-gradient(to bottom, rgba(3, 4, 5, 0) 54%, rgba(3, 4, 5, 0.16) 72%, rgba(3, 4, 5, 0.82) 100%);
  }

  .hero-v2 .hero-content {
    display: block;
    z-index: 3;
    margin-top: -100px;
    padding-top: 28px;
    padding-bottom: 30px;
  }

  .hero-v2 .hero-content::before {
    top: 100px;
    background: var(--ink);
  }

  .hero-v2 .hero-content h1 {
    max-width: 330px;
    color: var(--white);
    font-size: 36px;
    line-height: 1;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
  }

  .hero-title-mobile-break {
    display: block;
  }

  .hero-v2 .hero-action-block {
    margin-top: 20px;
    padding: 0;
    border-top: 0;
    border-left: 0;
  }

  .hero-v2 .hero-action-block::before {
    display: block;
    width: 64px;
    height: 3px;
    margin-bottom: 18px;
    content: "";
    background: var(--red-bright);
  }

  .hero-v2 .hero-copy {
    color: #cbd1d5;
    font-size: 15px;
    line-height: 1.6;
  }

  #konfigurator.section-pad {
    padding-top: 48px;
  }

  #konfigurator .configurator-panel.reveal {
    opacity: 1;
    transform: none;
  }
}

.cookie-consent {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  width: min(920px, calc(100% - 44px));
  max-height: calc(100svh - 44px);
  margin-inline: auto;
  padding: 22px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 1.08fr);
  gap: 18px 24px;
  overflow: auto;
  border: 1px solid #454c52;
  border-top: 4px solid var(--red);
  border-radius: 4px;
  color: var(--white);
  background: #111315;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  transition: opacity 180ms ease, transform 180ms ease;
}

.cookie-consent.is-hiding {
  opacity: 0;
  transform: translateY(12px);
}

.cookie-consent__intro > span {
  color: var(--red-bright);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.cookie-consent__intro h2 {
  margin: 5px 0 8px;
  font-size: 30px;
}

.cookie-consent__intro p {
  margin: 0;
  color: #aeb5bb;
  font-size: 13px;
  line-height: 1.55;
}

.cookie-consent__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.cookie-option {
  display: grid;
  min-width: 0;
  padding: 12px;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  border: 1px solid #3e454a;
  border-radius: 4px;
  background: #191c1f;
}

.cookie-option input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin: 1px 0 0;
  padding: 0;
  accent-color: var(--red);
}

.cookie-option span,
.cookie-option strong,
.cookie-option small {
  display: block;
  min-width: 0;
}

.cookie-option strong {
  font-size: 12px;
}

.cookie-option small {
  margin-top: 4px;
  color: #929aa1;
  font-size: 10px;
  line-height: 1.4;
}

.cookie-consent__privacy {
  align-self: center;
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--red-bright);
  text-underline-offset: 3px;
  text-transform: uppercase;
}

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

.cookie-consent__actions .button {
  width: 100%;
  min-height: 44px;
  padding: 9px 15px;
}

.cookie-consent__actions .button.reject {
  color: #101316;
  border-color: #fff;
  background: #fff;
}

.cookie-consent__actions .button.primary {
  color: var(--white);
  background: var(--red);
}

.cookie-consent__actions .button.ghost {
  color: var(--white);
  border-color: #535b62;
  background: transparent;
}

@media (max-width: 760px) {
  .cookie-consent {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: calc(100% - 24px);
    max-height: calc(100svh - 24px);
    padding: 18px;
    grid-template-columns: 1fr;
  }

  .cookie-consent__options {
    grid-template-columns: 1fr;
  }

  .cookie-consent__actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .language-current {
    display: none;
  }

  .language-toggle {
    width: 60px;
    padding-right: 27px;
    padding-left: 7px;
  }

  .language-toggle::after {
    right: 10px;
  }

  .cookie-consent__actions {
    grid-template-columns: 1fr;
  }
}
