@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #090b0f;
  --bg-soft: #0e1117;
  --surface: #12161e;
  --surface-2: #171c25;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f3f5f7;
  --muted: #9198a4;
  --blue: #287cff;
  --yellow: #ffd840;
  --max: 1240px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 38%, rgba(40, 124, 255, 0.08), transparent 28rem),
    var(--bg);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

button,
summary {
  font: inherit;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: flex;
  width: min(calc(100% - 48px), var(--max));
  height: 88px;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.logo > span:last-child span {
  color: var(--blue);
}

.logo-mark {
  position: relative;
  display: inline-flex;
  width: 34px;
  height: 20px;
  align-items: center;
  gap: 4px;
  transform: skewX(-18deg);
}

.logo-mark i {
  display: block;
  width: 8px;
  height: 20px;
  border-radius: 2px;
  background: var(--blue);
}

.logo-mark i:last-child {
  width: 16px;
  background: var(--text);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  color: #c6cad1;
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a {
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: white;
}

.header-cta {
  display: inline-flex;
  height: 42px;
  align-items: center;
  gap: 8px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.header-cta:hover {
  border-color: var(--blue);
  background: var(--blue);
}

.header-cta svg,
.mobile-telegram svg {
  width: 17px;
  fill: currentColor;
}

.hero {
  position: relative;
  min-height: 760px;
  height: min(880px, 100svh);
  overflow: hidden;
  isolation: isolate;
  background: #07090d;
}

.hero::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 9, 13, 0.98) 0%, rgba(7, 9, 13, 0.84) 31%, rgba(7, 9, 13, 0.18) 64%, rgba(7, 9, 13, 0.12) 100%),
    linear-gradient(0deg, #090b0f 0%, transparent 25%, rgba(0, 0, 0, 0.14) 100%);
  content: "";
}

.hero::after {
  position: absolute;
  z-index: 3;
  right: -10%;
  bottom: -52%;
  width: 68%;
  height: 72%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.015), 0 0 0 160px rgba(255, 255, 255, 0.01);
  content: "";
}

.hero-visual {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: url("assets/hero-parts-delivery.webp") center / cover no-repeat;
  animation: hero-in 1.6s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-glow {
  position: absolute;
  z-index: 2;
  top: 23%;
  left: 38%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(40, 124, 255, 0.16);
  filter: blur(80px);
}

.hero-content {
  position: relative;
  z-index: 5;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding-top: clamp(175px, 24vh, 230px);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #b8c0cc;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow-dot,
.online {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(40, 124, 255, 0.15);
}

h1 {
  max-width: 750px;
  margin: 24px 0 22px;
  font-size: clamp(53px, 6.2vw, 88px);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.96;
}

h1 em {
  color: inherit;
  font-style: normal;
}

.hero-copy {
  max-width: 510px;
  color: #adb4be;
  font-size: 15px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.primary-button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  gap: 12px;
  padding: 0 12px 0 20px;
  border-radius: 9px;
  background: var(--blue);
  box-shadow: 0 16px 40px rgba(40, 124, 255, 0.24);
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease;
}

.primary-button:hover {
  transform: translateY(-3px);
  background: #3988ff;
}

.telegram-icon {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
}

.telegram-icon svg {
  width: 20px;
  fill: white;
}

.button-arrow {
  display: grid;
  width: 36px;
  height: 36px;
  margin-left: 6px;
  place-items: center;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 16px;
}

.response-time {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #949ca7;
  font-size: 11px;
  font-weight: 600;
}

.online {
  width: 6px;
  height: 6px;
  background: #50d890;
  box-shadow: 0 0 0 5px rgba(80, 216, 144, 0.12);
}

.hero-stats {
  position: absolute;
  z-index: 5;
  right: max(24px, calc((100% - var(--max)) / 2));
  bottom: 48px;
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  background: rgba(10, 13, 18, 0.62);
  backdrop-filter: blur(18px);
}

.hero-stats div {
  display: flex;
  min-width: 150px;
  flex-direction: column;
  gap: 3px;
  padding: 18px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hero-stats strong {
  font-size: 20px;
  letter-spacing: -0.05em;
}

.hero-stats span {
  color: #969eaa;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-hint {
  position: absolute;
  z-index: 6;
  bottom: 44px;
  left: max(24px, calc((100% - var(--max)) / 2));
  display: flex;
  align-items: center;
  gap: 11px;
  color: #747c87;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-hint span {
  position: relative;
  width: 1px;
  height: 32px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.scroll-hint span::after {
  position: absolute;
  top: -50%;
  left: 0;
  width: 1px;
  height: 50%;
  background: white;
  content: "";
  animation: scroll-line 2s infinite;
}

.trust-strip {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #0c0f14;
}

.ticker {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 32px;
  padding: 20px 0;
  color: #7d8590;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  animation: ticker 32s linear infinite;
}

.ticker i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
}

.section {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 120px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 58px;
}

.section-heading .section-kicker {
  grid-column: 1 / -1;
  color: var(--blue);
}

h2 {
  font-size: clamp(39px, 4.7vw, 64px);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 1.03;
}

h2 span {
  color: #68707c;
}

.section-heading > p,
.process-top > p {
  max-width: 430px;
  justify-self: end;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 14px;
}

.benefit-card {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 45%),
    var(--surface);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.benefit-card::after {
  position: absolute;
  right: -100px;
  bottom: -110px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  box-shadow: 0 0 0 35px rgba(255, 255, 255, 0.012), 0 0 0 70px rgba(255, 255, 255, 0.01);
  content: "";
}

.card-number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: #545c68;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.card-icon {
  display: grid;
  width: 45px;
  height: 45px;
  margin-bottom: 65px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.025);
}

.card-icon svg {
  width: 21px;
  fill: none;
  stroke: white;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.benefit-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 12px;
  font-size: 18px;
  letter-spacing: -0.035em;
}

.benefit-card p {
  position: relative;
  z-index: 2;
  max-width: 300px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.75;
}

.large-card {
  background:
    radial-gradient(circle at 85% 90%, rgba(40, 124, 255, 0.2), transparent 40%),
    var(--surface);
}

.vin-chip {
  position: absolute;
  z-index: 2;
  right: 25px;
  bottom: 25px;
  left: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(9, 11, 15, 0.55);
  color: #78808c;
  font-size: 9px;
  backdrop-filter: blur(10px);
}

.vin-chip b {
  position: relative;
  padding-left: 14px;
  color: #b7d7ff;
  font-weight: 600;
}

.vin-chip b::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(40, 124, 255, 0.15);
  content: "";
}

