/*NOTE: This file is intended for programmers. Aspro technical support is not advised to work with him.*/
        
/* Theme integration for the homepage "What to do" block */
.what-to-do-section {
    position: relative;
    overflow: hidden;
    padding: 48px;
    border: 1px solid var(--stroke_black);
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(255, 140, 0, 0.14), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 249, 249, 0.98));
    box-shadow: 0 24px 60px rgba(34, 34, 34, 0.08);
}

.what-to-do-section::before {
    content: '';
    position: absolute;
    inset: auto -80px -120px auto;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 140, 0, 0.08);
    filter: blur(10px);
    pointer-events: none;
}

.what-to-do-section .section-title {
    position: relative;
    z-index: 1;
    margin: 0 auto 32px;
    max-width: 760px;
    text-align: center;
}

.what-to-do-section .section-title h2 {
    margin: 0 0 14px;
    font-size: 42px;
    line-height: 1.08;
    font-weight: 700;
    color: var(--white_text_black);
    letter-spacing: -0.02em;
    background: none;
    -webkit-text-fill-color: initial;
}

.what-to-do-section .section-title p {
    margin: 0 auto;
    max-width: 680px;
    font-size: 16px;
    line-height: 1.75;
    color: #5f6368;
}

.what-to-do-section .tabs {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 28px;
    padding: 8px;
    border: 0;
    border-radius: 22px;
    background: rgba(255, 140, 0, 0.06);
}

.what-to-do-section .tab {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    margin: 0;
    padding: 16px 20px;
    border: 1px solid transparent;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 24px rgba(34, 34, 34, 0.06);
    color: var(--white_text_black);
    text-align: center;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.what-to-do-section .tab::after {
    content: none;
}

.what-to-do-section .tab:hover {
    transform: translateY(-2px);
    color: var(--theme-base-color);
    border-color: rgba(255, 140, 0, 0.22);
    box-shadow: 0 16px 30px rgba(34, 34, 34, 0.09);
}

.what-to-do-section .tab.active {
    color: #ffffff;
    border-color: var(--theme-base-color);
    background: linear-gradient(135deg, var(--theme-base-color), #ffad33);
    box-shadow: 0 18px 36px rgba(255, 140, 0, 0.28);
}

.what-to-do-section .tab-content {
    display: none;
    animation: what-to-do-fade-in 0.35s ease;
}

.what-to-do-section .tab-content.active {
    display: block;
}

@keyframes what-to-do-fade-in {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.what-to-do-section .content-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.8fr);
    gap: 24px;
    align-items: start;
}

.what-to-do-section .steps-container {
    display: grid;
    gap: 16px;
    min-width: 0;
}

.what-to-do-section .step {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 18px;
    margin: 0;
    padding: 24px;
    border: 1px solid rgba(255, 140, 0, 0.12);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(34, 34, 34, 0.05);
    animation: what-to-do-slide-in 0.4s ease forwards;
}

.what-to-do-section .step:last-child {
    padding-bottom: 24px;
}

.what-to-do-section .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.14), rgba(255, 140, 0, 0.28));
    color: #b55d00;
    font-size: 24px;
    font-weight: 700;
    box-shadow: inset 0 0 0 1px rgba(255, 140, 0, 0.1);
}

.what-to-do-section .step-content {
    min-width: 0;
}

.what-to-do-section .step-content h3 {
    margin: 0 0 10px;
    color: var(--white_text_black);
    font-size: 22px;
    line-height: 1.25;
}

.what-to-do-section .step-content p {
    margin: 0;
    color: #5f6368;
    font-size: 15px;
    line-height: 1.7;
}

.what-to-do-section .text-container {
    min-width: 0;
    padding: 28px;
    border: 1px solid rgba(255, 140, 0, 0.14);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 140, 0, 0.08), rgba(255, 140, 0, 0.03)),
        #fff7eb;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.what-to-do-section .text-container p {
    margin: 0;
    color: #5f4a32;
    font-size: 15px;
    line-height: 1.8;
}

