/* ===========================
   FOOTER BASE
=========================== */

.site-footer {
    font-family: inherit;
}

/* ===== CTA ===== */
.footer-cta {
    background: #1a237e;
    color: #fff;
    padding: 48px 0;
    text-align: center;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 24px;
}

.cta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.cta-title {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 10px;
}

.cta-desc {
    max-width: 720px;
    margin: 0 auto 24px;
    font-size: 15px;
}

.cta-form {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-form input {
    padding: 14px 18px;
    border-radius: 30px;
    border: none;
    min-width: 220px;
}

.cta-form button {
    background: #f5c04d;
    color: #111;
    font-weight: 800;
    border-radius: 30px;
    padding: 14px 32px;
    border: none;
    cursor: pointer;
}

/* ===== MAIN FOOTER ===== */
.footer-main {
    background: #0a27e4;;
    color: #fff;
    padding: 50px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 16px;
}

.footer-list li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-links li {
    border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.footer-links a {
    display: block;
    padding: 10px 0;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-features {
        flex-direction: column;
        gap: 16px;
    }
}

