/* Базовые стили */
.gilroy-bold { font-family: 'Gilroy-Bold', sans-serif; }
.gilroy-medium { font-family: 'Gilroy-Medium', sans-serif; }
.gilroy-regular { font-family: 'Gilroy-Regular', sans-serif; }
.color-white { color: #ffffff; }

/* Баннер */
.rkz-top-banner {
    position: relative;
    margin-bottom: 1rem;
}
.rkz-bg-image {
    width: 100%;
    height: auto;
}
.rkz-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.rkz-content-center {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Статистика */
.stats-card {
    border-radius: 20px;
    border: 1px solid #F6EEE9;
    background-color: #F6EEE9;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.stats-number {
    font-family: 'Gilroy-Bold', sans-serif;
    font-size: 50px;
    color: #FF6500;
    white-space: nowrap;
}
.stats-text {
    font-family: 'Gilroy-Medium', sans-serif;
    font-size: 20px;
    color: #000000;
    text-align: right;
    /*flex-grow: 1;*/
    /*word-break: break-word;*/
}

/* Блок "Кто мы?" */
.about-text-frame {
    border: 1px solid #000;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
}
.frame-title {
    font-family: 'Gilroy-Bold', sans-serif;
    font-size: 50px;
    margin-bottom: 20px;
    color: #000000;
}
.frame-description {
    font-family: 'Gilroy-Medium', sans-serif;
    font-size: 30px;
    line-height: 1.5;
    color: #000000;
}

/* Стили для декоративного SVG элемента */
.about-svg-decoration {
    position: absolute;
    top: -110px;
    right: -40px;
    width: 200px;
    height: 250px;
    z-index: 1;
}

/* Адаптивные стили для разных экранов */
@media (max-width: 1200px) {
    .about-svg-decoration {
        width: 180px;
        height: 225px;
        top: -90px;
        right: -30px;
    }
}

@media (max-width: 992px) {
    .about-svg-decoration {
        width: 160px;
        height: 200px;
        top: -80px;
        right: -20px;
    }
}

@media (max-width: 768px) {

    .benefit-item {
        flex-direction: column;
      }

    .benefit-item .hint-wrapper {
        order: -1;
        margin-bottom: 10px;
    }


    .about-svg-decoration {
        width: 140px;
        height: 175px;
        top: -70px;
        right: -15px;
    }
}

@media (max-width: 576px) {
    .about-svg-decoration {
        width: 120px;
        height: 150px;
        top: -60px;
        right: -10px;
    }
}

/* Блок "Преимущества" */
.benefits-text-frame {
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    background-color: #F6EEE9;
}
.benefits-title {
    font-family: 'Gilroy-Bold', sans-serif;
    font-size: 50px;
    margin-bottom: 20px;
    color: #FF6500;
}
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.benefit-item {
    /*position: relative;*/
    display: flex;
    align-items: center;
    margin: 30px 0;
}
.benefit-icon {
    width: 74px;
    height: 74px;
    margin-right: 10px;
}
.benefit-item span {
    font-family: 'Gilroy-Medium', sans-serif;
    font-size: 24px;
    color: #000000;
}
.benefit-item svg {
    margin-right: 20px;
}

/* Блок "Юр.лица" */
.geometric-face {
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    border: 1px solid #FF6500;
}

.geometric-face-title {
    font-family: 'Gilroy-Bold', sans-serif;
    font-size: 50px;
    margin-bottom: 20px;
    color: #000000;
}

/* Блок "Продажи и маркетинг" */

.sales-and-marketing-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0;
    list-style: none;
}

.sales-and-marketing-item {
    border: 1px solid #000;
    padding: 15px;
    flex: 1 1 calc(50% - 10px);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    background-color: #F6EEE9;
    border-radius: 20px;
    margin: 0;
}

.hint-wrapper {
    margin-left: auto;
    padding-left: 10px;
}

.simple-hint {
    position: relative;
    display: inline-block;
}

.hint-icon {
    width: 35px;
    height: 35px;
    color: #000;
    cursor: pointer;
    transition: color 0.2s;
}

.simple-hint:hover .hint-icon {
    color: #FF6500;
}

.hint-text {
    display: none;
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translateX(-50%);
    background: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    line-height: 1.3;
    white-space: normal;
    width: 300px;
    border: 1px solid #eee;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 8px;
    z-index: 100;
}

.simple-hint:hover .hint-text {
    display: block;
}


/* Блок "Наша цель" */
.our-goal-frame {
    background-color: #FF6500;
    border-radius: 20px;
    padding: 30px;
    color: #ffffff;
}
.our-goal-title {
    font-family: 'Gilroy-Bold', sans-serif;
    font-size: 50px;
    margin-bottom: 20px;
}
.our-goal-description {
    font-family: 'Gilroy-Medium', sans-serif;
    font-size: 30px;
    line-height: 1.5;
}

/* Блок "Подразделения" */
.departments-section-title {
    font-family: 'Gilroy-Bold', sans-serif;
    font-size: 42px;
    color: #000000;
    margin-bottom: 20px;
    text-align: left;
}
.departments-card {
    border-radius: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 19px;
}
.departments-standard-card {
    border: 1px solid #FF6500;
    background-color: #fff;
}
.departments-partner-card {
    background-color: #F6EEE9;
}
.departments-card-title {
    font-family: 'Gilroy-Bold', sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
    color: #000000;
}
.departments-partner-title {
    font-family: 'Gilroy-Bold', sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
    color: #FF6500;
}
.departments-card-description,
.departments-partner-description {
    font-family: 'Gilroy-Medium', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
    margin: 0;
}
.departments-partner-btn-container {
    background-color: #FF6500;
    border-radius: 20px;
    padding: 10px;
    transition: all 0.3s ease;
}
.departments-partner-btn {
    background-color: transparent;
    border: none;
    font-family: 'Gilroy-Bold', sans-serif;
    font-size: 16px;
    padding: 20px;
}
.departments-partner-btn svg {
    margin-left: 10px;
    transition: transform 0.3s ease;
}
.departments-partner-btn-text {
    color: #ffffff;
    transition: color 0.3s ease;
}
.departments-partner-btn-container:hover {
    background-color: #ffffff;
    border: 1px solid #FF6500;
}
.departments-partner-btn-container:hover .departments-partner-btn-text {
    color: #FF6500;
}
.departments-partner-btn-container:hover svg path {
    stroke: #FF6500;
}
.departments-partner-btn-container:hover svg {
    transform: translateX(3px);
}


/* Блок Внедрение стандартов */
.standards-section {
    padding: 40px 0;
    background: transparent;
}

.standards-wrapper {
    margin: 0 auto;
    padding: 0 20px;
}

.standard-card {
    border: 2px solid #FF6500;
    border-radius: 20px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    text-align: left;
    background: white;
    height: 100%;
}

.standard-icon {
    margin-bottom: 20px;
    height: 56px;
    width: 56px;
}

.standard-title {
    font-size: 18px;
    font-family: 'Gilroy-Bold', sans-serif;
    margin-bottom: 15px;
    color: #000000;
}

.standard-description {
    font-family: 'Gilroy-Medium', sans-serif;
    font-size: 14px;
    color: #000000;
    margin: 0;
}

@media (max-width: 992px) {
    .standard-list > div {
        margin-bottom: 20px;
    }
    .geometric-face-title {
        font-size: 40px;
    }
}

/* IT-Решение */
.it-solutions-container {
    background-color: #FF6500;
    border-radius: 20px;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.header-container {
    width: 100%;
    text-align: left;
    margin-bottom: 30px;
    padding-left: 20px;
}

.content-wrapper {
    position: relative;
}

.content-container {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    justify-content: space-between;
}

.text-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 300px;
}

.left-column {
    padding-right: 20px;
}

.right-column {
    padding-left: 20px;
}

.solution-item {
    border-radius: 20px;
    position: relative;
    border: 1px solid #FFFFFF;
    padding: 12px 20px;
    word-break: break-word;
}

.left-column .solution-item {
    text-align: left;
}

.right-column .solution-item {
    text-align: right;
}

.solution-item p {
    margin: 0;
    font-family: 'Gilroy-medium', sans-serif;
    line-height: 1.5;
    color: #FFFFFF;
}

.left-column .solution-item p {
    padding-right: 350px;
}

.right-column .solution-item p {
    padding-left: 350px;
}

.image-column {
    position: relative;
    margin: 30px auto;
    z-index: 2;
    display: flex;
    justify-content: center;
    width: 100%;
    order: -1;
}

.phone-image {
    max-width: 100%;
    height: auto;
}

.main-title {
    font-family: 'Gilroy-Bold', sans-serif;
    color: #FFFFFF;
    margin-bottom: 0;
    white-space: nowrap;
    margin-top: 0;
    font-size: 2rem;
}

.subtitle {
    font-family: 'Gilroy-Regular', sans-serif;
    color: #FFFFFF;
    margin-bottom: 0;
    font-weight: normal;
    margin-top: 10px;
    font-size: 1.2rem;
}

.partner-button {
    cursor: pointer;
}

html {
    scroll-behavior: smooth;
}

.partner-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.partner-link p {
    margin: 0;
}

@media (min-width: 1242px) {
    .content-container {
        flex-wrap: nowrap;
    }

    .left-column {
        padding-right: 150px;
    }

    .right-column {
        padding-left: 150px;
    }

    .left-column .solution-item {
        border-right: none;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        padding: 12px 12px 12px 20px;
        margin-right: -50%;
    }

    .right-column .solution-item {
        border-left: none;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        padding: 12px 20px 12px 12px;
        margin-left: -50%;
    }

    .image-column {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: auto;
        margin: 0;
        order: 0;
    }

    .phone-image {
        max-width: 600px;
    }
}

@media (max-width: 1241px) {
    .content-container {
        flex-direction: column;
    }

    .image-column {
        order: 1;
        margin: 0 auto 30px;
    }

    .left-column {
        order: 2;
        padding-right: 0;
    }

    .right-column {
        order: 3;
        padding-left: 0;
        position: relative;
        padding-bottom: 70px;
    }


    .partner-button {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        margin-top: 30px;
    }


    .left-column .solution-item,
    .right-column .solution-item {
        text-align: left;
        margin: 0;
        border-radius: 20px;
    }

    .left-column .solution-item p,
    .right-column .solution-item p {
        padding: 0;
    }
}

@media (max-width: 767px) {

    .main-title {
        white-space: normal;
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .solution-item {
        padding: 10px 15px;
    }

    /* Изменяем кнопку */
    .partner-button {
        position: static;
        width: 100%;
        margin-top: 20px;
        text-align: center;
    }

    .partner-text {
        display: inline-block;
        font-size: 1.1rem;
    }
}


/* Контроль качества */
.control-system {
    padding: 2rem;
    background-color: #fff;
}

.control-system-title {
    font-family: 'Gilroy-Bold', sans-serif;
    font-size: 50px;
    margin-bottom: 20px;
    color: #000000;
}

.control-system-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.control-system-card {
    display: flex;
    align-items: center;
    background-color: #F6EEE9;
    padding: 1rem;
    border-radius: 20px;
    transition: transform 0.2s;
}


.control-system-card:nth-child(1),
.control-system-card:nth-child(3) {
    width: 75%;
    justify-self: start;
}

.control-system-card:nth-child(2),
.control-system-card:nth-child(4) {
    width: 125%;
    margin-left: -25%;
}

.control-system-icon {
    flex-shrink: 0;
    margin-right: 1rem;
}

.control-system-icon svg {
    width: 40px;
    height: 40px;
}

.control-system-card-text {
    font-family: 'Gilroy-Medium', sans-serif;
    font-size: 18px;
    color: #000000;
    margin: 0;
    text-align: right;
    flex-grow: 1;
    padding-left: 1rem;
}

@media (max-width: 768px) {
    .control-system-grid {
        grid-template-columns: 1fr;
    }

    .control-system-card:nth-child(1),
    .control-system-card:nth-child(3),
    .control-system-card:nth-child(2),
    .control-system-card:nth-child(4) {
        width: 100%;
        margin-left: 0;
    }
}


.renovation-description {
    font-family: 'Gilroy-Medium', sans-serif;
}

/* Стили для кнопки "Стать партнером" */
.partner-button {
    background-color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.partner-button p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0 20px;
}

.partner-text {
    color: #000000;
    font-family: 'Gilroy-Bold', sans-serif;
    flex-grow: 1;
    text-align: left;
}

.partner-arrow {
    flex-shrink: 0;
    margin-left: 10px;
}

@media (max-width: 767px) {
    .partner-button {
        margin-bottom: 20px !important;
    }

    .partner-button p {
        gap: 8px;
    }

    .partner-arrow {
        width: 16px;
        height: 16px;
    }
}

@media (min-width: 992px) {
    /*.left-column {*/
    /*    padding-right: 250px;*/
    /*}*/

    /*.right-column {*/
    /*    padding-left: 250px;*/
    /*}*/

    .phone-image {
        width: 500px;
    }
}

@media (min-width: 1200px) {
    .phone-image {
        width: 600px;
    }
}

@media (max-width: 767px) {
    .main-title {
        white-space: normal;
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .content-container {
        flex-direction: column;
    }

    .text-column {
        min-width: 100%;
    }

    .left-column, .right-column {
        padding: 0;
    }

    .solution-item {
        text-align: left !important;
        border: 1px solid #FFFFFF !important;
        border-radius: 20px !important;
        padding: 12px 20px !important;
        /*margin: 0 0 20px 0 !important;*/
    }
}

/* Блок новостей */
.news-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
.news-slide {
    display: none;
    width: 100%;
}
.news-slide.active {
    display: block;
}
.news-slide-content {
    background: white;
    border: 1px solid #000;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}
.news-image {
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 20px 0 0 20px;
}
.news-text-content {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.news-title {
    font-family: 'Gilroy-Bold', sans-serif;
    font-size: 20px;
    color: #000000;
    margin-bottom: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-description {
    font-family: 'Gilroy-Medium', sans-serif;
    font-size: 16px;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 30px;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
}
.news-detail-btn {
    display: inline-flex;
    align-items: center;
    background-color: #FF6500;
    border-radius: 20px;
    padding: 16px;
    font-family: 'Gilroy-Bold', sans-serif;
    font-size: 16px;
    color: white !important;
    text-decoration: none !important;
    transition: background-color 0.3s, color 0.3s;
    border: 1px solid transparent;
    box-sizing: border-box;
    height: 40px;
}
.news-detail-btn:hover {
    background-color: white;
    color: #FF6500 !important;
    border-color: #FF6500;
}
.news-detail-btn:hover svg path {
    stroke: #FF6500;
}
.news-detail-btn svg {
    margin-left: 8px;
}
.news-date {
    font-family: 'Gilroy-Medium', sans-serif;
    font-size: 14px;
    color: #000000;
}
.news-navigation {
    display: flex;
    /*gap: 20px;*/
}
.news-navigation button {
    background: #F6EEE9;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    outline: none;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

/* Основные стили для блока реновации */
.renovation-container {
    position: relative;
    margin-bottom: 3rem;
}

.renovation-block {
    background-color: #F6EEE9;
    border-radius: 20px;
    padding: 24px;
    position: relative;
    z-index: 1;
}

.renovation-image {
    position: absolute;
    top: -43px;
    right: 60px;
    width: 324px;
    z-index: 2;
    transition: all 0.3s ease;
}

/* Адаптация под планшеты */
@media (max-width: 1024px) {
    .renovation-image {
        width: 280px;
        top: -30px;
        right: 30px;
    }
}

/* Адаптация под мобильные */
@media (max-width: 768px) {
    .renovation-container {
        padding-bottom: 40px;
    }
    .renovation-image {
        position: relative;
        top: auto;
        right: auto;
        width: 200px;
        margin: 20px auto 0;
        display: block;
    }
}

/* Адаптивные стили */
@media (max-width: 1199px) {
    /* Статистика */
    .stats-card { height: 110px; padding: 18px; }
    .stats-number { font-size: 45px; }
    .stats-text { font-size: 18px; }

    /* Текстовые блоки */
    .frame-title, .our-goal-title, .benefits-title { font-size: 28px; }
    .frame-description, .our-goal-description { font-size: 24px; }
    .benefit-item span { font-size: 18px; }

    /* Подразделения */
    .departments-card { padding: 25px; }
    .departments-card-title, .departments-partner-title { font-size: 24px; margin-bottom: 15px; }

    /* Новости */
    .news-title { font-size: 22px; }
    .news-description { font-size: 15px; }
}


@media (max-width: 991px) {
    .stats-number {
        font-size: 40px;
        margin-right: 15px;
    }

    .about-text-frame {
        padding: 25px;
    }

    .news-text-content {
        padding: 25px;
    }

    .departments-card {
        padding: 20px !important;
        /*min-height: 220px;*/
    }

    .departments-card-title,
    .departments-partner-title {
        font-size: 22px !important;
        margin-bottom: 12px !important;
    }

    .departments-card-description,
    .departments-partner-description {
        font-size: 15px !important;
        line-height: 1.4 !important;
    }
}

@media (max-width: 767px) {
    /* Статистика */
    .stats-card {
        height: 100px;
        padding: 15px;
    }

    .stats-number {
        font-size: 36px;
    }

    .stats-text {
        font-size: 16px;
    }

    /* Текстовые блоки */
    .frame-title, .our-goal-title, .benefits-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .frame-description, .our-goal-description {
        font-size: 20px;
    }

    .benefit-item span {
        font-size: 16px;
    }

    /* Подразделения */
    .departments-card {
        padding: 20px;
    }

    .departments-card-title, .departments-partner-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .geometric-face-title {
        font-size: 30px;
    }

    /* Новости */
    .news-image {
        height: 200px;
        border-radius: 20px 20px 0 0;
    }

    .news-text-content {
        padding: 20px;
    }

    .news-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .news-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .news-footer {
        padding-top: 15px;
    }

    /* Общие отступы */
    .row.align-items-stretch > [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }

    .about-text-frame, .pe-md-3, .ps-md-3 {
        padding-right: 15px !important;
        padding-left: 15px !important;
    }

    .row.align-items-stretch {
        margin-left: -15px;
        margin-right: -15px;
    }

    .row.align-items-stretch.mt-5, .row.align-items-stretch.mt-4 {
        margin-top: 30px !important;
    }

    /*.about-svg-frame {*/
    /*    height: 300px;*/
    /*}*/
}

@media (max-width: 575px) {
    .stats-number {
        font-size: 32px;
        margin-right: 12px;
    }

    .stats-text {
        font-size: 15px;
    }

    .frame-title, .our-goal-title, .benefits-title {
        font-size: 22px;
    }

    .frame-description, .our-goal-description {
        font-size: 18px;
    }

    .benefit-item span {
        font-size: 15px;
    }

    .news-title {
        font-size: 18px;
    }

    .news-description {
        font-size: 13px;
    }

    .news-detail-btn {
        font-size: 14px;
    }

    .news-date {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .stats-card {
        height: 90px;
        padding: 12px;
    }

    .stats-number {
        font-size: 28px;
    }

    .stats-text {
        font-size: 14px;
    }

    .frame-title, .our-goal-title, .benefits-title {
        font-size: 20px;
    }

    .frame-description, .our-goal-description {
        font-size: 16px;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
    }

    .news-text-content {
        padding: 15px;
    }

    .news-title {
        font-size: 17px;
    }

    .news-description {
        font-size: 12px;
    }
}

@media (max-width: 375px) {
    .stats-number {
        font-size: 24px;
        margin-right: 10px;
    }

    .stats-text {
        font-size: 13px;
    }

    .frame-title, .our-goal-title, .benefits-title {
        font-size: 18px;
    }

    .frame-description, .our-goal-description {
        font-size: 15px;
    }

    .benefit-item span {
        font-size: 14px;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
    }

    .news-title {
        font-size: 16px;
    }

    .news-detail-btn {
        font-size: 13px;
    }

    .news-date {
        font-size: 12px;
    }
}

/* Давайте сотрудничать! */
.cooperate-container {
    position: relative;
    padding: 40px 0;
}

.cooperate-title {
    font-family: 'Gilroy-Bold', sans-serif;
    font-size: 80px;
    margin-bottom: 20px;
    line-height: 1.1;
    max-width: 80%;
}

.cooperate-title span {
    display: block;
}

.cooperate-description {
    font-family: 'Gilroy-Medium', sans-serif;
    max-width: 60%;
    margin-top: 20px;
}

/* Форма обратной связи */
.callback-form-wrapper {
    border-radius: 20px;
    width: 430px;
    padding: 25px;
    background: #FF6500;
    font-family: 'Gilroy-Bold', sans-serif;
    position: relative;
    z-index: 10;
    margin-bottom: -200px;
    transform: translateX(-50px);
}

.callback-form-title {
    font-size: 24px;
    font-family: 'Gilroy-Bold', sans-serif;
    text-align: center;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.callback-input {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    background-color: #FF6500;
    color: white;
    margin-bottom: 15px;
}

.callback-input::placeholder {
    color: white;
    opacity: 1;
}

.callback-submit-btn {
    width: 100%;
    background-color: #FFFFFF;
    color: black;
    font-family: 'Gilroy-Bold', sans-serif;
    text-transform: uppercase;
    border-radius: 10px;
    border: none;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
}

/* Футер */
.franchise-footer {
    background-color: #000000;
    border-radius: 20px;
    padding: 40px 35px;
    margin-top: 70px;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-left {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo .logo {
    height: 50px;
    width: auto;
}

.footer-email {
    margin-bottom: 5px;
}

.footer-email a {
    font-family: 'Gilroy-Medium', sans-serif;
    font-size: 16px;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-email a:hover {
    opacity: 0.8;
}

.footer-phone {
    margin-top: 5px;
    font-family: 'Gilroy-Bold', sans-serif;
    font-size: 40px;
    color: white;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.3s;
}

.footer-right {
    align-self: flex-end;
}

.footer-copyright span {
    font-family: 'Gilroy-Medium', sans-serif;
    font-size: 14px;
}

.text-muted {
    color: #FFFFFF !important;
}

/* Восклицательный знак */
.cooperate-bg {
    position: absolute;
    bottom: 200px;
    left: 0;
    z-index: -2;
    width: 121px;
    height: auto;
}

/* Адаптивность */
@media (max-width: 1400px) {
    .cooperate-title {
        font-size: 72px;
    }
    .callback-form-wrapper {
        width: 400px;
    }
}

@media (max-width: 1200px) {
    .cooperate-title {
        font-size: 68px;
    }
    .callback-form-wrapper {
        width: 380px;
    }
}

@media (max-width: 992px) {
    .cooperate-title {
        font-size: 60px;
        position: relative;
        z-index: 2;
    }
    .cooperate-bg {
        width: 80px;
        bottom: 160px;
        z-index: -1;
    }
    .callback-form-wrapper {
        width: 350px;
    }
}

@media (max-width: 919px) {
    .cooperate-container {
        /*padding: 40px 20px;*/
        position: relative;
    }
    .cooperate-title {
        font-size: 48px;
        max-width: 100%;
        text-align: center;
    }
    .cooperate-bg {
        width: 60px;
        top: -40px;
        bottom: auto;
        left: 50%;
        transform: translateX(-50%);
        z-index: -1;
    }
    .cooperate-description {
        max-width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }
    .callback-form-wrapper {
        width: 100%;
        max-width: 100%;
        margin: 20px auto 0;
        padding: 20px;
        transform: none;
    }
    .franchise-footer {
        margin-top: 20px;
    }
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-right {
        margin-top: 25px;
        align-self: flex-start;
    }
}

@media (max-width: 576px) {
    .cooperate-title {
        font-size: 36px;
    }
    .cooperate-bg {
        width: 50px;
        top: 40px;
    }
    .footer-phone {
        font-size: 32px;
    }
}

@media (max-width: 400px) {
    .cooperate-title {
        font-size: 32px;
    }
    .cooperate-bg {
        width: 40px;
        top: 30px;
    }
    .footer-phone {
        font-size: 28px;
    }
}
