/* Общие стили */
body {
    font-family: 'Manrope', sans-serif;
    background-color: #111214;
    color: #ffffff !important;
    margin: 0;
    padding: 0;
}

/* Заголовки */
h1, h2, h3, h4 {
    font-family: 'Century Gothic', sans-serif;
    margin-bottom: 20px;
}

/* Кнопки */
button {
    padding: 12px 25px;
    background-color: #ff6401;
    border: none;
    color: #ffffff;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

button:hover {
    background-color: #ffffff;
    color: #ff6401;
    border: 2px solid #ff6401;
}

/* Навигация */
.transparent-nav {
    background-color: transparent !important; /* Меню будет прозрачным */
    padding: 20px 40px;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

nav .navbar-nav {
    margin-left: auto;
        background-color: transparent !important; /* Меню будет прозрачным */

}

nav a {
    font-family: 'Century Gothic', sans-serif;
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
    margin: 0 20px;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ff6401;
}


/* Герой секция */
.intro-section {
    background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
    url(images/hero-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: white;
    min-height: 100vh; /* Занимает всю высоту экрана */
    padding: 40px 0; /* Отступы сверху и снизу */
}

/* Центрирование по вертикали */
.d-flex.align-items-center {
    display: flex;
    align-items: center;
}

/* Выравнивание текста по левому краю */
.text-left {
    text-align: left !important;
}




.intro-list {
    counter-reset: item;
    list-style-type: none;
    padding-left: 0;
}

.intro-list li {
    counter-increment: item;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
}

.intro-list li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff6401;
    font-weight: bold;
    font-size: 1.2rem;
}

.btn-warning {
    background-color: #ff6401;
    border-color: #ff6401;
    color: white;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background-color: #ffffff;
    border-color: #e55b00;
    color: #e55b00;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .intro-section {
        padding: 40px 0;
    }
    .display-4 {
        font-size: 2.5rem;
    }
    .intro-list li {
        padding-left: 30px;
        font-size: 1rem;
    }
}

/* Секция статистики */
.statistics {
    background-color: #111214;
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 20px;
    text-align: center;
}

.statistics h2 {
    font-size: 48px;
    font-weight: lighter;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: left;
    max-width: 50%;
    margin-left: 20px;
}
.statistics p {
    font-size: 18px;
    color: #bdbdbd;
    margin-bottom: 20px;
    text-align: justify;
    margin-left: 20px;
}


.stat-item {
    background-color: #242526;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    text-align: center;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
    text-align: left;
}

.stat-item p {
    font-size: 18px;
    color: #bdbdbd;
    white-space: nowrap;
    margin: 0;
}

.partners-logos {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    text-align: center;
    
}

.partner-logo {
    width: 480px;
    height: 150px;
    text-align: left;
    border: 1px solid #242526;
    padding: 15px;
    border-radius: 16px;
    background-color: #242526;
}

.partner-logo img {
    max-width: 160px;
    margin-bottom: 10px;
}

.partner-logo p {
    font-size: 14px;
    color: #bdbdbd;
    white-space: nowrap;
    margin: 0;
}

@media (max-width: 768px) {
    .stat-item {
        width: 100%;
        margin-bottom: 20px;
    }

    .partners-logos {
        flex-direction: column;
        align-items: left;
    }

    .partner-logo img {
        max-width: 120px;
    }
}

 /* products */
.products {
    padding: 60px 20px;
    background-color: #242526;
    text-align: center;
}

.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.product-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: #ffffff;
}

.product-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
    margin-right: 10px; /* Отступ между иконкой и текстом */
    transition: transform 0.3s ease;
}

.product-item p {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    margin: 0;
}

.product-item:hover img {
    transform: scale(1.1); /* Увеличиваем иконки при наведении */
}

.product-item:hover {
    transform: scale(1.05); /* Увеличиваем карточку при наведении */
    transition: transform 0.3s ease;
}


/* ======================== */
/* Секция "Готовые решения" */
/* ======================== */
.ready-solutions {
    background: #1e1f21;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.ready-solutions .container {
    position: relative;
    z-index: 2;
}

.ready-solutions h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: left;
    color: #FFFFFF;
    max-width: 60%;
}


/* Стили для карточек решений */
.ready-solution-card {
    perspective: 1000px;
    height: 380px;
    width: 600px;
    margin-bottom: 30px;
}

.ready-solution-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.ready-solution-card:hover .ready-solution-card-inner {
    transform: rotateY(180deg);
}

