/* =========================================================
   GDS — PREMIUM CTA SECTION
========================================================= */

.cta-section {
    position: relative;
    width: 100%;
    padding: 120px 0 130px;
    overflow: hidden;
    isolation: isolate;
}


/* =========================================================
   CONTAINER
========================================================= */

.cta-container {
    position: relative;

    width: min(1200px, calc(100% - 48px));
    min-height: 520px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.09);
    border-radius: 34px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(111,103,255,.14),
            transparent 45%
        ),
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.012)
        );

    box-shadow:
        0 35px 100px rgba(0,0,0,.35),
        0 0 80px rgba(101,94,255,.06);
}


/* =========================================================
   GRID
========================================================= */

.cta-container::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    mask-image:
        radial-gradient(
            ellipse at center,
            black 20%,
            transparent 75%
        );

    -webkit-mask-image:
        radial-gradient(
            ellipse at center,
            black 20%,
            transparent 75%
        );

    pointer-events: none;
}


/* =========================================================
   AMBIENT GLOWS
========================================================= */

.cta-glow {
    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    filter: blur(110px);

    pointer-events: none;

    opacity: .18;

    z-index: 0;

    will-change: transform;
}


.cta-glow-one {
    top: -230px;
    left: 8%;

    background: #706aff;

    animation:
        ctaGlowOne
        8s
        ease-in-out
        infinite alternate;
}


.cta-glow-two {
    right: 5%;
    bottom: -260px;

    background: #4c72ff;

    animation:
        ctaGlowTwo
        9s
        ease-in-out
        infinite alternate;
}


@keyframes ctaGlowOne {

    0% {
        transform:
            translate3d(-20px, 0, 0)
            scale(1);
    }

    100% {
        transform:
            translate3d(35px, 30px, 0)
            scale(1.15);
    }

}


@keyframes ctaGlowTwo {

    0% {
        transform:
            translate3d(20px, 20px, 0)
            scale(1);
    }

    100% {
        transform:
            translate3d(-35px, -25px, 0)
            scale(1.12);
    }

}


/* =========================================================
   CONTENT
========================================================= */

.cta-content {
    position: relative;

    z-index: 2;

    width: min(850px, 100%);

    padding: 80px 40px;

    text-align: center;
}


/* =========================================================
   EYEBROW
========================================================= */

.cta-eyebrow {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-bottom: 24px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .22em;

    text-transform: uppercase;

    color: rgba(255,255,255,.42);
}


.cta-line {
    width: 38px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #817aff
        );

    box-shadow:
        0 0 14px rgba(129,122,255,.45);
}


/* =========================================================
   HEADING
========================================================= */

.cta-content h2 {
    margin: 0;

    font-family: "Manrope", sans-serif;

    font-size:
        clamp(48px, 6vw, 82px);

    line-height: .98;

    letter-spacing: -.055em;

    font-weight: 700;

    color: #fff;
}


/*
   Highlight wrapper
*/

.cta-heading-highlight {
    display: block;

    background:
        linear-gradient(
            110deg,
            #ffffff 0%,
            #aaa5ff 35%,
            #756dff 50%,
            #aaa5ff 65%,
            #ffffff 100%
        );

    background-size: 250% 100%;

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    color: transparent;

    animation:
        ctaBusinessShimmer
        4.5s
        ease-in-out
        infinite;

    will-change:
        background-position;
}


/* =========================================================
   BUSINESS SHIMMER
========================================================= */

@keyframes ctaBusinessShimmer {

    0% {
        background-position:
            0% 50%;
    }

    50% {
        background-position:
            100% 50%;
    }

    100% {
        background-position:
            0% 50%;
    }

}


/* =========================================================
   QUESTION MARK
========================================================= */

.cta-question {
    display: inline-block;

    margin-left: 1px;

    /*
       Override transparent gradient
       so the question mark can glow independently.
    */

    -webkit-text-fill-color: #817aff;

    color: #817aff;

    animation:
        ctaQuestionPulse
        2.6s
        ease-in-out
        infinite;

    will-change:
        transform,
        filter;
}


@keyframes ctaQuestionPulse {

    0%,
    100% {
        transform:
            translateY(0)
            scale(1);

        filter:
            drop-shadow(
                0 0 0
                rgba(129,122,255,0)
            );
    }

    50% {
        transform:
            translateY(-3px)
            scale(1.06);

        filter:
            drop-shadow(
                0 0 13px
                rgba(129,122,255,.6)
            );
    }

}


