.cta-section { padding: 64px 0; background: var(--grey-bg); }
.cta-card {
    background: var(--blue);
    border-radius: 24px;
    padding: 64px;
    text-align: center;
}
.cta-card__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 36px;
    color: #fff;
    margin-bottom: 16px;
}
.cta-card__desc {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
    max-width: 560px;
    margin: 0 auto 32px;
}
.cta-card__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.cta-card__actions .btn__icon-left {
    transform: rotate(-90deg);
}
@media (max-width: 768px) {
    .cta-card { padding: 40px 24px; }
    .cta-card__title { font-size: 28px; }
}
@media (max-width: 460px) {
    .cta-card__actions { flex-direction: column; align-items: center; }
    .cta-card__actions .btn { width: 100%; max-width: 320px; justify-content: center; }
}
