:root {
  --home-bg: #151419;
  --home-text: #f5f5f5;
  --home-muted: rgba(245, 245, 245, 0.74);
  --home-accent: #f56e0f;
  --home-glass-bg: rgba(255, 255, 255, 0.03);
  --home-glass-border: rgba(255, 255, 255, 0.1);
  --home-radius-sm: 12px;
  --home-radius-md: 20px;
  --home-radius-lg: 30px;
  --home-radius-xl: 40px;
  --home-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

body {
  background:
    radial-gradient(circle at 8% -10%, rgba(245, 110, 15, 0.18), transparent 44%),
    radial-gradient(circle at 96% 6%, rgba(245, 110, 15, 0.12), transparent 34%),
    radial-gradient(circle at 50% 102%, rgba(255, 255, 255, 0.05), transparent 58%),
    var(--home-bg);
  color: var(--home-text);
}

body.scroll-lock {
  overflow: hidden;
  padding-right: var(--scrollbar-width, 0px);
}

.home-page,
.home-page * {
  box-sizing: border-box;
}

.home-page {
  position: relative;
  overflow: hidden;
  --home-section-title-size: clamp(24px, 3.2vw, 42px);
  background-color: var(--home-bg);
}

/* Section headings ~10% smaller on mobile. */
@media (max-width: 768px) {
  .home-page {
    --home-section-title-size: clamp(22px, 5.6vw, 38px);
  }
}

.home-page .section {
  position: relative;
  padding: clamp(78px, 9.2vw, 122px) 0;
}

.home-flow-canvas {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--home-bg);
}

.home-flow-canvas::before,
.home-flow-canvas::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.home-flow-canvas::before {
  background: linear-gradient(
    180deg,
    #151419 0%,
    rgba(21, 20, 25, 1) 14%,
    rgba(21, 20, 25, 0.92) 28%,
    rgba(21, 20, 25, 0) 46%
  );
}

.home-flow-canvas::after {
  background: linear-gradient(180deg, #151419 0%, rgba(21, 20, 25, 0.98) 14%, rgba(21, 20, 25, 0) 40%);
}

.home-flow-canvas > .section {
  position: relative;
  z-index: 1;
  background: transparent;
}

.home-page .section + .section::before,
.home-page .h-first + .home-flow-canvas > .section:first-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - clamp(28px, 4vw, 56px)));
  height: 1px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(245, 110, 15, 0),
    rgba(245, 110, 15, 0.28) 22%,
    rgba(245, 110, 15, 0.36) 50%,
    rgba(245, 110, 15, 0.28) 78%,
    rgba(245, 110, 15, 0)
  );
}

/* Tablet/mobile: separator spans full width (no side offset). */
@media (max-width: 1024px) {
  .home-page .section + .section::before,
  .home-page .h-first + .home-flow-canvas > .section:first-child::before {
    left: 0;
    transform: none;
    width: 100%;
  }
}

.home-page .container,
.header .container,
.footer .container {
  padding-left: 24px;
  padding-right: 24px;
}

.section__title {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.t-accent {
  color: #f56e0f;
}

.home-page h2.section__title {
  font-size: var(--home-section-title-size);
  line-height: 1;
}

/* Two-line "stair-step" title: second line indented and accented. */
.section__title--split {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.04;
}
.section__title--split .st-2 {
  margin-left: 1.6em;
}
@media (max-width: 600px) {
  .section__title--split .st-2 { margin-left: 0.9em; }
}

.home-section-head {
  margin-bottom: 34px;
}

.home-section-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(245, 110, 15, 0.5);
  background: rgba(245, 110, 15, 0.12);
  color: var(--home-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.glass-panel {
  position: relative;
  border-radius: var(--home-radius-lg);
  overflow: hidden;
  background: var(--home-glass-bg);
  border: 1px solid var(--home-glass-border);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--home-shadow);
}

.glass-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  opacity: 0.3;
}

.glass-panel > * {
  position: relative;
  z-index: 2;
}

.p-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: max-content;
  padding: 14px 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.01),
    rgba(255, 255, 255, 0.09)
  );
  background-size: 200% 100%;
  background-position: 0% 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  transition:
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background-position 0.45s ease,
    transform 0.3s ease;
}

.p-btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.p-btn:hover,
.p-btn:focus-visible {
  border-color: rgba(255, 255, 255, 0.5);
  background-position: 100% 0;
  transform: scale(1.01);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14) inset,
    0 14px 30px rgba(0, 0, 0, 0.35);
}

.p-btn:hover::before,
.p-btn:focus-visible::before {
  transform: translateX(140%);
}

.p-btn_orange {
  border-color: var(--home-accent);
  background: linear-gradient(110deg, #f56e0f, rgba(245, 110, 15, 0.92));
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(245, 110, 15, 0.35) inset,
    0 8px 22px rgba(245, 110, 15, 0.24);
}

.p-btn_orange:hover,
.p-btn_orange:focus-visible {
  color: #fff;
  background: linear-gradient(110deg, #f56e0f, rgba(245, 110, 15, 0.92));
  border-color: var(--home-accent);
  box-shadow:
    0 0 0 1px rgba(245, 110, 15, 0.5) inset,
    0 0 26px rgba(245, 110, 15, 0.54),
    0 14px 30px rgba(245, 110, 15, 0.35);
}

.p-btn:focus-visible {
  outline: none;
}

.header {
  position: fixed;
  inset: 0 0 auto;
  width: 100%;
  padding-top: 18px;
  z-index: 120;
  pointer-events: none;
}

.header * {
  pointer-events: auto;
}

.header_main .header__block {
  opacity: 1;
  transform: none;
  transition: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 10px 12px 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--home-glass-border);
  background: rgba(21, 20, 25, 0.68);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45);
}

