/* =================================================================
   TOBUILD - ПОЛНЫЙ CSS ФАЙЛ
   Все стили вынесены из HTML атрибутов style="..."
   ================================================================= */

/* =================================================================
   1. ОБЩИЕ СТИЛИ И УТИЛИТЫ
   ================================================================= */
.cursor-pointer {
    cursor: pointer;
}

.hover-bg-light:hover {
    background-color: #F9F9F9;
}

.text-orange {
    color: #E74915 !important;
}

.bg-orange {
    background-color: #FF6B35 !important;
}

.fw-medium {
    font-weight: 500;
}

.fw-semibold {
    font-weight: 600;
}

.object-fit-cover {
    object-fit: cover;
}

.shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.section-padding {
    padding: 80px 0;
}

/* =================================================================
   2. HEADER (ШАПКА САЙТА)
   ================================================================= */
.header {
    position: sticky;
    top: 0;
    background-color: #FFFFFF;
    z-index: 1030;
}

.header__top {
    padding-bottom: 16px;
    gap: 12px;
}

.header__logo {
    max-width: 180px;
}

.header__logo-link {
    width: 180px;
    height: 50px;
}

.header__search-wrapper {
    max-width: 700px;
}

.header__catalog-btn {
    width: 100px;
    height: 44px;
    font-size: 14px;
    color: #F0F0F0 !important;
    background-color: rgba(231, 73, 21, 1) !important;
    border-radius: 15px !important;
}

.header__search {
    height: 44px;
    padding: 10px;
    background-color: #F5F5F5;
    outline: 1.5px solid #c93d0f !important;
    border-radius: 15px;
}

.header__search-icon {
    width: 20px;
    height: 20px;
}

.header__search-input {
    font-size: 14px;
    color: #6B7280;
}

.header__actions {
    gap: 16px;
}

.header__action-item {
    color: #1E1E1E;
}

.header__action-icon {
    width: 20px;
    height: 20px;
}

.header__action-text {
    font-size: 13px;
    color: #1E1E1E;
}

.header__profile-icon {
    width: 44px;
    height: 44px;
}

.header__bottom {
    padding: 12px 0;
    border-top: 1px solid #E0E4EC;
}

.header__company-text {
    font-size: 14px;
    color: #1E1E1E;
}

.header__nav-list {
    gap: 40px;
}

.header__nav-link {
    font-size: 14px;
    color: #1E1E1E;
}

.header__location-icon {
    width: 20px;
    height: 20px;
}

.header__location-text {
    font-size: 14px;
    color: #1E1E1E;
}

/* Мобильный header */
.mobile-header {
    background-color: #FFFFFF;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.mobile-logo-img {
    height: 40px;
    width: auto;
}

.cart-badge {
    font-size: 10px;
    padding: 2px 5px;
}

/* Адаптивы для Header */
@media (max-width: 1199.98px) {
    .header__nav-list {
        gap: 25px !important;
    }
    .header__nav-link {
        font-size: 13px !important;
    }
    .header__search-wrapper {
        max-width: 500px !important;
    }
}

@media (max-width: 991.98px) {
    .header.d-none.d-lg-block {
        display: none !important;
    }
    .mobile-header {
        display: block !important;
    }
}

@media (max-width: 767.98px) {
    .header__top {
        padding-bottom: 15px !important;
        gap: 15px !important;
    }
    .header__logo {
        max-width: 150px;
    }
    .header__logo-link {
        width: 150px !important;
        height: 45px !important;
    }
    .header__search-wrapper {
        max-width: 100% !important;
        width: 100%;
        order: 3;
    }
    .header__catalog-btn {
        width: 90px !important;
        height: 40px !important;
        font-size: 13px !important;
    }
    .header__search {
        height: 40px !important;
    }
    .header__search-input {
        font-size: 13px !important;
    }
    .header__actions {
        gap: 20px !important;
    }
    .header__action-text {
        display: none;
    }
    .header__action-icon {
        width: 24px !important;
        height: 24px !important;
    }
    .header__profile-icon {
        width: 40px !important;
        height: 40px !important;
    }
    .header__bottom {
        padding: 15px 0 !important;
        flex-direction: column;
        gap: 15px;
        align-items: flex-start !important;
    }
    .header__company-link {
        width: 100%;
        text-align: center;
    }
    .header__nav {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .header__nav-list {
        justify-content: flex-start !important;
        gap: 20px !important;
        padding-bottom: 5px;
        flex-wrap: nowrap;
    }
    .header__nav-link {
        white-space: nowrap;
        font-size: 13px !important;
    }
    .header__location {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .header__top {
        gap: 10px !important;
    }
    .header__logo {
        max-width: 120px;
    }
    .header__logo-link {
        width: 120px !important;
        height: 40px !important;
    }
    .header__catalog-btn {
        width: 80px !important;
        height: 38px !important;
        font-size: 12px !important;
        padding: 8px 12px !important;
    }
    .header__search {
        height: 38px !important;
        padding: 8px !important;
    }
    .header__search-icon {
        width: 18px !important;
        height: 18px !important;
    }
    .header__search-input {
        font-size: 12px !important;
    }
    .header__actions {
        gap: 15px !important;
    }
    .header__action-icon {
        width: 22px !important;
        height: 22px !important;
    }
    .header__profile-icon {
        width: 36px !important;
        height: 36px !important;
    }
    .header__bottom {
        gap: 12px !important;
    }
    .header__company-text {
        font-size: 13px !important;
    }
    .header__nav-list {
        gap: 15px !important;
    }
    .header__nav-link {
        font-size: 12px !important;
    }
    .header__location-icon {
        width: 18px !important;
        height: 18px !important;
    }
    .header__location-text {
        font-size: 13px !important;
    }
}

@media (max-width: 399.98px) {
    .header__logo {
        max-width: 100px;
    }
    .header__logo-link {
        width: 100px !important;
        height: 35px !important;
    }
    .header__catalog-btn {
        width: 70px !important;
        height: 36px !important;
        font-size: 11px !important;
    }
    .header__search-input {
        font-size: 11px !important;
    }
    .header__action-text {
        display: none !important;
    }
    .header__nav-list {
        gap: 10px !important;
    }
    .header__nav-link {
        font-size: 11px !important;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1800px !important;
    }
    .header__nav-list {
        gap: 50px !important;
    }
    .header__nav-link {
        font-size: 15px !important;
    }
    .header__search-wrapper {
        max-width: 900px !important;
    }
}

/* =================================================================
   3. HERO BANNER (ГЛАВНЫЙ БАННЕР)
   ================================================================= */
.hero-banner {
    background: linear-gradient(272deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.50) 100%), rgba(0, 0, 0, 0.10);
    background-image: url('/assets/img/banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 30px;
    min-height: 460px;
}

.hero-banner__content {
    gap: 60px;
    background: linear-gradient(272deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.50) 100%), rgba(0, 0, 0, 0.10);
}

.hero-banner__title {
    max-width: 558px;
    font-size: 40px;
    line-height: 44px;
    color: #FFFFFF;
    font-weight: 500;
}

.hero-banner__subtitle {
    max-width: 485px;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
}

.hero-banner__search {
    max-width: 410px;
    gap: 8px;
}

.hero-banner__search-input {
    height: 60px;
    background-color: #FFFFFF;
    border-radius: 15px;
    padding: 10px 12px;
}

.hero-banner__search-icon {
    width: 20px;
    height: 20px;
}

.hero-banner__search-field {
    font-size: 16px;
    color: #6B7280;
}

.hero-banner__search-field:focus {
    outline: none;
}

.hero-banner__search-btn {
    width: 140px;
    height: 60px;
    background-color: #E74915;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    border: none;
    transition: background-color 0.2s;
}

.hero-banner__search-btn:hover {
    background-color: #d13d0a;
}

.hero-banner__stats {
    gap: 12px;
}

.hero-banner__stat-item {
    gap: 8px;
}

.hero-banner__stat-icon {
    width: 16px;
    height: 16px;
}

.hero-banner__stat-text {
    font-size: 16px;
    color: #FFFFFF;
    white-space: nowrap;
}

/* Десктопная версия (по умолчанию) */
@media (min-width: 763px) {
    .hero-banner {
        background-position: center;
    }
}

/* Мобильная версия - до 762px */
@media (max-width: 762px) {
    .hero-banner {
        background-image: url('/assets/img/hero_mobile_img.jpg');
        background-position: 60% !important;
        min-height: 600px;
    }
    
    .hero-banner__content {
        justify-content: flex-end !important;
        padding: 24px !important;
        gap: 16px !important; /* Уменьшаем gap между элементами */
        min-height: 600px;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%) !important;
    }
    
    /* Убираем верхний отступ, чтобы текст был сразу над поиском */
    .hero-banner__text {
        margin-bottom: 0;
    }
    
    .hero-banner__title {
        font-size: 28px !important;
        line-height: 32px !important;
        margin-bottom: 8px !important;
        max-width: 100%;
    }
    
    .hero-banner__subtitle {
        font-size: 16px !important;
        line-height: 20px !important;
        max-width: 100%;
        margin-bottom: 0 !important;
    }
    
    .hero-banner__subtitle br {
        display: none;
    }
    
    /* Строка поиска */
    .hero-banner__search {
        flex-direction: row !important;
        max-width: 100%;
        gap: 8px;
        margin-top: 0; /* Убираем верхний отступ */
    }
    
    .hero-banner__search-input {
        flex: 1;
        height: 48px;
        border-radius: 12px;
    }
    
    .hero-banner__search-btn {
       
        padding: 0 !important;
        border-radius: 12px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #E74915;
        position: relative;
    }
    
    /* Заменяем текст на стрелку */
    .hero-banner__search-btn span {
        display: none;
    }
    
    .hero-banner__search-btn::after {
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.16699 10H15.8337' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10.833 4.16669L15.833 10L10.833 15.8334' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
    
    /* Статистика - без фона */
    .hero-banner__stats {
        flex-direction: column !important;
        gap: 8px !important;
        margin-top: 0; /* Убираем верхний отступ */
    }
    
    .hero-banner__stat-item {
        gap: 8px;
        padding: 0; /* Убираем паддинги */
        background: none; /* Убираем фон */
        backdrop-filter: none; /* Убираем блюр */
    }
    
    .hero-banner__stat-icon {
        width: 14px;
        height: 14px;
    }
    
    .hero-banner__stat-text {
        font-size: 14px;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); /* Добавляем небольшую тень для читаемости */
    }
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
    .hero-banner {
     
    }
    
    .hero-banner__title {
        font-size: 24px !important;
        line-height: 28px !important;
    }
    
    .hero-banner__search-input {
        height: 44px;
    }
    
    .hero-banner__search-btn {
        
    }
}
/* =================================================================
   4. CATALOG SECTION (КАТАЛОГ)
   ================================================================= */
