:root {
  --bg: #07090f;
  --bg-soft: #0e131d;
  --card: #131927;
  --card-2: #1a2234;
  --text: #f4f7fb;
  --muted: #aab4c7;
  --accent: #82f74b;
  --accent-2: #53d11f;
  --line: rgba(255, 255, 255, 0.11);
  --radius: 18px;
  --shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}
*,
*::before,
*::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background-color: #070b11;
}
body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--text);
  line-height: 1.5;
  position: relative;
  isolation: isolate;
  background-color: #070b11;
  background-image:
    radial-gradient(980px 540px at 20% 2%, rgba(130, 247, 75, 0.14), transparent 68%),
    radial-gradient(820px 500px at 80% 0%, rgba(83, 209, 31, 0.1), transparent 70%),
    linear-gradient(180deg,
      #0c131e 0%,
      #0a1118 18%,
      #090f16 38%,
      #080d14 58%,
      #070b11 78%,
      #06090e 100%);
}

/* Breaks up 8-bit gradient banding (visible “stripes”) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.055;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)'/%3E%3C/svg%3E");
  background-size: 240px 240px;
}

main,
.footer {
  position: relative;
  z-index: 1;
}
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4,p { margin: 0; }
.wrap { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
.header {
  position: sticky; top: 0; z-index: 30;
  background-color: rgba(5, 7, 11, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__top {
  min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.logo { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; color: #fff; }
.logo__text { color: #fff; }
.logo__badge {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  color: #15190a; background: linear-gradient(130deg, var(--accent), var(--accent-2));
}
.header__contacts { display: grid; justify-items: end; color: var(--muted); font-size: 14px; }
.header__contacts a { color: var(--text); font-size: 18px; font-weight: 700; }
.menu-btn {
  display: none; border: 1px solid var(--line); background: var(--card); color: var(--text);
  border-radius: 12px; padding: 10px 14px;
}
.nav { display: flex; gap: 20px; align-items: center; padding: 0 0 14px; }
.nav a { font-size: 15px; }
.nav a:not(.btn) { color: #fff; }
.nav a:not(.btn):hover { opacity: 0.88; }
.nav a:not(.btn).active { font-weight: 700; color: #fff; }
.nav__prices { font-weight: 500; }
.nav a.btn:not(.btn--ghost) {
  color: #0a0f06;
}
.nav a.btn:not(.btn--ghost):hover {
  color: #0a0f06;
  filter: brightness(1.05);
}
.nav a.btn--ghost {
  color: #fff;
  border-color: rgba(130, 247, 75, 0.45);
}
.nav a.btn--ghost:hover {
  color: #fff;
  border-color: rgba(130, 247, 75, 0.7);
  background: rgba(255, 255, 255, 0.05);
}
.btn {
  border: 0; cursor: pointer; display: inline-flex; justify-content: center; align-items: center;
  font-weight: 700; padding: 13px 20px; border-radius: 12px; color: #121909;
  background: linear-gradient(150deg, var(--accent), var(--accent-2)); box-shadow: var(--shadow);
}
.btn--ghost { color: var(--text); background: transparent; border: 1px solid var(--line); box-shadow: none; }
.btn--small { padding: 9px 14px; font-size: 14px; }
.btn--full { width: 100%; }
.hero { padding: 70px 0 40px; }
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; }
.eyebrow {
  font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); font-weight: 700;
}
.hero__content h1 {
  margin-top: 12px; font-size: clamp(33px, 5vw, 54px); line-height: 1.03;
}
.hero__lead { margin-top: 16px; color: var(--muted); font-size: 18px; }
.hero__list { margin: 22px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.hero__list li { position: relative; padding-left: 24px; }
.hero__list li::before {
  content: ""; width: 11px; height: 11px; border-radius: 50%; position: absolute; left: 0; top: 6px;
  background: var(--accent); box-shadow: 0 0 0 4px rgba(130, 247, 75, 0.2);
}
.hero__actions { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero__actions--spaced { margin-top: 18px; }
.gallery-sub { margin-top: 10px; }
.stat span a { color: var(--accent); font-weight: 700; }
.stat span a:hover { text-decoration: underline; }
.card {
  border: 1px solid var(--line); background: linear-gradient(160deg, var(--card), var(--card-2));
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.service { padding: 22px; display: grid; gap: 10px; }
.service h3 { font-size: 22px; }
.service p { color: var(--muted); }
.service span { color: var(--accent); font-weight: 700; }
.hero-lead {
  border: 1px solid rgba(130, 247, 75, 0.35);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(130, 247, 75, 0.18) inset;
}
.hero-lead .btn--full {
  margin-top: 4px;
}
.form-note {
  font-size: 13px;
  color: #96a6bf;
}
.hero-inline-phones {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 700;
}
.hero-inline-phones a {
  color: var(--accent);
}
.hero-inline-phones a:hover {
  text-decoration: underline;
}
.lead-form { margin-top: 6px; display: grid; gap: 10px; }
.lead-form__feedback {
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  background: rgba(130, 247, 75, 0.12);
  border: 1px solid rgba(130, 247, 75, 0.35);
  color: #d8f5c8;
}
.lead-form__feedback[hidden] { display: none !important; }
.lead-form__feedback--error {
  background: rgba(255, 90, 90, 0.12);
  border-color: rgba(255, 120, 120, 0.45);
  color: #ffc9c9;
}
.lead-form label { display: grid; gap: 6px; font-size: 14px; font-weight: 600; }
.lead-form input, .lead-form textarea {
  width: 100%; padding: 12px; border-radius: 10px; color: var(--text);
  background: #0c1320; border: 1px solid var(--line); font: inherit;
}
.stats { padding: 18px 0 24px; }
.stats__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.stat { padding: 22px; display: grid; gap: 8px; }
.stat strong { font-size: 30px; color: var(--accent); }
.stat span { color: var(--muted); font-size: 14px; }
.section { padding: 72px 0; }
.section h2 { margin-top: 10px; font-size: clamp(28px, 4vw, 40px); line-height: 1.1; }
.section__lead {
  margin-top: 16px;
  max-width: 820px;
  color: var(--muted);
  font-size: 17px;
}
.section__cta { margin-top: 22px; }
.link-cta {
  font-weight: 800;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.link-cta:hover { filter: brightness(1.08); }
.hub-tile {
  display: grid;
  gap: 10px;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.hub-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(130, 247, 75, 0.35);
}
.hub-tile__go {
  font-weight: 800;
  color: var(--accent);
  margin-top: 4px;
}
.page-hero { padding: 56px 0 12px; }
.page-hero h1 { margin-top: 12px; }
.steps {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.step {
  padding: 20px;
  display: grid;
  gap: 8px;
}
.step strong {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}
.step p { color: var(--muted); font-size: 15px; }
.prose p { color: var(--muted); margin-top: 14px; line-height: 1.68; }
.prose__title { font-size: clamp(24px, 3vw, 32px); color: var(--text); line-height: 1.2; margin-bottom: 6px; }
.prose a { color: var(--accent); font-weight: 700; }
.prose a:hover { text-decoration: underline; text-underline-offset: 2px; }
.prose h3 {
  margin: 1.35em 0 0.4em;
  font-size: clamp(17px, 2.1vw, 20px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
}
.prose h3:first-of-type { margin-top: 1em; }
.prose ul, .prose ol {
  margin: 12px 0 14px;
  padding-left: 1.35em;
  color: var(--muted);
  line-height: 1.65;
}
.prose li { margin-bottom: 0.45em; }
.prose .eyebrow { margin-bottom: 8px; }
.seo-block .prose { padding: 28px 30px; }
.section--seo-intro .section__lead { max-width: none; }
.brand-cloud-note { margin-top: 22px; color: var(--muted); font-size: 17px; max-width: 820px; }

.price-intro {
  margin-top: 18px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--card), var(--card-2));
  box-shadow: var(--shadow);
}
.price-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}
.price-table {
  margin-top: 20px;
  padding: 20px;
}
.price-table div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 8px;
  border-bottom: 1px solid var(--line);
}
.price-table div:last-child {
  border-bottom: 0;
}
.price-table span {
  color: var(--muted);
  max-width: min(100%, 640px);
}
.price-table strong {
  color: var(--accent);
  text-align: right;
  flex-shrink: 0;
}
.price-footnote {
  margin-top: 20px;
  font-size: 15px;
}
.price-footnote a {
  color: var(--accent);
  font-weight: 700;
}
.footer h3, .footer h4 { color: var(--text); margin-bottom: 6px; }
.footer-note { font-size: 13px; margin-top: 12px; }
.footer__bottom {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: #8f9caf;
  font-size: 14px;
}
.footer__bottom a { color: var(--accent); }
.benefits-grid .card { padding: 22px; }
.benefits-grid h3 { font-size: 19px; margin-bottom: 4px; }
.section--accent {
  background: linear-gradient(180deg,
    rgba(130, 247, 75, 0.07) 0%,
    rgba(130, 247, 75, 0.03) 40%,
    rgba(130, 247, 75, 0.01) 70%,
    transparent 100%);
}
.section--dark { background: rgba(0, 0, 0, 0.2); }
.main-transition {
  transition: opacity .22s ease, transform .22s ease;
  will-change: opacity, transform;
}
.main-transition.is-leaving {
  opacity: .08;
  transform: translateY(10px);
}
.main-transition.is-entering {
  opacity: 0;
  transform: translateY(10px);
}
.lead-note { margin-top: 12px; color: var(--muted); }
.cards-grid, .benefits-grid { margin-top: 26px; display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.benefits-grid .card { padding: 22px; display: grid; gap: 10px; }
.benefits-grid p { color: var(--muted); }
.brand-cloud { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 10px; }
.brand-cloud span { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: #d8deea; }
.gallery-head { margin-top: 26px; display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.cars-grid { margin-top: 14px; display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.gallery-more { margin-top: 18px; display: flex; justify-content: center; }
.cars-grid figure { margin: 0; border-radius: 12px; overflow: hidden; background: #0d1320; border: 1px solid var(--line); }
.cars-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.cars-grid figcaption { padding: 8px 10px; font-size: 13px; color: var(--muted); }
.faq-list { margin-top: 24px; display: grid; gap: 10px; }
.faq-list details { padding: 18px 20px; }
.faq-list summary { cursor: pointer; font-weight: 700; }
.faq-list p { margin-top: 12px; color: var(--muted); }
.footer { border-top: 1px solid var(--line); padding: 40px 0 70px; background: #05070b; }
.footer__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.footer p { color: var(--muted); margin-top: 8px; }
.footer-loc { line-height: 1.55; }
.footer-loc strong { color: var(--text); }
.floating-call {
  position: fixed; right: 18px; bottom: 18px; z-index: 40; display: inline-flex; align-items: center;
  padding: 12px 18px; border-radius: 999px; font-weight: 800; color: #111507; background: var(--accent);
  box-shadow: var(--shadow);
}
@media (max-width: 980px) {
  .hero__grid, .stats__grid, .cards-grid, .benefits-grid, .footer__grid { grid-template-columns: 1fr 1fr; }
  .cars-grid { grid-template-columns: repeat(3,1fr); }
  .steps { grid-template-columns: 1fr 1fr; }
  .nav { flex-wrap: wrap; }
}
@media (max-width: 760px) {
  .price-table div {
    flex-direction: column;
  }
  .price-table strong {
    text-align: left;
  }
  .header__contacts { display: none; }
  .menu-btn { display: inline-flex; }
  .nav { display: none; padding-bottom: 12px; }
  .nav.is-open { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .hero__grid, .stats__grid, .cards-grid, .benefits-grid, .footer__grid { grid-template-columns: 1fr; }
  .cars-grid { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
}
@media (max-width: 480px) { .cars-grid { grid-template-columns: 1fr; } }