/* =========================================================
   DESCRIPTION
========================================================= */

.cta-content p {
    max-width: 650px;

    margin: 28px auto 0;

    font-size: 15px;

    line-height: 1.8;

    color: rgba(255,255,255,.48);
}


/* =========================================================
   ACTIONS
========================================================= */

.cta-actions {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-top: 38px;
}


/* =========================================================
   BUTTON BASE
========================================================= */

.cta-button {
    position: relative;

    min-height: 54px;

    padding: 0 22px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    border-radius: 999px;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    overflow: hidden;

    transition:
        transform .35s cubic-bezier(.22,1,.36,1),
        box-shadow .35s ease,
        border-color .35s ease,
        background .35s ease;
}


/* =========================================================
   PRIMARY BUTTON
========================================================= */

.cta-button-primary {
    color: #08090d;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #bcb8ff
        );

    box-shadow:
        0 12px 35px rgba(121,113,255,.20);

    animation:
        ctaPrimaryGlow
        4s
        ease-in-out
        infinite;
}


@keyframes ctaPrimaryGlow {

    0%,
    100% {
        box-shadow:
            0 12px 35px
            rgba(121,113,255,.20);
    }

    50% {
        box-shadow:
            0 15px 42px
            rgba(121,113,255,.34);
    }

}


.cta-button-primary:hover {
    transform:
        translateY(-4px);

    box-shadow:
        0 18px 45px
        rgba(121,113,255,.40);
}


/* =========================================================
   ARROW
========================================================= */

.cta-arrow {
    display: inline-block;

    font-size: 16px;

    line-height: 1;

    animation:
        ctaArrowFloat
        1.5s
        ease-in-out
        infinite;

    will-change:
        transform;
}


@keyframes ctaArrowFloat {

    0%,
    100% {
        transform:
            translate(0, 0);
    }

    50% {
        transform:
            translate(5px, -5px);
    }

}


.cta-button-primary:hover .cta-arrow {
    animation:
        ctaArrowHover
        .55s
        ease-out
        forwards;
}


@keyframes ctaArrowHover {

    0% {
        transform:
            translate(0, 0);
    }

    100% {
        transform:
            translate(5px, -5px);
    }

}


/* =========================================================
   WHATSAPP BUTTON
========================================================= */

.cta-button-whatsapp {
    color:
        rgba(255,255,255,.88);

    border:
        1px solid
        rgba(255,255,255,.12);

    background:
        rgba(255,255,255,.045);

    backdrop-filter:
        blur(12px);

    -webkit-backdrop-filter:
        blur(12px);
}


.cta-button-whatsapp:hover {
    transform:
        translateY(-4px);

    border-color:
        rgba(255,255,255,.22);

    background:
        rgba(255,255,255,.075);

    box-shadow:
        0 15px 40px
        rgba(0,0,0,.25),
        0 0 30px
        rgba(93,255,159,.07);
}


/* =========================================================
   WHATSAPP ICON
========================================================= */

.cta-whatsapp-icon {
    position: relative;

    width: 22px;
    height: 22px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    color: #fff;

    background:
        rgba(70,220,125,.78);

    font-size: 9px;

    box-shadow:
        0 0 18px
        rgba(70,220,125,.25);

    animation:
        ctaWhatsappPulse
        2s
        ease-in-out
        infinite;

    will-change:
        transform,
        box-shadow;
}


/* =========================================================
   WHATSAPP RIPPLE
========================================================= */

.cta-whatsapp-icon::before,
.cta-whatsapp-icon::after {

    content: "";

    position: absolute;

    inset: -5px;

    border-radius: 50%;

    border:
        1px solid
        rgba(70,220,125,.35);

    pointer-events: none;

    animation:
        ctaWhatsappRipple
        2.4s
        ease-out
        infinite;
}


.cta-whatsapp-icon::after {
    animation-delay:
        1.2s;
}


@keyframes ctaWhatsappPulse {

    0%,
    100% {
        transform:
            scale(1);

        box-shadow:
            0 0 10px
            rgba(70,220,125,.18);
    }

    50% {
        transform:
            scale(1.09);

        box-shadow:
            0 0 25px
            rgba(70,220,125,.52);
    }

}


@keyframes ctaWhatsappRipple {

    0% {
        transform:
            scale(.75);

        opacity:
            .7;
    }

    70% {
        transform:
            scale(1.55);

        opacity:
            0;
    }

    100% {
        transform:
            scale(1.55);

        opacity:
            0;
    }

}


