/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
  /* Цветовая палитра */
  --primary-color: #09397b;
  --primary-hover: #072d61;
  --bg-light: #ffffff;
  --bg-alt: #f8f9fb;
  --bg-dark: #1a212e;
  --text-main: #111418;
  --text-muted: #617289;
  --border-color: #e5e7eb;
  --white: #ffffff;

  /* Шрифты */
  --font-main: "Manrope", sans-serif;

  /* Отступы и радиусы */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --container-width: 1200px;

  /* Переходы */
  --transition: all 0.3s ease;
}

/* Dark Mode (автоматически по системе) */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-light: #1a212e;
    --bg-alt: #11161f;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --border-color: #2d3748;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth; /* Добавляет плавность при клике на якоря */
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* =========================================
   2. UTILITIES & LAYOUT
   ========================================= */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}
.section--bg-alt {
  background-color: var(--bg-alt);
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid--3 {
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 768px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.text-center {
  text-align: center;
}
.text-center-md {
  text-align: center;
}
@media (min-width: 1024px) {
  .text-center-md {
    text-align: left;
  }
}

.text-span {
  hyphens: auto;
}

.text-primary {
  color: var(--primary-color);
}

.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-16 {
  margin-bottom: 4rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}

.mx-auto-md {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .mx-auto-md {
    margin-left: 0;
    margin-right: 0;
  }
}

/* =========================================
   3. COMPONENTS
   ========================================= */

/* Кнопки */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 0.875rem;
  transition: var(--transition);
  gap: 0.5rem;
}

.btn--primary {
  background-color: var(--primary-color);
  color: var(--white);
}
.btn--primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 4px 12px rgba(9, 57, 123, 0.25);
}

.btn--outline {
  background-color: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-main);
}
.btn--outline:hover {
  background-color: var(--bg-alt);
}

.btn--white {
  background-color: var(--white);
  color: var(--primary-color);
}
.btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: var(--radius-xl);
}
.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}
.btn--full {
  width: 100%;
}

/* Divider */
.divider {
  height: 4px;
  width: 5rem;
  background-color: var(--primary-color);
  margin-top: 1rem;
}

/* Material Icons size fix */
.material-symbols-outlined {
  font-size: 24px;
}

/* =========================================
   4. HEADER
   ========================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
}
@media (prefers-color-scheme: dark) {
  .header {
    background-color: rgba(26, 33, 46, 0.95);
  }
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo__icon {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.3rem;
  border-radius: var(--radius-md);
  display: flex;
}
.logo__text {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.logo__text span {
  color: var(--primary-color);
}

.nav {
  display: none;
  gap: 2rem;
}
.nav__link {
  font-size: 0.875rem;
  font-weight: 600;
}
.nav__link:hover {
  color: var(--primary-color);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.social-links {
  display: none;
  align-items: center;
  gap: 0.5rem;
}
.social-links a {
  color: var(--text-muted);
  padding: 0.5rem;
  display: flex;
}
.social-links a:hover {
  color: var(--primary-color);
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .social-links {
    display: flex;
  }
}

/* =========================================
   5. HERO SECTION
   ========================================= */
.hero {
  padding: 3rem 0 5rem;
  overflow: hidden;
}
.hero__container {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr 1fr;
  }
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  background-color: rgba(9, 57, 123, 0.1);
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 99px;
  width: fit-content;
}
.badge__dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero__title {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 4rem;
  }
}

.hero__desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 500px;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__image-wrapper {
  position: relative;
}
.hero__image {
  aspect-ratio: 4/3;
  border-radius: 1.5rem;
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: rotate(2deg);
  transition: transform 0.5s;
}
.hero__image:hover {
  transform: rotate(0);
}

.hero__rating-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background-color: var(--bg-light);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
}
.rating-score {
  color: var(--primary-color);
  font-size: 1.875rem;
  font-weight: 900;
}
.rating-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
.rating-stars {
  display: flex;
  color: #fbbf24;
  margin-top: 0.5rem;
}
.rating-stars span {
  font-size: 1.2rem;
}