.accent-card {
  background:
    radial-gradient(circle at 45% 100%, rgba(255, 216, 64, 0.13), transparent 43%),
    var(--surface);
}

.route-line {
  position: absolute;
  right: 28px;
  bottom: 34px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #abb2bc;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.route-line i {
  position: relative;
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, var(--blue), var(--yellow));
}

.route-line i::after {
  position: absolute;
  top: 50%;
  left: 62%;
  width: 5px;
  height: 5px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 10px white;
  content: "";
}

.process {
  width: 100%;
  padding-inline: max(24px, calc((100% - var(--max)) / 2));
  border-block: 1px solid var(--line);
  background: #0d1015;
}

.process-top {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 72px;
}

.process-top .section-kicker {
  margin-bottom: 18px;
  color: var(--blue);
}

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

.steps li {
  position: relative;
}

.step-num {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.step-line {
  position: relative;
  height: 1px;
  margin: 18px 0 29px;
  background: var(--line);
}

.step-line::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  transform: translateY(-50%);
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: #0d1015;
  box-shadow: 0 0 0 6px rgba(40, 124, 255, 0.11);
  content: "";
}

.steps h3 {
  margin-bottom: 10px;
  font-size: 17px;
  letter-spacing: -0.035em;
}

.steps p {
  max-width: 300px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.75;
}

.cta-section {
  padding-bottom: 60px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 85px 30px;
  border-radius: 19px;
  background:
    linear-gradient(130deg, rgba(0, 0, 0, 0.2), transparent 60%),
    var(--blue);
  text-align: center;
}

.cta-panel::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  content: "";
}

.cta-panel .section-kicker {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.7);
}

.cta-panel h2 {
  position: relative;
  z-index: 2;
  margin: 18px 0;
  font-size: clamp(42px, 5vw, 69px);
}

.cta-panel h2 span {
  color: rgba(255, 255, 255, 0.55);
}

.cta-panel p {
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
}

.light-button {
  position: relative;
  z-index: 2;
  color: #11151b;
  background: white;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.light-button:hover {
  background: #f2f5fa;
}

.light-button .button-arrow {
  color: white;
  background: #151a21;
}

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

.orbit-one {
  top: -230px;
  left: -120px;
  width: 630px;
  height: 630px;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.025), 0 0 0 140px rgba(255, 255, 255, 0.018);
}

.orbit-two {
  right: -70px;
  bottom: -260px;
  width: 600px;
  height: 600px;
  box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.018);
}

.faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
}

.faq-heading .section-kicker {
  margin-bottom: 18px;
  color: var(--blue);
}

