:root {
  --black: #050505;
  --dark: #111111;
  --dark-2: #1b1b1b;
  --gray: #6b6b6b;
  --light: #f5f5f5;
  --white: #ffffff;
  --pink: #e72a8a;
  --blue: #10aee8;
  --blue-dark: #0786b4;
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
  color: var(--white);
  background: var(--black);
  line-height: 1.5;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.logo img {
  width: 300px;
  height: 62px;
  object-fit: contain;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.84);
}

.main-nav a:hover {
  color: var(--pink);
}

.menu-toggle {
  display: none;
  width: 55px;
  height: 55px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 29px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(16, 174, 232, 0.28);
}

.btn-primary:hover {
  background: var(--blue-dark);
}

.btn-booking {
  background: var(--pink);
  box-shadow: 0 12px 28px rgba(231, 42, 138, 0.3);
}

.btn-booking:hover {
  background: #c91f76;
}

.btn-messenger {
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(16, 174, 232, 0.28);
}

.btn-messenger:hover {
  background: var(--blue-dark);
}

.rub {
  font-family: Arial, "Segoe UI Symbol", "Helvetica Neue", sans-serif;
  font-weight: inherit;
  font-style: normal;
}

.btn-outline {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.btn-outline:hover {
  border-color: var(--pink);
}

.btn-dark {
  color: var(--white);
  background: var(--dark);
}

.section,
.video-section,
.final-cta {
  padding: 90px 0;
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-light {
  background: var(--light);
  color: var(--black);
}

.hero {
  min-height: 624px;
  padding: 76px 0 70px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.6) 0%, rgba(5, 5, 5, 0.6) 36%, rgba(5, 5, 5, 0.26) 68%, rgba(5, 5, 5, 0.1) 100%),
    url("img/hero-bg.jpg") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.1) 0%, rgba(5, 5, 5, 0.05) 55%, rgba(5, 5, 5, 0.6) 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 760px);
  gap: 0;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--pink);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.15;
}

.hero-text {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.hero-actions,
.button-group,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-actions {
  margin: 32px 0;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hero-features div,
.info-grid div,
.notice-card,
.tariff-card,
.feature-card,
.equipment-cards div,
.faq-list details {
  border-radius: 10px;
}

.hero-features div {
  min-height: 76px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
}

.hero-features strong,
.info-grid strong {
  display: block;
  font-size: 18px;
  color: var(--white);
}

.hero-features span,
.info-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.hero-content {
  position: relative;
  max-width: 760px;
}


.video-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1.2fr);
  gap: 46px;
  align-items: center;
}

.video-preview {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 30px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  box-shadow: var(--shadow);
}

.video-preview video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  opacity: 0.88;
}

.video-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.48));
  pointer-events: none;
}

.video-play {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--pink);
  color: var(--white);
  font-weight: 900;
}

.video-play::before {
  content: "▶";
  margin-right: 9px;
  font-size: 14px;
}

.split-block,
.equipment-grid,
.contacts-grid,
.terms-grid,
.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 38px;
  align-items: center;
}

.section-head {
  max-width: 80%;
  margin-bottom: 38px;
}

.section-head p:not(.eyebrow) {
  color: inherit;  
  font-size: 18px;
}

.cards-grid,
.tariff-grid,
.features-grid,
.gallery-grid,
.info-grid {
  display: grid;
  gap: 22px;
}

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

.car-card {
  overflow: hidden;
  border-radius: 15px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.car-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.car-card-body {
  padding: 28px;
}

.card-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.card-topline span {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--pink);
  font-weight: 800;
  font-size: 14px;
}

.price-line {
  margin-bottom: 18px;
  color: var(--blue);
  font-weight: 900;
  font-size: 24px;
}

.spec-list,
.terms-list {
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.spec-list li,
.terms-list li {
  padding: 10px 0 10px 22px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.spec-list li::before,
.terms-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
}

.tariff-grid {
  grid-template-columns: repeat(3, 1fr);
}

.tariff-card,
.notice-card,
.feature-card,
.equipment-cards div,
.faq-list details {
  background: var(--white);
  color: var(--black);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.08);
}

.tariff-card {
  padding: 30px;
}

.tariff-card.highlighted {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-8px);
}