@keyframes what-to-do-slide-in {
    from {
        opacity: 0;
        transform: translateX(-16px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.what-to-do-section .step:nth-child(1) {
    animation-delay: 0.06s;
}

.what-to-do-section .step:nth-child(2) {
    animation-delay: 0.12s;
}

.what-to-do-section .step:nth-child(3) {
    animation-delay: 0.18s;
}

@media (max-width: 1200px) {
    .what-to-do-section {
        padding: 40px 32px;
    }

    .what-to-do-section .section-title h2 {
        font-size: 36px;
    }
}

@media (max-width: 991px) {
    .what-to-do-section .content-container {
        grid-template-columns: 1fr;
    }

    .what-to-do-section .text-container {
        padding: 24px;
    }
}

@media (max-width: 767px) {
    .what-to-do-section {
        padding: 28px 20px;
        border-radius: 24px;
    }

    .what-to-do-section .section-title {
        margin-bottom: 24px;
        text-align: left;
    }

    .what-to-do-section .section-title h2 {
        font-size: 30px;
    }

    .what-to-do-section .section-title p {
        max-width: none;
        font-size: 15px;
    }

    .what-to-do-section .tabs {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0;
        background: transparent;
    }

    .what-to-do-section .tab {
        justify-content: flex-start;
        min-height: auto;
        padding: 14px 16px;
        text-align: left;
    }

    .what-to-do-section .step {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 14px;
        padding: 18px;
        border-radius: 20px;
    }

    .what-to-do-section .step-number {
        width: 52px;
        height: 52px;
        font-size: 20px;
        border-radius: 16px;
    }

    .what-to-do-section .step-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .what-to-do-section {
        padding: 22px 16px;
    }

    .what-to-do-section .section-title h2 {
        font-size: 26px;
    }

    .what-to-do-section .step {
        grid-template-columns: 1fr;
    }

    .what-to-do-section .step-number {
        width: 46px;
        height: 46px;
        font-size: 18px;
        border-radius: 14px;
    }

    .what-to-do-section .text-container {
        padding: 20px 18px;
        border-radius: 22px;
    }
}
/* Examples (uncomment to use):*/

/* Expand site width */
/* body .wrapper { max-width: 1400px !important;  } */

/* Set site background image */
/* body {  background: url(image_source) top no-repeat; }

/* Hide compare button */
/* a.compare_item { display: none !important;  }*/

[data-ajax-load-block="HEADER_MOBILE_TOGGLE_PHONE"] {
    /*background-color: var(--theme-base-color);*/
    /*border-color: var(--theme-base-color);*/
    /*color: #fff;*/
    /*font-weight: 700;*/
    /*letter-spacing: var(--theme-letter-spacing);*/
    /*text-decoration: none;*/
    /*margin: 0;*/
    /*border: 1px solid;*/

    /*padding: 9px 20px 10px;*/

    /*text-align: center;*/
    /*vertical-align: middle;*/
}
body.mfixed_y #mobileheader {
    position: fixed;
    width: 100%;
}

@media (max-width: 600px) {
    .page-top-info {
        margin-top: 20px;
    }
    .topic__heading #pagetitle {
        font-size: 22px;
        line-height: calc(1em + 6px);
    }
}

@media (min-width: 992px){
    body .items-list-inner__item-text-wrapper--has-bottom-part--RIGHT {
        flex-direction: column;
    }
    .items-list-inner__item-text-wrapper--has-bottom-part--RIGHT .items-list-inner__item-text-bottom-part {
        padding: 0px 15px 0 0px;
        flex-shrink: 0;
    }
}

div.detail-block.ordered-block.services > div.items-list-inner.items-list-inner--img-srl.items-list-inner--items-close.items-list-inner-template > div.grid-list.grid-list--no-gap.grid-list--wide.grid-list--items-1-wide {
    display: block;
}


.rounded {
    border-radius: 0;
}

.services-list__item-image-wrapper--TOP .services-list__item-link, .services-list__item-image-wrapper--TOP>span {
    width: 200px;
    height: 130px;
    display: inline-block;
    position: relative;
    vertical-align: top;
}

.pane_info_wrapper .pane_info .section_name {
    margin: 0 0 10px;
    font-weight: 400;
    max-width: 205px;
    word-break: normal;
}


.phones__callback {
    line-height: 16px;
    margin-left: 115px;
    margin-top: 0px;
    padding: 20px 25px 20px;
    background-color: var(--theme-base-color);
    border-color: var(--theme-base-color);
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
}


.phones__callback:hover {
    color: #ffffff;
}

.banner-home {
    width: 100%;
    /* height: 100px; */
    background-color: #984d00;
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 80px !important;
    box-sizing: border-box;
    margin: 0;
    text-align: center;
    margin-bottom: 30px;
        }

@media (max-width: 760px) {
    .banner-home {
        font-size: 15px;
        padding: 25px 20px;
        margin-bottom: 20px;
    }
}

/** **/

/* Заголовок */
.section-title {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    padding: 16px 0;
    color: #000;
    background: #fff;
    border-bottom: 2px solid #ff8c00;
}

.section-title span {
    color: #ff8c00;
}

/* Основной блок */
.content-wrapper {
    display: flex;
    flex-direction: column;
    padding: 20px 16px;
    position: relative;
}

.features-list {
    list-style: none;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    position: relative;
}



.feature-text {
    font-size: 15px;
    line-height: 1.5;
    color: #222;
}

/* Круглое фото */
.profile-circle {
    position: absolute;
    right: 8%;
    top: 50px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    border: 4px solid #ff8c00;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 10;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Эвакуатор внизу */
.evacuator-section {
    display: none;
    position: relative;
    width: 100%;
    height: auto;
    text-align: justify;
}

.evacuator-img {
    width: 100%;
    height: auto;
}

/* Кнопка заказа */
.order-btn {
        top: 15px;
        max-width: 300px;
        margin: 0 auto;
        left: 16px;
        right: 16px;
        background: #ff8c00;
        color: white;
        padding: 12px 16px;
        border-radius: 24px;
        font-weight: bold;
        text-align: center;
        font-size: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        z-index: 10;
        transition: transform 0.2s ease;
}

.order-btn:hover {
    transform: scale(1.02);
}


/* Мобильная адаптация */
@media (max-width: 480px) {
    .content-wrapper {
        padding: 16px 12px;
    }

    .section-title {
        font-size: 18px;
    }

    .feature-text {
        font-size: 14px;
    }

    .profile-circle {
        position: relative;
            top: 0px;
            bottom: 9px;
            width: 220px;
            height: 220px;
            right: -33%;
    }

    .order-btn {
        font-size: 14px;
        padding: 10px 12px;
    }

        /* Эвакуатор внизу */
        .evacuator-section {
            display: block;
            position: relative;
            width: 100%;
            height: auto;
            text-align: justify;
        }

}

/** **/
.advantages-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa502 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-title p {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.advantage-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 107, 107, 0.3);
}

.advantage-card:hover::before {
    left: 100%;
}

.advantage-card:hover .icon {
    transform: scale(1.2) rotate(10deg);
    color: #ff6b6b;
}

.advantage-card:hover .advantage-title {
    color: #ff6b6b;
}

.icon {
    font-size: 3rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    color: #ffa502;
}

.advantage-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffa502;
    transition: color 0.3s ease;
    line-height: 28px;
    margin: 15px 0 15px;
}

