.calc-cta {
    text-align: center;
    color: #ffffff;
    padding: 50px 0;
    position: relative;
}

.calc-cta::before,
.calc-cta::after {
    content: '';
    display: block;
    height: 3px;
    background: #c9514d;
    position: absolute;
    left: 0;
    right: 0;
}

.calc-cta::before { top: 0; }
.calc-cta::after { bottom: 0; }

.calc-cta__text {
    font-size: 18px;
    line-height: 1.5;
    color: #ffffff;
    max-width: 680px;
    margin: 0 auto 28px;
}

.calc-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 200px;
    padding: 13px 32px;
    background: #c9514d;
    color: #ffffff !important;
    border: 1.5px solid #c9514d;
    border-radius: 999px;
    text-decoration: none !important;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.15s, border-color 0.15s;
}

.calc-cta__btn:hover {
    background: #b8453f;
    border-color: #b8453f;
}

.calc-cta__btn svg {
    fill: #ffffff;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .calc-cta__text {
        font-size: 16px;
    }
}