.tariff-price {
  margin-bottom: 4px;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.notice-card {
  margin: 28px 0;
  padding: 22px 26px;
  border-left: 8px solid var(--pink);
}

.info-grid {
  grid-template-columns: repeat(4, 1fr);
}

.info-grid div {
  padding: 22px;
  background: var(--black);
  color: var(--white);
}

.features-grid {
  grid-template-columns: repeat(5, 1fr);
}

.feature-card {
  min-height: 128px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 14px;
  font-weight: 800;
}

.feature-card img {
  width: 53px;
  height: 53px;
  object-fit: contain;
  flex: 0 0 auto;
}

.section-dark .feature-card {
  background: var(--dark-2);
  color: var(--white);
  border-color: var(--border);
}

#equipment {
  background:
    linear-gradient(rgba(5, 5, 5, 0.6), rgba(5, 5, 5, 0.6)),
    url("img/equipment-bg.jpg") center / cover no-repeat;
  color: var(--white);
}

#equipment .eyebrow {
  color: var(--pink);
}

#equipment p {
  color: rgba(255, 255, 255, 0.84);
}

.equipment-grid {
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
}

.equipment-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.equipment-cards div {
  min-height: 130px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 14px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
}

.equipment-cards img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.routes-section {
  background:
    linear-gradient(rgba(5, 5, 5, 0.6), rgba(5, 5, 5, 0.6)),
    url("img/routes-bg.jpg") center / cover no-repeat;
}

.route-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.route-tags span {
  padding: 14px 25px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border);
  font-weight: 800;
}

.gallery-grid {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  background: #ddd;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
}

.gallery-item::after {
  content: "Смотреть";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 5, 5, 0.42);
  color: var(--white);
  font-weight: 900;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: saturate(1.08);
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps-list li {
  padding: 24px;
  border-radius: 26px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  font-weight: 800;
}

.steps-list span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
}

.light-features .feature-card {
  background: var(--white);
}

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

.advantage-card {
  min-height: 116px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 10px;
  background: var(--white);
  color: var(--black);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.08);
  font-weight: 800;
}

.advantage-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex: 0 0 60px;
}

.advantage-card span {
  display: block;
}


.terms-list {
  margin-bottom: 0;
  padding: 28px;
  border-radius: 30px;
  background: var(--dark-2);
  border: 1px solid var(--border);
}


.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 20px 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.faq-list details:hover {
  border-color: rgba(231, 42, 138, 0.85);
  box-shadow: 0 18px 44px rgba(231, 42, 138, 0.18);
  transform: translateY(-2px);
}

.faq-list summary {
  position: relative;
  padding-left: 24px;
  cursor: pointer;
  font-weight: 900;
  font-size: 18px;
  list-style: none;
}

.faq-list summary::marker {
  color: var(--pink);
}

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

.faq-list summary::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--gray);
}
.final-cta {
  background:
    radial-gradient(circle at 82% 20%, rgba(231, 42, 138, 0.38), transparent 32%),
    var(--black);
}

.final-cta h2 {
  margin-bottom: 0;
}

.contact-phone a {
  color: var(--pink);
  font-size: 34px;
  font-weight: 900;
}