.header__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 64px;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.header__logo img {
  width: 54px;
  height: auto;
}

.header__nav {
  justify-self: center;
}

.header__list {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  font-weight: 600;
}

.header__list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 9px 2px;
  color: rgba(245, 245, 245, 0.78);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}

.header__list a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 2px;
  height: 1px;
  border-radius: 999px;
  background: rgba(245, 110, 15, 0.42);
  transition:
    left 0.35s ease,
    right 0.35s ease;
}

.header__list a:hover,
.header__list a:focus-visible {
  color: rgba(245, 245, 245, 0.9);
  text-decoration: none;
}

.header__list a:hover::after,
.header__list a:focus-visible::after {
  left: 0;
  right: 0;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__btns {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__btns .p-btn {
  padding: 11px 18px;
  font-size: 14px;
}

.header__btns .p-btn_orange:hover,
.header__btns .p-btn_orange:focus-visible {
  color: #f56e0f;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.86));
  text-shadow: none;
}

.header__menu {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.header__menu svg {
  width: 21px;
  height: 21px;
}

.modal {
  background: rgba(7, 7, 11, 0.72);
  backdrop-filter: blur(8px);
}

.modal_menu .modal__ceil {
  vertical-align: top;
}

.modal_menu .modal__content {
  width: min(430px, calc(100vw - 28px));
  margin: 10px auto 0;
  padding: 18px;
  border-radius: 30px;
  border: 1px solid var(--home-glass-border);
  background: rgba(21, 20, 25, 0.96);
  overflow: hidden auto;
  max-height: calc(100vh - 20px);
  overscroll-behavior: contain;
}

.modal_menu.active {
  z-index: 260;
}

.modal_menu__top {
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal_menu .modal__close {
  position: relative;
  top: auto;
  right: auto;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.modal_menu .header__nav {
  display: block;
}

.modal_menu .header__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 14px;
  max-height: calc(100vh - 300px);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(245, 110, 15, 0.64) rgba(245, 110, 15, 0.14);
}

.modal_menu .header__list::-webkit-scrollbar {
  width: 8px;
}

.modal_menu .header__list::-webkit-scrollbar-track {
  background: rgba(245, 110, 15, 0.14);
  border-radius: 99px;
}

.modal_menu .header__list::-webkit-scrollbar-thumb {
  background: rgba(245, 110, 15, 0.64);
  border-radius: 99px;
}

.modal_menu .header__list li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.modal_menu .header__list a {
  justify-content: center;
  padding: 15px 8px;
  font-size: 14px;
}

.modal_menu .header__btns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
  padding-bottom: 6px;
}

.modal_menu .header__btns .p-btn {
  width: 100%;
}

.h-first {
  position: relative;
  background:
    radial-gradient(circle at 14% -12%, rgba(245, 110, 15, 0.08), transparent 46%),
    radial-gradient(circle at 84% 106%, rgba(255, 255, 255, 0.04), transparent 58%),
    #151419;
  padding: 0;
  overflow: hidden;
}

.home-page .h-first.section {
  padding: 0;
}

.h-first.p-animate_active :is(.h-first__bg-light-left, .h-first__bg-light-right) {
  animation: carLight 1s ease-out forwards;
  animation-delay: 1.5s;
}

.h-first.p-animate_active .h-first__title,
.h-first.p-animate_active .h-first__subtitle {
  opacity: 1;
  transform: none;
}

.h-first::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(180px, 22vw, 320px);
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(21, 20, 25, 0), rgba(21, 20, 25, 0.98) 78%, #151419);
}

.home-page .h-first + .home-flow-canvas > .section:first-child::before {
  z-index: 2;
}

.h-first__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.h-first__bg._mb {
  display: none;
}

.h-first__bg-img {
  position: relative;
  width: 100%;
  height: 100%;
}

.h-first__bg-img img {
  object-position: bottom;
}

.h-first__bg-img::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  background: linear-gradient(
    180deg,
    rgba(27, 27, 28, 0) 2.119%,
    rgba(0, 0, 0, 0) 17.153%,
    rgba(0, 0, 0, 0) 73.591%,
    rgba(21, 20, 25, 1) 93.15%
  );
}

.h-first__bg-car {
  left: 50%;
  transform: translate(-50%);
  position: absolute;
  top: 144px;
  z-index: 1;
  width: max-content;
}

.h-first__bg-car-main img {
  width: 1048px;
  max-width: none;
}

.h-first__bg-light-left,
.h-first__bg-light-right {
  position: absolute;
  opacity: 0;
}

.h-first__bg-light-left {
  left: -201px;
  top: -103px;
}

.h-first__bg-light-right {
  right: -201px;
  top: -103px;
}

.h-first__block {
  padding-top: clamp(166px, 14.2vw, 186px);
  min-height: clamp(780px, 62vw, 860px);
  position: relative;
  z-index: 2;
}

.h-first__chip {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 9px 15px;
  border-radius: 999px;
  overflow: hidden;
  width: max-content;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(180%);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.h-first__chip-dot {
  position: relative;
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 999px;
  background: #f56e0f;
  box-shadow: 0 0 0 0 rgba(245, 110, 15, 0.52);
  animation: chipDotPulse 2.2s ease-out infinite;
}

.h-first__chip-dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 1px solid rgba(245, 110, 15, 0.42);
  transform: scale(0.55);
  opacity: 0;
  animation: chipDotRing 2.2s ease-out infinite;
}

.h-first__title {
  margin: 0;
  width: max-content;
  transform: translate(-100%);
  opacity: 0;
  transition: 1s;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

/* Only the two DIRECT lines are blocks; the nested accent stays inline
   so "YASTUNING" is one line at the same size as the rest of the word. */
.h-first__title > span {
  display: block;
  width: max-content;
  line-height: 1;
}

/* Top line: FILESERVICE — smaller */
.h-first__title > span:first-child {
  font-size: clamp(24px, 2.6vw, 44px);
  line-height: 1.1;
  margin-bottom: clamp(10px, 1.1vw, 18px);
  white-space: nowrap;
}

/* Bottom line: YAS TUNING — larger, one line, thicker, tighter, on the plate */
.h-first__title > span:nth-child(2) {
  margin-top: 0;
  margin-bottom: clamp(8px, 1vw, 14px);
  font-family: var(--font-display);
  font-size: clamp(46px, 5.4vw, 82px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  white-space: nowrap;
  -webkit-text-stroke: 2.5px currentColor;
  paint-order: stroke fill;
  position: relative;
  isolation: isolate;
  z-index: 1;
}

/* Plate with the original rounded-left / angled-cut-right shape (via mask),
   filled with a white-to-black gradient that stays light then turns black at
   the very end. Sized in %/em so the angled end clears the word at every size. */
.h-first__title > span:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -8%;
  right: auto;
  width: 148%;
  height: 1.25em;
  transform: translateY(-50%);
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.18) 0%, rgba(236, 236, 238, 0.18) 46%, rgba(14, 14, 18, 0.62) 100%);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1098 118' preserveAspectRatio='none'%3E%3Cpath d='M0 10C0 4.47715 4.47715 0 10 0H1087.4C1097.07 0 1101.11 12.36 1093.3 18.0703L959.371 116.07C957.657 117.324 955.589 118 953.466 118H9.99998C4.47713 118 0 113.523 0 108V10Z' fill='%23000'/%3E%3C/svg%3E") left center / 100% 100% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1098 118' preserveAspectRatio='none'%3E%3Cpath d='M0 10C0 4.47715 4.47715 0 10 0H1087.4C1097.07 0 1101.11 12.36 1093.3 18.0703L959.371 116.07C957.657 117.324 955.589 118 953.466 118H9.99998C4.47713 118 0 113.523 0 108V10Z' fill='%23000'/%3E%3C/svg%3E") left center / 100% 100% no-repeat;
  z-index: -1;
}