/* Общие стили для обеих сторон карточки */
.ready-solution-card-front,
.ready-solution-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

/* Передняя сторона карточки */
.ready-solution-card-front {
    background: linear-gradient(135deg, #242526 0%, #1A1A1A 100%);
    border: 1px solid #333;
    justify-content: space-between;
}

.ready-solution-card-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.ready-solution-card-left img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    
    margin-left: 30px;
    margin-top: 20px;
}

.ready-solution-price {
   /* background: rgba(255,100,1,0.2); */
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 30px;
    margin-right: 100px;
   /* border: 1px solid rgba(255,100,1,0.5); */
}

.ready-solution-card-title h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0px 0px 40px 30px;
    text-align: left;
}

/* Задняя сторона карточки */
.ready-solution-card-back {
    background: linear-gradient(135deg, #242526 0%, #1A1A1A 100%);
    color: white;
    transform: rotateY(180deg);
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
}

.ready-solution-card-back p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Карточка обсуждения */
.sol-discussion-card {
    background: #242526;
    border-radius: 15px;
    padding: 30px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    max-width: 1270px;
}

.sol-discussion-card-left {
    flex: 1;
    padding-right: 30px;
    max-width: 50%;
}

.sol-discussion-card-right {
    flex: 2;
    padding-left: 30px;
    max-width: 50%;
}



.sol-discussion-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.sol-discussion-text {
    font-size: 1.1rem;
    color: #BDBDBD;
    line-height: 1.6;
}

.sol-discussion-card-divider {
    color: #FF6401;
    font-size: 2rem;
    margin: 0 30px;
    opacity: 0.5;
}

.sol-discussion-card .btn {
    white-space: nowrap;
}

/* Адаптивные стили */
@media (max-width: 992px) {
    .ready-solution-card {
        height: 350px;
    }
    
    .ready-solution-card-front,
    .ready-solution-card-back {
        padding: 25px;
    }
    
    .ready-solution-card-title h3 {
        font-size: 1.5rem;
    }
    
    .sol-discussion-card {
        flex-direction: column;
        text-align: center;
    }
    
    .sol-discussion-card-left {
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    .sol-discussion-card-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .ready-solutions {
        padding: 60px 0;
    }
    
    .ready-solutions h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .ready-solution-card {
        height: 320px;
        margin-bottom: 20px;
    }
    
    .ready-solution-card-left img {
        width: 60px;
        height: 60px;
    }
    
    .ready-solution-price {
        font-size: 1rem;
    }
    
    .sol-discussion-card {
        padding: 20px;
    }
    
    .sol-discussion-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .ready-solution-card {
        height: 300px;
    }
    
    .ready-solution-card-front,
    .ready-solution-card-back {
        padding: 20px;
    }
    
    .ready-solution-card-title h3 {
        font-size: 1.3rem;
    }
    
    .ready-solution-card-back p {
        font-size: 1rem;
    }
}



/* Стили для 5-го раздела: Инструменты */
.tools {
    padding: 60px 20px;
    background-color: #000000;
    text-align: center;
}

.tools h2 {
    font-size: 48px;
    max-width: 70%;
    text-align: left;
}

/* Контейнер для карточек */
.tools .tool-card {
    perspective: 1000px; /* Добавляем перспективу для 3D эффекта */
    height: 300px;
}

/* Внутри карточки */
.tools .tool-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d; /* Позволяет сохранять 3D эффекты для дочерних элементов */
    transition: transform 0.8s; /* Плавный переход при наведении */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
}

.tool-card-content {
    display: flex;
    justify-content: space-between;  /* Изображение слева, цена справа */
    align-items: center;
    margin-bottom: 15px;
}

/* Блок для изображения */
.tool-card-left {
    flex: 0 0 auto;  /* Устанавливаем фиксированную ширину для изображения */
}

/* Блок для цены */
.tool-card-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Передняя и задняя сторона карточки */
.tool-card-front, 
.tool-card-back {
    background: linear-gradient(135deg, #242526 0%, #1A1A1A 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden; /* Скрываем обратную сторону */
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

/* Задняя сторона карточки */
.tools .tool-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 20px;
    border-radius: 10px;
    transform: rotateY(180deg); /* Поворачиваем заднюю сторону на 180 градусов */
    backface-visibility: hidden; /* Скрываем заднюю сторону при переворачивании */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
}

/* Переворот карточки при наведении */
.tools .tool-card:hover .tool-card-inner {
    transform: rotateY(180deg); /* Переворачиваем карточку */
}

/* Цена продукта */
.tools .tool-price {
    position: relative;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 15px; /* Отступ между ценой и картинкой */
}

.tool-card-title h4 {
    font-size: 20px;
    font-weight: bold;
    color: white;
    margin-top: 10px;
}

/* Описание на задней стороне карточки */
.tools .tool-description {
    font-size: 18px;
    text-align: center;
    color: #fff;
}

/* Картинка */
.tools .tool-card img {
    width: 70px; /* Уменьшаем размер иконок */
    height: 70px;
    object-fit: contain;
    margin-bottom: 20px; /* Отступ между картинкой и текстом */
    margin-right: 40px;
}

/* Стили для карточки обсуждения */
.discussion-card {
    background: linear-gradient(135deg, #242526 0%, #1A1A1A 100%);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    color: white;
    text-align: center;
}

.discussion-card-left {
    flex: 1;
    padding: 0px 20px;
    max-width: 30%;
}

.discussion-card-right {
    flex: 2;
    max-width: 70%;
    padding-left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.discussion-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}

.discussion-text {
    font-size: 22px;

}

.discussion-card-divider {
    font-size: 30px;
    color: #ff6401;
    margin: 0 15px;
}

.discussion-card button {
    padding: 12px 25px;
    background-color: #ff6401;
    border: none;
    color: #ffffff;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
    margin-top: 10px;
}

.discussion-card button:hover {
    background-color: #ffffff;
    color: #ff6401;
    border: 2px solid #ff6401;
}

/* Стили для адаптивности */
@media (max-width: 768px) {
    .discussion-card {
        flex-direction: column; /* На мобильных устройствах карточка становится в одну колонку */
        text-align: left;
    }

    .discussion-card-left, .discussion-card-right {
        padding: 0; /* Убираем отступы для мобильных */
        margin-bottom: 10px; /* Добавляем отступ между частями карточки */
    }

    .discussion-card-divider {
        display: none; /* Убираем разделитель на мобильных */
    }

    .discussion-card button {
        width: 100%; /* Кнопка на всю ширину на мобильных */
    }
}

/* Стили для адаптивности */
@media (max-width: 768px) {
    .tools .tool-card {
        padding: 20px;
    }

    .tools .tool-title {
        font-size: 18px; /* Уменьшаем размер заголовков */
    }

    .tools .tool-price {
        font-size: 16px; /* Уменьшаем размер текста для цены */
    }

    .tools button {
        width: 100%; /* Кнопка на всю ширину для мобильных устройств */
    }
}
/* Стили для шестого раздела */
#sixth-section {
    background-color: #111214;
    color: #ffffff;
    padding: 60px 20px;
}

/* Заголовок */
#sixth-section h2 {
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 30px;
}

/* Используем CSS Grid для контейнера */
.card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 столбца */
    grid-gap: 30px; /* Расстояние между карточками */
    margin-top: 30px; /* Отступ сверху для контейнера */
}