.contact-meta {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

 .contact-icon {
  width: 26px;
  height: 26px;
  margin-top: 0;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
}

.route-buttons {
  display: grid;
  gap: 12px;
}

.site-footer {
  padding: 48px 0 80px;
  background: #000;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 34px;
}

.site-footer h2,
.site-footer h3 {
  margin-bottom: 14px;
}

.footer-brand img {
  width: 300px;
  height: 62px;
  object-fit: contain;
  margin-bottom: 18px;
}

.site-footer p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a:hover {
  color: var(--pink);
}

.footer-phone {
  font-size: 22px;
  font-weight: 900;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.footer-actions .btn {
  margin-bottom: 0;
  color: var(--white);
}

.footer-small h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.footer-small p,
.footer-small a {
  font-size: 14px;
  line-height: 1.45;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
  border-radius: 24px;
  background: var(--white);
  color: var(--black);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner p {
  margin: 0;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.is-open {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.74);
}

.modal-content {
  position: relative;
  z-index: 2;
  width: min(480px, 100%);
  padding: 34px;
  border-radius: 30px;
  background: var(--white);
  color: var(--black);
  box-shadow: var(--shadow);
}


.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 28px;
  line-height: 34px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.messenger-whatsapp {
  background: #25d366;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.25);
}

.messenger-whatsapp:hover {
  background: #1fb458;
}

.messenger-telegram {
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(16, 174, 232, 0.28);
}

.messenger-telegram:hover {
  background: var(--blue-dark);
}

.messenger-max {
  background: #7b3ff2;
  box-shadow: 0 12px 28px rgba(123, 63, 242, 0.25);
}

.messenger-max:hover {
  background: #6430cf;
}
.messenger-links {
  display: grid;
  gap: 12px;
}

.video-modal .modal-content {
  width: min(980px, 100%);
  padding: 16px;
  background: #000;
}

.modal-video-content video {
  width: 100%;
  max-height: 76vh;
  display: block;
  border-radius: 18px;
  background: #000;
}

.mobile-bar {
  display: none;
}

@media (max-width: 1080px) {
  .header-btn {
    display: none;
  }

  .main-nav {
    gap: 12px;
  }

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

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .site-header {
    position: sticky;
  }

  .header-inner {
    min-height: 68px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .main-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border-radius: 24px;
    background: var(--dark);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 10px;
    border-bottom: 1px solid var(--border);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .cars-grid,
  .tariff-grid,
  .info-grid,
  .contacts-grid,
  .terms-grid,
  .footer-grid,
  .split-block,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .hero-features,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section,
  .video-section,
  .final-cta {
    padding: 64px 0;
  }

  .hero {
    min-height: 500px;
    padding: 58px 0 54px;
    background-position: center right;
  }

  .hero-content {
    max-width: 100%;
  }

  .features-grid,
  .steps-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .button-group,
  .hero-actions,
  .card-actions {
    align-items: stretch;
  }

  .button-group .btn,
  .hero-actions .btn,
  .card-actions .btn {
    width: 100%;
  }
}

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

  .container {
    width: min(100% - 24px, 1180px);
  }

  .logo img {
    width: 210px;
    height: auto;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-features,
  .features-grid,
  .advantages-grid,
  .steps-list,
  .gallery-grid,
  .equipment-cards {
    grid-template-columns: 1fr;
  }

  .car-card-body,
  .tariff-card,
  .terms-list {
    padding: 22px;
  }

  .card-topline {
    display: block;
  }

  .card-topline span {
    display: inline-flex;
    margin-bottom: 12px;
  }

  .contact-phone a {
    font-size: 28px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 88px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner.is-visible {
    display: flex;
  }

  .mobile-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 70;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border-radius: 22px;
    background: rgba(5, 5, 5, 0.92);
    border: 1px solid var(--border);
    backdrop-filter: blur(14px);
  }

  .mobile-bar a,
  .mobile-bar button {
    min-height: 46px;
    border: 0;
    border-radius: 999px;
    background: var(--pink);
    color: var(--white);
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .mobile-bar button {
    background: var(--blue);
  }

  .advantage-card {
    min-height: auto;
    padding: 20px;
  }

  .modal-content {
    padding: 28px 20px 22px;
  }
}

.info-grid strong {
  line-height: 1.12;
  word-break: keep-all;
}

.info-grid .rub {
  display: inline;
  white-space: nowrap;
}

#included {
  background:
    linear-gradient(rgba(5, 5, 5, 0.6), rgba(5, 5, 5, 0.6)),
    url("img/complect-bg.jpg") center / cover no-repeat;
}

.complect-grid .feature-card {
  min-height: 150px;
  justify-content: flex-start;
}

.complect-grid .feature-card img {
  margin-bottom: 16px;
}

.complect-grid .feature-card span {
  display: block;
  margin-top: 0;
  line-height: 1.35;
}

.btn-route {
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--black);
  box-shadow: none;
}

.btn-route:hover {
  color: var(--white);
  background: var(--black);
}

.contact-icon {
  width: 26px;
  height: 26px;
  margin-top: 0;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  mask-image: none;
  -webkit-mask-image: none;
}

@media (max-width: 860px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .footer-actions {
    align-items: stretch;
  }

  .footer-actions .btn {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 600px;
    padding: 60px 0 56px;
  }

  .footer-brand img {
    width: 230px;
    height: auto;
  }

  .footer-small h3 {
    font-size: 17px;
  }

  .footer-small p,
  .footer-small a {
    font-size: 13px;
  }
}

.header-btn {
  min-height: 40px;
  padding: 9px 23px;
  font-size: 14px;
}

.site-header .logo img {
  width: 360px;
  height: auto;
}

.car-photo {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.car-video-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: calc(100% - 56px);
  min-height: 48px;
  margin: 20px auto 0;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.car-video-btn span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  font-size: 12px;
  line-height: 1;
}

.car-video-btn:hover {
  transform: translateY(-2px);
  background: var(--pink);
  color: var(--white);
}

.car-video-btn:hover span {
  background: var(--white);
  color: var(--pink);
}

.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 18px;
}

.stock-badge strong {
  font-size: 30px;
  line-height: 1;
}

.car-card .price-line {
  color: var(--white);
}

#terms {
  background:
    linear-gradient(rgba(5, 5, 5, 0.6), rgba(5, 5, 5, 0.6)),
    url("img/terms-bg.jpg") center / cover no-repeat;
}

.btn-contract {
  margin-top: 18px;
  background: var(--white);
  color: var(--black);
  box-shadow: none;
}

.btn-contract:hover {
  background: var(--pink);
  color: var(--white);
}

.phone-label,
.footer-phone-label {
  margin-bottom: 4px;
  color: rgba(0, 0, 0, 0.62);
  font-size: 14px;
  font-weight: 800;
}

.footer-phone-label {
  color: rgba(255, 255, 255, 0.58);
}

.footer-phone {
  color: var(--white) !important;
}

.footer-phone:hover {
  color: var(--white) !important;
}

.footer-actions .btn-booking:hover {
  color: var(--white);
}

.footer-actions .btn-messenger:hover {
  color: var(--white);
}

.hot-season {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hot-season img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex: 0 0 38px;
}

.btn-pdf {
  background: #e53935;
  color: var(--white);
  box-shadow: 0 12px 28px rgba(229, 57, 53, 0.28);
}

.btn-pdf:hover {
  background: #c62828;
  color: var(--white);
}

.btn-pdf img {
  width: 22px;
  height: 22px;
  margin-right: 10px;
  object-fit: contain;
}

@media (max-width: 1080px) {
  .site-header .logo img {
    width: 300px;
  }

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

@media (max-width: 560px) {
  h1 {
    font-size: 30px;
  }

  .site-header .logo img {
    width: 220px;
  }

  .header-inner {
    gap: 12px;
  }

  .car-video-btn {
    width: calc(100% - 32px);
    font-size: 14px;
  }

  .hot-season {
    align-items: flex-start;
  }
}

.cars-review {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.cars-review .car-video-btn {
  width: auto;
  min-width: min(100%, 420px);
  margin: 0;
}

.car-card .spec-list {
  margin-bottom: 18px;
}

.car-card .price-line {
  margin: 0 0 24px;
}

.car-photo {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}

.car-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.car-photo:hover img {
  transform: scale(1.04);
  filter: brightness(0.9);
}

.stock-badge-blue {
  background: var(--blue) !important;
}

.image-modal {
  padding: 18px;
}

.image-modal-content {
  width: min(760px, 100%);
  padding: 16px;
  background: #050505;
  color: var(--white);
}

.image-modal-content img {
  width: auto;
  max-width: 100%;
  max-height: 82vh;
  margin: 0 auto;
  display: block;
  border-radius: 18px;
  object-fit: contain;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--black);
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.gallery-prev {
  left: 18px;
}

.gallery-next {
  right: 18px;
}

.gallery-counter {
  margin-top: 12px;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

@media (max-width: 860px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-nav {
    width: 40px;
    height: 40px;
    font-size: 32px;
  }

  .gallery-prev {
    left: 10px;
  }

  .gallery-next {
    right: 10px;
  }
}

.eyebrow-red {
  color: #e53935;
}

.cars-review {
  margin-top: 48px;
}

.cars-review .car-video-btn {
  min-height: 58px;
  min-width: min(100%, 520px);
  padding: 16px 34px;
  font-size: 18px;
}

.cars-review .car-video-btn span {
  width: 34px;
  height: 34px;
  font-size: 14px;
}

.stock-badge {
  background: var(--pink);
}

.stock-badge-blue {
  background: var(--blue) !important;
}

.complect-grid .feature-card {
  position: relative;
  min-height: 170px;
  padding-top: 42px;
  overflow: visible;
  background: #000;
  border: 0;
}

.complect-grid .feature-card img {
  width: 80px;
  height: 80px;
  margin-top: -58px;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.complect-grid .feature-card span {
  font-size: 1.25em;
  line-height: 1.3;
}

.section-dark .complect-grid .feature-card {
  background: #000;
  border: 0;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.32);
}

#equipment .eyebrow-red,
.eyebrow-red {
  color: #e53935;
}

#terms .terms-list {
  background: #000;
}

#terms .terms-grid > div:first-child {
  padding: 30px;
  border-radius: 30px;  
}

.complect-grid .feature-card {
  min-height: 210px;
  padding-bottom: 29px;
}

.complect-grid .feature-card img {
  width: 100px;
  height: 100px;
}

.complect-grid .feature-card span {
  font-size: 1.1em;
}

.advantage-card span strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
  line-height: 1.25;
}

.advantage-card span small {
  display: block;
  color: rgba(0, 0, 0, 0.68);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
}

.advantage-card-wide {
  grid-column: 1 / -1;
}

.nowrap {
  white-space: nowrap;
}

.info-grid .info-accent {
  font-size: 24px;
  color: var(--white);
  line-height: 1.12;
}

.equipment-cards div {
  min-height: 182px;
  font-size: 1.3em;
}

#equipment .btn-pdf {
  margin-top: 30px;
}