.h-first__subtitle {
  position: absolute;
  top: clamp(110px, 9.6vw, 138px);
  right: 0;
  width: clamp(248px, 23vw, 293px);
  transform: translate(100%);
  opacity: 0;
  transition: 1s;
  color: rgba(245, 245, 245, 0.86);
  font-size: 16px;
  line-height: 1.35;
  text-shadow:
    0 6px 18px rgba(0, 0, 0, 0.9),
    0 1px 0 rgba(0, 0, 0, 0.52);
}

.h-first__btns {
  position: absolute;
  bottom: 68px;
  right: 0;
  display: none;
  flex-wrap: wrap;
  gap: 18px;
}

.h-first .p-btn_orange:hover,
.h-first .p-btn_orange:focus-visible {
  color: #f56e0f;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.86));
  text-shadow: none;
  box-shadow:
    0 0 0 1px rgba(245, 110, 15, 0.52) inset,
    0 0 20px rgba(245, 110, 15, 0.48),
    0 14px 30px rgba(245, 110, 15, 0.32);
}

@keyframes chipDotPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(245, 110, 15, 0.5);
  }

  55% {
    box-shadow: 0 0 0 6px rgba(245, 110, 15, 0);
  }
}

@keyframes chipDotRing {
  0% {
    transform: scale(0.55);
    opacity: 0;
  }

  28% {
    opacity: 0.45;
  }

  75% {
    transform: scale(1.38);
    opacity: 0;
  }

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

.tech-number {
  margin-bottom: 8px;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #f3f3f5;
  text-shadow:
    0 0 18px rgba(245, 110, 15, 0.24),
    0 8px 20px rgba(0, 0, 0, 0.5);
}

.h-about {
  background: transparent;
  overflow: hidden;
}

.h-about::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle at 22% 40%, rgba(245, 110, 15, 0.075), rgba(245, 110, 15, 0) 54%);
}

.h-about > .container {
  position: relative;
  z-index: 1;
}

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

.h-about__item {
  padding: 28px;
  border-radius: 28px;
  min-height: 230px;
}

