.landing-cta-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #8b5cf6 100%);
    padding: 6rem 0;
}

.landing-cta-glow {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.12);
    filter: blur(46px);
    pointer-events: none;
}

.landing-cta-glow--one {
    top: 0;
    left: 25%;
    animation: landingPulseA 8s ease-in-out infinite;
}

.landing-cta-glow--two {
    bottom: 0;
    right: 25%;
    animation: landingPulseB 8s ease-in-out infinite;
}

.landing-cta-shell {
    position: relative;
    z-index: 2;
    text-align: center;
}

.landing-cta-title {
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(2.2rem, 4.8vw, 3.7rem);
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.landing-cta-highlight {
    color: #fde047;
}

.landing-cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 48rem;
    margin: 0 auto 2rem;
}

.landing-cta-offer-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
    width: fit-content;
    margin: 0 auto 2rem;
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
    font-size: 1.06rem;
    letter-spacing: 0.005em;
    max-width: min(100%, 34rem);
    text-align: center;
}

.landing-cta-offer-badge .mud-icon-root {
    color: rgba(255, 255, 255, 0.82);
}

.landing-cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.landing-cta-button {
    background: #ffffff !important;
    color: #4f46e5 !important;
    border: 0 !important;
    box-shadow: 0 16px 34px rgba(255, 255, 255, 0.28);
    border-radius: 9999px !important;
    padding: 0.8rem 1.55rem !important;
}

.landing-cta-button-secondary {
    border-radius: 9999px !important;
    padding: 0.8rem 1.55rem !important;
    background: transparent !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.42) !important;
}

.landing-inline-arrow {
    transition: transform 180ms ease;
}

.landing-cta-button:hover .landing-inline-arrow {
    transform: translateX(4px);
}

@keyframes landingPulseA {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.16);
    }
}

@keyframes landingPulseB {
    0%, 100% {
        transform: scale(1.04);
    }
    50% {
        transform: scale(0.94);
    }
}

@media (max-width: 599px) {
    .landing-cta-title {
        font-size: clamp(1.95rem, 9vw, 2.6rem);
    }

    .landing-cta-subtitle {
        font-size: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .landing-cta-glow {
        animation: none !important;
    }
}
