.cta-banner-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, var(--global-palette1) 0%, var(--global-palette2) 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.cta-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 50px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    justify-content: center;
}

.cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.cta-icon svg {
    width: 100%;
    height: 100%;
    stroke: #ffffff;
    color: #ffffff;
    transition: all 0.3s ease;
}

.cta-feature:hover .cta-icon svg {
    stroke: #ff914d;
    color: #ff914d;
    transform: scale(1.1);
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.btn-primary-large {
    display: inline-block;
    padding: 20px 50px;
    background: var(--global-palette3);
    color: #ffffff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-primary-large:hover {
    background: #b8964e;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.cta-subtext {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

@media (max-width: 768px) {
    .cta-banner-section {
        padding: 60px 20px;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .cta-feature {
        justify-content: flex-start;
    }
    
    .btn-primary-large {
        width: 100%;
        text-align: center;
    }
}