/* Прочие стили для карточек */
.feature-card {
    background-color: #222;
    border-radius: 10px;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    height: 250px; /* Прямоугольная форма карточки */
    width: 600px;
    height: 220px;
}

.feature-card-body {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-card-title {
    font-size: 22px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 15px;
}

.feature-card-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-card-content img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-right: 50px;
}

.feature-card-text {
    font-size: 17px;
    color: #bdbdbd;
    line-height: 1.4;
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
}

/* Стили для адаптивности */
@media (max-width: 768px) {
    .feature-card-content img {
        width: 50px;
        height: 50px;
    }

    .feature-card-title {
        font-size: 20px;
    }

    .feature-card-text {
        font-size: 14px;
    }

    .feature-card-body {
        padding: 15px;
    }

    .card-grid {
        grid-template-columns: 1fr; /* 1 столбец на мобильных устройствах */
    }
}





/* Стили для раздела "Как это работает" */
.how-it-works {
    background-color: #111214;
    color: #ffffff;
    padding: 60px 20px;
}

.how-it-works h2 {
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 30px;
}

/* Стили для шагов */
.step {
    padding: 20px;
    margin-bottom: 30px;
    position: relative;

}

.step-icon {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    max-width: 50%;
}

.step-text{
max-width: 85%;
    margin-top: 100px;
}