.h-about__item-title {
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.h-about__item-text {
  color: var(--home-muted);
  font-size: 16px;
  line-height: 1.55;
}

.h-car {
  background: transparent;
  overflow: hidden;
}

.h-car::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 84% 34%, rgba(245, 110, 15, 0.11), rgba(245, 110, 15, 0) 55%),
    radial-gradient(circle at 18% 78%, rgba(245, 110, 15, 0.07), rgba(245, 110, 15, 0) 48%);
}

.h-car__surface {
  padding: clamp(18px, 3vw, 32px);
  border-radius: var(--home-radius-xl);
  border: 1px solid var(--home-glass-border);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px) saturate(180%);
  overflow: hidden;
  box-shadow: var(--home-shadow);
}

.h-car__title {
  margin-bottom: 24px;
  font-size: var(--home-section-title-size);
  text-align: left;
}

/* "car" drops to its own line under "choose your", indented like the
   stair-step section titles. */
.h-car__title .t-accent {
  display: block;
  margin-left: 1.6em;
}
@media (max-width: 600px) {
  .h-car__title .t-accent { margin-left: 0.9em; }
}

.h-car__scroll-hint {
  /* Hidden by default; JS adds .is-visible only when the visible list overflows. */
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(245, 110, 15, 0.42);
  background: rgba(245, 110, 15, 0.11);
  color: rgba(245, 245, 245, 0.8);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.h-car__scroll-hint.is-visible {
  display: inline-flex;
}

.h-car__scroll-hint::before {
  content: "↕";
  color: var(--home-accent);
  font-size: 12px;
  line-height: 1;
}

.h-car__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  max-height: 560px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(245, 110, 15, 0.66) rgba(245, 110, 15, 0.16);
}

.h-car__items::-webkit-scrollbar {
  width: 10px;
}

.h-car__items::-webkit-scrollbar-track {
  background: rgba(245, 110, 15, 0.16);
  border-radius: 99px;
}

.h-car__items::-webkit-scrollbar-thumb {
  background: rgba(245, 110, 15, 0.66);
  border-radius: 99px;
  border: 2px solid rgba(245, 110, 15, 0.2);
}

.h-car__item {
  display: none;
}

.h-car__item.active {
  display: block;
}

.h-car__item-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 142px;
  width: 100%;
  padding: 14px 12px;
  border-radius: var(--home-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
  overflow: hidden;
}

.h-car__item-link:hover,
.h-car__item-link:focus-visible {
  border-color: rgba(245, 110, 15, 0.55);
  background: rgba(245, 110, 15, 0.14);
  box-shadow:
    0 0 0 1px rgba(245, 110, 15, 0.28) inset,
    0 12px 24px rgba(0, 0, 0, 0.3);
}

.h-car__item-img {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.h-car__item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.h-car__item-title {
  margin-top: 2px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  line-height: 1.25;
}

.h-car__btn {
  margin-top: 20px;
}

.h-car__btn.active {
  display: inline-flex;
}

.h-car__breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 22px;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow-x: auto;
  overflow-y: hidden;
}

.h-car__breadcrumbs::-webkit-scrollbar {
  height: 7px;
}

.h-car__breadcrumbs::-webkit-scrollbar-track {
  background: rgba(245, 110, 15, 0.12);
  border-radius: 99px;
}

.h-car__breadcrumbs::-webkit-scrollbar-thumb {
  background: rgba(245, 110, 15, 0.55);
  border-radius: 99px;
}

.h-car__breadcrumb-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.h-car__breadcrumb-link:hover,
.h-car__breadcrumb-link:focus-visible {
  border-color: rgba(245, 110, 15, 0.6);
  background: rgba(245, 110, 15, 0.18);
}

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

