/**
 * ST landings — FINAL CTA component (dark section with orb + white CTA).
 * Selectors: .st-final-cta*, .st-final-inner, .st-cta-white.
 * Renders .st-cta-chips--dark inline; those styles live in cta-chips.css.
 */

.st-final-cta {
    padding: 110px 24px;
    background: linear-gradient(160deg, #2D2119 0%, #3A2E28 40%, #4A3F38 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.st-final-cta-orb {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(var(--st-primary-rgb), 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.st-final-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.st-final-cta h2 {
    font-size: clamp(30px, 4.5vw, 48px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.st-final-cta-text {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.st-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--st-primary-dark);
    padding: 18px 44px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
}

.st-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .st-final-cta-orb {
        display: none;
    }
}

@media (max-width: 480px) {
    .st-final-cta h2 {
        font-size: 26px;
    }

    .st-cta-white {
        padding: 16px 32px;
        font-size: 16px;
    }
}