/* =========================================
   6. CARDS (SERVICE TYPES)
   ========================================= */
.card {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}
.card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.service-type__icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(9, 57, 123, 0.05);
  color: var(--primary-color);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s;
}
.card:hover .service-type__icon {
  transform: scale(1.1);
}
.service-type__icon span {
  font-size: 1.8rem;
}

.card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.card__desc {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.service-list {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}
.service-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}
.service-list li::before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* =========================================
   7. SYMPTOMS GRID
   ========================================= */
.symptoms {
  background: linear-gradient(180deg, rgba(9, 57, 123, 0.04), rgba(9, 57, 123, 0)), var(--bg-light);
}

.symptoms__header {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.symptoms__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .symptoms__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .symptoms__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.symptom-card {
  min-height: 100%;
  padding: 1.25rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  background-color: var(--bg-light);
  transition: var(--transition);
}

.symptom-card:hover {
  border-color: rgba(220, 38, 38, 0.35);
  box-shadow: 0 10px 24px -18px rgba(220, 38, 38, 0.45);
  transform: translateY(-2px);
}

.symptom-card span {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background-color: rgba(220, 38, 38, 0.1);
  color: #dc2626;
  font-size: 1.5rem;
  font-weight: 800;
}

.symptom-card h3 {
  margin-bottom: 0.625rem;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
}

.symptom-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.symptom-card--accent {
  background-color: rgba(220, 38, 38, 0.05);
  border-color: rgba(220, 38, 38, 0.18);
}

.symptoms__action {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

/* =========================================
   8. SERVICE CATALOG GRID
   ========================================= */
.overline {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.section__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.tabs {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar {
  display: none;
}
.tab {
  flex-shrink: 0;
  padding: 0.75rem 1.5rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.875rem;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  transition: var(--transition);
}
.tab:hover {
  border-color: rgba(9, 57, 123, 0.3);
  color: var(--primary-color);
}
.tab.active {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.service-card {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: box-shadow 0.3s;
  background-color: var(--bg-light);
}
.service-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-card__img {
  height: 12rem;
  background-size: cover;
  background-position: center;
}
.service-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.service-card__header h4 {
  font-size: 1.25rem;
  font-weight: 700;
}
.tag {
  background-color: rgba(9, 57, 123, 0.1);
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.service-card__body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.service-card__footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.price {
  color: var(--primary-color);
  font-weight: 800;
  font-size: 1.125rem;
}

.section__action {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

/* =========================================
   8. FEATURES BAR
   ========================================= */
.features {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 4rem 0;
}
.features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.feature-item span {
  font-size: 2.5rem;
}
.feature-item h5 {
  font-weight: 700;
  font-size: 1.125rem;
}
.feature-item p {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
  font-weight: 500;
}

/* =========================================
   9. PROCESS STEPS
   ========================================= */
.section__subtitle {
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.process-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .process-steps {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.step-line {
  position: absolute;
  top: 2rem;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--border-color);
  display: none;
  z-index: 0;
}
@media (min-width: 768px) {
  .step-line {
    display: block;
  }
}

.step {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: var(--bg-light);
  padding: 0 1rem;
}

.step__circle {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  border: 4px solid var(--bg-light);
  margin-bottom: 1rem;
}
.step__circle.secondary {
  background-color: rgba(9, 57, 123, 0.2);
  color: var(--primary-color);
}

.step__content h6 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.step__content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 150px;
}

/* =========================================
   10. REVIEWS
   ========================================= */
.review-card {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.review-stars {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  display: flex;
}
.review-text {
  font-style: italic;
  margin-bottom: 2rem;
  flex-grow: 1;
  color: var(--text-main);
  line-height: 1.6;
}
.review-author {
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.avatar {
  width: 3rem;
  height: 3rem;
  background-color: #cbd5e1;
  border-radius: 50%;
}
.author-name {
  font-weight: 700;
  font-size: 0.875rem;
}
.author-car {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* =========================================
   11. CONTACT FORM
   ========================================= */
.form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 40px -10px rgba(9, 57, 123, 0.05);
}
@media (min-width: 768px) {
  .form-wrapper {
    padding: 3rem;
  }
}

.form-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.form-subtitle {
  color: var(--text-muted);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
.form-row {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-size: 0.875rem;
  font-weight: 700;
  opacity: 0.7;
}
.form-group input,
.form-group select {
  background-color: var(--bg-alt);
  border: none;
  border-radius: 0.75rem;
  padding: 1rem;
  font-family: inherit;
  outline: none;
  transition: box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus {
  box-shadow: 0 0 0 2px var(--primary-color);
}

/* =========================================
   12. FOOTER
   ========================================= */
.footer {
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}
.footer__main {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (min-width: 1024px) {
  .footer__main {
    flex-direction: row;
    gap: 4rem;
  }
}

.footer__info {
  flex: 4;
}
.footer__desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 400px;
}

.footer__contacts {
  flex: 3;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer__title {
  font-weight: 700;
  margin-bottom: 1rem;
}
.contact-list,
.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.contact-list li {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.contact-list span.material-symbols-outlined {
  color: var(--primary-color);
  font-size: 1.25rem;
}

.schedule-list li {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 250px;
}
.schedule-list .closed {
  font-weight: 700;
  color: #ef4444;
}

.footer__map {
  flex: 5;
}
.map-placeholder {
  height: 100%;
  min-height: 300px;
  background-color: #cbd5e1;
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-content {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.map-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}
.map-title {
  font-weight: 700;
  font-size: 1.125rem;
}

.footer__bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__links {
  display: flex;
  gap: 2rem;
}
.footer__links a:hover {
  color: var(--primary-color);
}

/* Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Класс для скрытия элементов */
.hidden {
  display: none !important;
}

/* Анимация появления */
.fade-in {
  animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   15. PROMO BLOCKS (NEW)
   ========================================= */

/* --- A. Блок Эвакуатора --- */
.promo-tow {
  padding-bottom: 5rem;
}

.promo-tow__card {
  position: relative;
  width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  background-color: #333; /* Fallback */
}

.promo-tow__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.promo-tow__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.5), transparent);
}

.promo-tow__content {
  position: relative;
  z-index: 10;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .promo-tow__content {
    padding: 4rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.promo-tow__info {
  max-width: 600px;
}

/* Бейдж "Экстренная помощь" */
.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  background-color: #ea580c; /* Orange-600 */
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  border: 1px solid #f97316; /* Orange-500 */
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.promo-badge__icon {
  background-color: #fff;
  color: #ea580c;
  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
}
.promo-badge__icon span {
  font-size: 1rem;
  font-weight: bold;
}

.promo-badge__text {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

/* Заголовок эвакуатора */
.promo-tow__title {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .promo-tow__title {
    font-size: 3rem;
  }
}

.promo-tow__title .highlight {
  background-color: #ea580c;
  color: #fff;
  padding: 0.2rem 0.75rem;
  display: inline-block;
  transform: skewX(-6deg);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
  border: 2px solid #f97316;
}

.promo-tow__desc {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.125rem;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Кнопка эвакуатора */
.btn--orange {
  background-color: #ea580c;
  color: #fff;
  border: 2px solid #f97316;
  box-shadow: 0 20px 25px -5px rgba(124, 45, 18, 0.4);
}
.btn--orange:hover {
  background-color: #c2410c;
  border-color: #ea580c;
  transform: scale(1.05);
}
.btn--xl {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 800;
  border-radius: 1rem;
}

/* --- B. Блок "Специальное предложение" (Диагностика) --- */
.promo-alert {
  background-color: rgba(9, 57, 123, 0.05); /* primary color transparent */
  border: 1px solid rgba(9, 57, 123, 0.15);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

@media (min-width: 640px) {
  .promo-alert {
    align-items: center;
  }
}

.promo-alert__icon {
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  padding: 0.75rem;
  flex-shrink: 0;
  display: flex;
}

.promo-alert__text h4 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.promo-alert__text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

.promo-alert__text p span {
  font-weight: 800;
  color: var(--primary-color);
}

/* --- C. Бейдж "Запчасти под бюджет" --- */
.badge-budget {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(9, 57, 123, 0.05);
  color: var(--primary-color);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
}
.badge-budget span.material-symbols-outlined {
  font-size: 1.25rem;
}

/* =========================================
   16. B2B SECTION & MODAL
   ========================================= */
.b2b {
  background: var(--bg-dark);
  color: var(--white);
}

.b2b__header {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
}

@media (min-width: 1180px) {
  .b2b__header {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  }
}

.b2b__copy {
  min-width: 0;
  max-width: 920px;
}

.b2b__overline {
  color: #93c5fd;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  opacity: 0.72;
}

.b2b__title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1rem;
  max-width: 880px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .b2b__title {
    font-size: 3.25rem;
  }
}

.b2b__subtitle {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  font-weight: 600;
}

.b2b__media {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.b2b__media img {
  width: min(100%, 360px);
  height: auto;
  object-fit: contain;
}

@media (min-width: 1180px) {
  .b2b__media {
    justify-content: flex-end;
  }

  .b2b__media img {
    width: min(100%, 460px);
  }
}

.b2b__triggers {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .b2b__triggers {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .b2b__triggers {
    grid-template-columns: repeat(4, 1fr);
  }
}

.b2b-trigger {
  min-height: 100%;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
}

.b2b-trigger span {
  display: inline-flex;
  margin-bottom: 0.875rem;
  color: #93c5fd;
  font-size: 2.25rem;
}

.b2b-trigger h3,
.transport-card h3 {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.b2b-trigger p,
.transport-card p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.b2b__transport-title {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.b2b-transport {
  display: grid;
  gap: 5.25rem 1rem;
  margin-top: 5.5rem;
}

@media (min-width: 768px) {
  .b2b-transport {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 4.75rem;
  }
}

.transport-card {
  position: relative;
  min-height: 12rem;
  padding: 6.25rem 1.25rem 1.25rem;
  border: 1px solid rgba(147, 197, 253, 0.25);
  border-radius: var(--radius-md);
  background: rgba(9, 57, 123, 0.28);
  overflow: visible;
}

.transport-card__image {
  position: absolute;
  top: -4.5rem;
  left: 50%;
  width: min(80%, 260px);
  transform: translateX(-50%);
  pointer-events: none;
}

.transport-card__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .transport-card {
    padding-top: 5.75rem;
  }

  .transport-card__image {
    top: -4rem;
    width: min(78%, 260px);
  }
}

@media (min-width: 1024px) {
  .transport-card__image {
    width: min(82%, 280px);
  }
}

.b2b__action {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}

body.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  padding: 1rem;
  align-items: center;
  justify-content: center;
}

.modal.is-open {
  display: flex;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 20, 24, 0.72);
}

.modal__dialog {
  position: relative;
  width: min(100%, 760px);
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

@media (min-width: 768px) {
  .modal__dialog {
    padding: 3rem;
  }
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border-radius: 50%;
  transition: var(--transition);
}

.modal__close:hover {
  color: var(--primary-color);
  background: var(--bg-alt);
}

/* BRANDS MARQUEE */

.brands-marquee {
  width: 100%;
  overflow: hidden;
  background: var(--bg-light);
  margin: 2rem 0;
  padding: 22px 0;
}

.brands-marquee__track {
  max-width: var(--container-width);
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}

.brands-marquee__heading {
  padding: 0 1.5rem 1rem;
}

.brands-marquee__title {
  margin-bottom: 0;
}

.brands-marquee__rail {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  overflow: visible;
  will-change: transform;
  user-select: none;
  touch-action: pan-y;
  cursor: grab;
}

.brands-marquee__rail.is-dragging {
  cursor: grabbing;
}

.brand-slide {
  width: auto;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  pointer-events: auto;
}

.brand-logo {
  color: #8c8c8c;
  height: 54px;
  width: auto;
  display: block;
  transition: color 0.5s ease;
}

.brand-logo:hover {
  color: #6b6a6a;
}

@media (min-width: 768px) {
  .brands-marquee__rail {
    gap: 30px;
  }
}
