/* Plik: css/section-cta.css */

/* ================= CTA SECTION ================= */
.cta-section {
    /* PADDING: 60px gora, 120px do? (koniec strony) */
    padding: 60px 0 120px; 
    text-align: center; 
    background-color: var(--bg-main); 
    border: none;
}

.cta-icon-wrapper { 
    width: 128px; 
    height: 128px; 
    margin: 0 auto 30px auto; 
    transition: transform 0.3s ease; 
}

.cta-icon-wrapper:hover { 
    transform: scale(1.05) rotate(-3deg); 
}

/* Neonowa ikona SVG w CTA (stylizacja inline w HTML, ale tu wrapper) */
.cta-image-block {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.cta-section h2 {
    font-size: 3.5rem; 
    font-weight: 800; 
    color: #fff;
    margin-bottom: 40px; 
    letter-spacing: -1.5px; 
    line-height: 1.1;
}

.cta-section h2 span {
    background: var(--accent-gradient);
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    background-clip: text;
    filter: var(--glow-text);
}

.cta-section .btn-group { 
    margin-bottom: 0; 
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Przycisk dolny */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    color: white;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.6);
    filter: brightness(1.1);
}

@media (max-width: 768px) { 
    .cta-section { padding: 60px 0 100px; } 
    .cta-section h2 { font-size: 2.5rem; } 
}