.step-icon img {
    width: 400px;
    height: 400px;
    object-fit: contain;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.step h4 {
    font-size: 22px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
}

.step p {
    font-size: 16px;
    color: #bdbdbd;
}


/* Стили для кнопки */
.how-it-works .btn {
    width: 250px;
    padding: 12px 25px;
    background-color: #ff6401;
    border: none;
    color: #ffffff;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.how-it-works .btn:hover {
    background-color: #ffffff;
    color: #ff6401;
    border: 2px solid #ff6401;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .step-content {
        flex-direction: column;
        align-items: center;
    }

    .step-content.reverse {
        flex-direction: column-reverse;
    }

    .step-icon img {
        width: 100px;
        height: 100px;
    }

    .step h4 {
        font-size: 20px;
    }

    .step p {
        font-size: 14px;
    }

    .how-it-works .btn {
        width: 100%;
    }
}



/* Стили для раздела с партнерами */
.partners {
    background-color: #111214;
    color: #ffffff;
    padding: 60px 20px;
}

.partners h2 {
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 30px;
    margin-left: 125px;
    margin-right: 125px;
}

.partners p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #bdbdbd;
}

/* Стили для карточек */
.card {
    background-color: transparent;  /* Без границ */
    border: none;  /* Убираем границы */
    box-shadow: none;  /* Убираем тень */
    padding: 20px;
}

.card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card-title {
    font-size: 22px;
    font-weight: bold;
    color: #ffffff;
    margin-top: 15px;
}

.card-text {
    font-size: 16px;
    color: #bdbdbd;
}

/* Стили для изображений в карточках */
.card img {
    width: 420px; /* Увеличиваем размер изображений */
    height: 420px;
    object-fit: contain;
}

/* Стили для адаптивности */
@media (max-width: 768px) {
    .col-md-4 {
        width: 100%;
        margin-bottom: 20px;
    }

    .card img {
        width: 100px; /* Уменьшаем размер изображений для мобильных */
        height: 100px;
    }

    .card-title {
        font-size: 20px;
    }

    .card-text {
        font-size: 14px;
    }
}



/* Стили для секции Интеграция */
.integration {
    padding: 60px 20px;
    background-color: #111214;
    color: #ffffff;
}

.integration h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
}

.integration p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #bdbdbd;
}

/* Стили для карточек */
.integration-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.integration-step {
    background-color: #242526;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: row; /* Изменим направление на строку */
    gap: 20px;
    align-items: center; /* Размещение элементов по верхнему краю */
  
}

.integration-step p {
    max-width: 60%;
    text-align: center;
    margin-left: 25px;
    font-size: 16px;
    color: #bdbdbd;
    margin-bottom: 0;
    align-items: flex-end;
}

/* Рамка для цифры */
.step-container {
    display: flex;
    flex-direction: column; /* Размещение цифры и заголовка вертикально */
    align-items: center;
    width: 120px;
    margin-right: 15px;
    margin-left: 10px;
}

.step-number {
    background-color: #424242;
    color: #ffffff;
    font-size: 12px; /* Уменьшаем цифры */
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 10px; /* Прямоугольная рамка с закругленными углами */
    display: flex;
    align-items: center;
    justify-content: center;

}

.integration-step h4 {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    margin-top: 10px; /* Заголовок будет под цифрой */
    margin-bottom: 10px;
    white-space: nowrap;
}


/* Центрирование текста слева и карточек справа */
.row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* Кнопка */
.integration .btn {
    width: 50%;
    padding: 12px 25px;
    background-color: #ff6401;
    border: none;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    border-radius: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.integration .btn:hover {
    background-color: #ffffff;
    color: #ff6401;
    border: 2px solid #ff6401;
}

/* Дополнительные стили для адаптивности */
@media screen and (max-width: 768px) {
    .integration .btn {
        width: 100%;
    }

    .integration-steps {
        flex-direction: column;
    }

    .integration-step {
        display: block;
    }
}


/* Стили для секции Контакты */
.contacts {
    padding: 60px 20px;
    background-color: #242526;
    color: #ffffff;
}

/* Заголовок секции Контакты */
.contacts h2 {
    font-size: 48px; /* Увеличим размер заголовка */
    font-weight: bold;
    color: #ffffff; /* Оранжевый цвет для заголовков */
    margin-bottom: 20px;
}

.contacts .container {
    display: flex;

    align-items: center; /* Центрируем элементы по вертикали */
}
/* Текст для секции Контакты */
.contacts p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #bdbdbd;
}

.contacts .form-group {
    margin-bottom: 20px;
}

.contacts label {
    font-size: 16px;
    margin-bottom: 10px;
    display: block;
    color: #ffffff;
}

.contacts input[type="text"], .contacts input[type="tel"], .contacts input[type="email"] {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    background-color: #1e1f21;
    color: #ffffff;
}