.advantage-text {
    color: #ccc;
    line-height: 1.6;
    font-size: 1rem;
}

/* Анимация появления при прокрутке */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.advantage-card {
    animation: fadeInUp 0.6s ease;
    animation-fill-mode: both;
}

.advantage-card:nth-child(1) {
    animation-delay: 0.1s;
}

.advantage-card:nth-child(2) {
    animation-delay: 0.2s;
}

.advantage-card:nth-child(3) {
    animation-delay: 0.3s;
}

.advantage-card:nth-child(4) {
    animation-delay: 0.4s;
}

.advantage-card:nth-child(5) {
    animation-delay: 0.5s;
}

.advantage-card:nth-child(6) {
    animation-delay: 0.6s;
}


/* Адаптивность */
@media (max-width: 768px) {
    .advantages-section {
        padding: 40px 20px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .advantage-card {
        padding: 25px;
    }

    .icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .section-title h2 {
        font-size: 1.8rem;
    }

    .section-title p {
        font-size: 1rem;
    }

    .advantage-title {
        font-size: 1.2rem;
    }
}


 /* Мобильная адаптация */
 /* Адаптация для очень маленьких экранов */
 /** **/
  /* Стили для блока "Что делать если машина не движется" */
  .what-to-do-section {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      padding: 50px 40px;
      border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .section-title {
      text-align: center;
      margin-bottom: 40px;
  }

  .section-title h2 {
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 15px;
      background: linear-gradient(135deg, #ff6b6b 0%, #ffa502 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .section-title p {
      font-size: 1.1rem;
      color: #ccc;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.6;
  }

  /* Стили табов */
  .tabs {
      display: flex;
      flex-wrap: wrap;
      margin-bottom: 30px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .tab {
      padding: 15px 25px;
      cursor: pointer;
      font-size: 1.1rem;
      font-weight: 600;
        color: #000000;
      transition: all 0.3s ease;
      position: relative;
      margin: 0 5px 10px;
    border-radius: 10px 10px 0 0;
        background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
        box-shadow: 0 4px 15px rgb(0 0 0 / 30%);
  }

  .tab.active {
      color: #fff;
      background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  }

  .tab.active::after {
      content: '';
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
      border-radius: 2px;
  }

  .tab:hover:not(.active) {
      color: #ff8c00;
      background: rgba(255, 255, 255, 0.08);
  }

  /* Стили контента табов */
  .tab-content {
      display: none;
      animation: fadeIn 0.5s ease;
  }

  .tab-content.active {
      display: block;
  }

  @keyframes fadeIn {
      from {
          opacity: 0;
          transform: translateY(10px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .content-container {
      display: flex;
      gap: 40px;
      align-items: flex-start;
  }

  .steps-container {
      flex: 1;
      min-width: 300px;
  }

  .text-container {
      flex: 1;
      min-width: 300px;
     background: rgb(196 196 196 / 33%);
      border-radius: 15px;
      padding: 25px;
      border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .step {
      display: flex;
      margin-bottom: 25px;
      padding-bottom: 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .step:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
  }

  .step-number {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, #ff6b6b 0%, #ffa502 100%);
      border-radius: 50%;
      color: white;
      font-weight: 700;
      font-size: 1.2rem;
      margin-right: 20px;
      flex-shrink: 0;
      box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
  }

  .step-content {
      flex: 1;
  }

  .step-content h3 {
      font-size: 1.3rem;
      margin-bottom: 10px;
        color: #150c01;
  }

  .step-content p {
        color: #434343;
      line-height: 1.6;
      font-size: 1rem;
  }

  /* Адаптивность */
  @media (max-width: 900px) {
      .content-container {
          flex-direction: column;
      }
  }

  @media (max-width: 768px) {
      .what-to-do-section {
          padding: 30px 20px;
      }

      .section-title h2 {
          font-size: 1.8rem;
      }

      .tab {
          padding: 12px 18px;
          font-size: 1rem;
      }


          .tabs {
              display: flex;
              flex-wrap: wrap;
              margin-bottom: 30px;
              border-bottom: 1px solid rgba(255, 255, 255, 0.1);
              flex-direction: column;
          }


  }

  @media (max-width: 480px) {
      .section-title h2 {
          font-size: 1.5rem;
      }

      .step-number {
          width: 35px;
          height: 35px;
          font-size: 1rem;
      }

      .step {
          flex-direction: column;
          align-items: flex-start;
      }

      .step-number {
          margin-bottom: 10px;
      }

          .tabs {
              display: flex;
              flex-wrap: wrap;
              margin-bottom: 30px;
              border-bottom: 1px solid rgba(255, 255, 255, 0.1);
              flex-direction: column;
          }


  }

  /* Анимация для шагов */
  @keyframes slideIn {
      from {
          opacity: 0;
          transform: translateX(-20px);
      }

      to {
          opacity: 1;
          transform: translateX(0);
      }
  }

  .step {
      animation: slideIn 0.4s ease forwards;
  }

  .step:nth-child(1) {
      animation-delay: 0.1s;
  }

  .step:nth-child(2) {
      animation-delay: 0.2s;
  }

  .step:nth-child(3) {
      animation-delay: 0.3s;
  }


        /* Стили для плашки вызова эвакуатора */
        .article-banner {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.07);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 25px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin: 30px 0;
            transition: all 0.3s ease;
        }

        .article-banner:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
            background: rgba(255, 255, 255, 0.1);
        }

        .icon {
            margin-right: 25px;
            color: #6c757d;
            font-size: 2.2rem;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 12px;
        }

        .text-content {
            flex: 1;
        }

        .text-content h3 {
            font-size: 1.6rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .text-content p {
            font-size: 1.1rem;
            color: #ccc;
            margin: 8px 0;
            line-height: 1.5;
        }

        .cta-info {
            text-align: right;
            min-width: 300px;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }

        .price-row {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            margin-bottom: 10px;
        }

        .price {
            font-size: 1.4rem;
            font-weight: 700;
            color: #ff6b6b;
            margin-right: 15px;
            text-align: right;
        }
/** 
        .phone {
            font-size: 1.2rem;
            color: #fff;
            font-weight: 600;
            text-align: right;
            letter-spacing: 0.5px;
            margin-top: 5px;
        }
            **/

        .fa-arrow-right {
            color: #ff6b6b;
            font-size: 1.3rem;
            transition: all 0.3s ease;
        }

        .article-banner:hover .fa-arrow-right {
            transform: translateX(5px);
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .article-banner {
                flex-direction: column;
                text-align: center;
                padding: 20px;
            }
            
            .icon {
                margin: 0 0 15px 0;
            }
            
            .text-content {
                text-align: center;
            }
            
            .cta-info {
                width: 100%;
                text-align: center;
                align-items: center;
            }
            
            .price-row {
                justify-content: center;
                margin-bottom: 5px;
            }
            
            .price {
                margin-right: 0;
                margin-bottom: 5px;
            }
        }

        @media (max-width: 480px) {
            .text-content h3 {
                font-size: 1.4rem;
            }
            
            .text-content p {
                font-size: 1rem;
            }
            
            .price {
                font-size: 1.2rem;
            }
            
            .phone {
                font-size: 1.1rem;
            }
        }

.evac-banner {
    display: flex;
    align-items: center;
    gap: 20px;

    padding: 20px 24px;
    margin: 24px 0;

    background: #f7f8fa;
    border-radius: 16px;

    text-decoration: none;
    color: #1c1c1c;

    transition: all 0.25s ease;
}

.evac-banner:hover {
    background: #eef1f5;
    transform: translateY(-2px);
}

/* Иконка */
.evac-banner__icon {
    font-size: 36px;
    flex-shrink: 0;
}

/* Текст */
.evac-banner__content {
    flex: 1;
}

.evac-banner__title {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.evac-banner__subtitle {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.evac-banner__text {
    font-size: 14px;
    color: #555;
}

/* Цена */
.evac-banner__price {
    font-size: 20px;
    font-weight: 700;
    color: #f4a000;
    text-align: right;
    white-space: nowrap;
}

.evac-banner__price span {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #777;
}

/* Стрелка */
.evac-banner__arrow {
    font-size: 26px;
    color: #999;
    transition: transform 0.25s ease;
}

.evac-banner:hover .evac-banner__arrow {
    transform: translateX(6px);
}

/* Адаптив */
@media (max-width: 768px) {
    .evac-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .evac-banner__price {
        text-align: left;
    }

    .evac-banner__arrow {
        align-self: flex-end;
    }
}

.evac-banner__icon {
    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #f4a000;
    /* цвет SVG */
    flex-shrink: 0;
}

.evac-banner:hover .evac-banner__icon {
    color: #d98f00;
}

.evac-banner__icon {
    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #f4a000;
    flex-shrink: 0;
    transition: color 0.25s ease;
}

.evac-banner:hover .evac-banner__icon {
    color: #d98f00;
}

/* Тёмная версия */
.dark .evac-banner__icon {
    color: #ffb400;
}

/* Анимация вращения */
@keyframes wheel-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Подготовка колёс */
.tow-svg .wheel {
    transform-origin: center;
    transform-box: fill-box;
}

/* Запуск при hover по плашке */
.evac-banner:hover .tow-svg .wheel {
    animation: wheel-rotate 0.8s linear infinite;
}

/* Маленькие колёса — чуть быстрее */
.evac-banner:hover .tow-svg .wheel.small {
    animation-duration: 0.6s;
}

.about-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        /* Главный баннер / Приветствие */
        .about-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px auto;
        }

        .badge {
            display: inline-block;
            background-color: var(--primary-color);
            color: var(--dark-color);
            font-weight: 700;
            font-size: 14px;
            text-transform: uppercase;
            padding: 6px 16px;
            border-radius: 20px;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .about-header h1 {
            font-size: 36px;
            font-weight: 800;
            margin: 0 0 20px 0;
            color: var(--dark-color);
        }

        .lead-text {
            font-size: 18px;
            color: var(--text-muted);
            margin-bottom: 15px;
        }

        .accent-text {
            font-size: 20px;
            font-weight: 600;
            color: var(--dark-color);
            border-left: 4px solid var(--primary-color);
            padding-left: 15px;
            margin: 30px 0;
            text-align: left;
        }

        /* Сетка преимуществ */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-bottom: 60px;
        }

        .feature-card {
            background: var(--light-bg);
            padding: 30px;
            border-radius: var(--radius);
            transition: var(--transition);
            border: 1px solid #eeeeee;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            border-color: var(--primary-color);
        }

        .icon-wrapper {
            width: 50px;
            height: 50px;
            background-color: #ffffff;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.03);
        }

        .icon-wrapper svg {
            width: 24px;
            height: 24px;
            fill: var(--dark-color);
        }

        .feature-card h3 {
            font-size: 20px;
            margin: 0 0 12px 0;
            color: var(--dark-color);
        }

        .feature-card p {
            font-size: 15px;
            color: var(--text-muted);
            margin: 0;
        }

        /* Блок CTA (Призыв к действию) */
        .cta-block {
            background: var(--dark-color);
            color: #ffffff;
            padding: 40px;
            border-radius: var(--radius);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        /* Легкий геометрический декор для фона CTA */
        .cta-block::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 150px;
            height: 150px;
            background: rgba(255, 204, 0, 0.1);
            border-radius: 50%;
        }

        .cta-block h2 {
            font-size: 28px;
            margin: 0 0 15px 0;
            font-weight: 700;
        }

        .cta-block p {
            color: #cccccc;
            max-width: 600px;
            margin: 0 0 25px 0;
            font-size: 16px;
        }

        .btn-call {
            display: inline-flex;
            align-items: center;
            background-color: var(--primary-color);
            color: var(--dark-color);
            text-decoration: none;
            padding: 15px 35px;
            font-size: 16px;
            font-weight: 700;
            border-radius: 30px;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
        }

        .btn-call:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 20px rgba(255, 204, 0, 0.4);
        }

        .btn-call svg {
            margin-right: 10px;
            width: 18px;
            height: 18px;
        }

        /* Адаптивность для мобильных */
        @media (max-width: 768px) {
            .about-section { padding: 40px 15px; }
            .about-header h1 { font-size: 28px; }
            .accent-text { font-size: 18px; }
            .cta-block { padding: 30px 20px; }
            .cta-block h2 { font-size: 22px; }
        }

        
