

/* Start:/local/components/new.site/banner/templates/.default/style.css?17641395502991*/
.banner {
      position: relative;
      width: 100%;
      background: url('/upload/foto-mashin/baner_photo.png') center/cover no-repeat;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      padding: 60px 80px;
      box-sizing: border-box;
    }

    /* Полупрозрачный затемнённый фон для лучшей читаемости */
    .banner::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 1;
    }

    .banner-content {
      position: relative;
      z-index: 2;
      max-width: 600px;
      color: white;
      margin-left: 375px;
      font-family: 'HeliosExtC', Arial, sans-serif;
    }

    .banner-title {
      font-size: 2.6rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 40px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    }

    .benefits-list {
      list-style: none;
      margin-bottom: 40px;
      padding-inline-start: 0px !important;
    }

    .benefit-item {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      margin-bottom: 30px;
    }

    .benefit-icon {
      width: 45px;
      height: 45px;
      flex-shrink: 0;
    }

    .benefit-text {
      font-size: 1.1rem;
      line-height: 1.5;
    }

.cta-button {
  background: #FFD700;
  color: #000;
  font-weight: 700;
  padding: 16px 64px; 
  border-radius: 8px;
  text-decoration: none;
  display: block; /* чтобы работало width: 100% */
  width: 37%;
  text-align: center;
  font-size: 1.1rem;
  transition: background 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  border: none; /* если это <button>, а не <a> */
  cursor: pointer;
  text-transform: uppercase;
}

    .cta-button:hover {
      background: #FFC107;
    }

    @media (min-width: 1300px) {
      .banner-content {
              min-width: 1200px;
      margin: 0 auto;
      }
    }


    /* Адаптивность */
    @media (max-width: 1300px) {
      .banner-content {
        margin-left: inherit;
      }
    }
    @media (max-width: 768px) {
      .banner {
        padding: 40px 20px;
      }
      .banner-title {
        font-size: 2.2rem;
      }
      .benefit-text {
        font-size: 1rem;
      }
      .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
        width: auto;
      }
       .banner-content {
        margin-left: inherit;
      }
    }

    @media (max-width: 480px) {
      .banner {
        padding: 30px 15px;
      }
      .banner-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
      }
      .benefit-item {
        gap: 10px;
        margin-bottom: 15px;
      }
      .benefit-icon {
        width: 28px;
        height: 28px;
      }
      .benefits-list {
        margin-bottom: 30px;
      }
       .banner-content {
        margin-left: auto;
      }
    }
/* End */


/* Start:/local/components/new.site/nahi-ysloviya/templates/.default/style.css?17641395993715*/
/* === ИЗОЛИРОВАННЫЕ СТИЛИ — только внутри .ysloviya === */

.ysloviya .section-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #222;
    letter-spacing: -0.5px;
    max-width: 1200px;
    padding: 30px;
    margin: 0 auto;
    font-family: 'HeliosExtC', Arial, sans-serif;
}

.ysloviya .cards-container {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
    font-family: 'HeliosExtC', Arial, sans-serif;
}

.ysloviya .card {
    background: white;
    border-radius: 14px;
    padding: 24px;
    width: 100%;
    max-width: 540px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ysloviya .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.ysloviya .card-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #1a1a1a;
    letter-spacing: -0.3px;
}

.ysloviya .card-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.ysloviya .card-list li {
    font-size: 15px;
    line-height: 1.45;
    margin-bottom: 8px;
    position: relative;
    padding-left: 18px;
    color: #444;
}

.ysloviya .card-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #666;
    font-weight: bold;
    font-size: 14px;
}