.terms-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.pink-text {
  color: var(--pink);
}

.video-grid {
  align-items: start;
}

.video-preview {
  margin-top: 0;
}

@media (max-width: 860px) {
  .terms-grid {
    grid-template-columns: 1fr;
  }
}

.tariff-card .tariff-price {
  margin-bottom: 0;
}

.tariff-card .tariff-price + span {
  display: block;
  margin-top: -4px;
}

.cta-subline {
  display: block;
  margin-top: 8px;
  font-size: 0.72em;
  line-height: 1.15;
}

.contact-parking {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(231, 42, 138, 0.08);
  color: var(--pink);
  font-weight: 800;
}

@media (max-width: 860px) {
  .video-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .video-grid {
    gap: 22px;
  }

  .complect-grid .feature-card {
    min-height: auto;
    padding: 20px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
  }

  .complect-grid .feature-card img {
    width: 72px;
    height: 72px;
    margin: 0;
    flex: 0 0 72px;
  }

  .complect-grid .feature-card span {
    font-size: 1.05em;
  }

  .equipment-cards div {
    min-height: auto;
    padding: 20px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
  }

  .equipment-cards img {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
  }

  .modal-content h2 {
    max-width: calc(100% - 48px);
    line-height: 1.08;
  }

  .messenger-links {
    margin-top: 18px;
  }

  .cars-review .car-video-btn {
    font-size: 0;
  }

  .cars-review .car-video-btn::after {
    content: "Смотреть видео-обзор";
    font-size: 16px;
  }

  .site-footer {
    padding-bottom: 34px;
  }
}