/* =========================================================
   SERVICES
========================================================= */

.cta-services {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 42px;

    font-size: 9px;

    letter-spacing: .12em;

    text-transform: uppercase;

    color:
        rgba(255,255,255,.27);
}


.cta-services i {
    width: 3px;
    height: 3px;

    border-radius: 50%;

    background:
        #817aff;

    box-shadow:
        0 0 8px
        rgba(129,122,255,.6);

    animation:
        ctaServiceDot
        2.5s
        ease-in-out
        infinite;
}


.cta-services i:nth-of-type(2) {
    animation-delay:
        .35s;
}


.cta-services i:nth-of-type(3) {
    animation-delay:
        .7s;
}


@keyframes ctaServiceDot {

    0%,
    100% {
        opacity: .35;
        transform: scale(.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.35);

        box-shadow:
            0 0 13px
            rgba(129,122,255,.9);
    }

}


/* =========================================================
   CENTER LIGHT
========================================================= */

.cta-container::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: 50%;
    left: 50%;

    transform:
        translate(-50%,-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(120,113,255,.06),
            transparent 65%
        );

    pointer-events:
        none;

    z-index: 1;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .cta-section {
        padding:
            100px 0 110px;
    }

    .cta-container {
        min-height:
            480px;

        border-radius:
            30px;
    }

    .cta-content {
        padding:
            70px 35px;
    }

    .cta-content h2 {
        font-size:
            clamp(44px, 8vw, 68px);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

    .cta-section {
        padding:
            75px 0 85px;
    }


    .cta-container {
        width:
            calc(100% - 28px);

        min-height:
            500px;

        border-radius:
            25px;
    }


    .cta-content {
        padding:
            65px 20px;
    }


    /* -----------------------------------------------------
       EYEBROW
    ----------------------------------------------------- */

    .cta-eyebrow {
        font-size:
            8px;

        letter-spacing:
            .18em;
    }


    .cta-line {
        width:
            25px;
    }


    /* -----------------------------------------------------
       HEADING
    ----------------------------------------------------- */

    .cta-content h2 {
        font-size:
            clamp(42px, 12vw, 58px);

        line-height:
            1.02;
    }


    .cta-heading-highlight {
        background-size:
            300% 100%;

        animation-duration:
            4.5s;
    }


    /* -----------------------------------------------------
       DESCRIPTION
    ----------------------------------------------------- */

    .cta-content p {
        margin-top:
            24px;

        font-size:
            13px;

        line-height:
            1.75;
    }


    /* -----------------------------------------------------
       BUTTONS
    ----------------------------------------------------- */

    .cta-actions {
        flex-direction:
            column;

        width:
            100%;

        margin-top:
            32px;

        gap:
            10px;
    }


    .cta-button {
        width:
            min(100%, 280px);

        min-height:
            52px;
    }


    /* -----------------------------------------------------
       SERVICES
    ----------------------------------------------------- */

    .cta-services {
        gap:
            9px;

        margin-top:
            34px;

        font-size:
            7px;

        line-height:
            1.8;
    }


    .cta-services i {
        width:
            2px;

        height:
            2px;
    }


    /* -----------------------------------------------------
       GLOW
    ----------------------------------------------------- */

    .cta-glow {
        width:
            280px;

        height:
            280px;

        filter:
            blur(80px);
    }


    /* -----------------------------------------------------
       MOBILE WHATSAPP
    ----------------------------------------------------- */

    .cta-whatsapp-icon {
        width:
            21px;

        height:
            21px;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .cta-container {
        width:
            calc(100% - 20px);
    }

    .cta-content {
        padding:
            55px 16px;
    }

    .cta-content h2 {
        font-size:
            40px;
    }

    .cta-content p {
        font-size:
            12px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .cta-glow-one,
    .cta-glow-two,
    .cta-heading-highlight,
    .cta-question,
    .cta-button-primary,
    .cta-arrow,
    .cta-whatsapp-icon,
    .cta-whatsapp-icon::before,
    .cta-whatsapp-icon::after,
    .cta-services i {

        animation:
            none !important;
    }

    .cta-button {

        transition:
            none !important;
    }

}





.cta-arrow {
    color: red !important;
    animation: TEST_ARROW 1s linear infinite !important;
}

@keyframes TEST_ARROW {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(30px);
    }
}