.calc-cta-section {
    background: linear-gradient(135deg, #0f1c3f 0%, #002955 55%, #0f2d5c 100%);
    padding: 52px 0;
    margin-top: 48px;
    position: relative;
    overflow: hidden;
}
.calc-cta-section::before {
    content: '';
    position: absolute;
    top: -70px;
    right: -60px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(52,130,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.calc-cta-section::after {
    content: '';
    position: absolute;
    bottom: -70px;
    left: 4%;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(245,134,52,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.calc-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}
.calc-cta-left { flex: 1; min-width: 260px; }
.calc-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(52,130,255,0.18);
    border: 1px solid rgba(52,130,255,0.38);
    color: #7eb8ff;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 5px 13px;
    border-radius: 20px;
    margin-bottom: 14px;
}
.calc-cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 10px;
}
.calc-cta-sub {
    color: rgba(255,255,255,0.68);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 20px;
    max-width: 500px;
}
.calc-cta-trust { display: flex; gap: 18px; flex-wrap: wrap; }
.calc-cta-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.72);
    font-weight: 500;
}
.calc-cta-trust-item i { color: #f58634; font-size: 0.76rem; }
.calc-cta-right {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    flex-shrink: 0;
    min-width: 210px;
}
.calc-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #f58634 0%, #e06d1a 100%);
    color: #fff !important;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 13px 24px;
    border-radius: 11px;
    text-decoration: none !important;
    transition: opacity 0.18s, transform 0.15s;
}
.calc-cta-btn-primary:hover { opacity: 0.9; transform: translateY(-2px); }
.calc-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.32);
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 11px 20px;
    border-radius: 11px;
    text-decoration: none !important;
    transition: border-color 0.18s, background 0.18s;
}
.calc-cta-btn-secondary:hover { border-color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.06); }
.calc-cta-note {
    font-size: 0.71rem;
    color: rgba(255,255,255,0.38);
    text-align: center;
    margin: 4px 0 0;
}
@media (max-width: 767px) {
    .calc-cta-title { font-size: 1.4rem; }
    .calc-cta-right { width: 100%; }
}
