:root {
  --bg:        #0E121B;
  --surface:   #1A222C;
  --surface-2: #232D3A;
  --line:      #2C3847;
  --text:      #F0F4FA;
  --muted:     #8A9BB5;
  --amber:     #F4A63D;
  --teal:      #48D6B8;

  --display: 'Rubik', sans-serif;
  --body: 'Manrope', sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  padding-top: 88px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}
img { max-width: 100%; display: block; }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3 { font-family: var(--display); font-weight: 700; margin: 0 0 0.4em; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }

/* ========================================== */
/* HEADER — ТЕПЕРЬ ВСЕГДА ВИДНА */
/* ========================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(14, 18, 27, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 20px;
}
.logo {
  font-family: var(--display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
  min-width: 0;
  cursor: pointer;
}
.logo-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.logo span { color: var(--amber); }

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  color: var(--muted);
  margin: 0 auto;
}
.header-nav > a {
  position: relative;
  padding-bottom: 4px;
}
.header-nav > a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.header-nav a:hover { color: var(--text); }
.header-nav > a:hover::after,
.header-nav > a.active::after {
  transform: scaleX(1);
}
.header-nav > a.active { color: var(--text); }
.header-nav-contacts { display: none; }
.phone-link {
  font-family: var(--mono);
  font-weight: 700;
  color: var(--amber);
  font-size: 16px;
}
.vk-link {
  font-weight: 700;
  color: #0077FF;
  font-size: 14px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.vk-link-desktop {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: #0077FF;
  font-size: 14px;
  padding: 6px 14px;
  border: 1px solid #0077FF;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}
.vk-link-desktop:hover {
  background: #0077FF;
  color: #fff;
}
.vk-link-desktop svg { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
}

/* Мобильная шапка */
@media (max-width: 900px) {
  body { padding-top: 68px; }
  .header-row { height: 68px; }
  .header-nav { margin: 0; }
  .vk-link-desktop span { display: none; }
  .vk-link-desktop {
    border: none;
    padding: 0;
    color: #0077FF;
  }
  .vk-link-desktop:hover {
    background: none;
    color: #0077FF;
  }
  .header-actions { gap: 8px; }
  .header-actions .phone-link {
    font-size: 13px;
    padding: 5px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    white-space: nowrap;
    transition: border-color .15s ease;
  }
  .header-actions .phone-link:active { border-color: var(--amber); }
  .nav-toggle { display: flex; }

  .header-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 20px 24px 24px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    z-index: 19;
  }
  .header-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .header-nav a {
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid var(--line);
  }
  .header-nav a:last-of-type { border-bottom: none; }
  .header-nav-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 16px;
    width: 100%;
    border-top: 1px solid var(--line);
    margin-top: 8px;
  }
  .logo { font-size: 21px; }
}
@media (max-width: 480px) {
  body { padding-top: 60px; }
  .header-row { height: 60px; }
  .header-nav { top: 60px; }
  .logo { font-size: 18px; gap: 2px; }
  .logo-mark { width: 26px; height: 26px; }
  .header-actions { gap: 6px; }
  .header-actions .phone-link { font-size: 12px; padding: 5px 8px; }
  .nav-toggle { width: 30px; }
}

/* ========================================== */
/* Остальные стили без изменений */
/* ========================================== */

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 100px 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  z-index: 0;
  opacity: 1;
  background: var(--surface-2);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(14, 18, 27, .25) 0%, rgba(14, 18, 27, .62) 65%, var(--bg) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 560px) {
  .hero {
    padding: 56px 0 44px;
    min-height: auto;
  }
}
.eyebrow {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  color: var(--teal);
  margin: 0 0 12px;
  text-shadow: 0 1px 3px rgba(0,0,0,.85), 0 2px 10px rgba(0,0,0,.6);
}
.hero-content h1 {
  font-size: clamp(32px, 5.5vw, 52px);
  line-height: 1.1;
  text-shadow: 0 2px 6px rgba(0,0,0,.85), 0 4px 20px rgba(0,0,0,.6);
}
.accent { color: var(--amber); }
.hero-lead {
  max-width: 56ch;
  margin: 18px auto 0;
  font-size: 17px;
  text-shadow: 0 1px 4px rgba(0,0,0,.85), 0 2px 12px rgba(0,0,0,.55);
}
@media (max-width: 560px) {
  .hero-content h1 { font-size: 28px; }
  .hero-lead { font-size: 15px; }
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-hero {
  padding: 15px 28px;
  font-size: 16px;
}
@media (max-width: 560px) {
  .hero-actions { gap: 10px; }
  .btn-hero {
    width: 100%;
    padding: 13px 20px;
  }
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(72, 214, 184, 0.1);
  border: 1px solid var(--teal);
  color: var(--teal);
  border-radius: 10px;
  padding: 12px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all .15s ease;
}
.btn-outline:hover {
  background: rgba(72, 214, 184, 0.2);
}

/* SECTIONS */
.section {
  padding: 76px 0;
}
.section-alt {
  background-color: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section h2 {
  font-size: clamp(22px, 3vw, 32px);
  max-width: 20ch;
}
@media (max-width: 560px) {
  .section {
    padding: 40px 0;
  }
  .section h2 {
    font-size: 22px;
  }
  .wrap {
    padding: 0 16px;
  }
}

/* HOW IT WORKS — с фото */
.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .how-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }
}
.how-visual {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.how-visual img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
@media (max-width: 560px) {
  .how-visual {
    border-radius: 12px;
    order: -1;
  }
  .how-visual img {
    height: 180px;
  }
}

/* STEPS */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .steps {
    gap: 18px;
  }
}
.steps li {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.step-num {
  font-family: var(--mono);
  color: var(--teal);
  font-size: 13px;
}
.steps h3 {
  font-size: 17px;
  margin-top: 8px;
}
@media (max-width: 560px) {
  .steps h3 {
    font-size: 16px;
  }
}
.steps p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}
@media (max-width: 560px) {
  .steps p {
    font-size: 13px;
  }
}