.h-car__step {
  display: none;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.h-car__step.active {
  display: flex;
  flex-direction: column;
}

/* models.html extracted styles (batch 14) */
.h-car__step.h-car__step--opaque {
  opacity: 1;
}

.h-car__logo {
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.h-car__logo-title {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.h-car__list {
  padding: 14px;
  display: grid;
  gap: 8px;
  max-height: 430px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(245, 110, 15, 0.66) rgba(245, 110, 15, 0.16);
}

.h-car__list::-webkit-scrollbar {
  width: 10px;
}

.h-car__list::-webkit-scrollbar-track {
  background: rgba(245, 110, 15, 0.16);
  border-radius: 99px;
}

.h-car__list::-webkit-scrollbar-thumb {
  background: rgba(245, 110, 15, 0.66);
  border-radius: 99px;
  border: 2px solid rgba(245, 110, 15, 0.2);
}

.h-car__list-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.h-car__list-link:hover,
.h-car__list-link.selected,
.h-car__list-link:focus-visible {
  border-color: rgba(245, 110, 15, 0.55);
  background: rgba(245, 110, 15, 0.14);
}

.h-car__data {
  display: none;
}

.h-car__data.active {
  display: block;
}

.h-car__data-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.h-car__data-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.h-car__data-link:hover,
.h-car__data-link.active,
.h-car__data-link:focus-visible {
  border-color: rgba(245, 110, 15, 0.7);
  background: rgba(245, 110, 15, 0.2);
}

.h-car__data-contents {
  margin-top: 16px;
}

.h-car__data-content {
  display: none;
}

.h-car__data-content.active {
  display: block;
}

.h-car__table-shell {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.h-car__table-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  scrollbar-width: thin;
  scrollbar-color: rgba(245, 110, 15, 0.68) rgba(245, 110, 15, 0.14);
}

.h-car__table-scroll::-webkit-scrollbar {
  height: 10px;
}

.h-car__table-scroll::-webkit-scrollbar-track {
  background: rgba(245, 110, 15, 0.14);
}

.h-car__table-scroll::-webkit-scrollbar-thumb {
  background: rgba(245, 110, 15, 0.68);
  border-radius: 999px;
  border: 2px solid rgba(245, 110, 15, 0.2);
}

.h-car__table {
  min-width: 700px;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.h-car__table th,
.h-car__table td {
  padding: 16px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  text-align: center;
  overflow-wrap: anywhere;
}

.h-car__table th:last-child,
.h-car__table td:last-child {
  border-right: 0;
}

.h-car__table tr:last-child td {
  border-bottom: 0;
}

.h-car__table th {
  color: var(--home-accent);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.h-car__table td:first-child {
  text-align: left;
  color: var(--home-accent);
  font-weight: 700;
}

.h-car__specs {
  margin-top: 14px;
}

.h-car__specs-more {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.h-car__specs-more > summary {
  position: relative;
  padding: 12px 16px;
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  color: var(--home-accent);
}

.h-car__specs-more > summary::-webkit-details-marker {
  display: none;
}

.h-car__specs-more > summary::after {
  content: "+";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  line-height: 1;
}

.h-car__specs-more[open] > summary::after {
  content: "-";
}

.specs-dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 8px 14px;
  padding: 0 16px 14px;
}

.specs-dl dt {
  color: rgba(245, 245, 245, 0.85);
  font-weight: 600;
}

.specs-dl dd {
  margin: 0;
  color: #fff;
}

.h-process {
  background: transparent;
  overflow: hidden;
}

.h-process::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 16% 28%, rgba(245, 110, 15, 0.1), rgba(245, 110, 15, 0) 54%),
    radial-gradient(circle at 84% 76%, rgba(245, 110, 15, 0.07), rgba(245, 110, 15, 0) 46%);
}

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

.h-process__step {
  padding: 28px;
  border-radius: 28px;
}

.h-process__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(245, 110, 15, 0.6);
  background: rgba(245, 110, 15, 0.16);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.h-process__step h3 {
  margin: 14px 0 8px;
  font-size: 24px;
  line-height: 1.15;
  text-transform: uppercase;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.h-process__step p {
  color: var(--home-muted);
  line-height: 1.5;
}

.h-metrics {
  padding-top: 36px;
  overflow: hidden;
}

.h-metrics::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle at 50% 46%, rgba(245, 110, 15, 0.095), rgba(245, 110, 15, 0) 56%);
}

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

.h-metrics__card {
  padding: 24px;
  border-radius: 26px;
  text-align: center;
}

.h-metrics__card p {
  color: var(--home-muted);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.06em;
}

.h-links {
  background: transparent;
  overflow: hidden;
}

.h-links::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 86% 22%, rgba(245, 110, 15, 0.1), rgba(245, 110, 15, 0) 52%),
    radial-gradient(circle at 20% 82%, rgba(245, 110, 15, 0.07), rgba(245, 110, 15, 0) 46%);
}

.h-links__layout {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: clamp(14px, 2vw, 22px);
}

.h-links__left {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: visible;
  display: grid;
  align-content: start;
  gap: 12px;
}

.h-links__left.glass-panel::after {
  content: none;
}

.h-links__left .section__title {
  margin: 0;
}

.h-links__text {
  color: var(--home-muted);
  max-width: 320px;
  margin: 0;
}

.h-links__items {
  display: grid;
  gap: 12px;
}

.h-links__item {
  position: relative;
  padding: 0 18px;
  border-radius: 24px;
  overflow: hidden;
}

.h-links__item.active {
  border-color: rgba(245, 110, 15, 0.48);
  box-shadow: inset 0 0 0 1px rgba(245, 110, 15, 0.22);
}

.h-links__item-current {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 18px 0 16px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.h-links__item-current:focus-visible {
  outline: 2px solid rgba(245, 110, 15, 0.62);
  outline-offset: 3px;
}

.h-links__item-lead {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 52px;
}

.h-links__item-index {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(245, 245, 245, 0.68);
}

.h-links__item-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #f56e0f;
  box-shadow: 0 0 12px rgba(245, 110, 15, 0.45);
}

.h-links__item-title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.25;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.h-links__item-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid rgba(245, 110, 15, 0.5);
  background: rgba(245, 110, 15, 0.12);
}

.h-links__item-svg svg {
  transition: transform 0.35s ease;
}

.h-links__item.active .h-links__item-svg svg {
  transform: rotate(180deg);
}

.h-links__item-content {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: height 0.35s ease, opacity 0.25s ease;
}

.h-links__item.active .h-links__item-content {
  opacity: 1;
}

.h-links__item-inner {
  position: relative;
  color: var(--home-muted);
  line-height: 1.55;
  padding: 12px 0 20px 60px;
}

