/**
 * ZORIN Member - Стили для секции призыва к действию
 * Определяет внешний вид CTA блока внизу страницы
 */

.cta {
    background: linear-gradient(135deg, #007ab8 0%, #0088cc 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Фоновый декоративный элемент */
.cta-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.1;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Стили для табов в CTA */
.cta .tabs {
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.cta .tab-btn {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.cta .tab-btn.active {
    background: white;
    color: var(--primary-color);
}

.cta .tab-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Содержимое CTA */
.cta-content {
    display: none;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content.active {
    display: block;
}

.cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: white;
}

.cta p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* Список особенностей в CTA */
.cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 500;
}

.cta-feature svg {
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 3px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .cta h2 {
        font-size: 32px;
    }
    
    .cta p {
        font-size: 16px;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .cta h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin-right: 0;
    }
}