.contacts .form-check {
    margin-top: 20px;
}

.contacts .form-check-label {
    font-size: 14px;
    color: #ffffff;
}

.contacts button {
    width: 100%;
    padding: 12px 25px;
    background-color: #ff6401;
    border: none;
    color: #ffffff;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.contacts button:hover {
    background-color: #ffffff;
    color: #ff6401;
    border: 2px solid #ff6401;
}

/* Стили для контактной информации */
.contact-info-wrapper {
    display: flex;
    justify-content: flex-end; /* Выравнивание справа */
    align-items: center;
    height: 100%;
}

.contact-info {
    text-align: left;
}

.contact-text {
    font-size: 22px; /* Сделаем текст еще крупнее */
    margin: 10px 0;
    color: #ffffff;
}

.contact-text a {
    color: #ffffff; /* Оранжевый цвет для ссылок */
    text-decoration: none;
    font-weight: bold;
}

.contact-text a:hover {
    text-decoration: underline;
}

/* Подвал */
.partners-footer {
    background-color: #000000;
    padding: 60px 20px;
}

/* Центрирование элементов в строках */
.partners-footer .row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px; /* Можно изменить в зависимости от нужных отступов */
}

/* Стили для логотипов партнеров */
.partners-footer img {
    max-width: 100%;
    height: auto;
}

/* Центрирование каждого логотипа */
.col-md-2, .col-md-3 {
    display: flex;
    justify-content: center;
}

/* Дополнительные стили для адаптивности */
@media screen and (max-width: 768px) {
    .col-md-2, .col-md-3 {
        width: 100% !important;
        text-align: center;
    }
}

#integration, #contacts, .partners-footer {
    margin-bottom: 40px; /* Отступы между секциями */
}

/* Адаптивность */
@media screen and (max-width: 768px) {
    .hero-section {
        padding: 50px 20px;
    }
    .solution-cards, .support-cards, .product-cards, .how-it-works-steps {
        flex-direction: column;
        gap: 20px;
    }
    .stat-item {
        width: 100%;
        margin-bottom: 20px;
    }
    .support-card, .solution-card, .product-card, .step-card {
        width: 90%;
    }
    .reward-card, .integration-step {
        width: 90%;
    }  

      .contacts .form-row {
        margin-bottom: 15px;
    }

    .contacts input[type="text"], .contacts input[type="tel"], .contacts input[type="email"] {
        padding: 10px;
        font-size: 14px;
    }

    .contacts button {
        width: 100%;
    }

         .col-md-2, .col-md-3 {
        width: 100% !important;
        text-align: center;
    }
}

.highlight-text {
    color: #ff6401;
}

hr {
    backdrop-filter: blur(8px);
}


.warning {
	position: fixed;
	bottom: 0;
	left: 0;
	display: none;
	justify-content: center;
	width: 100%;
	padding: 30px;
	box-sizing: border-box;
	background-color: rgb(0, 0, 0);
}

.warning--active {
	display: flex;
}

.warning__text {
	margin-right: 30px;
    margin-top: 10px;
}

.warning__read {
	display: block;
	margin-left: 20px;
    margin-top: 10px;
    color: #ddd;
}

.warning__apply {
    border: none;
    color: #FFFFFF;
    background-color: #ff6401;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

/* Стили для формы Bitrix24 */
.b24-form-wrapper {
    background-color: #212529 !important;
    border-radius: 8px !important;
    padding: 20px !important;
    color: white !important;
}

.b24-form-header, .b24-form-header-title {
    color: white !important;
}

.b24-form-control-label {
    color: #e2e8f0 !important;
}

.b24-form-control {
    background-color: #212529 !important;
    border: 1px solid #4a5568 !important;
    color: white !important;
    border-radius: 4px !important;
    padding: 10px 15px !important;
}

.b24-form-btn {
    background-color: #ff6401 !important; /* Цвет как у ваших кнопок */
    border: none !important;
    color: #ffffff !important;
    font-weight: bold !important;
    border-radius: 4px !important;
    padding: 12px 24px !important;
    text-transform: uppercase !important;
    transition: background-color 0.3s ease, color 0.3 ease, border 0.3 ease !important;
}

.b24-form-btn:hover {
    background-color: #ffffff !important;
    color: #ff6401 !important;
    border: 1px solid;
    border-color: #ff6401 !important;
}

/* Дополнительные стили для элементов формы */
.b24-form-padding-side {
    padding: 0 !important;
}

.b24-form-field-error {
    color: #fc8181 !important;
}