/* <style> */
    /* ===== CTA SECTION ===== */
    .cta-section {
        position: relative;
        overflow: hidden;
        padding: 80px 20px;
        background: linear-gradient(135deg, #1B3FA0 0%, #1B4FD8 50%, #1B3FA0 100%);
        font-family: 'Segoe UI', Arial, sans-serif;
    }

    .cta-decor {
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
        background: rgba(255, 255, 255, 0.05);
    }

    .cta-decor-1 {
        width: 380px;
        height: 380px;
        top: -96px;
        right: -96px;
    }

    .cta-decor-2 {
        width: 288px;
        height: 288px;
        bottom: -128px;
        left: -64px;
    }

    .cta-container {
        position: relative;
        z-index: 1;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Badge */
    .cta-badge-wrap {
        text-align: center;
        margin-bottom: 20px;
    }

    .cta-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(250, 204, 21, 0.2);
        border: 1px solid rgba(250, 204, 21, 0.4);
        color: #fde68a;
        font-size: 16px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        padding: 6px 16px;
        border-radius: 999px;
    }

    .cta-badge-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #facc15;
        animation: pulse 1.5s infinite;
    }

    @keyframes pulse {

        0%,
        100% {
            opacity: 1;
        }

        50% {
            opacity: 0.4;
        }
    }

    /* Heading */
    .cta-heading {
        text-align: center;
        color: #ffffff;
        font-size: clamp(1.5rem, 4vw, 4rem);
        font-weight: 700;
        line-height: 1.3;
        letter-spacing: -0.01em;
        max-width: 100%;
        margin: 0 auto 16px;
    }

    .cta-highlight {
        color: #facc15;
        text-decoration: underline;
        text-decoration-color: rgba(250, 204, 21, 0.4);
        text-underline-offset: 4px;
    }

    /* Sub text */
    .cta-sub {
        text-align: center;
        color: rgba(255, 255, 255, 0.65);
        font-size: clamp(16px, 2vw, 27px);
        margin: 0 auto 40px;
        max-width: 100%;
    }

    /* Button */
    .cta-btn-wrap {
        text-align: center;
        /* margin-bottom: 48px; */
    }

    .cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #facc15;
        color: #1B2A5E;
        font-weight: 700;
        font-size: 1.05rem;
        padding: 16px 40px;
        border-radius: 8px;
        text-decoration: none;
        transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
        box-shadow: 0 8px 24px rgba(250, 204, 21, 0.25);
        font-size: clamp(16px, 2vw, 24px);
    }

    .cta-btn:hover {
        background: #fde047;
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(250, 204, 21, 0.35);
    }

    .cta-btn:active {
        background: #eab308;
        transform: translateY(0);
    }

    /* Divider */
    .cta-divider {
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 40px;
    }

    /* Stats */
    .cta-stats {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    @media (max-width: 768px) {
        .cta-stats {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 420px) {
        .cta-stats {
            grid-template-columns: 1fr;
        }
    }

    .cta-stat {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 20px 16px;
        transition: background 0.2s;
    }

    .cta-stat:hover {
        background: rgba(255, 255, 255, 0.12);
    }

    .cta-stat-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(250, 204, 21, 0.15);
        color: #facc15;
    }

    .cta-stat-label {
        color: #fff;
        font-weight: 700;
        font-size: 0.9rem;
        margin: 0;
    }

    .cta-stat-sub {
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.8rem;
        margin: 0;
    }
/* </style> */