.h-links__item-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 60px;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.footer {
  position: relative;
  padding: 34px 0 28px;
  background: #151419;
  box-shadow: 0 -6px 16px rgba(0, 0, 0, 0.16);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(245, 110, 15, 0), rgba(245, 110, 15, 0.34), rgba(245, 110, 15, 0));
}

.footer_main {
  overflow: visible;
}

.footer__surface {
  padding: 4px 0 0;
}

.footer__logo,
.footer__contacts,
.footer__license {
  opacity: 1;
  transform: none;
}

.footer__main {
  display: grid;
  grid-template-columns: minmax(220px, 252px) minmax(0, 1fr);
  gap: 20px 30px;
  margin-bottom: 12px;
  align-items: start;
}

.footer__main > * {
  min-width: 0;
}

.footer__brand {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer__brand::after {
  content: "";
  width: 44px;
  height: 1px;
  background: rgba(245, 110, 15, 0.46);
}

.footer__logo {
  width: max-content;
}

.footer__logo img {
  width: 62px;
  height: auto;
}

.footer__tagline {
  margin: 0;
  max-width: 340px;
  color: rgba(245, 245, 245, 0.68);
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: none;
  line-height: 1.5;
}

.footer__brand-contacts {
  display: grid;
  gap: 7px;
  max-width: 320px;
  align-content: start;
}

.footer__brand-contacts .footer__contact {
  align-items: flex-start;
}

.footer__contacts {
  display: grid;
  gap: 0;
  align-content: start;
}

.footer__companies {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 32px;
  margin-top: 0;
  align-items: start;
}

.footer__company {
  display: grid;
  gap: 8px;
  align-content: start;
  min-width: 0;
  padding: 2px 0 2px 16px;
  border: none;
  border-left: 2px solid rgba(245, 110, 15, 0.55);
  border-radius: 0;
  background: none;
}

.footer__company-cc {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(245, 110, 15, 0.14);
  border: 1px solid rgba(245, 110, 15, 0.4);
  color: #f56e0f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  vertical-align: middle;
}

.footer__company-name {
  margin: 0;
  color: rgba(245, 245, 245, 0.96);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.45;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.footer__company-meta {
  display: grid;
  gap: 7px;
  align-content: start;
  margin: 0;
}

.footer__company-row {
  display: grid;
  gap: 1px;
  margin: 0;
}

.footer__company-label {
  color: rgba(245, 245, 245, 0.5);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__company-value {
  margin: 0;
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}


.footer__contact {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: var(--home-muted);
  line-height: 1.4;
  text-align: left;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer__contact:hover {
  color: rgba(245, 245, 245, 0.9);
}

.footer__contact:focus-visible {
  color: rgba(245, 245, 245, 0.9);
  text-decoration: underline;
  text-decoration-color: var(--home-accent);
  text-underline-offset: 3px;
  outline: none;
}

.footer__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-top: 0;
  border: 0;
  background: none;
  flex-shrink: 0;
}

.footer__icon svg :is(path, circle, rect, line, polyline, polygon, ellipse) {
  stroke: rgba(245, 245, 245, 0.92);
}

.footer__contact-text {
  display: block;
  min-height: 0;
  text-align: left;
  font-size: 13px;
  line-height: 1.45;
}

.footer__license {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 0;
}

.footer__license a {
  display: block;
  width: 100%;
  max-width: 220px;
  overflow: hidden;
}

.footer__license img {
  display: block;
  width: 100%;
  height: auto;
}

.footer__bottom {
  margin-top: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(245, 110, 15, 0.2);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 14px;
  color: rgba(245, 245, 245, 0.72);
  font-size: 13px;
}

.footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 6px;
  gap: 12px;
}

.footer__bottom-links li + li {
  position: relative;
  padding-left: 10px;
}

.footer__bottom-links li + li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: rgba(245, 110, 15, 0.75);
  transform: translateY(-50%);
}

.footer__bottom a,
.footer__credit a {
  color: rgba(245, 245, 245, 0.84);
}

.footer__bottom a:hover,
.footer__credit a:hover {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--home-accent);
  text-underline-offset: 3px;
}

.home-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.home-reveal--left {
  transform: translateX(-30px);
}

.home-reveal--right {
  transform: translateX(30px);
}

.home-reveal--up {
  transform: translateY(26px);
}

