/* SECTION BG */
.final-cta {
    background: linear-gradient(135deg, #eef5ff, #f8fbff);
}

/* TITLE */
.cta-title {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
}

/* TEXT */
.cta-desc {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 26px;
    /* max-width: 520px; */
}

/* BUTTON GROUP */
.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
}

/* PRIMARY BUTTON */
.cta-primary {
    padding: 14px 32px;
    border-radius: 12px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    color: white;
    font-weight: 600;
    transition: .35s;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, .28);
}

/* SECONDARY BUTTON */
.cta-secondary {
    padding: 14px 28px;
    border-radius: 12px;
    border: 2px solid #2563eb;
    color: #2563eb;
    font-weight: 600;
    background: white;
    transition: .35s;
}

.cta-secondary:hover {
    background: #2563eb;
    color: white;
}

/* IMAGE */
.cta-image {
    text-align: center;
}

.cta-image img {
    max-width: 280px;
    margin: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .18));
    transition: .4s;
}

.cta-image img:hover {
    transform: translateY(-8px) scale(1.04);
}