/* FLEET */
.fleet-grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .fleet-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.fleet-card {
  background: var(--surface-2);
  border-radius: 14px;
  padding: 18px 14px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (max-width: 480px) {
  .fleet-card {
    padding: 12px 10px;
  }
}
.fleet-car-icon {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  margin: 0 auto 14px;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  background: var(--surface);
}
@media (max-width: 480px) {
  .fleet-car-icon {
    border-radius: 12px;
    margin-bottom: 10px;
  }
}
.fleet-card h3 {
  font-size: 17px;
  margin-bottom: 2px;
}
@media (max-width: 480px) {
  .fleet-card h3 {
    font-size: 15px;
  }
}
.fleet-cars-list {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.fleet-cars-list li {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .fleet-cars-list li { font-size: 10px; }
}
.fleet-card .specs {
  display: flex;
  gap: 12px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--teal);
  background: rgba(72, 214, 184, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.fleet-order-btn {
  width: 100%;
  margin-top: auto;
}

/* FEATURE STRIP */
.feature-strip {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
@media (max-width: 560px) {
  .feature-strip {
    padding: 20px 0;
  }
}
.feature-strip-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .feature-strip-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 560px) {
  .feature-strip-grid {
    gap: 14px;
  }
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
@media (max-width: 560px) {
  .feature-item {
    gap: 12px;
  }
}
.feature-badge {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 14px;
}
.feature-item p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}
@media (max-width: 560px) {
  .feature-item p {
    font-size: 13px;
  }
}

/* TRUST */
.trust-grid {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.trust-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
}
.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--surface-2);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.trust-icon svg {
  width: 20px;
  height: 20px;
}
.trust-card h3 {
  font-size: 15px;
  margin-bottom: 4px;
}
.trust-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

/* REVIEWS — с фото */
.reviews-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .reviews-wrapper {
    grid-template-columns: 1.2fr 0.8fr;
  }
}
.reviews-visual {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.reviews-visual img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
@media (max-width: 560px) {
  .reviews-visual {
    border-radius: 12px;
    order: -1;
  }
  .reviews-visual img {
    height: 180px;
  }
}

.reviews-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--teal);
  border-radius: 12px;
  padding: 20px;
  margin: 0;
}
.review-card p {
  font-size: 14px;
  color: var(--text);
  margin: 0 0 12px;
  line-height: 1.6;
}
.review-card cite {
  font-style: normal;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
}

/* FAQ — с фото */
.faq-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .faq-wrapper {
    grid-template-columns: 1.2fr 0.8fr;
  }
}
.faq-visual {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.faq-visual img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
@media (max-width: 560px) {
  .faq-visual {
    border-radius: 12px;
    order: -1;
  }
  .faq-visual img {
    height: 160px;
  }
}

.faq-list {
  display: grid;
  gap: 12px;
}
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 18px;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}
.faq-list p {
  color: var(--muted);
  margin: 10px 0 0;
  font-size: 14px;
}

/* FINAL CTA */
.final-cta {
  padding: 56px 0;
  text-align: center;
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.final-cta-inner {
  max-width: 560px;
  margin: 0 auto;
}
.final-cta h2 {
  font-size: clamp(22px, 3vw, 30px);
}
.final-cta p {
  color: var(--muted);
  margin-bottom: 24px;
}
.btn-cta-final {
  display: inline-block;
  padding: 14px 28px;
  width: auto;
}

/* MODALS */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 16, .8);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 50;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  width: 100%;
  max-width: 440px;
  position: relative;
}
@media (max-width: 480px) {
  .modal {
    padding: 20px;
  }
}
.modal-small { max-width: 360px; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 22px;
  cursor: pointer;
}
.modal-hint {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 16px;
}

#order-form,
#callback-form {
  display: grid;
  gap: 12px;
}
#order-form label,
#callback-form label {
  font-size: 13px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}
#order-form input,
#order-form select,
#order-form textarea,
#callback-form input {
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 8px;
  font-family: var(--body);
  font-size: 14px;
}

.btn-primary {
  background: var(--amber);
  color: #1A1206;
  border: none;
  border-radius: 10px;
  padding: 12px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  margin-top: 4px;
  transition: filter .15s ease;
}
.btn-primary:hover { filter: brightness(1.1); }

.form-msg {
  font-size: 13px;
  min-height: 18px;
  margin: 4px 0 0;
}
.form-msg.ok { color: var(--teal); }
.form-msg.error { color: #E9634F; }

/* FAB STACK */
.fab-stack {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 480px) {
  .fab-stack {
    bottom: 14px;
    right: 14px;
    gap: 8px;
  }
}
.vk-fab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #0077FF;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 119, 255, .35);
  transition: transform .15s ease;
}
.vk-fab:hover { transform: translateY(-2px); }
@media (max-width: 480px) {
  .vk-fab {
    width: 42px;
    height: 42px;
  }
}
.callback-fab {
  background: var(--teal);
  color: #062420;
  border: none;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(69, 208, 181, .25);
}
@media (max-width: 480px) {
  .callback-fab {
    padding: 12px 16px;
    font-size: 13px;
  }
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
  font-size: 13px;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ========================================== */
/* NAV OVERLAY — тёмный фон под меню */
/* ========================================== */
.nav-overlay {
  position: fixed;
  top: 88px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 18;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
@media (max-width: 900px) {
  .nav-overlay {
    top: 68px;
  }
}
@media (max-width: 480px) {
  .nav-overlay {
    top: 60px;
  }
}