@media (max-width: 560px) {
  .video-section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .modal-content h2 {
    font-size: 28px;
  }

  .footer-grid {
    gap: 22px;
  }

  .site-footer {
    padding-bottom: 28px;
  }
}

.video-preview {
  margin-top: 50px;
}

.complect-grid .feature-card {
  min-height: 235px;
  padding-top: 34px;
  overflow: hidden;
}

.complect-grid .feature-card img {
  margin-top: 0;
}

.advantage-card img {
  width: 110px;
  height: 110px;
  flex: 0 0 110px;
}

.site-header .logo img {
  width: 300px;
  height: auto;
}

.site-footer {
  padding-top: 44px;
  padding-bottom: 32px;
}

.footer-main {
  display: grid;
  grid-template-columns: 292px minmax(360px, 1fr) minmax(220px, 0.75fr);
  gap: 34px;
  align-items: center;
}

.footer-brand img {
  width: 292px;
  height: 266px;
  object-fit: contain;
  margin-bottom: 0;
}

.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-contact-line .footer-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
}

.footer-docs-line {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-docs-line a {
  margin-bottom: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-requisites h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.footer-requisites p {
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 860px) {
  .video-preview {
    margin-top: 0;
  }

  .advantage-card img {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
  }

  .footer-brand img {
    width: 220px;
    height: auto;
  }

  .footer-contact-line {
    display: block;
  }

  .footer-contact-line .footer-actions {
    margin-top: 16px;
    align-items: stretch;
  }

  .footer-contact-line .footer-actions .btn {
    width: 100%;
  }

  .footer-docs-line {
    justify-content: flex-start;
    gap: 12px 18px;
  }
}

@media (max-width: 560px) {
  .footer-brand img {
    width: 190px;
  }

  .footer-docs-line {
    display: grid;
    gap: 8px;
  }
}

.hero {
  min-height: 760px;
}

.site-footer {
  padding: 30px 0 22px;
}

.footer-compact {
  display: grid;
  grid-template-columns: 230px minmax(430px, 1fr) minmax(260px, 0.7fr);
  gap: 34px;
  align-items: center;
}

.footer-logo-col img {
  width: 210px;
  height: auto;
  object-fit: contain;
}

.footer-info-col {
  min-width: 0;
}

.footer-topline {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-phone-wrap {
  flex: 0 0 auto;
}

.footer-phone-label {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  font-weight: 800;
}

.footer-phone {
  margin: 0;
  color: var(--white) !important;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 900;
}

.footer-phone:hover {
  color: var(--white) !important;
}

.footer-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.footer-actions .btn {
  min-height: 50px;
  margin: 0;
  color: var(--white);
  white-space: nowrap;
}

.footer-actions .btn:hover {
  color: var(--white);
}

.footer-description {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.45;
}

.footer-requisites h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
}

.footer-requisites p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.45;
}

.footer-docs-line {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

.footer-docs-line a {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

@media (max-width: 1080px) {
  .footer-compact {
    grid-template-columns: 180px 1fr;
  }

  .footer-requisites {
    grid-column: 2;
  }

  .footer-logo-col img {
    width: 170px;
  }
}

@media (max-width: 760px) {
  .footer-compact {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-logo-col img {
    width: 170px;
  }

  .footer-topline {
    display: block;
  }

  .footer-actions {
    margin-top: 16px;
    align-items: stretch;
    flex-direction: column;
  }

  .footer-actions .btn {
    width: 100%;
  }

  .footer-requisites {
    grid-column: auto;
  }

  .footer-docs-line {
    justify-content: flex-start;
    gap: 10px 18px;
  }
}

.cookie-banner a {
  color: var(--pink);
}
.cookie-banner a:hover {
  text-decoration: underline;
}

/* v16 правки */
.contact-parking {
  display: block;
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #eeeeee;
  color: #111111;
  font-weight: 800;
}

.contact-address strong {
  font-size: 1.3em;
  line-height: 1.25;
}

@media (max-width: 860px) {
  .hero {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.6) 0%, rgba(5, 5, 5, 0.6) 36%, rgba(5, 5, 5, 0.26) 68%, rgba(5, 5, 5, 0.1) 100%),
      url("img/hero-bg-mobile.jpg") center / cover no-repeat;
  }

  .hero-actions {
    display: none;
  }

  .complect-grid .feature-card {
    min-height: 0;
    padding: 14px 16px;
    gap: 14px;
    align-items: center;
  }

  .complect-grid .feature-card img {
    width: 97px;
    height: 97px;
    flex: 0 0 97px;
    margin: 0;
  }

  .complect-grid .feature-card span {
    font-size: 1em;
    line-height: 1.25;
  }

  .advantage-card img {
    width: 90px;
    height: 90px;
    flex: 0 0 90px;
  }

  .mobile-bar {
    border-radius: 999px;
  }

  .mobile-bar a,
  .mobile-bar button {
    border-radius: 999px;
  }

  .footer-description,
  .footer-brand p,
  .footer-requisites p,
  .footer-small p,
  .footer-small a {
    font-size: 70%;
    line-height: 1.4;
  }

  .footer-requisites h3,
  .footer-small h3 {
    font-size: 70%;
  }
}

@media (max-width: 560px) {
  .complect-grid .feature-card {
    padding: 12px 14px;
  }

  .complect-grid .feature-card img {
    width: 88px;
    height: 88px;
    flex-basis: 88px;
  }

  .advantage-card img {
    width: 82px;
    height: 82px;
    flex-basis: 82px;
  }
}


/* v17 правки */
@media (max-width: 860px) {
  .hero {
    background:
      linear-gradient(rgba(5, 5, 5, 0.6), rgba(5, 5, 5, 0.6)),
      url("img/hero-bg-mobile.jpg") center / cover no-repeat;
  }
}

.contact-parking {
  background: #d8d8d8;
}


/* Дополнительные услуги вне аренды автомобилей */
.extra-services {
  background: #f5f5f5;
  color: var(--black);
}

.extra-services .section-head {
  max-width: 880px;
}

.extra-services .eyebrow {
  color: var(--blue);
}

.extra-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.extra-service-card {
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.extra-service-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.extra-service-body {
  padding: 26px;
}

.extra-service-body h3 {
  margin-bottom: 12px;
  font-size: 26px;
}

.extra-service-body p {
  margin-bottom: 0;
  color: rgba(0, 0, 0, 0.68);
  font-size: 17px;
}

.extra-services-cta {
  margin-top: 30px;
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  border-radius: 18px;
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow);
}

.extra-services-cta h3 {
  margin-bottom: 8px;
  font-size: 28px;
}

.extra-services-cta p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.extra-services-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 15px 28px;
  border-radius: 999px;
  background: var(--pink);
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(231, 42, 138, 0.28);
}

.extra-services-phone:hover {
  color: var(--white);
  background: #c91f76;
}

@media (max-width: 860px) {
  .extra-services-grid {
    grid-template-columns: 1fr;
  }

  .extra-services-cta {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .extra-services-phone {
    width: 100%;
    font-size: 20px;
  }
}

@media (max-width: 560px) {
  .extra-service-body {
    padding: 20px;
  }

  .extra-service-body h3 {
    font-size: 22px;
  }

  .extra-service-body p {
    font-size: 15px;
  }

  .extra-services-cta {
    padding: 22px;
  }

  .extra-services-cta h3 {
    font-size: 23px;
  }
}


.extra-services-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.extra-services-whatsapp {
  min-height: 58px;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.25);
  white-space: nowrap;
}

.extra-services-whatsapp:hover {
  background: #1fb458;
  color: var(--white);
}

@media (max-width: 860px) {
  .extra-services-actions {
    justify-content: stretch;
    display: grid;
    grid-template-columns: 1fr;
  }

  .extra-services-actions .extra-services-phone,
  .extra-services-actions .extra-services-whatsapp {
    width: 100%;
  }
}


/* Фоновый морской паттерн для блока дополнительных услуг */
.extra-services-wave {
  background-color: #f7fbff;
  background-image: url("img/wave-pattern.png");
  background-repeat: repeat;
  background-size: 420px 420px;
  background-position: center top;
}

.extra-services-wave .extra-service-card,
.extra-services-wave .extra-services-cta {
  position: relative;
  z-index: 1;
}

@media (max-width: 560px) {
  .extra-services-wave {
    background-size: 300px 300px;
  }
}


/* v21: CTA в блоке дополнительных услуг */
.extra-services-cta {
  background: var(--blue);
  color: var(--white);
}

.extra-services-cta p {
  color: rgba(255, 255, 255, 0.86);
}

.extra-services-cta .extra-services-phone {
  background: var(--pink);
  color: var(--white);
}

.extra-services-cta .extra-services-phone:hover {
  background: #c91f76;
  color: var(--white);
}


/* v23: белый фон блока Контакты */
#contacts {
  background: #ffffff;
}