.home-reveal.is-visible,
.p-animate_active .home-reveal {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes carLight {
  0%,
  40%,
  80%,
  100% {
    opacity: 0;
  }

  20%,
  60% {
    opacity: 1;
  }
}

@media (max-width: 1200px) {
  .header_main .header__block {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }

  .header__list {
    gap: 14px;
  }

  .header__list a {
    font-size: 12px;
  }

  .h-about__items,
  .h-process__grid,
  .h-metrics__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .h-links__layout {
    grid-template-columns: 1fr;
  }

  .h-links__text {
    max-width: none;
  }

  .h-links__item-inner {
    padding-left: 56px;
  }

  .h-links__item-inner::before {
    left: 56px;
  }

  .footer__main {
    grid-template-columns: minmax(210px, 232px) minmax(0, 1fr);
    gap: 18px 20px;
  }

  .footer__bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer__license {
    justify-content: flex-start;
  }

  .footer__license a {
    max-width: 220px;
  }
}

@media (max-width: 1340px) {
  .h-first__block {
    padding-top: 118px;
    min-height: 590px;
  }

  .h-first__bg-car {
    top: 98px;
  }

  .h-first__bg-car-main img {
    width: 710px;
  }

  .h-first__bg-light-left {
    left: -196px;
    top: -133px;
  }

  .h-first__bg-light-right {
    right: -196px;
    top: -133px;
  }

  .h-first__bg-light-left img,
  .h-first__bg-light-right img {
    width: 600px;
  }

  .h-first__subtitle {
    top: 114px;
    width: 236px;
    font-size: 14px;
    line-height: 1.29;
  }

  .h-first__title > span:nth-child(2) {
    font-size: clamp(40px, 6vw, 60px);
  }

  .h-first__btns {
    display: none;
  }
}

@media (min-width: 769px) and (max-width: 1340px) {
  .h-first__block {
    padding-top: 132px;
    min-height: 620px;
  }

  .h-first__bg-car {
    top: 132px;
  }

  .h-first__subtitle {
    top: 144px;
  }
}

@media (max-width: 1024px) {
  .header {
    padding-top: 12px;
  }

  .header_main .header__block {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding-right: 8px;
  }

  .header_main .header__nav,
  .header_main .header__btns {
    display: none;
  }

  .header__menu {
    display: inline-flex;
  }

  .h-first {
    background:
      radial-gradient(circle at 52% -20%, rgba(255, 255, 255, 0.04), transparent 62%),
      #151419;
  }

  .h-first__btns {
    display: flex;
  }

  .h-car__steps,
  .h-about__items,
  .h-process__grid,
  .h-metrics__grid {
    grid-template-columns: 1fr;
  }

  /* Touch/narrow layouts: show only the current (last) step in place.
     Pick a brand -> models replace it; pick a model -> years replace them;
     pick a year -> engines replace them. Breadcrumbs above handle going back,
     so nothing stacks and there is no scrolling down the column. */
  .h-car__steps > .h-car__step.active:not(:last-of-type) {
    display: none;
  }

  .h-about__item {
    min-height: 0;
    padding: 22px 20px;
  }

  .modal_menu {
    overflow: hidden;
  }

  .modal_menu .modal__content {
    width: calc(100vw - 16px);
    margin: 8px auto 0;
    padding: 12px 14px 10px;
    max-height: calc(100vh - 12px);
    overflow: hidden;
  }

  .modal_menu__top {
    padding-bottom: 8px;
  }

  .modal_menu .modal__close {
    width: 36px;
    height: 36px;
  }

  .modal_menu .header__list {
    padding-top: 8px;
    max-height: none;
    overflow: hidden;
  }

  .modal_menu .header__list::-webkit-scrollbar {
    display: none;
  }

  .modal_menu .header__list a {
    padding: 10px 6px;
    font-size: 12px;
    letter-spacing: 0.06em;
  }

  .modal_menu .header__btns {
    margin-top: 10px;
    gap: 8px;
    padding-bottom: 0;
  }

  .modal_menu .header__btns .p-btn {
    padding: 10px 12px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .home-page .container,
  .header .container,
  .footer .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .home-page .section {
    padding: 72px 0;
  }

  .home-page .h-first.section {
    padding: 0;
  }

  .h-first__bg {
    display: none;
  }

  .h-first__bg._mb {
    display: block;
    position: relative;
    top: auto;
    left: auto;
    width: calc(100% + 40px);
    margin-left: -20px;
    height: auto;
    z-index: 0;
    overflow: hidden;
  }

  .h-first__bg._mb::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      #151419 0%,
      rgba(21, 20, 25, 0.28) 18%,
      rgba(21, 20, 25, 0) 42%,
      rgba(21, 20, 25, 0) 66%,
      rgba(21, 20, 25, 0.62) 84%,
      #151419 100%
    );
  }

  .h-first__bg._mb > img {
    width: 100%;
    height: auto;
  }

  .h-first__bg-light-left,
  .h-first__bg-light-right {
    width: 75.333vw;
  }

  .h-first__bg-light-left {
    left: -16vw;
    top: -6.222vw;
  }

  .h-first__bg-light-right {
    right: -16vw;
    top: -6.222vw;
  }

  .h-first__subtitle {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: clamp(180px, 56vw, 220px);
    margin-top: clamp(24px, 6vw, 34px);
    font-size: 12px;
    line-height: 1.17;
  }

  .h-first__chip {
    margin-bottom: 14px;
    padding: 8px 12px;
    font-size: 11px;
  }

  .h-first__title {
    font-size: 30px;
  }

  .h-first__title > span:nth-child(2) {
    font-size: clamp(34px, 9vw, 46px);
    margin-bottom: clamp(10px, 2.8vw, 16px);
    /* Smaller text => the desktop stroke is proportionally too heavy and the
       letters merge; lighten the stroke and loosen tracking on phones. */
    -webkit-text-stroke: 1.2px currentColor;
    letter-spacing: -0.02em;
  }


  .h-first__btns {
    position: relative;
    right: auto;
    bottom: auto;
    justify-content: center;
    margin-top: 24px;
    margin-bottom: 72px;
  }

  .h-about__item {
    padding: 18px 16px;
  }

  .h-car__surface {
    padding: 18px;
  }

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

  .h-car__item-img {
    width: 82px;
    height: 82px;
  }

  .h-car__table {
    min-width: 620px;
  }

  .specs-dl {
    grid-template-columns: 1fr;
  }

  .h-links__item {
    padding: 0 15px;
  }

  .h-links__item-title {
    font-size: 17px;
  }

  .h-links__item-current {
    gap: 10px;
    padding: 16px 0 14px;
  }

  .h-links__item-lead {
    min-width: 46px;
    gap: 7px;
  }

  .h-links__item-index {
    font-size: 10px;
  }

  .h-links__item-inner {
    padding: 10px 0 18px 50px;
  }

  .h-links__item-inner::before {
    left: 50px;
  }

  .footer {
    padding: 32px 0 26px;
  }

  .footer__main {
    gap: 16px;
    margin-bottom: 12px;
  }

  .footer__brand-contacts {
    gap: 6px;
  }

  .footer__contacts {
    gap: 0;
  }

  .footer__companies {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer__contact-text {
    font-size: 13px;
  }

  .footer__bottom {
    gap: 10px;
    padding-top: 12px;
  }

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

  .footer__license a {
    max-width: 200px;
  }
}

@media (max-width: 480px) {
  .home-page {
    --home-section-title-size: 32px;
  }

  .home-page .container,
  .header .container,
  .footer .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .header__logo {
    width: 62px;
    height: 52px;
  }

  .header__logo img {
    width: 44px;
  }

  .h-first__btns {
    gap: 10px;
  }

  .h-first__btns .p-btn {
    width: 100%;
  }

  .h-about__item,
  .h-process__step,
  .h-metrics__card,
  .h-links__left {
    border-radius: 22px;
  }

  .h-car__items {
    grid-template-columns: 1fr;
  }

  .h-car__item-link {
    min-height: 128px;
  }

  .h-links__item-current {
    padding: 14px 0;
  }

  .h-links__item-title {
    font-size: 15px;
  }

  .h-links__item {
    padding: 0 12px;
  }

  .h-links__item-lead {
    min-width: 40px;
    gap: 6px;
  }

  .h-links__item-inner {
    padding: 10px 0 16px 42px;
  }

  .h-links__item-inner::before {
    left: 42px;
  }

  .footer__brand-contacts {
    gap: 6px;
  }

  .footer__contact-text {
    font-size: 13px;
  }

  .footer__companies {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer__company {
    padding: 12px 13px;
    border-radius: 16px;
  }

  .footer__company-name {
    font-size: 12px;
  }

  .footer__company-value {
    font-size: 12.5px;
    line-height: 1.35;
  }

  .footer__main {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer__license {
    justify-content: flex-start;
  }

  .footer__license a {
    max-width: 200px;
  }

  .footer__bottom,
  .footer__bottom-links {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-reveal,
  .p-btn,
  .p-btn::before,
  .h-links__item-content,
  .h-links__item-svg svg,
  .h-first__bg-light-left,
  .h-first__bg-light-right,
  .h-first__subtitle,
  .h-first__chip-dot,
  .h-first__chip-dot::after {
    animation: none;
    transition: none;
    transform: none;
  }

  .home-reveal {
    opacity: 1;
  }
}

/* --- Font system: Michroma (display) for headings/eyebrows/numbers; body = Inter --- */
.home-page h1, .home-page h2,
.section__title, .home-section-eyebrow, .h-car__title,
.tech-number, .metric__num, .gain-card__value,
.reasons-list__num, .reasons-list__body h3, .h-hardware__label {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
}

/* Uppercase pill labels keep readable tracking (not tightened like headings). */
.home-section-eyebrow, .h-hardware__label { letter-spacing: 0.06em; }

/* =========================================================
   FAQ — flat hairline accordion (no glass cards)
   ========================================================= */
.faq2__head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}
.faq2__lead {
  margin: 14px auto 0;
  max-width: 60ch;
  color: rgba(245, 245, 245, 0.68);
  font-size: 16px;
  line-height: 1.6;
}
.faq2__list {
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.faq2__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.faq2__q {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 26px 6px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: #fff;
}
.faq2__num {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(245, 110, 15, 0.9);
}
.faq2__q-text {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #fff;
  overflow-wrap: break-word;
  transition: color 0.25s ease;
}
.faq2__q:hover .faq2__q-text,
.faq2__q[aria-expanded="true"] .faq2__q-text {
  color: #f56e0f;
}
.faq2__icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex: none;
}
.faq2__icon::before,
.faq2__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 2px;
  border-radius: 2px;
  background: #f56e0f;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq2__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq2__q[aria-expanded="true"] .faq2__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}
.faq2__a {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: height 0.35s ease, opacity 0.35s ease;
}
.faq2__a-inner {
  padding: 0 42px 26px;
  max-width: 70ch;
  color: rgba(245, 245, 245, 0.72);
  font-size: 15px;
  line-height: 1.7;
}
.faq2__cta {
  margin-top: 40px;
  text-align: center;
}
@media (max-width: 768px) {
  .faq2__q {
    gap: 14px;
    padding: 20px 2px;
  }
  .faq2__a-inner {
    padding: 0 0 22px;
  }
}
@media (max-width: 480px) {
  .faq2__num {
    display: none;
  }
  .faq2__q {
    grid-template-columns: 1fr auto;
  }
}
