/* CTA Banner Styles - Based on Figma Design */
.cta-banner {
    margin: 60px 0;
    padding: 0 20px;
}

.cta-banner__container {
    max-width: 896px;
    margin: 0 auto;
    padding: 40px;
    /* Точный градиент из Figma */
    background: linear-gradient(135deg, rgba(255, 229, 56, 0.07) 0%, rgba(195, 56, 219, 0.16) 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-banner__logo {
    width: 118px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
    /* Переопределяем стили из .single-body img */
    border-radius: 0 !important;
    margin: 0 0 20px 0 !important; /* 20px отступ снизу до заголовка */
    box-shadow: none !important;
    max-width: 118px;
}

.cta-banner__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px; /* 8px между заголовком и текстом */
    align-items: center;
    width: 100%;
}

.cta-banner__title {
    font-family: 'Manrope', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 24px!important; /* Исправлено на 24px для соответствия Figma */
    color: #121216;
    margin: 0 !important; /* Переопределяем .single-body h2, h3 */
    width: 100%;
}

.cta-banner__description {
    color: #121216;
    text-align: center;
    
    /* Landing/Text 1 */
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px; /* 177.778% */
    margin: 0;
    width: 100%;
}

.cta-banner__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 64px;
    margin-top: 20px; /* Отступ от контента до кнопки */
    /* Градиентная кнопка из Figma */
    background: linear-gradient(90deg, #FF9500 0%, #FF375F 100%);
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.25);
    flex-shrink: 0;
}

.cta-banner__button-text {
    color: #FFFFFF;
    text-align: center;
    
    /* Button/Large */
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 141.176% */
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.cta-banner__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 149, 0, 0.35);
    /* При наведении добавляем лёгкое осветление */
    background: linear-gradient(90deg, #FFa500 0%, #FF475F 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-banner {
        margin: 40px 0;
        padding: 0 16px;
    }
    
    .cta-banner__container {
        padding: 32px 24px;
        gap: 18px;
    }
    
    .cta-banner__logo {
        width: 100px;
        height: 37px;
    }
    
    .cta-banner__title {
        font-size: 20px;
        line-height: 20px!important;
    }
    
    .cta-banner__description {
        font-size: 16px;
        line-height: 26px;
    }
    
    .cta-banner__button {
        padding: 16px 48px;
        width: 100%;
        max-width: 280px;
    }
    
    .cta-banner__button-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .cta-banner__container {
        padding: 28px 20px;
        gap: 16px;
    }
    
    .cta-banner__logo {
        width: 90px;
        height: 33px;
    }
    
    .cta-banner__title {
        font-size: 18px;
        line-height: 18px!important;
    }
    
    .cta-banner__description {
        font-size: 15px;
        line-height: 24px;
    }
    
    .cta-banner__button {
        padding: 14px 40px;
    }
}

/* Legacy support for old class names */
.cta-block {
    margin: 60px 0;
    padding: 0 20px;
}

.cta-block__container {
    max-width: 896px;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 229, 56, 0.07) 0%, rgba(195, 56, 219, 0.16) 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-block__logo {
    width: 118px;
    height: 44px;
    object-fit: contain;
    /* Переопределяем стили из .single-body img */
    border-radius: 0 !important;
    margin: 0 0 20px 0 !important; /* 20px отступ снизу до заголовка */
    box-shadow: none !important;
    max-width: 118px;
}

.cta-block__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px; /* 8px между заголовком и текстом */
    align-items: center;
    width: 100%;
}

.cta-block__title {
    font-family: 'Manrope', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    color: #121216;
    margin: 0 !important; /* Переопределяем .single-body h2, h3 */
}

.cta-block__description {
    color: #121216;
    text-align: center;
    
    /* Landing/Text 1 */
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px; /* 177.778% */
    margin: 0;
}


.cta-block__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 64px;
    margin-top: 20px; /* Отступ от контента до кнопки */
    background: linear-gradient(90deg, #FF9500 0%, #FF375F 100%);
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.25);
    
    /* Button/Large */
    color: #FFFFFF;
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 141.176% */
    letter-spacing: 0.5px;
}

.cta-block__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 149, 0, 0.35);
    background: linear-gradient(90deg, #FFa500 0%, #FF475F 100%);
    color: #FFFFFF;
    text-decoration: none;
}