/* v24: 9 плашек в блоке дополнительного снаряжения */
.equipment-cards {
  grid-template-columns: repeat(3, 1fr);
}

.equipment-cards div {
  min-height: 160px;
}

.equipment-cards span {
  display: block;
  line-height: 1.25;
}

@media (max-width: 860px) {
  .equipment-cards {
    grid-template-columns: 1fr;
  }
}


/* v25: порядок плашек и примечание в блоке Дополнительное снаряжение */
.equipment-note {
  grid-column: 2;
  margin: 18px 0 0;
  padding: 18px 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--black);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
}

@media (max-width: 1080px) {
  .equipment-note {
    grid-column: auto;
  }
}


/* v26: корректировка плашек дополнительного снаряжения */
.equipment-cards div {
  justify-content: flex-start;
  min-height: 180px;
}

.equipment-cards img {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.equipment-cards span {
  display: flex;
  align-items: flex-start;
  min-height: 54px;
  font-size: 0.7em;
  font-weight: 600;
  line-height: 1.25;
}

.equipment-note {
  margin: 20px 0 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

@media (max-width: 860px) {
  .equipment-cards div {
    min-height: auto;
    align-items: center;
  }

  .equipment-cards img {
    width: 78px;
    height: 78px;
    flex: 0 0 78px;
  }

  .equipment-cards span {
    min-height: 0;
    align-items: center;
    font-size: 0.85em;
  }
}


/* v27 */
.site-header {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.76) 58%, rgba(5, 5, 5, 0) 100%);
  backdrop-filter: none;
  border-bottom: 0;
}