.faq-heading h2 {
  font-size: clamp(38px, 4vw, 56px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  display: flex;
  min-height: 78px;
  cursor: pointer;
  list-style: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
  font-weight: 650;
}

summary::-webkit-details-marker {
  display: none;
}

summary span {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
}

summary span::before,
summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 1px;
  transform: translate(-50%, -50%);
  background: #9ba3ae;
  content: "";
  transition: transform 0.25s ease;
}

summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

details[open] summary span::after {
  transform: translate(-50%, -50%);
}

details p {
  max-width: 600px;
  padding: 0 50px 24px 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.75;
}

footer {
  padding: 70px max(24px, calc((100% - var(--max)) / 2)) 24px;
  border-top: 1px solid var(--line);
  background: #07090c;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 58px;
}

.footer-logo {
  margin-bottom: 18px;
}

.footer-main > div:first-child p {
  color: #737b86;
  font-size: 10px;
  line-height: 1.7;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact > span {
  color: #5e6672;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-contact a,
.footer-contact address {
  color: #bbc1c9;
  font-size: 11px;
  font-style: normal;
  line-height: 1.65;
}

.footer-contact a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: #505762;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mobile-telegram {
  display: none;
}

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

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

@keyframes hero-in {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes scroll-line {
  0% { transform: translateY(0); }
  100% { transform: translateY(300%); }
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

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

  .hero::before {
    background:
      linear-gradient(90deg, rgba(7, 9, 13, 0.96), rgba(7, 9, 13, 0.52) 65%, rgba(7, 9, 13, 0.25)),
      linear-gradient(0deg, #090b0f, transparent 40%);
  }

  .hero-visual {
    left: -25%;
    width: 125%;
  }

  .hero-stats {
    right: 24px;
  }

  .scroll-hint {
    display: none;
  }

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

  .large-card {
    grid-column: 1 / -1;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .footer-contact:last-child {
    grid-column: 2;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 74px;
  }

  .site-header {
    width: calc(100% - 32px);
    height: 70px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    height: auto;
    min-height: 780px;
    padding-bottom: 36px;
  }

  .hero::before {
    background:
      linear-gradient(0deg, #090b0f 1%, rgba(7, 9, 13, 0.95) 39%, rgba(7, 9, 13, 0.32) 80%, rgba(7, 9, 13, 0.5) 100%),
      linear-gradient(90deg, rgba(7, 9, 13, 0.6), transparent);
  }

  .hero-visual {
    inset: 0 0 auto;
    width: 100%;
    height: 47%;
    background-position: 72% center;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-top: 245px;
  }

  .eyebrow {
    font-size: 9px;
  }

  h1 {
    margin: 18px 0;
    font-size: clamp(43px, 13vw, 58px);
    line-height: 0.98;
  }

  .hero-copy {
    font-size: 12px;
    line-height: 1.7;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-actions .primary-button {
    width: 100%;
    justify-content: space-between;
  }

  .response-time {
    display: none;
  }

  .hero-stats {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 5;
    width: calc(100% - 32px);
    margin: 28px auto 0;
  }

  .hero-stats div {
    min-width: 0;
    flex: 1;
    padding: 14px 10px;
  }

  .hero-stats strong {
    font-size: 15px;
  }

  .hero-stats span {
    font-size: 6px;
    letter-spacing: 0.04em;
  }

  .ticker {
    gap: 22px;
    padding: 16px 0;
    font-size: 8px;
  }

  .section {
    width: calc(100% - 32px);
    padding: 78px 0;
  }

  .section-heading,
  .process-top {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 36px;
  }

  .section-heading > p,
  .process-top > p {
    justify-self: start;
  }

  h2 {
    font-size: 39px;
  }

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

  .large-card {
    grid-column: auto;
  }

  .benefit-card {
    min-height: 330px;
  }

  .card-icon {
    margin-bottom: 55px;
  }

  .vin-chip {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .process {
    width: 100%;
    padding-inline: 16px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .cta-section {
    width: 100%;
    padding-inline: 8px;
  }

  .cta-panel {
    padding: 65px 18px;
    border-radius: 14px;
  }

  .cta-panel h2 {
    font-size: 39px;
  }

  .faq {
    gap: 28px;
  }

  summary {
    min-height: 72px;
    font-size: 11px;
  }

  footer {
    padding: 56px 16px 22px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 34px 20px;
  }

  .footer-main > div:first-child {
    grid-column: 1 / -1;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .mobile-telegram {
    position: fixed;
    z-index: 50;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    background: var(--blue);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.4);
    font-size: 12px;
    font-weight: 800;
  }
}

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

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