.catalog-section {
    padding-bottom: 120px;
}

.catalog-section__title {
    font-size: 36px;
    line-height: 40px;
}

.catalog-section__view-toggle {
    gap: 4px;
    background-color: #F5F5F5;
    border-radius: 8px;
    padding: 4px;
}

.catalog-section__view-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.catalog-section__view-btn--active {
    background-color: #FFFFFF;
}

.catalog-categories__item {
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
}

.catalog-categories__item:hover {
    background-color: #F9F9F9;
}

.catalog-categories__item--active {
    background-color: #F9F9F9;
}

.catalog-categories__title {
    color: #6B7280;
    font-size: 20px;
    line-height: 24px;
}

.catalog-categories__item--active .catalog-categories__title {
    color: #1E1E1E;
    font-weight: 600;
}

.catalog-categories__arrow {
    width: 25px;
    height: 25px;
}

.catalog-card__image {
    height: 260px;
}

.catalog-card__image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(201deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.40) 100%);
    z-index: 1;
}

.catalog-card__overlay {
    z-index: 2;
    left: 24px;
    right: 24px;
}

.catalog-card__category {
    font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
}

.catalog-card__arrow {
    width: 25px;
    height: 25px;
}

.catalog-section__more-btn {
    width: 100%;
    margin-top: 80px;
    padding: 12px;
    border-radius: 12px;
    background-color: #1E1E1E;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
}

.catalog-section__more-btn:hover {
    background-color: #373737 !important;
}

@media (max-width: 991px) {
    .catalog-section__content .row > .col-lg-3 {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .catalog-section__title {
        font-size: 28px;
        line-height: 32px;
    }
    .catalog-card__image {
        height: 220px !important;
    }
    .catalog-card__category {
        font-size: 18px !important;
    }
}

/* =================================================================
   5. HOW WE WORK (КАК МЫ РАБОТАЕМ)
   ================================================================= */
/* Десктопная версия */
.desktop-version {
    padding: 80px 0;
}

.desktop-version .container {
    max-width: 1320px;
}

.desktop-version .section-badge {
    border: 1px solid #E0E4EC;
    border-radius: 10px;
    padding: 8px 12px;
    gap: 8px;
}

.desktop-version .section-badge-dot {
    width: 8px;
    height: 8px;
    background: #E74915;
    border-radius: 2px;
}

.desktop-version .section-badge-text {
    font-family: 'Onest', sans-serif;
    font-size: 16px;
    color: #6B7280;
}

.desktop-version .section-title {
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: -0.01em;
    color: #1E1E1E;
}

.desktop-version .step-card {
    background: #F6F7FA;
    border-radius: 20px;
    padding: 40px 40px 0;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.desktop-version .step-card-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 12px;
}

.desktop-version .step-card-title {
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 120%;
    color: #1E1E1E;
    text-align: center;
    margin-bottom: 8px;
}

.desktop-version .step-card-description {
    font-family: 'Onest', sans-serif;
    font-size: 16px;
    line-height: 130%;
    color: #5C6270;
    text-align: center;
    max-width: 299px;
    margin: 0 auto 20px;
}

.desktop-version .step-card-image {
    width: 100%;
    max-width: 280px;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Мобильная версия */
.mobile-version {
    padding: 40px 16px 60px;
    background: #FFFFFF;
    display: none;
}

.mobile-version .container {
    max-width: 100%;
    padding: 0;
}

.mobile-version .section-badge {
    border: 1px solid #E0E4EC;
    border-radius: 10px;
    padding: 8px 12px;
    gap: 8px;
}

.mobile-version .section-badge-dot {
    width: 8px;
    height: 8px;
    background: #E74915;
    border-radius: 2px;
}

.mobile-version .section-badge-text {
    font-family: 'Onest', sans-serif;
    font-size: 16px;
    color: #6B7280;
}

.mobile-version .section-title {
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #1E1E1E;
}

.mobile-version .step-card {
    background: #F6F7FA;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 16px;
}

.mobile-version .step-card--reverse {
    flex-direction: row-reverse;
}

.mobile-version .step-card-image {
    flex-shrink: 0;
    width: 180px;
    height: auto;
    display: block;
}

.mobile-version .step-card-content {
    flex: 1;
    align-self: flex-start;
    padding-top: 8px;
}

.mobile-version .step-card-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 8px;
}

.mobile-version .step-card-title {
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    color: #1E1E1E;
    margin-bottom: 6px;
}

.mobile-version .step-card-description {
    font-family: 'Onest', sans-serif;
    font-size: 14px;
    line-height: 1.3;
    color: #5C6270;
    margin: 0;
}

@media (max-width: 991px) {
    .mobile-version {
        display: block !important;
    }
    .desktop-version {
        display: none !important;
    }
}

@media (max-width: 375px) {
    .mobile-version .step-card {
        padding: 20px 16px !important;
        gap: 12px !important;
    }
    .mobile-version .step-card-image {
        width: 140px !important;
    }
    .mobile-version .section-title {
        font-size: 24px !important;
    }
    .mobile-version .step-card-title {
        font-size: 16px !important;
    }
    .mobile-version .step-card-description {
        font-size: 13px !important;
    }
}

/* =================================================================
   6. ABOUT SECTION (О НАС)
   ================================================================= */
.about-section {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.about-section__bg {
    z-index: -1;
    background: linear-gradient(191deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.40) 100%), url('/assets/img/banner2.png');
    background-size: cover;
    background-position: center;
    min-height: 648px;
}

.about-section__container {
    padding: 40px;
    min-height: 660px;
    display: flex;
    align-items: flex-end;
}

.about-section__content {
    backdrop-filter: blur(15px);
    padding: 32px;
    min-height: 392px;
    background-color: #FFFFFF;
    border-radius: 16px;
}

.about-section__text-content {
    gap: 40px;
}

.about-section__badge {
    outline: 1px solid #E0E4EC;
    outline-offset: -1px;
    padding: 8px 12px;
    border-radius: 8px;
    gap: 8px;
    margin-bottom: 32px;
}

.about-section__badge-icon {
    width: 8px;
    height: 8px;
}

.about-section__badge-text {
    font-size: 16px;
    line-height: 19.2px;
    color: #6B7280;
}

.about-section__title {
    font-size: 36px;
    line-height: 40px;
    font-weight: 500;
    color: #1E1E1E;
}

.about-section__title-accent {
    color: #E74915;
}

.about-section__column--divider {
    align-items: center;
    justify-content: flex-start;
}

.about-section__divider {
    width: 1px;
    height: 192px;
    background: #E0E4EC;
    margin-top: 8px;
}

.about-section__description-text {
    color: #5C6270;
    font-size: 16px;
    line-height: 20.8px;
    
}

.about-section__stats {
    gap: 40px;
}

.about-section__stat-item {
    width: 116px;
    gap: 4px;
}

.about-section__stat-number {
    color: #1E1E1E;
    font-size: 22px;
    line-height: 26.4px;
    font-weight: 500;
}

.about-section__stat-label {
    color: #5C6270;
    font-size: 16px;
    line-height: 19.2px;
}

@media (max-width: 991px) {
    .about-section__bg{
        background-image: url('/assets/img/about_section_mobile.png') !important;
        min-height: 950px !important;
       
    }
    .about-section__container {
        min-height: 950px !important;
        padding: 10px !important;
        object-fit: cover !important;
    }
    .about-section__column--divider {
        display: none !important;
    }
    .about-section__description{
        margin-bottom: 10px !important;
    }
    .about-section__text-content {
        
        gap: 10px !important;
    }
    .about-section__column--title,
    .about-section__column--description {
        max-width: 100% !important;
        width: 100% !important;
    }
    .about-section__title {
        font-size: 28px !important;
        line-height: 32px !important;
    }
    .about-section__stats {
        gap: 10px !important;
        display: inline-flex;
    }
    .about-section__stat-item {
        width: auto !important;
    }
}

@media (max-width: 767px) {
    .about-section__content {
        padding: 24px !important;
        min-height: 392px !important;
        max-height: 600px ;
    }
    .about-section__badge {
        margin-bottom: 24px !important;
    }
    .about-section__stats {
        
        gap: 24px !important;
    }
    .about-section__stat-item {
        flex-direction: column !important;
        align-items: baseline !important;
        gap: 8px !important;
    }
}

/* =================================================================
   7. REVIEWS SECTION (ОТЗЫВЫ)
   ================================================================= */
.reviews-section__badge {
    outline: 1px solid #E0E4EC;
    outline-offset: -1px;
    padding: 8px 12px;
    border-radius: 8px;
    gap: 8px;
    max-width: 100px !important;
}

.reviews-section__badge-icon {
    width: 8px;
    height: 8px;
}

.reviews-section__badge-text {
    color: #6B7280;
    font-size: 16px;
}

.reviews-section__title {
    font-size: 36px;
    line-height: 40px;
    font-weight: 500;
    color: #1E1E1E;
}

.reviews-section__subtitle {
    color: #6B7280;
    font-size: 16px;
    line-height: 20.8px;
}

.reviews-section__navigation {
    gap: 8px;
    margin-top: 12px;
}

.reviews-section__nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background-color: #F5F5F5;
}