.complect-video-actions {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.complect-video-btn {
  min-height: 68px;
  padding: 16px 22px;
  border: 2px solid var(--pink);
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.complect-video-btn span {
  width: 34px;
  height: 34px;
  min-width: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  font-size: 13px;
}

.complect-video-btn:hover {
  transform: translateY(-2px);
  background: var(--pink);
  color: var(--white);
}

.complect-video-btn:hover span {
  background: var(--black);
}

.advance-payment {
  margin-top: 24px;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
}

.advance-payment h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 22px;
}

.advance-payment p {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.payment-info-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--pink);
  font-weight: 900;
  cursor: pointer;
  text-align: left;
}

.payment-info-link:hover {
  text-decoration: underline;
}

.payment-modal-content {
  width: min(680px, 100%);
}

.payment-modal-text p {
  color: rgba(0, 0, 0, 0.72);
  font-size: 16px;
}

.final-cta-inner {
  gap: 22px;
}

.final-phone {
  margin-top: 8px;
}

.final-phone p {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 800;
}

.final-phone a {
  color: var(--white);
  font-size: 30px;
  line-height: 1.1;
  font-weight: 900;
}

.final-phone a:hover {
  color: var(--pink);
}

@media (max-width: 860px) {
  .complect-video-actions {
    grid-template-columns: 1fr;
  }

  .complect-video-btn {
    min-height: 62px;
    border-radius: 28px;
  }

  .final-phone a {
    font-size: 26px;
  }
}

@media (max-width: 560px) {
  .complect-video-btn {
    padding: 14px 18px;
    font-size: 14px;
  }

  .advance-payment {
    padding: 20px;
  }

  .payment-modal-content h2 {
    font-size: 26px;
  }
}


