/* ─── Final CTA (mirrors .gs-final-cta in get-started.css) ─── */
.rf-final-cta {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #2a0f1e 100%);
    color: #fff;
    padding: 90px 24px;
    text-align: center;
    overflow: hidden;
}
.rf-final-cta::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(232, 52, 122, 0.18), transparent 55%);
    pointer-events: none;
}
.rf-final-inner {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.rf-final-ttl {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: clamp(28px, 3.8vw, 46px);
    letter-spacing: -0.035em;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 14px;
}
.rf-final-ttl em {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-style: italic;
    font-weight: 500;
    color: #fff;
}
.rf-final-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 auto 34px;
    max-width: 580px;
    line-height: 1.55;
}
.rf-final-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 22px;
}
.rf-final-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 36px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16.5px;
    letter-spacing: -0.01em;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}
.rf-final-btn-primary {
    background: #e8347a;
    color: #fff;
    border: 1px solid #e8347a;
}
.rf-final-btn-primary:hover {
    background: #d0266e;
    border-color: #d0266e;
    transform: translateY(-1px);
    box-shadow: 0 14px 40px -14px rgba(232, 52, 122, 0.6);
}
.rf-final-btn-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.rf-final-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
}
.rf-final-foot {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.5);
}
.rf-final-foot a {
    color: #e8347a;
    text-decoration: none;
    font-weight: 600;
}
.rf-final-foot a:hover { color: #fff; }
@media (max-width: 540px) {
    .rf-final-cta { padding: 70px 20px; }
    .rf-final-btn { padding: 16px 24px; font-size: 15px; width: 100%; }
}