.reviews-section__nav-btn svg {
    width: 25px;
    height: 25px;
}

.review-card {
    background-color: #F5F5F5;
    border-radius: 16px;
    padding: 24px;
}

.review-card__avatar {
    width: 108px;
    height: 108px;
    object-fit: cover;
    border-radius: 50%;
}

.review-card__name {
    font-size: 20px;
    font-weight: 500;
    color: #1E1E1E;
}

.review-card__text {
    color: #6B7280;
    font-size: 16px;
    line-height: 20.8px;
}

.review-card__meta {
    gap: 8px;
}

.review-card__location,
.review-card__date {
    outline: 1px solid #E0E4EC;
    outline-offset: -1px;
    padding: 8px 12px;
    border-radius: 8px;
    gap: 8px;
}

.review-card__location svg,
.review-card__date svg {
    width: 20px;
    height: 20px;
}

.review-card__location-text,
.review-card__date-text {
    color: #6B7280;
    font-size: 13px;
}

.review-card__profile-btn {
    background-color: #fff;
    color: #e74915;
    padding: 8px 12px;
    border-radius: 8px;
    gap: 8px;
}

.review-card__profile-btn svg {
    width: 20px;
    height: 20px;
}

.review-card__profile-text {
    font-size: 13px;
}

@media (max-width: 991px) {
    .reviews-section__header {
        flex-direction: column;
        align-items: flex-start !important;
    }
}
.catalog-categories__item1 {
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
}

.catalog-categories__item1:hover {
    background-color: #F9F9F9;
}

.catalog-categories__item1--active {
    background-color: #F9F9F9;
}

.catalog-categories__title1 {
    color: #6B7280;
    font-size: 20px;
    line-height: 24px;
}

.catalog-categories__item1--active .catalog-categories__title1 {
    color: #1E1E1E;
    font-weight: 600;
}

.catalog-categories__arrow {
    width: 25px;
    height: 25px;
}

/* =================================================================
   8. AUDIENCE SECTION (ДЛЯ КОГО СЕРВИС)
   ================================================================= */
.audience-section {
    padding-bottom: 120px;
}

.audience-section__title {
    color: #1E1E1E;
    font-size: 36px;
    line-height: 40px;
}

.audience-section__navigation {
    gap: 8px;
}

.audience-section__nav-btn {
    width: 50px;
    height: 50px;
    background: #F5F5F5;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.audience-section__nav-btn:hover {
    background: rgb(232.25, 232.25, 232.25) !important;
}

.audience-section__nav-btn:active {
    transform: scale(0.95);
}

.audience-section__nav-btn svg {
    width: 25px;
    height: 25px;
}

.audience-section__subtitle {
    font-size: 20px;
    line-height: 24px;
    color: #6B7280;
}

.audience-slider {
    overflow: hidden;
    padding-bottom: 20px;
}

.audience-card {
    transition: transform 0.3s ease;
    height: 100%;
    background-color: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
   
}

.audience-card__image {
    height: 280px;
}

.audience-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.audience-card .card-title {
    font-size: 20px;
    font-weight: 500;
    color: #1E1E1E;
    margin-bottom: 12px;
}
.card{
    border: none !important;
}
.audience-card .card-description {
    color: #6B7280;
    font-size: 16px;
    line-height: 20.8px;
}

.swiper-pagination-bullet {
    background: #E0E4EC;
    opacity: 1;
    width: 8px;
    height: 8px;
}

.swiper-pagination-bullet-active {
    background: #1E1E1E !important;
    width: 20px;
    border-radius: 4px;
    transition: width 0.3s ease;
}

@media (max-width: 991px) {
    .audience-section__navigation {
        display: flex !important;
    }
}

@media (min-width: 992px) {
    .audience-section__navigation {
        display: none !important;
    }
}

/* =================================================================
   9. FAQ SECTION (ВОПРОСЫ И ОТВЕТЫ)
   ================================================================= */
.faq-section {
    padding-bottom: 120px;
}

.faq-section__badge {
    outline: 1px solid #E0E4EC;
    outline-offset: -1px;
    padding: 8px 12px;
    border-radius: 8px;
    gap: 8px;
    margin-bottom: 16px;
}

.faq-section__badge-icon {
    width: 8px;
    height: 8px;
}

.faq-section__badge-text {
    font-size: 16px;
    line-height: 19.2px;
    color: #6B7280;
}

.faq-section__title {
    font-size: 36px;
    line-height: 40px;
    font-weight: 500;
    color: #1E1E1E;
}



.faq-accordion__header {
    background-color: #F5F5F5;
    border-radius: 15px;
}

.faq-accordion__button {
    width: 100%;
    padding: 12px;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    text-align: left;
}

.faq-accordion__button:hover {
    background: #F0F0F0 !important;
}

.faq-accordion__button:not(.collapsed) .faq-accordion__icon {
    transform: rotate(180deg);
}

.faq-accordion__button:not(.collapsed) {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.faq-accordion__question {
    font-size: 22px;
    line-height: 26.4px;
    font-weight: 500;
    color: #1E1E1E;
}

.faq-accordion__icon {
    width: 50px;
    height: 50px;
    background: #1E1E1E;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.faq-accordion__icon path {
    stroke: #000;
    stroke-width: 0.8;
    stroke-linecap: round;
}

.faq-accordion__body {
    padding: 12px;
    background: #F9F9F9;
    border-top: 1px solid #E0E4EC;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.faq-accordion__answer {
    font-size: 16px;
    line-height: 20.8px;
    color: #5C6270;
}

@media (max-width: 991px) {
    .faq-accordion .row > .col-lg-6 {
        margin-bottom: 1rem;
    }
}

@media (max-width: 767px) {
    .faq-section__title {
        font-size: 28px !important;
        line-height: 32px !important;
    }
    .faq-accordion__question {
        font-size: 18px !important;
        line-height: 22px !important;
    }
    .faq-accordion__icon {
        width: 40px !important;
        height: 40px !important;
    }
}

/* =================================================================
   10. REGISTRATION SECTION (РЕГИСТРАЦИЯ)
   ================================================================= */
.registration {
    padding: 100px 0;
    background: transparent;
    font-family: 'Onest', sans-serif;
    position: relative;
    overflow: visible;
}

.registration .container {
    max-width: 1400px;
    padding: 0 15px;
    position: relative;
    overflow: visible;
}

.registration__inner {
    background: #1E1E1E;
    border-radius: 30px;
    overflow: visible;
    min-height: 450px;
    position: relative;
}

.registration__phone-col {
    position: relative;
    background: #1E1E1E;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: visible;
    border-radius: 30px 0 0 30px;
}

.registration__phone-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    bottom: 0;
    left: 0;
    z-index: 2;
}

.registration__phone-img {
    display: block;
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
    position: relative;
    margin-top: -120px;
    margin-bottom: 0;
    align-self: flex-end;
    
}

.registration__content-col {
    background: #1E1E1E;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0 30px 30px 0;
    position: relative;
    z-index: 2;
    padding-top: 0;
}

.registration__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(7.5px);
    border: 1px solid rgba(224, 228, 236, 0.3);
    border-radius: 10px;
    width: fit-content;
    margin-bottom: 24px;
}

.registration__badge-dot {
    width: 8px;
    height: 8px;
    background: #E74915;
    border-radius: 2px;
    flex-shrink: 0;
}

.registration__badge-text {
    font-size: 16px;
    line-height: 120%;
    color: #FFFFFF;
    font-weight: 400;
    white-space: nowrap;
}

.registration__title {
    font-size: 36px;
    line-height: 40px;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    font-weight: 500;
}

.registration__title--white {
    color: #FFFFFF;
}

.registration__title--opacity {
    color: rgba(255, 255, 255, 0.6);
}