/* v28 */
.advance-payment {
  border: 0;
  border-radius: 12px;
}

.hero {
  background-position: center top;
}

@media (max-width: 860px) {
  .hero {
    background-position: center top;
  }
}


/* v29: шапка поверх первого экрана без отдельной черной полосы */
.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.68) 58%, rgba(5, 5, 5, 0) 100%);
  border-bottom: 0;
}

.hero {
  padding-top: 140px;
  background-position: center top;
}

@media (max-width: 860px) {
  .main-nav {
    top: 76px;
  }

  .hero {
    padding-top: 118px;
    background-position: center top;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 104px;
  }
}


/* payment-ok.html */
.payment-page {
  min-height: 100vh;
  background: var(--black);
}

.payment-result {
  position: relative;
  min-height: 100vh;
  padding: 34px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.payment-result-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(5, 5, 5, 0.68), rgba(5, 5, 5, 0.72)),
    url("img/hero-bg.jpg") center / cover no-repeat;
}

.payment-result-card {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  padding: 48px;
  border-radius: 28px;
  background: rgba(5, 5, 5, 0.82);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  color: var(--white);
  text-align: center;
  backdrop-filter: blur(12px);
}

.payment-result-logo {
  display: inline-flex;
  justify-content: center;
  margin-bottom: 30px;
}

.payment-result-logo img {
  width: 300px;
  height: auto;
  object-fit: contain;
}

.payment-status {
  width: 74px;
  height: 74px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 16px 38px rgba(231, 42, 138, 0.34);
}

.payment-status span {
  color: var(--white);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.payment-result-card h1 {
  margin-bottom: 16px;
  font-size: clamp(34px, 5vw, 58px);
}

.payment-lead {
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 24px;
  font-weight: 900;
}

.payment-text {
  max-width: 660px;
  margin: 0 auto 30px;
  text-align: left;
}

.payment-text p {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.payment-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.payment-phone {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 10px 26px;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-size: 24px;
  font-weight: 900;
}

.payment-phone span {
  margin-bottom: 2px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 13px;
  font-weight: 800;
}

.payment-phone:hover {
  color: var(--black);
  transform: translateY(-2px);
}

.payment-back {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.payment-back:hover {
  color: var(--pink);
}

@media (max-width: 560px) {
  .payment-result {
    padding: 20px 12px;
  }

  .payment-result-card {
    padding: 30px 20px;
    border-radius: 22px;
  }

  .payment-result-logo img {
    width: 220px;
  }

  .payment-status {
    width: 60px;
    height: 60px;
  }

  .payment-status span {
    font-size: 30px;
  }

  .payment-lead {
    font-size: 20px;
  }

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

  .payment-actions .btn,
  .payment-phone {
    width: 100%;
  }

  .payment-phone {
    font-size: 21px;
  }
}


/* v33 */
.contact-parking {
  background: #f1f1f1;
  padding-left: 26px;
}

.drift-taxi {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.86) 0%, rgba(5, 5, 5, 0.7) 38%, rgba(5, 5, 5, 0.18) 72%, rgba(5, 5, 5, 0.05) 100%),
    url("img/drift-taxi-bg.jpg") center / cover no-repeat;
}

.drift-taxi-inner {
  position: relative;
  z-index: 2;
}

.drift-taxi-content {
  max-width: 690px;
}

.drift-taxi-content h2 {
  max-width: 680px;
}

.drift-taxi-content p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.drift-taxi-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.drift-taxi-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 26px;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-size: 22px;
  font-weight: 900;
}

.drift-taxi-phone:hover {
  color: var(--black);
  transform: translateY(-2px);
}

@media (max-width: 860px) {
  .drift-taxi {
    min-height: 620px;
    background:
      linear-gradient(rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.72)),
      url("img/drift-taxi-bg-mobile.jpg") center / cover no-repeat;
  }

  .drift-taxi-actions {
    align-items: stretch;
  }

  .drift-taxi-actions .btn,
  .drift-taxi-phone {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .drift-taxi {
    min-height: 680px;
  }

  .drift-taxi-content p:not(.eyebrow) {
    font-size: 16px;
  }

  .drift-taxi-phone {
    font-size: 20px;
  }
}


/* v35: сноски в тарифах */
.tariff-star,
.note-star {
  color: var(--pink);
  font-weight: 900;
}

.tariff-card.highlighted .tariff-star {
  color: var(--white);
}

.hot-season .note-star {
  font-size: 22px;
  line-height: 1;
  vertical-align: middle;
}