/* === КНОПКА === */
.ysloviya .btn-yellow {
    background: linear-gradient(135deg, #FFD700);
    color: #000;
    border: none;
    padding: 16px 64px;
    font-size: 15px;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.25s ease;
    display: block;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(255, 215, 0, 0.2);
    width: fit-content;
    margin-top: auto;
    font-weight: 700;
    text-transform: uppercase;
}

.ysloviya .btn-yellow:hover {
    background: linear-gradient(135deg, #FFC107, #FFB300);
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.ysloviya .btn-yellow:active {
    transform: scale(0.99);
}

/* === АДАПТИВ === */
@media (max-width: 992px) {
    .ysloviya .cards-container {
        gap: 20px;
    }

    .ysloviya .card {
        max-width: 550px;
        padding: 22px;
    }

    .ysloviya .card-title {
        font-size: 19px;
    }

    .ysloviya .card-list li {
        font-size: 14px;
        line-height: 1.4;
    }

    .ysloviya .btn-yellow {
        padding: 11px 18px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .ysloviya {
        padding: 0 16px;
    }

    .ysloviya .section-title {
        font-size: 24px;
        margin-bottom: 20px;
        padding: 20px 0;
    }

    .ysloviya .cards-container {
        gap: 16px;
    }

    .ysloviya .card {
        max-width: 100%;
        padding: 20px;
    }

    .ysloviya .card-title {
        font-size: 18px;
    }

    .ysloviya .card-list li {
        font-size: 14px;
        line-height: 1.4;
    }

    .ysloviya .btn-yellow {
        padding: 10px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .ysloviya {
        padding: 0 12px;
    }

    .ysloviya .section-title {
        font-size: 22px;
        margin-bottom: 16px;
        padding: 16px 0;
    }

    .ysloviya .card {
        padding: 18px;
    }

    .ysloviya .card-title {
        font-size: 17px;
    }

    .ysloviya .card-list li {
        font-size: 13px;
        line-height: 1.4;
    }

    .ysloviya .btn-yellow {
        padding: 9px 14px;
        font-size: 13px;
    }
}
/* End */


/* Start:/local/components/new.site/trebovaniya/templates/.default/style.css?17640789034712*/
.component-wrapper {
    background-color: #1A1919; /* Фон на всю ширину */
    width: 100%;
}

.requirements-section {
  background: #1A1919;
  padding: 60px;
  text-align: center;
  font-family: 'HeliosExtC', Arial, sans-serif;
}

.requirements-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: white;
  max-width: 1200px;
  margin-top: auto;
  margin: 0 auto;
  text-align: left;
  padding-bottom: 30px;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.requirement-card {
  background: white;
  padding: 25px 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}

.requirement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.requirement-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
  fill: #FFD700; /* если SVG — цвет иконки */
}

/* Если используешь img, а не SVG — можно оставить как есть */

.requirement-heading {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.requirement-text {
  color: #666;
  line-height: 1.45;
  margin: 0;
}

/* Адаптивность */

/* === ПЛАНШЕТНАЯ ВЕРСИЯ: 2 карточки + карусель === */
@media (min-width: 577px) and (max-width: 992px) {
  .requirements-section {
    padding: 40px 10px;
  }

  .requirements-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .requirements-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 15px;
    padding-bottom: 15px;
    flex-wrap: nowrap;
    width: 100%;
    padding: 0 5px;
    scrollbar-width: none;
  }

  .requirements-grid::-webkit-scrollbar {
    display: none;
  }

  .requirement-card {
    min-width: calc((100vw - 30px - 15px) / 2);
    max-width: calc((100vw - 30px - 15px) / 2);
    padding: 22px 18px;
    flex-shrink: 0;
    box-sizing: border-box;
    background: white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  }

  .requirement-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 10px;
  }

  .requirement-heading {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
  }

  .requirement-text {
    color: #666;
    line-height: 1.4;
    margin: 0;
  }

  /* Полоса прогресса */
  .scroll-indicator {
    height: 6px;
    background: #333;
    border-radius: 3px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
  }

  .scroll-indicator .progress-bar {
    height: 100%;
    background: #FFD700;
    width: 30%; /* Начальная ширина — 30% */
    border-radius: 3px;
    transition: width 0.3s ease;
  }
}

/* === МОБИЛЬНАЯ ВЕРСИЯ: 1 карточка + карусель === */
@media (max-width: 576px) {
  .requirements-section {
    padding: 40px 15px;
  }

  .requirements-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .requirements-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 15px;
    padding-bottom: 15px;
    flex-wrap: nowrap;
    width: 100%;
    padding: 0;
    scrollbar-width: none;
  }

  .requirements-grid::-webkit-scrollbar {
    display: none;
  }

  .requirement-card {
    min-width: calc(100vw - 30px);
    max-width: calc(100vw - 30px);
    padding: 20px 15px;
    flex-shrink: 0;
    box-sizing: border-box;
    background: white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  }

  .requirement-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 8px;
  }

  .requirement-heading {
    font-size: 1.rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
  }

  .requirement-text {
    color: #666;
    line-height: 1.4;
    margin: 0;
  }

  /* Полоса прогресса */
  .scroll-indicator {
    height: 6px;
    background: #333;
    border-radius: 3px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
  }

  .scroll-indicator .progress-bar {
    height: 100%;
    background: #FFD700;
    width: 30%; /* Начальная ширина — 30% */
    border-radius: 3px;
    transition: width 0.3s ease;
  }
}
/* End */


/* Start:/local/components/new.site/opisanie/templates/.default/style.css?17640788781344*/
.new-text-section {
  background: #E8E8E8;
  width: 100vw; /* Растягиваем фон на всю ширину окна */
  margin-left: 50%; /* Смещаем влево на 50% */
  transform: translateX(-50%); /* Центрируем обратно */
  box-sizing: border-box;
}

.new-text-content {
  max-width: 1200px; /* Ограничение ширины текста */
  margin: 0 auto; /* Центрирование */
  padding: 60px; /* Отступы внутри */
  font-family: 'HeliosExtC', Arial, sans-serif;
  line-height: 1.6;
}

.new-text-content p {
  margin: auto;
  font-size: 20px;
}

.new-text-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 2em 0 1em;
  color: #000;
}

.new-text-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 1.5em 0 0.8em;
  color: #000;
}

.new-text-content ul,
.new-text-content ol {
  margin: 1em 0 1.2em 1.5em;
  padding-left: 0;
}

.new-text-content ul li,
.new-text-content ol li {
  margin-bottom: 0.5em;
  font-size: 20px;
}

/* Адаптивность */
@media (max-width: 768px) {
  .new-text-content {
    padding: 30px 20px;
  }

  .new-text-content h2 {
    font-size: 1.6rem;
    margin: 0.5em 0 0.5em;
  }

  .new-text-content h3 {
    font-size: 1.2rem;
  }

  .new-text-content p,
  .new-text-content li {
    font-size: 0.95rem;
  }
}
/* End */


/* Start:/local/components/new.site/calculator/templates/.default/style.css?17640789266887*/
/* === ИЗОЛИРОВАННЫЕ СТИЛИ — только внутри .calculator-wrapper === */

.calculator-wrapper .calculator-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    font-family: 'HeliosExtC', Arial, sans-serif;
}

.calculator-wrapper .calculator-header {
    font-weight: 600;
    margin-bottom: 2rem;
    margin-top: auto;
    font-size: 2.3rem;
    font-weight: 700;
}

.calculator-wrapper .main-content-wrapper {
    display: contents;
}

.calculator-wrapper .calculator-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.calculator-wrapper .calculator-left {
    flex: 1;
}

.calculator-wrapper .calculator-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.calculator-wrapper .section-title {
    margin-bottom: 0.5rem;
}

.calculator-wrapper .button-group {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.calculator-wrapper .btn {
    background: #FFD700;
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s ease;
    min-width: 50px;
    text-align: center;
}

.calculator-wrapper .btn:hover {
    background: #FFD54F;
}

.calculator-wrapper .btn.selected {
    background: #222;
    color: white;
}

.calculator-wrapper .result-box {
    background: #eee;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    margin-top: 0;
    width: 300px;
    flex-shrink: 0;
}

.calculator-wrapper .result-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #555;
}

.calculator-wrapper .result-amount {
    font-size: 2rem;
    font-weight: 700;
    margin: 0.5rem 0;
    color: #000;
    display: inline-block;
}

.calculator-wrapper .result-currency {
    font-size: 1rem;
    color: #555;
    display: inline-block;
    margin-left: 0.5rem;
}

.calculator-cta-button {
    background: #FFD700;
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s ease;
    max-width: 300px;
    margin: 1rem auto;
    text-align: center;
    display: block;
    text-decoration: none;
    font-family: 'HeliosExtC', Arial, sans-serif;
    padding: 16px 64px;
}

.calculator-cta-button:hover {
    background: #FFD54F;
}

.calculator-wrapper .benefits-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #eee;
    border-radius: 12px;
    align-items: center;
    margin-top: 1.7rem;
}

.calculator-benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    flex: 1 1 auto;
    min-width: 0;
    font-size: 0.9rem;
    box-sizing: border-box;
}

.calculator-wrapper .benefit-icon {
    width: 45px;
    height: 45px;
    background: #222;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.calculator-wrapper .benefit-icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.calculator-wrapper .benefit-text {
    font-size: 0.85rem;
    line-height: 1.3;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* === АДАПТИВ === */

@media (min-width: 1024px) and (max-width: 1250px) {
    .calculator-wrapper .benefits-row {
        flex-wrap: wrap;
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .calculator-benefit-item {
        flex: 1 1 calc(50% - 0.375rem);
        min-width: auto;
        max-width: 50%;
        padding: 0.75rem 1rem;
        box-sizing: border-box;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .calculator-wrapper .main-content-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }

    .calculator-wrapper .calculator-content {
        display: contents;
    }

    .calculator-wrapper .calculator-left {
        order: 1;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .calculator-wrapper .button-group {
        justify-content: center;
    }

    .calculator-wrapper .btn {
        min-width: 45px;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .calculator-wrapper .benefits-row {
        order: 2;
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-top: 0;
        padding: 0.75rem;
        background: #eee;
        border-radius: 12px;
        width: 100%;
        max-width: 600px;
    }

    .calculator-benefit-item {
        flex: 1 1 calc(50% - 0.375rem);
        min-width: 0;
        max-width: 50%;
        padding: 0.75rem 1rem;
        box-sizing: border-box;
    }

    .calculator-wrapper .benefit-icon {
        width: 30px;
        height: 30px;
    }

    .calculator-wrapper .result-box {
        order: 3;
        width: 100%;
        max-width: 400px;
        margin-top: 0;
        padding: 1rem;
    }

    .calculator-wrapper .result-amount {
        font-size: 1.75rem;
    }

    .calculator-wrapper .cta-button {
        max-width: 100%;
        padding: 0.6rem 1.25rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 767px) {
    .calculator-wrapper .calculator-container {
        padding: 1rem;
    }

    .calculator-wrapper .calculator-header {
        font-size: 1.5rem;
    }

    .calculator-wrapper .main-content-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        text-align: center;
    }

    .calculator-wrapper .calculator-content {
        display: contents;
    }

    .calculator-wrapper .calculator-left {
        order: 1;
        width: 100%;
    }

    .calculator-wrapper .btn {
        padding: 0.5rem 1rem;
        min-width: 40px;
        font-size: 0.9rem;
    }

    .calculator-wrapper .benefits-row {
        order: 2;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .calculator-benefit-item {
        width: 100%;
        padding: 1px;
    }

    .calculator-wrapper .benefit-icon {
        width: 30px;
        height: 30px;
    }

    .calculator-wrapper .benefit-icon img {
        width: 30px;
        height: 30px;
    }

    .calculator-wrapper .result-box {
        order: 3;
        width: 100%;
        max-width: 400px;
        padding: 1rem;
    }

    .calculator-wrapper .result-amount {
        font-size: 1.75rem;
    }

    .calculator-wrapper .cta-button {
        max-width: 100%;
        padding: 0.6rem 1.25rem;
        font-size: 0.95rem;
    }
}
/* End */


/* Start:/local/components/new.site/preimushchestva/templates/.default/style.css?17640788445205*/
.preimushchestva-component-wrapper {
    background-color: #1A1919; /* Фон на всю ширину */
    padding: 60px;
}

.advantages-section {
  background: #1A1919;
  text-align: center;
  font-family: 'HeliosExtC', Arial, sans-serif;.advantages-title
}

.advantages-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: white;
  margin: 0 auto;
    max-width: 1200px;
    text-align: left;
    padding-bottom: 30px;
}

/* Центрируем сетку на больших экранах */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.advantage-card {
  background: white;
  padding: 30px 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08); 

  /* === ФИКСИРУЕМ РАЗМЕРЫ === */
  width: 90%; /* Фиксированная ширина */
  height: 160px; /* Фиксированная высота */
  min-height: 165px; /* Защита от сжатия */
}

.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.advantage-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
}

.advantage-text {
  font-size: 20px;
  line-height: 1.45;
}

/* === ПЛАНШЕТНАЯ ВЕРСИЯ: 2 карточки + карусель === */

@media (min-width: 577px) and (max-width: 992px) {
  .advantages-section {
    padding: 40px 10px;
  }
  .preimushchestva-component-wrapper {
    padding: 0px;
  }

  .advantages-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .advantages-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 15px;
    padding-bottom: 15px;
    flex-wrap: nowrap;
    width: 100%;
    padding: 0 5px;
    scrollbar-width: none;
  }

  .advantages-grid::-webkit-scrollbar {
    display: none;
  }

  .advantage-card {
    /* === ФИКСИРУЕМ РАЗМЕРЫ === */
    width: 300px; /* Фиксированная ширина */
    height: 250px; /* Фиксированная высота */
    min-width: 300px; /* Защита от сжатия */
    min-height: 250px; /* Защита от сжатия */
    padding: 20px 15px;
    flex-shrink: 0;
    box-sizing: border-box;
    background: white;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .advantage-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
  }

  .advantage-text {
    font-size: 1rem;
    color: #333;
    line-height: 1.4;
    font-weight: 500;
  }

  /* Полоса прогресса */
  .scroll-indicator {
    height: 6px;
    background: #333;
    border-radius: 3px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
  }

  .scroll-indicator .progress-bar {
    height: 100%;
    background: #FFD700;
    width: 50%; /* Начальная ширина — 50% */
    border-radius: 3px;
    transition: width 0.3s ease;
  }
}

@media (max-width: 576px) {
  .advantages-section {
    padding: 40px 15px;
  }
  .preimushchestva-component-wrapper {
    padding: 0px;
  }

  .advantages-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .advantages-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 15px;
    padding-bottom: 15px;
    flex-wrap: nowrap;
    width: 100%;
    padding: 0;
    scrollbar-width: none;
  }

  .advantages-grid::-webkit-scrollbar {
    display: none;
  }

  .advantage-card {
    /* === ФИКСИРУЕМ РАЗМЕРЫ === */
    width: 200px; /* Фиксированная ширина (чуть меньше для мобилки) */
    height: 200px; /* Фиксированная высота */
    min-width: 20px; /* Защита от сжатия */
    min-height: 20px; /* Защита от сжатия */
    padding: 30px 15px;
    flex-shrink: 0;
    box-sizing: border-box;
    background: white;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .advantage-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .advantage-text {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.4;
    font-weight: 500;
  }

  /* Контейнер для динамической полосы прокрутки */
  .scroll-indicator {
    height: 6px;
    background: #333; /* Тёмный фон */
    border-radius: 3px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
  }

  .scroll-indicator .progress-bar {
    height: 100%;
    background: #FFD700;
    width: 30%; /* Начальная ширина — 30% */
    border-radius: 3px;
    transition: width 0.3s ease; /* Плавное изменение ширины */
  }
}
/* End */


/* Start:/local/components/new.site/reviews/templates/.default/style.css?17640789494119*/
.reviews-component-wrapper {
    background-color: #E8E8E8; /* Фон на всю ширину */
}

        .reviews-container {
            position: relative; /* Для позиционирования стрелок */
            font-family: 'HeliosExtC', Arial, sans-serif;
            padding: 60px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .reviews-header {
            font-size: 2rem;
            font-weight: 700;
            margin: 0 auto;
    max-width: 1200px;
    text-align: left;
    padding-bottom: 30px;
        }

        @media (max-width: 767px) {
            .reviews-header {
                margin-right: 0;
                padding-right: 60px; /* Переносим отступ на padding */
                text-align: left; /* Выравниваем заголовок по левому краю */
                margin-bottom: 30px;
            }
        }

        .reviews-slider-wrapper {
            position: relative;
            overflow: hidden;
            padding: 1rem 0;
        }

        .reviews-slider {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            transition: transform 0.5s ease;
            width: 100%;
        }

        .review-card {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            min-width: 280px;
            display: flex;
            flex-direction: column;
            box-sizing: border-box;
            min-height: 300px;
            justify-content: space-between;
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
        }

        .avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .review-name {
            font-weight: 600;
            font-size: 1rem;
        }

        .review-text {
            line-height: 1.6;
            font-size: 0.95rem;
            color: #555;
            flex-grow: 1;
        }

        /* Кнопки навигации — НАСЛАИВАЮТСЯ НА ЗАГОЛОВОК */
        .reviews-nav {
            position: absolute;
            top: 0;
            right: 0;
            display: flex;
            gap: 0.5rem;
            z-index: 10;
            margin-top: 30px;
        }

        .nav-button {
            background: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.2s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .nav-button:hover {
            background: #f0f0f0;
        }

        /* Адаптивность */

        @media (min-width: 768px) {
            .review-card {
                flex: 0 0 calc((100% - 3rem) / 3); /* 3 отзыва */
            }
            .reviews-nav {
                top: 0;
                right: 0;
            }
        }

        @media (max-width: 767px) and (min-width: 480px) {
            .review-card {
                flex: 0 0 calc((100% - 1.5rem) / 2); /* 2 отзыва */
            }
            .reviews-header {
                font-size: 1.7rem;
            }
            .reviews-nav {
                top: 0;
                right: 0.5rem;
            }
        }

        @media (max-width: 479px) {
            .review-card {
                flex: 0 0 100%; /* 1 отзыв */
            }
            .reviews-header {
                font-size: 1.5rem;
            }
            .reviews-nav {
                top: 0;
                right: 0.5rem;
            }
        }
/* End */


/* Start:/local/components/new.site/faq/templates/.default/style.css?17640044531916*/
.faq-section {
  padding: 60px;
  text-align: center;
  background: white;
  font-family: 'HeliosExtC', Arial, sans-serif;
}

.faq-title {
  font-size: 2.3rem;
  font-weight: 700;
  margin: 0 auto;
    max-width: 1200px;
    text-align: left;
    padding-bottom: 30px;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: box-shadow 0.2s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.faq-question {
  width: 100%;
  background: #8A8B8A14;
  padding: 16px 20px;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: #eaeaea;
}

.faq-question.active {
  background: #FFC803; /* Жёлтый при активации */
  color: #000;
}

.faq-arrow {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.faq-question.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 1.1rem;
  color: #666;
  line-height: 1.5;
}

.faq-answer.show {
  padding: 16px 20px;
  max-height: 200px; /* Достаточно для большинства ответов */
}

/* Адаптивность */

@media (max-width: 768px) {
  .faq-section {
    padding: 40px 20px;
  }
  .faq-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .faq-container {
    max-width: 100%;
  }
  .faq-question {
    padding: 14px 16px;
    font-size: 0.95rem;
  }
  .faq-answer {
    padding: 0 16px;
  }
  .faq-answer.show {
    padding: 14px 16px;
  }
}

/* End */


/* Start:/local/components/new.site/form/templates/.default/style.css?17639998986420*/
.b24-form-content form {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: flex-end !important;
    gap: 10px !important;
    justify-content: space-between !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.b24-form-content form > div:first-child {
    display: flex !important;
    gap: 15px !important;
    flex: 1 !important;
    margin-bottom: 0 !important;
}

.b24-form-content form > div:first-child > div {
    flex: 1 !important;
    margin-bottom: 0 !important;
}

.b24-form-btn-container {
    flex-shrink: 0 !important;
    margin-bottom: 0 !important;
    width: auto !important;
}

.b24-form-btn-block {
    margin-bottom: 0 !important;
}

/* Адаптивность */
@media (max-width: 768px) {
    .b24-form-content form {
        flex-direction: column !important;
    }

    .b24-form-content form > div:first-child {
        flex-direction: column !important;
    }

    .b24-form-btn-container {
        width: 100% !important;
    }
}

/* Мобильная версия */
@media (max-width: 768px) {
    .b24-form-content form > div:nth-child(1) {
        flex-direction: column;
    }
}

.b24-form-wrapper {
    min-height: auto !important;
    max-width: none !important;
    background-color: #1A1919 !important; /* Цвет фона изменён */
}

.new-crm-form-wrapper, .b24-form {
    background-color: #1A1919 !important; /* Цвет фона изменён */
    padding: 60px !important;
    text-align: center !important;
    font-family: 'HeliosExtC', Arial, sans-serif;
    color: #fff !important;
}

.b24-form {
    padding: 0px !important;
}

.new-crm-form-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
    text-align: left; /* Заголовок по левому краю */
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
}

.new-crm-form-row {
    display: flex !important;
    gap: 10px !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    max-width: 900px !important;
    margin: 0 auto !important;
    flex-wrap: nowrap !important;
}

.new-crm-field, .b24-form-control-container {
    position: relative !important;
    flex: 1 1 0 !important;
    min-width: 150px !important;
    display: flex !important;
    flex-direction: column !important;
}

.new-crm-label {
    display: block;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
    text-align: left;
}

.new-crm-input, .b24-form-control {
    padding: 12px 15px !important;
    border: 1px solid #555 !important;
    border-radius: 6px !important;
    background-color: #fff !important;
    color: #000 !important;
    font-family: 'HeliosExtC', Arial, sans-serif !important; /* Шрифт добавлен */
    font-size: 14px !important; /* Установлен размер шрифта */
    transition: border-color 0.2s !important;
    height: 44px !important; /* Фиксированная высота */
    box-sizing: border-box !important;
}

.b24-form-control-label {
    text-align: left !important;
}

.new-crm-input:focus {
    outline: none;
    border-color: #FFD700;
}

.new-crm-button, .b24-form-btn {
    height: 44px !important; /* Та же высота, что и у полей */
    padding: 0 20px !important; /* Убираем вертикальный padding */
    background-color: #FFD700 !important;
    color: #000 !important;
    border: none !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    transition: background-color 0.2s !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 180px !important;
    min-height: auto !important;
    font-family: 'HeliosExtC', Arial, sans-serif !important; /* Шрифт добавлен */
    font-weight: 600 !important;
    font-size: 14px !important;
    line-height: 22px !important;
}

.new-crm-button:hover {
    background-color: #FFC107;
}

.new-crm-policy {
    font-size: 8px;
    color: #aaa;
    margin-top: 5px;
    text-align: end;
    line-height: 1.4;
    max-width: 1000px;
    margin: 5px auto 0;
}

.b24-form-wrapper.b24-form-shadow {
box-shadow: none !important;
}

/* Адаптивность для планшета */
@media (max-width: 1024px) and (min-width: 769px) {
    .new-crm-form-wrapper {
        padding: 30px 15px;
    }

    .new-crm-form-title {
        font-size: 20px;
        text-align: center;
        margin-left: 0;
        margin-right: 0;
    }

    .new-crm-form-row {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .new-crm-field {
        min-width: auto;
    }

    .new-crm-input, .b24-form-control {
        padding: 10px 12px !important;
        font-size: 13px !important;
        height: 42px !important; /* Адаптивная высота */
    }

    .new-crm-button, .b24-form-btn {
        height: 42px !important; /* Та же высота */
        padding: 0 15px !important;
        font-size: 14px !important;
        min-width: auto !important;
        width: 100%;
        align-self: stretch;
    }

    .new-crm-policy {
        text-align: left;
        margin-top: 8px;
    }
}

/* Адаптивность для телефона */
@media (max-width: 768px) {
    .new-crm-form-wrapper {
        padding: 20px 10px;
    }

    .new-crm-form-title {
        font-size: 18px;
        text-align: center;
        margin-left: 0;
        margin-right: 0;
    }

    .new-crm-form-row {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .new-crm-field {
        min-width: auto;
    }

    .new-crm-input, .b24-form-control {
        padding: 8px 10px !important;
        font-size: 12px !important;
        height: 40px !important; /* Адаптивная высота */
    }

    .new-crm-button, .b24-form-btn {
        height: 40px !important; /* Та же высота */
        padding: 0 12px !important;
        font-size: 12px !important;
        min-width: auto !important;
        width: 100%;
        align-self: stretch;
    }

    .new-crm-policy {
        font-size: 11px;
        text-align: left;
        margin-top: 8px;
    }
}
/* End */


/* Start:/local/components/new.site/map/templates/.default/style.css?17640005823010*/
    #map {
        width: 100%;
        height: 500px; /* Базовая высота */
        position: relative;
    }
    .info-panel {
        position: absolute;
        top: 55%; /* Базовая позиция для больших экранов */
        left: 35%; /* Базовая позиция для больших экранов */
        transform: translate(-50%, -50%); /* Центрируем по вертикали и горизонтали относительно своей позиции */
        background: #1A1919;
        color: white;
        padding: 20px 50px 20px 40px; /* Изменили padding как в вашем коде */
        border-radius: 8px;
        max-width: 280px;
        font-family: 'HeliosExtC', Arial, sans-serif;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        z-index: 1000;
        margin-top: -60px; /* При необходимости можно убрать или изменить */
        font-size: 16px;
    }

    /* Адаптив для info-panel */
    @media (max-width: 1400px) {
        .info-panel {
            left: 30%;
            padding: 20px;
        }
    }
    @media (max-width: 998px) {
        .info-panel {
            left: 25%;
            padding: 20px;
        }
    }

   @media (max-width: 768px) {
    /* Увеличиваем высоту карты на мобильных */
    #map {
        height: 600px; /* Можно изменить это значение под ваши предпочтения */
    }

    .info-panel {
        /* Позиционируем ВЕРХНИЙ край панели под меткой */
        top: calc(50% + 100px); 
        left: 50%; 
        transform: translateX(-50%); 
        max-width: 75vw; 
        width: 90vw; 
        padding: 15px; 
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.4);
    }
}

    .info-panel h3 {
        margin-top: 0;
        margin-bottom: 10px;
    }
    .info-panel p {
        margin: 8px 0;
        line-height: 1.4;
    }
    .phone {
        font-size: 24px;
        font-weight: bold;
        margin: 15px 0;
        color: #fff;
        text-decoration: underline; /* Сделаем как ссылку */
        cursor: pointer; /* Покажем, что элемент кликабелен */
    }
    .phone:hover {
        opacity: 0.8; /* Легкий эффект при наведении */
    }
    .social-icons {
        display: flex;
        gap: 10px;
        margin-top: 15px;
    }
    .social-icons a {
        display: inline-block;
        width: 32px;
        height: 32px;
        background-size: contain;
        background-repeat: no-repeat;
        text-decoration: none;
    }
    .yt { background-image: url('/upload/foto-mashin/ikonki/Icons.svg'); } /* Убрали лишние пробелы */
    .tg { background-image: url('/upload/foto-mashin/ikonki/telega.svg'); }
    .vk { background-image: url('/upload/foto-mashin/ikonki/vk.svg'); }
/* End */
/* /local/components/new.site/banner/templates/.default/style.css?17641395502991 */
/* /local/components/new.site/nahi-ysloviya/templates/.default/style.css?17641395993715 */
/* /local/components/new.site/trebovaniya/templates/.default/style.css?17640789034712 */
/* /local/components/new.site/opisanie/templates/.default/style.css?17640788781344 */
/* /local/components/new.site/calculator/templates/.default/style.css?17640789266887 */
/* /local/components/new.site/preimushchestva/templates/.default/style.css?17640788445205 */
/* /local/components/new.site/reviews/templates/.default/style.css?17640789494119 */
/* /local/components/new.site/faq/templates/.default/style.css?17640044531916 */
/* /local/components/new.site/form/templates/.default/style.css?17639998986420 */
/* /local/components/new.site/map/templates/.default/style.css?17640005823010 */