.registration__desc {
    font-size: 18px;
    line-height: 120%;
    color: rgba(255, 255, 255, 0.8);
    max-width: 558px;
    margin-bottom: 30px;
    font-weight: 300;
}

.registration__form {
    width: 100%;
}

.registration__form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.registration__input {
    width: 260px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(7.5px);
    border: 1px solid rgba(212, 211, 204, 0.2);
    border-radius: 15px;
    padding: 10px 14px;
    color: #FFFFFF;
    font-size: 16px;
    font-family: 'Onest', sans-serif;
    box-shadow: none;
}

.registration__input::placeholder {
    color: #FFFFFF;
    font-size: 16px;
    opacity: 1;
}

.registration__input:focus {
    outline: none;
    border-color: rgba(231, 73, 21, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.registration__btn {
    width: 260px;
    height: 60px;
    background: #E74915;
    border-radius: 15px;
    border: none;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 14px;
    cursor: pointer;
    font-family: 'Onest', sans-serif;
    transition: background 0.2s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    user-select: none;
}

.registration__btn:hover {
    background: #c93d0f;
    color: #FFFFFF;
}

.registration__agreement {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.registration__checkbox {
    width: 16px;
    height: 16px;
    border: 1px solid #E0E4EC;
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
}

.registration__agreement-text {
    font-size: 16px;
    line-height: 120%;
    color: rgba(255, 255, 255, 0.8);
}

.registration__agreement-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    transition: color 0.2s;
}

.registration__agreement-link:hover {
    color: #E74915;
}

@media (min-width: 992px) {
    .registration__phone-wrapper {
        position: absolute;
        bottom: 0;
        height: 100%;
        display: flex;
        align-items: flex-end;
    }
    .registration__phone-img {
        max-width: 450px;
        margin-top: -120px;
        margin-bottom: 0;
        align-self: flex-end;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .registration {
        padding: 60px 0;
    }
    .registration__inner {
        flex-direction: column;
        min-height: auto;
        overflow: visible;
    }
    .registration__phone-col {
        flex: auto;
        min-height: 400px;
        border-radius: 30px 30px 0 0;
        overflow: visible;
        width: 100%;
    }
    .registration__phone-wrapper {
        position: absolute;
        bottom: 0;
        height: 100%;
        display: flex;
        align-items: flex-end;
    }
    .registration__phone-img {
        max-width: 360px;
        margin-top: -100px;
        margin-bottom: 0;
        align-self: flex-end;
    }
    .registration__content-col {
        flex: auto;
        padding: 30px 30px;
        border-radius: 0 0 30px 30px;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .registration {
        padding: 20px;
    }
    .registration .container {
        padding: 0;
    }
    .registration__inner {
        flex-direction: column;
        border-radius: 20px;
        min-height: auto;
        overflow: hidden;
        max-width: 540px;
        margin: 0 auto;
    }
    .registration__phone-col {
        flex: auto;
        min-height: auto;
        border-radius: 20px 20px 0 0;
        overflow: hidden;
        background: #1E1E1E;
        padding-top: 24px;
        width: 100%;
    }
    .registration__phone-wrapper {
        position: relative;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: -10px;
    }
    .registration__phone-img {
        max-width: 160px;
        margin-top: 0;
        margin-bottom: 0;
        position: relative;
        align-self: center;
    }
    .registration__content-col {
        flex: auto;
        padding: 0 20px 30px 20px;
        border-radius: 0 0 20px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    .registration__badge {
        margin: 0 auto 16px auto;
        padding: 8px 12px;
    }
    .registration__badge-text {
        font-size: 13px;
        white-space: nowrap;
    }
    .registration__title {
        font-size: 24px;
        line-height: 26px;
        margin-bottom: 12px;
        text-align: center;
        width: 100%;
    }
    .registration__desc {
        font-size: 14px;
        line-height: 17px;
        margin-bottom: 24px;
        text-align: center;
        max-width: 316px;
        margin-left: auto;
        margin-right: auto;
    }
    .registration__form {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .registration__form-row {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 16px;
        width: 100%;
        align-items: center;
    }
    .registration__input {
        width: 260px;
        max-width: 100%;
        height: 50px;
        border-radius: 10px;
        font-size: 13px;
        margin: 0 auto;
    }
    .registration__input::placeholder {
        font-size: 13px;
    }
    .registration__btn {
        width: 260px;
        max-width: 100%;
        height: 50px;
        border-radius: 10px;
        font-size: 13px;
        margin: 0 auto;
    }
    .registration__agreement {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 8px;
        width: 100%;
        max-width: 263px;
        margin: 0 auto;
    }
    .registration__agreement-text {
        font-size: 13px;
        line-height: 16px;
        text-align: left;
    }
}

@media (max-width: 360px) {
    .registration__phone-img {
        max-width: 140px;
    }
    .registration__input,
    .registration__btn {
        width: 240px;
    }
    .registration__agreement {
        max-width: 240px;
    }
}

/* =================================================================
   11. NEWS SECTION (НОВОСТИ И АКЦИИ)
   ================================================================= */
.news-section {
    padding-bottom: 120px;
}

.news-section__title {
    font-size: 36px;
    line-height: 43.2px;
    color: #1E1E1E;
}

.news-section__navigation {
    gap: 8px;
}

.news-section__nav-btn {
    width: 50px;
    height: 50px;
    background: #F5F5F5;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.news-section__nav-btn:hover {
    background: rgb(232.25, 232.25, 232.25) !important;
}

.news-section__nav-btn:active {
    transform: scale(0.95);
}

.news-section__nav-btn svg {
    width: 25px;
    height: 25px;
}

.news-slider {
    overflow: hidden;
}

.news-slider__slide {
    height: auto;
}

.news-card {
    height: 100%;
    gap: 16px;
}

.news-card__image {
    height: 235px;
    border-radius: 20px;
    overflow: hidden;
}

.news-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card__badge {
    z-index: 2;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 16.8px;
    font-weight: 600;
}

.news-card__badge--sale {
    background: #E74915;
    color: #FFFFFF;
}

.news-card__badge--news {
    background: #1E1E1E;
    color: #FFFFFF;
}

.news-card__title {
    font-size: 22px;
    line-height: 26.4px;
    color: #1E1E1E;
    font-weight: 500;
}

.news-card__description {
    font-size: 16px;
    line-height: 20.8px;
    color: #6B7280;
}

@media (max-width: 991px) {
    .news-section__header {
        flex-direction: column;
        align-items: flex-start !important;
    }
    .news-section__title {
        font-size: 28px !important;
        line-height: 32px !important;
    }
}

@media (max-width: 767px) {
    .news-section__title {
        font-size: 24px !important;
        line-height: 28px !important;
    }
    .news-card__title {
        font-size: 18px !important;
        line-height: 22px !important;
    }
    .news-card__description {
        font-size: 14px !important;
        line-height: 18px !important;
    }
    .news-card__image {
        height: 200px !important;
    }
    .news-section__nav-btn {
        width: 45px !important;
        height: 45px !important;
    }
    .news-section__nav-btn svg {
        width: 20px !important;
        height: 20px !important;
    }
}

@media (max-width: 575px) {
    .news-section__navigation {
        width: 100%;
        justify-content: center;
    }
}


/* =================================================================
   TOBUILD - СТРАНИЦА "О КОМПАНИИ"
   Все стили вынесены из HTML атрибутов style="..." и <style> тегов
   ================================================================= */

/* =================================================================
   1. ОБЩИЕ СТИЛИ И УТИЛИТЫ
   ================================================================= */
body {
    font-family: "Onest", sans-serif;
    background-color: #fff;
}

.text-brand-orange {
    color: #e74915 !important;
}

.text-custom-gray {
    color: #5c6270 !important;
}

.text-orange {
    color: #ff6b35 !important;
}

.bg-custom-light {
    background-color: #f6f7fa !important;
}

.bg-orange {
    background-color: #ff6b35 !important;
}

.bg-dark-custom {
    background-color: #1e1e1e !important;
}

.rounded-xxl {
    border-radius: 30px !important;
}

.rounded-custom {
    border-radius: 30px;
}

/* =================================================================
   2. HEADER (ШАПКА САЙТА)
   ================================================================= */
.header {
    padding: 20px 0 0;
    position: sticky;
    top: 0;
    background-color: #ffffff;
    z-index: 100;
}

.header__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 20px;
    flex-wrap: wrap;
}

.header__logo {
    flex: 0 0 auto;
}

.header__logo-link {
    display: flex;
    width: 222px;
    height: 60px;
    text-decoration: none;
    color: #1e1e1e;
    font-size: 20px;
    font-weight: 600;
    line-height: 60px;
    text-align: center;
}

.header__search-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    max-width: 700px;
}

.header__catalog-btn {
    width: 100px;
    height: 44px;
    background: #e74915 !important;
    border: none;
    border-radius: 15px;
    color: #1e1e1e;
    font-size: 14px;
    font-family: "Onest", sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header__search {
    flex: 1;
    height: 44px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px;
    border-radius: 15px;
    outline: 1.5px solid #f6d45a;
    outline-offset: -1.5px;
    background: white;
}

.header__search-input {
    flex: 1;
    border: none;
    outline: none;
    color: #6b7280;
    font-size: 14px;
    font-family: "Onest", sans-serif;
    font-weight: 500;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 0 0 auto;
}

.header__action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header__action-text {
    color: #1e1e1e;
    font-size: 14px;
    font-family: "Onest", sans-serif;
    font-weight: 500;
    white-space: nowrap;
}

.header__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1.5px solid #e0e4ec;
}

.header__nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header__nav-link {
    color: #1e1e1e;
    font-size: 14px;
    font-family: "Onest", sans-serif;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.header__location {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.header__location-text {
    color: #1e1e1e;
    font-size: 14px;
    font-family: "Onest", sans-serif;
    font-weight: 500;
    white-space: nowrap;
}

/* Адаптивность хедера */
@media (max-width: 991px) {
    .header__nav-list {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header__top {
        flex-direction: column;
        align-items: stretch;
    }
    .header__search-wrapper {
        max-width: 100%;
        order: 3;
    }
    .header__actions {
        justify-content: space-around;
        width: 100%;
    }
    .header__nav-list {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: flex-start;
    }
    .header__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .header__logo-link {
        width: 150px;
        height: 45px;
        font-size: 16px;
    }
    .header__catalog-btn {
        width: 80px;
        height: 36px;
        font-size: 12px;
    }
    .header__search {
        height: 36px;
    }
    .header__action-text {
        font-size: 11px;
    }
    .header__nav-list {
        font-size: 12px;
    }
}

@media (max-width: 393px) {
    .header {
        padding: 10px 0 0;
    }
    .header__top {
        padding-bottom: 10px;
    }
    .header__logo-link {
        width: 120px;
        height: 40px;
        font-size: 14px;
    }
    .header__catalog-btn {
        width: 70px;
        height: 32px;
        font-size: 11px;
    }
    .header__search {
        height: 32px;
        padding: 6px;
    }
    .header__search-input {
        font-size: 12px;
    }
    .header__action-icon svg {
        width: 18px;
        height: 18px;
    }
    .header__action-text {
        font-size: 10px;
    }
    .header__bottom {
        padding: 10px 0;
    }
    .header__nav-list {
        font-size: 11px;
        gap: 8px;
    }
    .header__location-text {
        font-size: 12px;
    }
}

/* =================================================================
   3. HERO SECTION (ГЛАВНЫЙ БАННЕР)
   ================================================================= */
.hero-section {
    padding-top: 191px !important;
    padding-bottom: 120px !important;
}

.hero-section__content {
    position: relative;
}

.hero-title {
    font-size: 36px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: -0.01em;
}

.hero-description {
    font-size: 16px;
    line-height: 130%;
}

.stats-card {
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 24px;
}

.stat-number {
    font-size: 22px;
    font-weight: 500;
    color: #1e1e1e;
    line-height: 120%;
}

.stat-label {
    font-size: 16px;
    color: #5c6270;
    line-height: 130%;
}

.hero-section__image {
    min-height: 482px;
}

/* Адаптивность Hero */
@media (max-width: 991px) {
    .hero-title {
        font-size: 28px;
        line-height: 32px;
    }
    .hero-description {
        font-size: 14px;
    }
    .stat-number {
        font-size: 18px;
    }
    .stat-label {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 24px;
        line-height: 28px;
    }
    .display-5 {
        font-size: 24px !important;
    }
    .stats-card {
        position: static !important;
        margin-top: 20px !important;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 22px;
        line-height: 26px;
    }
    .stat-number {
        font-size: 16px;
    }
    .stat-label {
        font-size: 12px;
    }
}

@media (max-width: 393px) {
    body {
        font-size: 14px;
    }
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .hero-title {
        font-size: 20px;
        line-height: 24px;
    }
    .stats-card .col-4 {
        padding: 8px;
    }
    .stat-number {
        font-size: 14px;
    }
    .stat-label {
        font-size: 11px;
    }
}

/* =================================================================
   4. MOBILE VERSION (МОБИЛЬНАЯ ВЕРСИЯ)
   ================================================================= */
.mobile-mobile {
    position: relative;
    background-color: #f5f7fa;
    border-radius: 28px;
    padding: 40px 20px 60px;
    overflow: hidden;
}

.mobile-mobile__container {
    margin: 0 auto;
    position: relative;
}

.mobile-mobile__title {
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 110%;
    letter-spacing: -0.01em;
    color: #1e1e1e;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.mobile-mobile__phone {
    position: relative;
    width: 260px;
    margin: 0 auto 20px;
    z-index: 2;
}

.mobile-mobile__phone img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 32px;
}

.mobile-mobile__content-block {
    position: relative;
    background-color: #f5f7fa;
    border-radius: 32px 32px 20px 20px;
    margin-top: -180px;
    z-index: 3;
}

.mobile-mobile__feature-item {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    gap: 16px;
    background: #fff;
    border-radius: 16px;
    margin-bottom: 12px;
}

.mobile-mobile__feature-icon {
    width: 40px;
    height: 40px;
    background: #f0f2f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mobile-mobile__feature-text {
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    color: #5c6270;
    flex: 1;
}

.mobile-mobile__cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.mobile-mobile__cta-button {
    background: #1e1e1e;
    border-radius: 16px;
    border: none;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    color: #ffffff;
    padding: 14px 32px;
    width: 100%;
    max-width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-mobile__cta-text {
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 130%;
    text-align: center;
    color: #1e1e1e;
}

/* Адаптивность мобильной версии */
@media (max-width: 999px) {
    section > img[style*="position: absolute"] {
        display: none !important;
    }
    section > div[style*="background-color: #F6F7FA"] {
        display: none !important;
    }
}

@media (min-width: 999px) {
    .mobile-mobile {
        display: none;
    }
    section > .container-fluid {
        display: none !important;
    }
}

/* =================================================================
   5. WHY TOBUILD SECTION (ПОЧЕМУ ВЫБИРАЮТ TOBUILD)
   ================================================================= */
.why-tobuild-section {
    position: relative;
    overflow: visible !important;
}

.phone-image-desktop {
    width: auto;
    height: 700px;
    border-radius: 30px;
    display: block;
    position: absolute;
    z-index: 10;
    left: 5%;
    top: -80px;
    max-width: 45%;
    object-fit: contain;
    pointer-events: none;
}

.content-wrapper {
    background-color: #f6f7fa !important;
    width: 100%;
    border-radius: 30px;
    position: relative;
    z-index: 5;
    padding-top: 50px;
}

.content-column {
    background-color: #f6f7fa !important;
    border-radius: 30px !important;
    padding: 0;
}

.section-title {
    font-family: "Onest", sans-serif;
    font-weight: 500;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: -0.01em;
    color: #1e1e1e;
    margin-left: 16px;
    margin-bottom: 2rem !important;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 24px;
    margin-bottom: 12px;
    background: white;
    border-radius: 30px 0 0 30px;
    width: 100%;
    max-width: 645px;
    height: 72px;
    margin-left: auto;
    margin-right: 0;
}

.feature-text {
    font-family: "Onest", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    color: #5c6270;
}

.cta-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
    margin-left: 16px;
}

.cta-button {
    background: #1e1e1e;
    border-radius: 15px;
    border: none;
    font-family: "Onest", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    color: #ffffff;
    padding: 10px 14px;
}

.cta-text {
    font-family: "Onest", sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-align: left;
    line-height: 120%;
    color: #1e1e1e;
}

/* Адаптивность Why Tobuild */
@media (max-width: 1199px) {
    .phone-image-desktop {
        height: 600px !important;
        left: 3% !important;
        top: -20px !important;
        max-width: 42% !important;
    }
    .feature-item {
        max-width: 550px !important;
    }
    .feature-text {
        font-size: 18px !important;
    }
    .section-title {
        font-size: 32px !important;
        line-height: 36px !important;
    }
}

@media (max-width: 991px) {
    .content-wrapper {
        display: none;
    }
    .phone-image-desktop {
        height: 500px !important;
        left: 1% !important;
        top: -40px !important;
        max-width: 40% !important;
    }
    .content-column {
        width: 70% !important;
    }
    .feature-item {
        max-width: 450px !important;
        height: 65px !important;
        padding: 12px !important;
    }
    .feature-text {
        font-size: 16px !important;
    }
    .section-title {
        font-size: 28px !important;
        line-height: 32px !important;
        margin-left: 12px !important;
    }
    .cta-wrapper {
        margin-left: 12px !important;
    }
    .cta-button {
        font-size: 14px !important;
        padding: 8px 12px !important;
    }
    .cta-text {
        font-size: 14px !important;
    }
}

/* =================================================================
   6. MISSION SECTION (МИССИЯ)
   ================================================================= */
.mission-section {
    padding: 60px 0;
    margin: 60px 0;
}

.mission-section__content {
    background-color: #1e1e1e !important;
    border-radius: 30px !important;
    padding: 40px;
    text-align: center;
}

.mission-section__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    margin-bottom: 24px;
    border: 1px solid rgba(224, 228, 236, 0.3) !important;
    border-radius: 12px;
}

.mission-section__badge-dot {
    width: 8px;
    height: 8px;
    background-color: #e74915;
    border-radius: 4px;
}

.mission-section__badge-text {
    font-size: 16px;
    line-height: 130%;
    color: #ffffff;
}

.mission-section__quote {
    font-size: 36px;
    line-height: 40px;
    letter-spacing: -0.01em;
    color: #e0e4ec !important;
    max-width: 1192px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .mission-section__quote {
        font-size: 24px !important;
        line-height: 28px !important;
    }
}

/* =================================================================
   7. AUDIENCE SECTION (ДЛЯ КОГО СЕРВИС)
   ================================================================= */
.audience-section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

.audience-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}

.audience-card__image {
    height: 280px;
    position: relative;
    overflow: hidden;
}

.audience-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =================================================================
   8. HOW WE WORK SECTION (КАК МЫ РАБОТАЕМ)
   ================================================================= */
/* Десктопная версия */
.desktop-version {
    padding: 80px 0;
    position: relative;
}

.desktop-version .container {
    max-width: 1320px;
}

.desktop-version__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    margin-bottom: 12px;
    border: 1px solid #e0e4ec;
    border-radius: 10px;
}

.desktop-version__badge-dot {
    width: 8px;
    height: 8px;
    background: #e74915;
    border-radius: 2px;
}

.desktop-version__badge-text {
    font-family: "Onest", sans-serif;
    font-size: 16px;
    color: #6b7280;
}

.desktop-version__title {
    font-family: "Onest", sans-serif;
    font-weight: 500;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: -0.01em;
    color: #1e1e1e;
}

.step-card {
    background: #f6f7fa;
    border-radius: 20px;
    padding: 40px 40px 0;

    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.step-card__icon {
    text-align: center;
    margin-bottom: 12px;
}

.step-card__title {
    font-family: "Onest", sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 120%;
    color: #1e1e1e;
    text-align: center;
    margin-bottom: 8px;
}

.step-card__description {
    font-family: "Onest", sans-serif;
    font-size: 16px;
    line-height: 130%;
    color: #5c6270;
    text-align: center;
    max-width: 299px;
    margin: 0 auto 20px;
}

.step-card__image {
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.step-card__image img {
    width: 100%;
    max-width: 280px;
    height: auto;
    object-fit: contain;
    display: block;
}
.container{
    max-width: 1340px !important;

}
/* Мобильная версия */
.mobile-version {
    padding: 40px 16px 60px;
    background: #ffffff;
    display: none;
}

.mobile-version .container {
    max-width: 100%;
    padding: 0;
}

.mobile-version__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    margin-bottom: 12px;
    border: 1px solid #e0e4ec;
    border-radius: 10px;
}

.mobile-version__badge-dot {
    width: 8px;
    height: 8px;
    background: #e74915;
    border-radius: 2px;
}

.mobile-version__badge-text {
    font-family: 'Onest', sans-serif;
    font-size: 16px;
    color: #6b7280;
}

.mobile-version__title {
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #1e1e1e;
}

.mobile-version__step-card {
    background: #f6f7fa;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 16px;
}

.mobile-version__step-card--reverse {
    flex-direction: row-reverse;
}

.mobile-version__step-image {
    flex-shrink: 0;
    width: 180px;
}

.mobile-version__step-image img {
    width: 100%;
    height: auto;
    display: block;
}

.mobile-version__step-content {
    flex: 1;
    align-self: flex-start;
    padding-top: 8px;
}

.mobile-version__step-icon {
    margin-bottom: 8px;
}

.mobile-version__step-title {
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    color: #1e1e1e;
    margin-bottom: 6px;
}

.mobile-version__step-description {
    font-family: 'Onest', sans-serif;
    font-size: 14px;
    line-height: 1.3;
    color: #5c6270;
    margin: 0;
}

/* Адаптивность How We Work */
@media (max-width: 991px) {
    .mobile-version {
        display: block !important;
    }
    .desktop-version {
        display: none !important;
    }
}

@media (max-width: 375px) {
    .mobile-version__step-card {
        padding: 20px 16px !important;
        gap: 12px !important;
    }
    .mobile-version__step-image {
        width: 140px !important;
    }
    .mobile-version__title {
        font-size: 24px !important;
    }
    .mobile-version__step-title {
        font-size: 16px !important;
    }
    .mobile-version__step-description {
        font-size: 13px !important;
    }
}

/* =================================================================
   9. PARTNERS SECTION (ПАРТНЕРЫ)
   ================================================================= */
.partners-section {
    padding: 60px 0;
    margin: 60px 0;
}

.partners-section__content {
    background-color: #1e1e1e !important;
    border-radius: 30px;
    padding: 40px;
}

.partners-card {
    background: white;
    border-radius: 30px;
    min-height: 120px;
    padding: 24px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.partner-logo {
    max-width: 117px;
    max-height: 70px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .partners-card {
        min-height: 100px !important;
    }
}

@media (max-width: 393px) {
    .partners-card {
        min-height: 80px !important;
        padding: 12px !important;
    }
    .partner-logo {
        max-width: 80px !important;
        max-height: 50px !important;
    }
}

/* =================================================================
   TOBUILD - СТРАНИЦА "ЧАСТО ЗАДАВАЕМЫЕ ВОПРОСЫ"
   Все стили вынесены из HTML атрибутов style="..." и <style> тегов
   ================================================================= */

/* =================================================================
   1. ОБЩИЕ СТИЛИ И ПЕРЕМЕННЫЕ
   ================================================================= */
body {
    font-family: 'Onest', sans-serif;
    background-color: #FFFFFF;
    color: #1E1E1E;
}

:root {
    --color-black: #1E1E1E;
    --color-dark-gray: #5C6270;
    --color-light-gray: #6B7280;
    --color-border: #E0E4EC;
    --color-bg-light: #EDF0F5;
    --color-accent: #E74915;
    --color-faq-bg: #F6F7FA;
    --color-white: #FFFFFF;
}

/* =================================================================
   2. ТИПОГРАФИКА
   ================================================================= */
.h1-page-title {
    font-size: 36px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: -0.01em;
    color: var(--color-black);
}

.h2-section-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -0.01em;
}

/* =================================================================
   3. ФИЛЬТРЫ (CHIP BUTTONS)
   ================================================================= */
 .filter-scroll-wrapper {
       
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Градиентная маска показывающая что контент продолжается */
        mask-image: linear-gradient(to right, black calc(100% - 50px), transparent 100%);
        -webkit-mask-image: linear-gradient(to right, black calc(100% - 50px), transparent 100%);
    }
    
    /* Скрываем скроллбар */
    .filter-scroll-wrapper::-webkit-scrollbar {
        display: none;
    }
    
    /* Контейнер с кнопками */
    .filter-container {
        flex-wrap: nowrap !important;
        min-width: min-content;
    }
    /* Контейнер для скролла фильтров */
    .filter-chip-scroll {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch; /* Плавный скролл на iOS */
        scrollbar-width: none; /* Скрываем скроллбар в Firefox */
        padding-bottom: 5px; /* Немного места снизу */
    }
    
    /* Скрываем скроллбар в Chrome/Safari/Edge */
    .filter-chip-scroll::-webkit-scrollbar {
        display: none;
    }
    
    /* Контейнер с кнопками */
    .filter-chip-scroll .d-flex {
        flex-wrap: nowrap !important; /* Запрещаем перенос */
        min-width: min-content; /* Растягиваем по ширине контента */
    }
    
    /* Стили для кнопок (предполагаю, что у вас есть базовые стили для .filter-chip-btn) */
    .filter-chip-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 24px; /* Примерные отступы, замените на ваши */
        background-color: transparent;
        border: 1px solid var(--color-border, #dee2e6);
        border-radius: 30px; /* Скругленные края как у чипсов */
        font-size: 16px;
        font-weight: 500;
        color: var(--color-light-gray, #6c757d);
        white-space: nowrap; /* Текст в одну строку */
        cursor: pointer;
        transition: all 0.2s ease;
        flex: 0 0 auto; /* Запрещаем сжатие кнопок */
    }
    
    /* Стили для активной кнопки (если нужно) */
    .filter-chip-btn.active {
        background-color: var(--color-black);
        color: white;
        border-color: var(--color-black);
    }
    
    /* Hover эффект для десктопа */
    .filter-chip-btn:hover:not(.active) {
        background-color: var(--color-bg-light, #f8f9fa);
        border-color: var(--color-border, #dee2e6);
    }
    
    /* Стили фильтров */
    .filter-chip {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 16px 20px;
        background-color: var(--color-bg-light);
        border: 1px solid transparent;
        border-radius: 15px;
        font-size: 16px;
        font-weight: 500;
        line-height: 120%;
        color: var(--color-light-gray);
        white-space: nowrap;
        width: auto;
        transition: all 0.2s ease;
        cursor: pointer;
        flex: 0 0 auto;
        max-width: 150px;
    }
    
    .filter-chip.active {
        background-color: var(--color-black);
        color: white;
        border-color: var(--color-black);
    }
    
    .filter-chip:not(.active) {
        border: 1px solid var(--color-border);
        background-color: transparent;
    }
    
    .filter-chip:hover:not(.active) {
        background-color: var(--color-border);
    }
    
    
   /* Контейнер-обертка для скролла */
    .filter-scroll-wrapper {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch; /* Плавный скролл на iOS */
        scrollbar-width: none; /* Скрываем скроллбар в Firefox */
        margin-bottom: -5px; /* Компенсируем отступ для скролла */
        padding-bottom: 5px; /* Небольшой отступ для контента */
    }
    
    /* Скрываем скроллбар в Chrome/Safari/Edge */
    .filter-scroll-wrapper::-webkit-scrollbar {
        display: none;
    }
    
    /* Контейнер с кнопками */
    .filter-container {
        flex-wrap: nowrap !important; /* Запрещаем перенос кнопок */
        min-width: min-content; /* Контейнер растягивается по ширине контента */
    }
    
    /* Стили фильтров (ваши оригинальные с небольшими дополнениями) */
    .filter-chip1 {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 16px 20px;
        background-color: var(--color-bg-light);
        border: 1px solid transparent;
        border-radius: 15px;
        font-size: 16px;
        font-weight: 500;
        line-height: 120%;
        color: var(--color-light-gray);
        white-space: nowrap;
        width: auto;
        transition: all 0.2s ease;
        cursor: pointer;
        flex: 0 0 auto; /* Важно! Запрещает сжатие кнопок в слайдере */
        gap: 8px;
    }
    
    .filter-chip1.active {
        background-color: var(--color-black);
        color: white;
        border-color: var(--color-black);
    }
    
    .filter-chip1:not(.active) {
        border: 1px solid var(--color-border);
        background-color: transparent;
    }
    
    .filter-chip1:hover:not(.active) {
        background-color: var(--color-border);
    }
    @media (max-width: 991px) {
         .mobile-filter2 {
            display: block;
        }
        .mobile-filter{
            display: none;
        }
    }
    /* Адаптация для мобильных устройств */
    @media (max-width: 768px) {
        .filter-chip1 {
            padding: 12px 16px; /* Чуть меньше отступы на мобилках */
            font-size: 15px;
        }
        
        /* Добавляем визуальную подсказку, что можно листать */
        .filter-scroll-wrapper {
            mask-image: linear-gradient(to right, transparent, black 10px, black 90%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 10px, black 90%, transparent);
        }
        
        /* Убираем маску при скролле (опционально) */
        .filter-scroll-wrapper.scrolling {
            mask-image: none;
            -webkit-mask-image: none;
        }
    }
    
    /* Очень маленькие экраны */
    @media (max-width: 480px) {
        .filter-chip1 {
            padding: 10px 14px;
            font-size: 14px;
        }
    }
/* =================================================================
   4. FAQ ITEMS (ВОПРОСЫ)
   ================================================================= */
.faq-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-faq-bg);
    border-radius: 15px;
    padding: 12px 16px;
    width: 100%;
    height: 74px;
    transition: background-color 0.2s ease;
}

.faq-item:hover {
    background-color: #e8ebee;
}

.faq-item .question {
    font-size: 22px;
    font-weight: 500;
    line-height: 120%;
    color: var(--color-black);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 10px;
    flex: 1;
}

.faq-item .arrow-btn {
    border: none;
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-light-gray);
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.2s ease;
}

.faq-item .arrow-btn:hover {
    background-color: var(--color-bg-light);
}

.faq-item .arrow-btn svg {
    transition: transform 0.3s ease;
}

.faq-item.active .arrow-btn svg {
    transform: rotate(180deg);
}

/* =================================================================
   5. FOOTER СТИЛИ
   ================================================================= */
.footer {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #F5F5F5;
    padding-top: 15px;
}

.footer .logo-section img {
    width: 48px;
    height: 48px;
}

.footer .logo-section .tagline {
    color: #6B7280;
    font-size: 13px;
}

.footer h6 {
    font-weight: 600;
    font-size: 16px;
    color: #1E1E1E;
    margin-bottom: 12px;
}

.btn-figma {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
    gap: 10px;
    min-width: 103px;
    height: 44px;
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    color: #212529;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.btn-figma:hover {
    background: #ff6b35;
    border-color: #ff6b35;
    color: #ffffff;
    text-decoration: none;
}

.footer ul.list-unstyled li {
    margin-bottom: 8px;
}

.footer ul.list-unstyled li a {
    color: #6B7280;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

.footer ul.list-unstyled li a:hover {
    color: #ff6b35;
}

.footer .contact-phone {
    color: #1E1E1E;
    font-size: 16px;
    text-decoration: none;
}

.footer .contact-email {
    color: #6B7280;
    font-size: 14px;
    text-decoration: none;
}

.footer .contact-address {
    color: #6B7280;
    font-size: 14px;
}

.footer .social-link {
    color: #ff6b35;
    font-size: 20px;
    text-decoration: none;
}

.footer .help-block {
    background-color: #ff6b35;
    border-radius: 12px;
    padding: 24px;
    color: #ffffff;
}

.footer .help-block img {
    width: 80px;
    height: 80px;
}

.footer .help-block h6 {
    color: #ffffff;
    margin-bottom: 8px;
}

.footer .help-block p {
    font-size: 14px;
    opacity: 0.75;
    margin-bottom: 12px;
}

.footer .help-block .btn-chat {
    background-color: #ffffff;
    color: #ff6b35;
    border-radius: 20px;
    font-weight: 600;
    padding: 8px 16px;
}

.footer .bottom-text {
    color: #6B7280;
    font-size: 13px;
}

.footer .bottom-links a {
    color: #6B7280;
    font-size: 13px;
    text-decoration: none;
}

.footer .bottom-links a:hover {
    color: #ff6b35;
}

.text-orange {
    color: #ff6b35 !important;
}

.bg-orange {
    background-color: #ff6b35 !important;
}

/* =================================================================
   6. АДАПТИВНОСТЬ
   ================================================================= */
/* Планшеты и меньше (до 768px) */
@media (max-width: 768px) {
    .h1-page-title {
        font-size: 26px;
        line-height: 110%;
    }
    
    .filter-chip {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .faq-item {
        height: auto;
        min-height: 64px;
        padding: 12px 16px;
    }
    
    .faq-item .question {
        font-size: 16px;
        white-space: normal;
    }
    
    .faq-item .arrow-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* Очень маленькие экраны (до 576px) */
@media (max-width: 576px) {
    .filter-chip {
        width: 100%;
        justify-content: center;
    }
    
    .h1-page-title {
        font-size: 24px;
        line-height: 28px;
    }
    
    .faq-item .question {
        font-size: 14px;
    }
}

/* =================================================================
   7. УТИЛИТЫ
   ================================================================= */
.gap-2 {
    gap: 8px;
}

.gap-3 {
    gap: 12px;
}

.gap-4 {
    gap: 16px;
}

.d-flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-column {
    flex-direction: column;
}

.align-items-center {
    align-items: center;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

.text-decoration-none {
    text-decoration: none;
}

.fw-bold {
    font-weight: 600;
}

.fw-medium {
    font-weight: 500;
}

.text-muted {
    color: #6B7280;
}

.text-dark {
    color: #1E1E1E;
}

.small {
    font-size: 13px;
}

.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-5 { margin-bottom: 24px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-5 { margin-top: 24px; }
.me-2 { margin-right: 8px; }
.me-3 { margin-right: 12px; }
.ms-3 { margin-left: 12px; }
.py-4 { padding-top: 16px; padding-bottom: 16px; }
.py-5 { padding-top: 24px; padding-bottom: 24px; }
.px-4 { padding-left: 16px; padding-right: 16px; }
.p-4 { padding: 16px; }
.p-3 { padding: 12px; }
.rounded-3 { border-radius: 12px; }
.rounded-pill { border-radius: 50rem; }
.overflow-hidden { overflow: hidden; }
.position-relative { position: relative; }
.list-unstyled { list-style: none; padding-left: 0; }


/* =================================================================
   12. MOBILE BOTTOM NAV (НИЖНЕЕ МЕНЮ)
   ================================================================= */
.mobile-bottom-nav {
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    padding-bottom: env(safe-area-inset-bottom, 0);
    z-index: 1030;
    background-color: #FFFFFF;
    border-top: 1px solid #E0E4EC;
}

.mobile-bottom-nav .nav-link {
    color: #6B7280;
    transition: all 0.2s;
    text-decoration: none;
    padding: 8px 2px;
}

.mobile-bottom-nav .nav-link:hover,
.mobile-bottom-nav .nav-link.active {
    color: #E74915;
}

.mobile-bottom-nav .nav-link svg {
    width: 24px;
    height: 24px;
}

.mobile-bottom-nav .nav-link span {
    font-size: 12px;
    margin-top: 4px;
}

@media (max-width: 991px) {
    .header {
        display: none !important;
    }
    .mobile-header {
        display: flex !important;
    }
    .mobile-bottom-nav {
        display: flex !important;
    }
    body {
        padding-bottom: 80px;
    }
}

@media (min-width: 992px) {
    .header {
        display: flex !important;
    }
    .mobile-header {
        display: none !important;
    }
    .mobile-bottom-nav {
        display: none !important;
    }
    body {
        padding-bottom: 0;
    }
}

@media (max-width: 768px) {
    .mobile-bottom-nav span {
        font-size: 11px;
    }
    .mobile-bottom-nav svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 576px) {
    .mobile-bottom-nav span {
        font-size: 10px;
    }
    .mobile-bottom-nav .nav-link {
        padding: 6px 2px;
    }
}

/* =================================================================
   13. FOOTER (ПОДВАЛ)
   ================================================================= */
.footer {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #F5F5F5;
}

.footer .logo-section img {
    width: 48px;
    height: 48px;
}

.footer .logo-section .tagline {
    color: #6B7280;
    font-size: 13px;
}

.footer h6 {
    font-weight: 600;
    font-size: 16px;
    color: #1E1E1E;
    margin-bottom: 12px;
}

.footer .btn-figma {
    padding: 8px 16px;
    background-color: #FFFFFF;
    border: 1px solid #E0E4EC;
    border-radius: 8px;
    color: #1E1E1E;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}

.footer .btn-figma:hover {
    background-color: #E74915;
    border-color: #E74915;
    color: #FFFFFF;
}

.footer ul.list-unstyled li {
    margin-bottom: 8px;
}

.footer ul.list-unstyled li a {
    color: #6B7280;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

.footer ul.list-unstyled li a:hover {
    color: #E74915;
}

.footer .contact-phone {
    color: #1E1E1E;
    font-size: 16px;
    text-decoration: none;
}

.footer .contact-email {
    color: #6B7280;
    font-size: 14px;
    text-decoration: none;
}

.footer .contact-address {
    color: #6B7280;
    font-size: 14px;
}

.footer .social-link {
    color: #E74915;
    font-size: 20px;
    text-decoration: none;
}

.footer .help-block {
    background-color: #FF6B35;
    border-radius: 12px;
    padding: 24px;
    color: #FFFFFF;
}

.footer .help-block img {
    width: 80px;
    height: 80px;
}

.footer .help-block h6 {
    color: #FFFFFF;
    margin-bottom: 8px;
}

.footer .help-block p {
    font-size: 14px;
    opacity: 0.75;
    margin-bottom: 12px;
}

.footer .help-block .btn-chat {
    background-color: #FFFFFF;
    color: #E74915;
    border-radius: 20px;
    font-weight: 600;
    padding: 8px 16px;
}

.footer .bottom-text {
    color: #6B7280;
    font-size: 13px;
}

.footer .bottom-links a {
    color: #6B7280;
    font-size: 13px;
    text-decoration: none;
}

.footer .bottom-links a:hover {
    color: #E74915;
}



@media (max-width: 991px) {
    .mobile-mobile {
        display: block !important;
    }
  }  /* Стили для десктопной сетки */
    .partners-card {
        transition: all 0.3s ease;
    }
    
    .partners-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .partners-card:hover img {
        filter: grayscale(0%) !important;
    }
    
    /* Стили для мобильного слайдера */
    @media (max-width: 767px) {
        .partners-slider-mobile__container {
            display: flex;
            flex-wrap: nowrap;
            overflow-x: auto;
            gap: 8px;
            padding-bottom: 12px;
            margin-bottom: 4px;
            scrollbar-width: thin;
            scrollbar-color: #E74915 #f0f0f0;
        }
        
        /* Стилизация скроллбара для Chrome/Safari */
        .partners-slider-mobile__container::-webkit-scrollbar {
            height: 4px;
        }
        
        .partners-slider-mobile__container::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
        }
        
        .partners-slider-mobile__container::-webkit-scrollbar-thumb {
            background: #E74915;
            border-radius: 10px;
        }
        
        .partners-slider-mobile__container::-webkit-scrollbar-thumb:hover {
            background: #d13d0a;
        }
        
        /* Стили для карточек в слайдере */
        .partners-slider-mobile__item {
            width: 140px; /* Фиксированная ширина для мобильных */
        }
        
        .partners-slider-mobile__item .partners-card {
            min-height: 90px;
            border-radius: 16px !important;
            padding: 12px !important;
            background-color: #ffffff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }
        
        /* Адаптация для очень маленьких экранов */
        @media (max-width: 480px) {
            .partners-slider-mobile__item {
                width: 120px;
            }
            
            .partners-slider-mobile__item .partners-card {
                min-height: 80px;
                padding: 8px !important;
            }
            
            .partners-slider-mobile__item img {
                max-width: 80px;
                max-height: 40px;
            }
        }
        
        /* Добавляем эффект нажатия */
        .partners-slider-mobile__item .partners-card:active {
            transform: scale(0.98);
        }
    }
    
    /* Стили для текста на мобильных */
    @media (max-width: 767px) {
        .bg-dark .row.mb-5 {
            margin-bottom: 24px !important;
        }
        
        .bg-dark .display-5 {
            font-size: 28px !important;
            line-height: 32px !important;
            margin-bottom: 12px !important;
        }
        
        .bg-dark .lead {
            font-size: 16px !important;
            line-height: 20px !important;
        }
    }

 /* Центрирование иконок в кнопках переключения вида */
    .catalog-section__view-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }
    
    /* Стили для мобильного слайдера */
    @media (max-width: 761.98px) {
        .catalog-categories-scroll .catalog-categories {
            display: flex;
            flex-wrap: nowrap;
            overflow-x: auto;
            gap: 4px;
            padding-bottom: 8px;
            margin-bottom: 8px;
            scrollbar-width: thin;
        }
        
        .catalog-categories-scroll .catalog-categories__item {
            white-space: nowrap;
            background-color: #f8f9fa;
        }
        
        .catalog-categories-scroll .catalog-categories__item--active {
            background-color: #e9ecef;
        }
    }
    
    /* Стили для карточек - чтобы не растягивались на весь экран */
    .catalog-card {
        max-width: 100%;
    }
    
    @media (min-width: 768px) {
        .catalog-card {
            flex: 0 0 auto;
            width: 50%;
        }
    }
    
    /* Точка переключения 762px */
    @media (min-width: 762px) {
        .catalog-categories-scroll {
            display: none !important;
        }
    }
    
    @media (max-width: 761.98px) {
        .catalog-section .col-lg-3:first-child {
            display: none !important;
        }
        
        .catalog-categories-scroll {
            display: block !important;
        }
    }
    
    /* Дополнительные стили для сохранения оригинального вида на десктопе */
    .catalog-categories__item1 {
        cursor: pointer;
        transition: background-color 0.2s;
    }
    
    .catalog-categories__item1:hover {
        background-color: #f0f0f0;
    }
    
    .hover-bg-light:hover {
        background-color: #f8f9fa;
    }
    
    /* Опционально: добавляем плавность скроллу */
    .catalog-categories-scroll .catalog-categories {
        scroll-behavior: smooth;
    }
    
    /* Скрываем стрелку у последнего элемента в десктопном фильтре */
    .catalog-categories__item1:not(.catalog-categories__item1--active) svg {
        display: none;
    }


    /* Оранжевый цвет для активного элемента */
.text-orange {
    color: #E74915 !important;
}

/* Стили для нижнего меню */
.mobile-bottom-nav {
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    display: flex !important; /* Принудительно показываем */
}

.mobile-bottom-nav .nav-link {
    color: #6B7280;
    transition: all 0.2s;
    text-decoration: none;
}

.mobile-bottom-nav .nav-link:hover,
.mobile-bottom-nav .nav-link.active {
    color: #E74915;
}

/* ===== МЕДИА-ЗАПРОСЫ ДЛЯ АДАПТИВНОСТИ ===== */

/* Мобильные устройства (меньше 992px) */
@media (max-width: 991px) {
    /* Скрываем десктопный header */
    .header {
        display: none !important;
    }
    
    /* Показываем мобильный header */
    .mobile-header {
        display: flex !important; /* Изменил на flex */
    }
    
    /* Показываем нижнее мобильное меню */
    .mobile-bottom-nav {
        display: flex !important; /* Изменил на flex */
    }
    
    /* Добавляем отступ для контента снизу (высота нижнего меню) */
    body {
        padding-bottom: 80px;
    }
}

/* Десктопные устройства (992px и больше) */
@media (min-width: 992px) {
    /* Показываем десктопный header */
    .header {
        display: flex !important; /* Изменил на flex */
    }
    
    /* Скрываем мобильный header */
    .mobile-header {
        display: none !important;
    }
    
    /* Скрываем нижнее мобильное меню */
    .mobile-bottom-nav {
        display: none !important;
    }
    
    /* Убираем отступ для контента */
    body {
        padding-bottom: 0;
    }
}

/* Планшеты и маленькие экраны (дополнительные стили) */
@media (max-width: 768px) {
    /* Уменьшаем размеры шрифтов в мобильном меню */
    .mobile-bottom-nav span {
        font-size: 11px;
    }
    
    /* Уменьшаем иконки */
    .mobile-bottom-nav svg {
        width: 20px;
        height: 20px;
    }
}

/* Очень маленькие экраны */
@media (max-width: 576px) {
    /* Ещё меньше шрифты */
    .mobile-bottom-nav span {
        font-size: 10px;
    }
    
    /* Уменьшаем padding в мобильном меню */
    .mobile-bottom-nav .nav-link {
        padding: 6px 2px;
    }
}

.text-orange {
        color: #FF6B35 !important;
    }
    
    .bg-orange {
        background-color: #FF6B35 !important;
    }
    
    .btn-outline-secondary {
        border-color: #dee2e6;
        color: #6c757d;
    }
    
    .btn-outline-secondary:hover {
        background-color: #FF6B35;
        border-color: #FF6B35;
        color: white;
    }
    
    .footer {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }



