/* =====================================================
   GDS — SOCIAL MEDIA
   PREMIUM REACTIVE SERVICE PAGE
   CSS — PART 1
===================================================== */


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

.social-media-page {
    position: relative;
    overflow: hidden;
    background: #07070b;
    color: #fff;
}


.social-media-page .container {
    position: relative;
    z-index: 2;
}


/* =====================================================
   HERO
===================================================== */

.social-hero {
    position: relative;
    min-height: 820px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 130px 0 110px;
}


/* =====================================================
   HERO BACKGROUND
===================================================== */

.social-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        radial-gradient(
            circle at 72% 45%,
            rgba(112, 106, 255, .15),
            transparent 32%
        ),
        radial-gradient(
            circle at 20% 75%,
            rgba(255, 70, 150, .07),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #07070b 0%,
            #090912 55%,
            #07070b 100%
        );
}


/* subtle grid */

.social-hero-bg::after {
    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:
        70px 70px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 85%
        );

    opacity: .35;
}


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

.social-hero-content {
    position: relative;
    z-index: 5;

    width: min(560px, 100%);

    animation:
        socialHeroContentIn
        1s
        cubic-bezier(.16,1,.3,1)
        both;
}


@keyframes socialHeroContentIn {

    from {
        opacity: 0;
        transform:
            translate3d(-40px, 0, 0);
        filter: blur(8px);
    }

    to {
        opacity: 1;
        transform:
            translate3d(0, 0, 0);
        filter: blur(0);
    }
}


/* =====================================================
   HERO TITLE
===================================================== */

.social-hero-content h1 {
    margin: 24px 0 0;

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

    font-size:
        clamp(52px, 6vw, 86px);

    line-height: .94;

    letter-spacing:
        -.06em;

    font-weight: 700;

    color: #fff;
}


.social-hero-content h1 span {
    display: block;

    background:
        linear-gradient(
            110deg,
            #fff 10%,
            #aaa5ff 55%,
            #706aff 100%
        );

    -webkit-background-clip:
        text;

    background-clip:
        text;

    color: transparent;
}


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

.social-hero-content p {
    max-width: 510px;

    margin: 28px 0 0;

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

    font-size: 15px;

    line-height: 1.8;
}


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

.social-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 34px;
}


/* =====================================================
   HERO ECOSYSTEM
===================================================== */

.social-hero-ecosystem {
    position: absolute;

    top: 50%;
    right: -20px;

    width: min(650px, 55vw);
    aspect-ratio: 1;

    transform:
        translateY(-50%);

    z-index: 3;

    pointer-events: none;
}


/* =====================================================
   ORBITS
===================================================== */

.social-orbit {
    position: absolute;

    top: 50%;
    left: 50%;

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

    border-radius: 50%;

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

    box-shadow:
        0 0 50px
        rgba(112,106,255,.035);

    animation:
        socialOrbitPulse
        5s
        ease-in-out
        infinite;
}


.orbit-one {
    width: 42%;
    height: 42%;
}


.orbit-two {
    width: 68%;
    height: 68%;

    border-color:
        rgba(170,165,255,.09);

    animation-delay:
        -.8s;
}


.orbit-three {
    width: 94%;
    height: 94%;

    border-color:
        rgba(170,165,255,.055);

    animation-delay:
        -1.6s;
}


@keyframes socialOrbitPulse {

    0%,
    100% {
        opacity: .55;
        transform:
            translate(-50%, -50%)
            scale(1);
    }

    50% {
        opacity: 1;
        transform:
            translate(-50%, -50%)
            scale(1.025);
    }
}


/* =====================================================
   SOCIAL CORE
===================================================== */

.social-core {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 145px;
    height: 145px;

    display: flex;
    flex-direction: column;

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

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

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

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 25%,
            rgba(255,255,255,.10),
            rgba(20,20,30,.75)
        );

    backdrop-filter:
        blur(20px);

    box-shadow:

        0 25px 70px
        rgba(0,0,0,.45),

        0 0 60px
        rgba(112,106,255,.15),

        inset 0 1px 0
        rgba(255,255,255,.12);
}


.social-core-label {
    font-size: 7px;

    letter-spacing: .22em;

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


.social-core strong {
    margin-top: 7px;

    font-size: 25px;

    letter-spacing: -.04em;
}


.social-core small {
    margin-top: 3px;

    font-size: 7px;

    letter-spacing: .2em;

    color:
        rgba(170,165,255,.75);
}


/* =====================================================
   FLOATING SOCIAL ICONS
===================================================== */

.social-floating-icon {
    position: absolute;

    width: 58px;
    height: 58px;

    display: flex;

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

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

    border-radius: 18px;

    background:
        rgba(15,15,24,.72);

    backdrop-filter:
        blur(15px);

    color: #fff;

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

    box-shadow:

        0 18px 45px
        rgba(0,0,0,.32),

        0 0 25px
        rgba(112,106,255,.06),

        inset 0 1px 0
        rgba(255,255,255,.08);

    animation:
        socialFloat
        5s
        ease-in-out
        infinite;

    transition:
        transform .4s
        cubic-bezier(.16,1,.3,1),

        border-color .4s ease,

        box-shadow .4s ease;
}


.social-floating-icon::after {
    content:
        attr(data-platform);

    position: absolute;

    top: calc(100% + 8px);
    left: 50%;

    transform:
        translateX(-50%);

    white-space: nowrap;

    font-size: 7px;

    letter-spacing: .12em;

    color:
        rgba(255,255,255,.35);

    opacity: .75;
}


@keyframes socialFloat {

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

    50% {
        transform:
            translate3d(0, -12px, 0);
    }
}


/* =====================================================
   ICON POSITIONS
===================================================== */

.social-instagram {
    top: 10%;
    left: 47%;
}


.social-tiktok {
    top: 28%;
    right: 5%;
    animation-delay: -.8s;
}


.social-facebook {
    bottom: 22%;
    right: 10%;
    animation-delay: -1.5s;
}


.social-youtube {
    bottom: 7%;
    left: 46%;
    animation-delay: -2.2s;
}


.social-linkedin {
    bottom: 22%;
    left: 9%;
    animation-delay: -2.8s;
}


.social-x {
    top: 28%;
    left: 6%;
    animation-delay: -3.5s;
}


/* =====================================================
   SIGNALS
===================================================== */

.social-signal {
    position: absolute;

    padding: 9px 13px;

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

    border-radius: 999px;

    background:
        rgba(10,10,18,.65);

    backdrop-filter:
        blur(12px);

    color:
        rgba(255,255,255,.65);

    font-size: 9px;

    letter-spacing: .08em;

    box-shadow:
        0 12px 35px
        rgba(0,0,0,.25);

    animation:
        signalFloat
        4.5s
        ease-in-out
        infinite;
}


.signal-one {
    top: 18%;
    right: 25%;
}


.signal-two {
    bottom: 27%;
    right: 27%;
    animation-delay: -1.5s;
}


.signal-three {
    bottom: 31%;
    left: 23%;
    animation-delay: -2.7s;
}


@keyframes signalFloat {

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

    50% {
        transform:
            translateY(-7px);
    }
}



/* =====================================================
   SOCIAL MEDIA — CSS PART 2
   PROBLEM + PLATFORM STRATEGY
===================================================== */


/* =====================================================
   SHARED SECTION HEADING
===================================================== */

.social-section-heading {
    max-width: 780px;
    margin: 0 0 60px;
}

.social-section-heading .service-eyebrow {
    margin-bottom: 20px;
}

.social-section-heading h2 {
    margin: 0;

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

    font-size:
        clamp(42px, 5vw, 68px);

    line-height: .98;

    letter-spacing:
        -.055em;

    color: #fff;
}

.social-section-heading h2 span {
    display: block;

    background:
        linear-gradient(
            110deg,
            #fff,
            #aaa5ff,
            #706aff
        );

    -webkit-background-clip:
        text;

    background-clip:
        text;

    color: transparent;
}

.social-section-heading p {
    max-width: 620px;

    margin: 24px 0 0;

    font-size: 14px;

    line-height: 1.8;

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


/* =====================================================
   PROBLEM SECTION
===================================================== */

.social-problem {
    position: relative;

    padding: 140px 0;

    overflow: hidden;
}

.social-problem::before {
    content: "";

    position: absolute;

    top: 20%;
    right: -220px;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(112,106,255,.09),
            transparent 70%
        );

    filter: blur(20px);

    pointer-events: none;
}


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

.social-problem-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 16px;
}


/* =====================================================
   PROBLEM CARD
===================================================== */

.social-problem-card {
    position: relative;

    min-height: 280px;

    padding: 28px;

    display: flex;
    flex-direction: column;

    justify-content: flex-end;

    overflow: hidden;

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

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.035),
            rgba(255,255,255,.012)
        );

    box-shadow:
        inset 0 1px 0
        rgba(255,255,255,.035);

    transition:
        transform .55s
        cubic-bezier(.16,1,.3,1),

        border-color .45s ease,

        background .45s ease,

        box-shadow .55s ease;
}

.social-problem-card::before {
    content: "";

    position: absolute;

    top: -100px;
    right: -100px;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(112,106,255,.12),
            transparent 70%
        );

    opacity: .45;

    transition:
        transform .7s
        cubic-bezier(.16,1,.3,1),

        opacity .5s ease;
}

.social-problem-card:hover {
    transform:
        translateY(-9px);

    border-color:
        rgba(129,122,255,.25);

    background:
        linear-gradient(
            145deg,
            rgba(129,122,255,.06),
            rgba(255,255,255,.015)
        );

    box-shadow:
        0 30px 70px
        rgba(0,0,0,.28),

        0 0 40px
        rgba(112,106,255,.06);
}

.social-problem-card:hover::before {
    transform:
        scale(1.35);

    opacity: .85;
}


/* =====================================================
   CARD NUMBER
===================================================== */

.social-card-number {
    position: absolute;

    top: 22px;
    right: 22px;

    font-size: 9px;

    letter-spacing: .15em;

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


/* =====================================================
   PROBLEM CARD CONTENT
===================================================== */

.social-problem-card h3 {
    position: relative;

    margin: 0 0 12px;

    font-size: 21px;

    line-height: 1.2;

    letter-spacing: -.025em;

    color: #fff;
}

.social-problem-card p {
    position: relative;

    margin: 0;

    font-size: 12px;

    line-height: 1.75;

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


/* =====================================================
   PLATFORM STRATEGY
===================================================== */

.social-strategy {
    position: relative;

    padding: 150px 0;

    overflow: hidden;
}

.social-strategy::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -250px;

    width: 700px;
    height: 500px;

    transform:
        translateX(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse,
            rgba(112,106,255,.08),
            transparent 70%
        );

    filter: blur(15px);

    pointer-events: none;
}


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

.social-platform-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;
}


/* =====================================================
   PLATFORM CARD
===================================================== */

.social-platform-card {
    position: relative;

    min-height: 310px;

    padding: 28px;

    overflow: hidden;

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

    border-radius: 24px;

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

    transition:
        transform .6s
        cubic-bezier(.16,1,.3,1),

        border-color .45s ease,

        box-shadow .6s ease,

        background .45s ease;
}

.social-platform-card::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(112,106,255,.13),
            transparent 38%
        );

    opacity: .65;

    transition:
        opacity .5s ease,

        transform .7s
        cubic-bezier(.16,1,.3,1);
}

.social-platform-card:hover {
    transform:
        translateY(-10px)
        scale(1.01);

    border-color:
        rgba(129,122,255,.28);

    background:
        rgba(129,122,255,.025);

    box-shadow:
        0 35px 80px
        rgba(0,0,0,.30),

        0 0 45px
        rgba(112,106,255,.06);
}

.social-platform-card:hover::before {
    opacity: 1;

    transform:
        scale(1.15);
}


/* =====================================================
   PLATFORM ICON
===================================================== */

.social-platform-icon {
    position: relative;

    width: 54px;
    height: 54px;

    display: flex;

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

    margin-bottom: 45px;

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

    border-radius: 16px;

    background:
        rgba(15,15,24,.7);

    backdrop-filter:
        blur(12px);

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

    box-shadow:
        0 15px 35px
        rgba(0,0,0,.25),

        inset 0 1px 0
        rgba(255,255,255,.08);

    transition:
        transform .5s
        cubic-bezier(.16,1,.3,1),

        box-shadow .5s ease,

        border-color .4s ease;
}

.social-platform-card:hover
.social-platform-icon {
    transform:
        translateY(-5px)
        rotate(-3deg)
        scale(1.08);

    border-color:
        rgba(170,165,255,.35);

    box-shadow:
        0 20px 40px
        rgba(0,0,0,.30),

        0 0 25px
        rgba(112,106,255,.15);
}


/* =====================================================
   PLATFORM NUMBER
===================================================== */

.social-platform-card > span {
    position: absolute;

    top: 30px;
    right: 28px;

    font-size: 8px;

    letter-spacing: .16em;

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


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

.social-platform-card h3 {
    position: relative;

    margin: 0 0 10px;

    font-size: 23px;

    letter-spacing: -.035em;

    color: #fff;
}

.social-platform-card p {
    position: relative;

    margin: 0;

    max-width: 300px;

    font-size: 12px;

    line-height: 1.75;

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

.social-platform-card strong {
    position: absolute;

    left: 28px;
    bottom: 28px;

    font-size: 9px;

    letter-spacing: .1em;

    font-weight: 600;

    color:
        rgba(170,165,255,.78);

    transition:
        transform .45s
        cubic-bezier(.16,1,.3,1),

        color .4s ease;
}

.social-platform-card:hover strong {
    transform:
        translateX(6px);

    color:
        #aaa5ff;
}


/* =====================================================
   RESPONSIVE — TABLET
===================================================== */

@media (max-width: 1050px) {

    .social-problem-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .social-platform-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =====================================================
   RESPONSIVE — MOBILE
===================================================== */

@media (max-width: 768px) {

    .social-problem,
    .social-strategy {
        padding: 90px 0;
    }

    .social-section-heading {
        margin-bottom: 38px;
    }

    .social-section-heading h2 {
        font-size:
            clamp(38px, 11vw, 54px);
    }

    .social-problem-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .social-problem-card {
        min-height: 230px;
    }

    .social-platform-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .social-platform-card {
        min-height: 280px;
    }

}


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

@media (max-width: 480px) {

    .social-problem-card,
    .social-platform-card {
        border-radius: 20px;
    }

    .social-problem-card {
        padding: 23px;
    }

    .social-platform-card {
        padding: 23px;
    }

}




/* =====================================================
   SOCIAL MEDIA — CSS PART 3
   CONTENT ENGINE + PERFORMANCE DASHBOARD
===================================================== */


/* =====================================================
   CONTENT ENGINE SECTION
===================================================== */

.social-content-engine {
    position: relative;

    padding: 150px 0;

    overflow: hidden;
}


.social-content-engine::before {
    content: "";

    position: absolute;

    top: 10%;
    left: -220px;

    width: 520px;
    height: 520px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(112,106,255,.09),
            transparent 70%
        );

    filter: blur(20px);

    pointer-events: none;
}


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

.social-engine-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    align-items: center;

    gap: 90px;
}


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

.social-engine-content {
    max-width: 520px;
}


.social-engine-content h2 {
    margin: 22px 0 0;

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

    font-size:
        clamp(44px, 5vw, 68px);

    line-height: .98;

    letter-spacing:
        -.055em;

    color: #fff;
}


.social-engine-content h2 span {
    display: block;

    background:
        linear-gradient(
            110deg,
            #fff,
            #aaa5ff,
            #706aff
        );

    -webkit-background-clip:
        text;

    background-clip:
        text;

    color: transparent;
}


.social-engine-content > p {
    max-width: 480px;

    margin: 26px 0 0;

    font-size: 14px;

    line-height: 1.85;

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


/* =====================================================
   ENGINE POINTS
===================================================== */

.social-engine-points {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px;

    margin-top: 35px;
}


.social-engine-points > div {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px 14px;

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

    border-radius: 12px;

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

    color:
        rgba(255,255,255,.55);

    font-size: 10px;

    line-height: 1.4;

    transition:
        transform .45s
        cubic-bezier(.16,1,.3,1),

        border-color .4s ease,

        background .4s ease;
}


.social-engine-points > div:hover {
    transform:
        translateX(5px);

    border-color:
        rgba(129,122,255,.2);

    background:
        rgba(129,122,255,.035);
}


.social-engine-points span {
    flex-shrink: 0;

    width: 24px;
    height: 24px;

    display: flex;

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

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

    border-radius: 7px;

    color:
        rgba(170,165,255,.7);

    font-size: 7px;

    letter-spacing: .08em;
}


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

.social-content-visual {
    position: relative;

    min-height: 480px;

    display: flex;

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


.social-content-visual::before {
    content: "";

    position: absolute;

    width: 440px;
    height: 440px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(112,106,255,.12),
            transparent 70%
        );

    filter: blur(15px);
}


/* =====================================================
   PERFORMANCE SCREEN
===================================================== */

.social-content-screen {
    position: relative;

    width: 100%;
    max-width: 570px;

    padding: 28px;

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

    border-radius: 26px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.012)
        );

    backdrop-filter:
        blur(18px);

    box-shadow:

        0 40px 100px
        rgba(0,0,0,.38),

        0 0 60px
        rgba(112,106,255,.07),

        inset 0 1px 0
        rgba(255,255,255,.07);

    transform:
        perspective(1200px)
        rotateY(-5deg)
        rotateX(2deg);

    transition:
        transform .7s
        cubic-bezier(.16,1,.3,1),

        box-shadow .6s ease;
}


.social-content-screen:hover {
    transform:
        perspective(1200px)
        rotateY(0deg)
        rotateX(0deg)
        translateY(-6px);

    box-shadow:

        0 50px 120px
        rgba(0,0,0,.42),

        0 0 70px
        rgba(112,106,255,.10),

        inset 0 1px 0
        rgba(255,255,255,.08);
}


/* =====================================================
   SCREEN HEADER
===================================================== */

.social-screen-top {
    display: flex;

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

    padding-bottom: 22px;

    border-bottom:
        1px solid
        rgba(255,255,255,.06);
}


.social-screen-top span {
    font-size: 8px;

    font-weight: 700;

    letter-spacing: .17em;

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


.social-screen-top strong {
    display: flex;

    align-items: center;

    gap: 7px;

    font-size: 8px;

    letter-spacing: .12em;

    color:
        #aaa5ff;
}


.social-screen-top strong::before {
    content: "";

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background:
        #aaa5ff;

    box-shadow:
        0 0 12px
        rgba(170,165,255,.8);

    animation:
        dashboardLivePulse
        1.8s
        ease-in-out
        infinite;
}


@keyframes dashboardLivePulse {

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

    50% {
        opacity: 1;
        transform: scale(1.2);
    }

}


/* =====================================================
   CHART
===================================================== */

.social-screen-chart {
    height: 220px;

    display: flex;

    align-items: flex-end;

    gap: 14px;

    padding:
        35px 15px 20px;

    border-bottom:
        1px solid
        rgba(255,255,255,.07);

    background:
        repeating-linear-gradient(
            to top,
            transparent 0,
            transparent 43px,
            rgba(255,255,255,.035) 44px
        );
}


.social-screen-chart span {
    position: relative;

    flex: 1;

    min-width: 12px;

    max-width: 45px;

    border-radius:
        7px 7px 2px 2px;

    background:
        linear-gradient(
            to top,
            rgba(112,106,255,.25),
            rgba(170,165,255,.85)
        );

    box-shadow:
        0 0 20px
        rgba(112,106,255,.08);

    transform-origin:
        bottom;

    animation:
        chartBarReveal
        1.1s
        cubic-bezier(.16,1,.3,1)
        both;
}


.social-screen-chart span:nth-child(1) {
    animation-delay: .05s;
}

.social-screen-chart span:nth-child(2) {
    animation-delay: .12s;
}

.social-screen-chart span:nth-child(3) {
    animation-delay: .19s;
}

.social-screen-chart span:nth-child(4) {
    animation-delay: .26s;
}

.social-screen-chart span:nth-child(5) {
    animation-delay: .33s;
}

.social-screen-chart span:nth-child(6) {
    animation-delay: .40s;
}

.social-screen-chart span:nth-child(7) {
    animation-delay: .47s;
}


@keyframes chartBarReveal {

    from {
        transform: scaleY(0);
        opacity: 0;
    }

    to {
        transform: scaleY(1);
        opacity: 1;
    }

}


/* =====================================================
   SCREEN STATS
===================================================== */

.social-screen-stats {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;

    padding-top: 22px;
}


.social-screen-stats > div {
    padding:
        15px 14px;

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

    border-radius: 13px;

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

    transition:
        transform .4s
        cubic-bezier(.16,1,.3,1),

        border-color .4s ease;
}


.social-screen-stats > div:hover {
    transform:
        translateY(-4px);

    border-color:
        rgba(129,122,255,.20);
}


.social-screen-stats small {
    display: block;

    margin-bottom: 7px;

    font-size: 7px;

    letter-spacing: .14em;

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


.social-screen-stats strong {
    font-size: 18px;

    letter-spacing: -.03em;

    color:
        #fff;
}


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

@media (max-width: 950px) {

    .social-engine-grid {
        grid-template-columns: 1fr;

        gap: 65px;
    }

    .social-engine-content {
        max-width: 700px;
    }

    .social-content-visual {
        min-height: 420px;
    }

}


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

@media (max-width: 768px) {

    .social-content-engine {
        padding: 90px 0;
    }

    .social-engine-grid {
        gap: 45px;
    }

    .social-engine-points {
        grid-template-columns: 1fr;
    }

    .social-content-visual {
        min-height: 330px;
    }

    .social-content-screen {
        padding: 20px;

        border-radius: 20px;

        transform: none;
    }

    .social-content-screen:hover {
        transform:
            translateY(-4px);
    }

    .social-screen-chart {
        height: 170px;

        gap: 8px;

        padding:
            25px 8px 15px;
    }

    .social-screen-stats {
        gap: 7px;
    }

    .social-screen-stats > div {
        padding:
            11px 9px;
    }

    .social-screen-stats strong {
        font-size: 14px;
    }

}


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

@media (max-width: 480px) {

    .social-content-screen {
        padding: 17px;
    }

    .social-screen-top span {
        font-size: 7px;
    }

    .social-screen-chart {
        height: 145px;

        gap: 6px;
    }

    .social-screen-stats small {
        font-size: 6px;
    }

    .social-screen-stats strong {
        font-size: 12px;
    }

}




/* =====================================================
   SOCIAL MEDIA — CSS PART 4
   PROCESS + FINAL CTA + FINISHING
===================================================== */


/* =====================================================
   PROCESS SECTION
===================================================== */

.social-process {
    position: relative;

    padding: 150px 0;

    overflow: hidden;
}


.social-process::before {
    content: "";

    position: absolute;

    top: 25%;
    right: -280px;

    width: 600px;
    height: 600px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(112,106,255,.08),
            transparent 70%
        );

    filter: blur(25px);

    pointer-events: none;
}


/* =====================================================
   PROCESS LIST
===================================================== */

.social-process-list {
    position: relative;

    max-width: 950px;

    margin: 0 auto;
}


/* =====================================================
   PROCESS ITEM
===================================================== */

.social-process-list article {
    position: relative;

    display: grid;

    grid-template-columns:
        90px 1fr;

    gap: 35px;

    padding: 35px 0;

    border-bottom:
        1px solid
        rgba(255,255,255,.07);

    transition:
        transform .5s
        cubic-bezier(.16,1,.3,1),

        padding-left .5s
        cubic-bezier(.16,1,.3,1);
}


.social-process-list article:first-child {
    border-top:
        1px solid
        rgba(255,255,255,.07);
}


.social-process-list article:hover {
    transform:
        translateX(8px);

    padding-left: 8px;
}


/* =====================================================
   PROCESS NUMBER
===================================================== */

.social-process-list article > span {
    display: flex;

    align-items: flex-start;

    justify-content: flex-start;

    padding-top: 5px;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: .16em;

    color:
        rgba(170,165,255,.65);

    transition:
        color .4s ease,

        transform .5s
        cubic-bezier(.16,1,.3,1);
}


.social-process-list article:hover > span {
    color:
        #aaa5ff;

    transform:
        translateX(4px);
}


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

.social-process-list article h3 {
    margin: 0;

    font-size: 27px;

    line-height: 1.1;

    letter-spacing:
        -.035em;

    color: #fff;
}


.social-process-list article p {
    max-width: 580px;

    margin: 12px 0 0;

    font-size: 13px;

    line-height: 1.8;

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


/* =====================================================
   PROCESS ACTIVE LINE
===================================================== */

.social-process-list article::before {
    content: "";

    position: absolute;

    left: -1px;
    bottom: -1px;

    width: 0;
    height: 1px;

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

    box-shadow:
        0 0 15px
        rgba(112,106,255,.35);

    transition:
        width .7s
        cubic-bezier(.16,1,.3,1);
}


.social-process-list article:hover::before {
    width: 65%;
}


/* =====================================================
   FINAL CTA
===================================================== */

.social-final-cta {
    position: relative;

    padding:
        120px 0 150px;

    overflow: hidden;
}


.social-final-card {
    position: relative;

    max-width: 1050px;

    margin: 0 auto;

    padding:
        85px 70px;

    overflow: hidden;

    text-align: center;

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

    border-radius:
        32px;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(112,106,255,.14),
            transparent 50%
        ),
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.012)
        );

    box-shadow:

        0 45px 120px
        rgba(0,0,0,.35),

        inset 0 1px 0
        rgba(255,255,255,.07);
}


/* =====================================================
   CTA GLOW
===================================================== */

.social-final-card::before {
    content: "";

    position: absolute;

    top: -180px;
    left: 50%;

    width: 500px;
    height: 360px;

    transform:
        translateX(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse,
            rgba(170,165,255,.16),
            transparent 70%
        );

    filter: blur(20px);

    pointer-events: none;

    animation:
        finalCtaGlow
        5s
        ease-in-out
        infinite;
}


@keyframes finalCtaGlow {

    0%,
    100% {
        opacity: .55;

        transform:
            translateX(-50%)
            scale(1);
    }

    50% {
        opacity: 1;

        transform:
            translateX(-50%)
            scale(1.12);
    }

}


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

.social-final-card .service-eyebrow {
    position: relative;

    justify-content:
        center;

    margin-bottom: 22px;
}


.social-final-card h2 {
    position: relative;

    max-width: 850px;

    margin: 0 auto;

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

    font-size:
        clamp(44px, 6vw, 76px);

    line-height: .96;

    letter-spacing:
        -.06em;

    color: #fff;
}


.social-final-card h2 span {
    display: block;

    background:
        linear-gradient(
            110deg,
            #fff,
            #aaa5ff,
            #706aff
        );

    -webkit-background-clip:
        text;

    background-clip:
        text;

    color: transparent;
}


.social-final-card p {
    position: relative;

    max-width: 620px;

    margin:
        28px auto 0;

    font-size: 14px;

    line-height: 1.8;

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


/* =====================================================
   CTA BUTTON
===================================================== */

.social-final-card .service-primary-btn {
    position: relative;

    margin-top: 34px;
}


/* =====================================================
   DESKTOP HOVER MICRO INTERACTION
===================================================== */

@media (min-width: 769px) {

    .social-final-card {
        transition:
            transform .7s
            cubic-bezier(.16,1,.3,1),

            border-color .5s ease,

            box-shadow .7s ease;
    }


    .social-final-card:hover {
        transform:
            translateY(-6px);

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

        box-shadow:

            0 55px 130px
            rgba(0,0,0,.40),

            0 0 70px
            rgba(112,106,255,.07),

            inset 0 1px 0
            rgba(255,255,255,.08);
    }

}


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

@media (max-width: 900px) {

    .social-process-list {
        max-width: 100%;
    }

    .social-final-card {
        padding:
            70px 45px;
    }

}


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

@media (max-width: 768px) {

    .social-process {
        padding: 90px 0;
    }


    .social-process-list article {
        grid-template-columns:
            45px 1fr;

        gap: 18px;

        padding: 26px 0;
    }


    .social-process-list article:hover {
        transform:
            translateX(3px);

        padding-left: 3px;
    }


    .social-process-list article h3 {
        font-size: 22px;
    }


    .social-process-list article p {
        font-size: 12px;
    }


    .social-final-cta {
        padding:
            80px 0 100px;
    }


    .social-final-card {
        padding:
            55px 24px;

        border-radius:
            24px;
    }


    .social-final-card h2 {
        font-size:
            clamp(38px, 11vw, 54px);
    }


    .social-final-card p {
        font-size: 13px;
    }

}


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

@media (max-width: 480px) {

    .social-process-list article {
        grid-template-columns:
            35px 1fr;

        gap: 13px;
    }


    .social-process-list article h3 {
        font-size: 20px;
    }


    .social-final-card {
        padding:
            48px 20px;
    }

}


/* =====================================================
   ACCESSIBILITY
===================================================== */

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

    .social-media-page *,
    .social-media-page *::before,
    .social-media-page *::after {

        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

        scroll-behavior:
            auto !important;

        transition-duration:
            .01ms !important;
    }

}






/* =====================================================
   SOCIAL MEDIA — REACTIVE ICONS
   CSS — PART 5
===================================================== */


/* =====================================================
   POINTER REACTION
===================================================== */

.social-floating-icon {

    transform:
        translate3d(
            var(--react-x, 0px),
            var(--react-y, 0px),
            0
        );

    transition:
        transform .55s
        cubic-bezier(.16,1,.3,1),

        border-color .4s ease,

        box-shadow .5s ease,

        background .4s ease;
}


/* =====================================================
   ACTIVE / HOVER REACTION
===================================================== */

.social-floating-icon.is-reactive {

    transform:
        translate3d(
            var(--react-x, 0px),
            calc(var(--react-y, 0px) - 8px),
            0
        )
        scale(1.16);

    border-color:
        rgba(170,165,255,.55);

    background:
        rgba(35,32,60,.82);

    box-shadow:

        0 25px 55px
        rgba(0,0,0,.40),

        0 0 35px
        rgba(112,106,255,.28),

        inset 0 1px 0
        rgba(255,255,255,.15);
}


/* =====================================================
   PLATFORM LABEL
===================================================== */

.social-floating-icon.is-reactive::after {

    color:
        rgba(255,255,255,.75);

    transform:
        translateX(-50%)
        translateY(-2px);

}




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

@media (max-width: 768px) {

    .social-floating-icon.is-reactive {

        transform:
            translate3d(
                var(--react-x, 0px),
                var(--react-y, 0px),
                0
            )
            scale(1.10);

    }

}


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

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

    .social-floating-icon,
    .social-floating-icon.is-reactive {

        transform:
            none;

        animation:
            none;

        transition:
            none;
    }

}




/* =====================================================
   SOCIAL MEDIA — CSS PART 6
   SCROLL REVEAL
===================================================== */

.social-reveal {

    opacity: 0;

    transform:
        translate3d(70px, 24px, 0)
        scale(.975);

    filter:
        blur(6px);

    transition:

        opacity .85s
        cubic-bezier(.16,1,.3,1),

        transform 1s
        cubic-bezier(.16,1,.3,1),

        filter .85s
        cubic-bezier(.16,1,.3,1);

    transition-delay:
        var(--reveal-delay, 0ms);

    will-change:
        opacity,
        transform,
        filter;
}


.social-reveal-active {

    opacity: 1;

    transform:
        translate3d(0,0,0)
        scale(1);

    filter:
        blur(0);
}


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

@media (max-width: 768px) {

    .social-reveal {

        transform:
            translate3d(40px, 18px, 0)
            scale(.985);

        filter:
            blur(4px);
    }

}




/* =====================================================
   GDS — SOCIAL MEDIA
   FINAL MOBILE HERO + CONTENT VISUAL
===================================================== */

@media (max-width: 768px) {


    /* =================================================
       HERO
    ================================================= */

    .social-hero {
        overflow: visible !important;
    }


    .social-hero .container {
        display: flex;
        flex-direction: column;
    }


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

    .social-hero-content {
        position: relative;
        z-index: 20;
    }


    .social-hero-content p {
        position: relative;
        z-index: 21;
    }


    .social-hero-actions {
        position: relative;
        z-index: 30;

        margin-bottom: 0 !important;
    }


    /* =================================================
       HERO ECOSYSTEM
       — CIRCULAR / COMPACT
    ================================================= */

    .social-hero-ecosystem {

        position: relative !important;

        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;

        transform: none !important;

        width: 100% !important;
        max-width: 420px !important;

        height: 420px !important;
        min-height: 420px !important;

        margin: 70px auto 0 !important;

        z-index: 5 !important;

        overflow: visible !important;
    }


    /* =================================================
       CORE
    ================================================= */

    .social-core {

        position: absolute !important;

        left: 50% !important;
        top: 50% !important;

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

        width: 145px !important;
        height: 145px !important;

        z-index: 3 !important;
    }


    /* =================================================
       ORBITS
    ================================================= */

    .social-orbit {
        z-index: 1 !important;
        pointer-events: none;
    }


    /* =================================================
       PLATFORM ICONS
    ================================================= */

    .social-floating-icon {

        width: 58px !important;
        height: 58px !important;

        display: flex !important;

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

        z-index: 5 !important;
    }


    .social-floating-icon svg {

        width: 27px !important;
        height: 27px !important;
    }


    /* =================================================
       INSTAGRAM
    ================================================= */

    .social-instagram {

        left: 50% !important;
        top: 3% !important;

        transform:
            translateX(-50%) !important;
    }


    /* =================================================
       TIKTOK
    ================================================= */

    .social-tiktok {

        right: 7% !important;
        top: 27% !important;

        transform: none !important;
    }


    /* =================================================
       FACEBOOK
    ================================================= */

    .social-facebook {

        right: 14% !important;
        bottom: 7% !important;

        transform: none !important;
    }


    /* =================================================
       YOUTUBE
    ================================================= */

    .social-youtube {

        left: 50% !important;
        bottom: 0 !important;

        transform:
            translateX(-50%) !important;
    }


    /* =================================================
       LINKEDIN
    ================================================= */

    .social-linkedin {

        left: 7% !important;
        bottom: 7% !important;

        transform: none !important;
    }


    /* =================================================
       X
    ================================================= */

    .social-x {

        left: 7% !important;
        top: 27% !important;

        transform: none !important;
    }


    /* =================================================
       ENGAGEMENT SIGNALS
    ================================================= */

    .social-signal {

        z-index: 6 !important;

        font-size: 10px !important;

        white-space: nowrap;
    }


    .signal-one {

        top: 16% !important;
        right: 24% !important;
    }


    .signal-two {

        top: 50% !important;
        right: 3% !important;
    }


    .signal-three {

        bottom: 18% !important;
        left: 24% !important;
    }



    /* =================================================
       CONTENT VISUAL SECTION
       — KEEP IT SEPARATE FROM HERO
    ================================================= */

    .social-content-visual {

        position: relative !important;

        display: flex !important;

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

        width: 100% !important;

        min-height: 430px !important;

        margin-top: 0 !important;
    }


    .social-content-screen {

        position: relative !important;

        width: 100% !important;
        max-width: 100% !important;

        height: 430px !important;
        min-height: 430px !important;

        overflow: hidden !important;
    }


    /* =================================================
       CONTENT SCREEN ICONS
    ================================================= */

    .social-content-screen
    .social-floating-icon {

        position: absolute !important;

        transform: none !important;

    }


    /* YouTube */

    .social-content-screen
    .social-youtube {

        top: 45px !important;

        left: 50% !important;

        transform:
            translateX(-50%) !important;
    }


    /* X */

    .social-content-screen
    .social-x {

        top: 125px !important;

        left: 14% !important;
    }


    /* LinkedIn */

    .social-content-screen
    .social-linkedin {

        bottom: 55px !important;

        left: 14% !important;
    }


    /* =================================================
       CONTENT SCREEN SIGNALS
    ================================================= */

    .social-content-screen
    .signal-one {

        top: 50px !important;

        right: 20% !important;
    }


    .social-content-screen
    .signal-two {

        top: 165px !important;

        right: 8% !important;
    }


    .social-content-screen
    .signal-three {

        bottom: 105px !important;

        left: 43% !important;
    }

}



/* =====================================================
   GDS — SOCIAL HERO
   PERFORMANCE OPTIMIZED FLOAT
===================================================== */

.social-hero-ecosystem
.social-floating-icon {

    translate: 0 0;

    animation:
        socialPlatformFloat 4.6s ease-in-out infinite;

    will-change: translate;

    /* Keep GPU layer ready */
    transform-style: preserve-3d;

}


/* =====================================================
   NATURAL RHYTHMS
===================================================== */

.social-hero-ecosystem
.social-instagram {
    animation-delay: -1s;
}

.social-hero-ecosystem
.social-tiktok {
    animation-delay: -2.2s;
}

.social-hero-ecosystem
.social-facebook {
    animation-delay: -.5s;
}

.social-hero-ecosystem
.social-youtube {
    animation-delay: -1.8s;
}

.social-hero-ecosystem
.social-linkedin {
    animation-delay: -.9s;
}

.social-hero-ecosystem
.social-x {
    animation-delay: -2.8s;
}


/* =====================================================
   LIGHTWEIGHT FLOAT
===================================================== */

@keyframes socialPlatformFloat {

    0% {
        translate: 0 0;
    }

    50% {
        translate: 0 -9px;
    }

    100% {
        translate: 0 0;
    }

}


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

@media (max-width: 768px) {

    .social-hero-ecosystem
    .social-floating-icon {

        animation-duration: 5s;

        will-change: translate;

        backface-visibility: hidden;

    }

}





/* =====================================================
   SOCIAL MEDIA — SCROLL REVEAL
   PROBLEM CARDS
===================================================== */

.social-problem-card {

    opacity: .01;

    transform:
        translate3d(65px, 0, 0)
        scale(.98);

    transition:
        opacity .75s
        cubic-bezier(.16,1,.3,1),

        transform .85s
        cubic-bezier(.16,1,.3,1);

    transition-delay:
        var(--card-delay, 0ms);

    will-change:
        opacity,
        transform;
}


.social-problem-card.social-card-visible {

    opacity: 1;

    transform:
        translate3d(0,0,0)
        scale(1);
}


/* =====================================================
   MOBILE — LIGHTER MOTION
===================================================== */

@media (max-width: 768px) {

    .social-problem-card {

        transform:
            translate3d(35px, 0, 0)
            scale(.985);

        transition-duration:
            .65s;
    }

}


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

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

    .social-problem-card,
    .social-problem-card.social-card-visible {

        opacity: 1;

        transform: none;

        transition: none;
    }

}




/* =====================================================
   SOCIAL MEDIA — SCROLL REVEAL
   PLATFORM CARDS
===================================================== */

.social-platform-card {

    opacity: .01;

    transform:
        translate3d(55px, 18px, 0)
        scale(.975);

    transition:
        opacity .75s
        cubic-bezier(.16,1,.3,1),

        transform .85s
        cubic-bezier(.16,1,.3,1);

    transition-delay:
        var(--platform-delay, 0ms);

    will-change:
        opacity,
        transform;
}


.social-platform-card.social-platform-visible {

    opacity: 1;

    transform:
        translate3d(0,0,0)
        scale(1);
}


/* =====================================================
   MOBILE — LIGHTER
===================================================== */

@media (max-width: 768px) {

    .social-platform-card {

        transform:
            translate3d(35px, 12px, 0)
            scale(.985);

        transition-duration:
            .65s;
    }

}


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

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

    .social-platform-card,
    .social-platform-card.social-platform-visible {

        opacity: 1;

        transform: none;

        transition: none;
    }

}





/* =====================================================
   SOCIAL MEDIA — SCROLL REVEAL
   CONTENT ENGINE
===================================================== */


/* =====================================================
   TEXT — ENTER FROM LEFT
===================================================== */

.social-engine-content {

    opacity: .01;

    transform:
        translate3d(-55px, 0, 0);

    transition:
        opacity .85s
        cubic-bezier(.16,1,.3,1),

        transform .95s
        cubic-bezier(.16,1,.3,1);

    transition-delay:
        var(--engine-delay, 0ms);

    will-change:
        opacity,
        transform;
}


.social-engine-content.social-engine-visible {

    opacity: 1;

    transform:
        translate3d(0,0,0);
}


/* =====================================================
   DASHBOARD — ENTER FROM RIGHT
===================================================== */

.social-content-visual {

    opacity: .01;

    transform:
        translate3d(65px, 0, 0)
        scale(.975);

    transition:
        opacity .9s
        cubic-bezier(.16,1,.3,1),

        transform 1s
        cubic-bezier(.16,1,.3,1);

    transition-delay:
        var(--engine-delay, 140ms);

    will-change:
        opacity,
        transform;
}


.social-content-visual.social-engine-visible {

    opacity: 1;

    transform:
        translate3d(0,0,0)
        scale(1);
}


/* =====================================================
   MOBILE — LIGHTER MOTION
===================================================== */

@media (max-width: 768px) {

    .social-engine-content {

        transform:
            translate3d(-30px, 0, 0);

        transition-duration:
            .7s;
    }


    .social-content-visual {

        transform:
            translate3d(30px, 0, 0)
            scale(.985);

        transition-duration:
            .75s;
    }

}


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

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

    .social-engine-content,
    .social-content-visual,
    .social-engine-content.social-engine-visible,
    .social-content-visual.social-engine-visible {

        opacity: 1;

        transform: none;

        transition: none;
    }

}





/* =====================================================
   SOCIAL MEDIA — SCROLL REVEAL
   PROCESS ROWS
===================================================== */


.social-process-list article {

    opacity: .01;

    transform:
        translate3d(65px, 0, 0);

    transition:
        opacity .75s
        cubic-bezier(.16,1,.3,1),

        transform .9s
        cubic-bezier(.16,1,.3,1);

    transition-delay:
        var(--process-delay, 0ms);

    will-change:
        opacity,
        transform;
}


.social-process-list article.social-process-visible {

    opacity: 1;

    transform:
        translate3d(0,0,0);
}


/* =====================================================
   NUMBER MICRO REVEAL
===================================================== */

.social-process-list
article.social-process-visible
> span {

    animation:
        processNumberIn
        .65s
        cubic-bezier(.16,1,.3,1)
        both;
}


@keyframes processNumberIn {

    from {
        opacity: .25;
        transform:
            translateX(10px)
            scale(.9);
    }

    to {
        opacity: 1;
        transform:
            translateX(0)
            scale(1);
    }

}


/* =====================================================
   MOBILE — LIGHTER
===================================================== */

@media (max-width: 768px) {

    .social-process-list article {

        transform:
            translate3d(35px, 0, 0);

        transition-duration:
            .65s;
    }

}


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

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

    .social-process-list article,
    .social-process-list article.social-process-visible {

        opacity: 1;

        transform: none;

        transition: none;
    }

}




/* =====================================================
   SOCIAL MEDIA — SCROLL REVEAL
   FINAL CTA
===================================================== */

.social-final-card {

    opacity: .01;

    transform:
        translate3d(0, 35px, 0)
        scale(.97);

    transition:
        opacity .9s
        cubic-bezier(.16,1,.3,1),

        transform 1s
        cubic-bezier(.16,1,.3,1);

    will-change:
        opacity,
        transform;
}


.social-final-card.social-cta-visible {

    opacity: 1;

    transform:
        translate3d(0,0,0)
        scale(1);
}


/* =====================================================
   CTA BUTTON MICRO REVEAL
===================================================== */

.social-final-card
.service-primary-btn {

    transition:
        transform .45s
        cubic-bezier(.16,1,.3,1),

        box-shadow .45s ease;
}


.social-final-card
.service-primary-btn:hover {

    transform:
        translateY(-3px);

}


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

@media (max-width: 768px) {

    .social-final-card {

        transform:
            translate3d(0, 25px, 0)
            scale(.985);

        transition-duration:
            .75s;
    }

}


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

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

    .social-final-card,
    .social-final-card.social-cta-visible {

        opacity: 1;

        transform: none;

        transition: none;
    }

}





/* =====================================================
   SOCIAL PROOF — PREMIUM RESULTS SECTION
   PART 1 — DESKTOP
===================================================== */

.social-proof {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
}


/* =====================================================
   BACKGROUND ATMOSPHERE
===================================================== */

.social-proof::before {
    content: "";
    position: absolute;

    width: 700px;
    height: 700px;

    left: -300px;
    top: 50%;

    transform: translateY(-50%);

    background:
        radial-gradient(
            circle,
            rgba(112, 106, 255, .12) 0%,
            rgba(112, 106, 255, .05) 35%,
            transparent 70%
        );

    pointer-events: none;
}


.social-proof::after {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -250px;
    bottom: -250px;

    background:
        radial-gradient(
            circle,
            rgba(180, 80, 255, .08),
            transparent 70%
        );

    pointer-events: none;
}


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

.social-proof-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, .9fr)
        minmax(0, 1.1fr);

    gap: 90px;

    align-items: center;
}


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

.social-proof-content {
    max-width: 560px;
}


.social-proof-content h2 {

    margin: 24px 0 24px;

    font-size: clamp(48px, 5vw, 76px);

    line-height: .98;

    letter-spacing: -.045em;

    font-weight: 500;
}


.social-proof-content h2 span {

    display: block;

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


.social-proof-content > p {

    max-width: 500px;

    margin: 0 0 48px;

    font-size: 18px;

    line-height: 1.75;

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


/* =====================================================
   STATS
===================================================== */

.social-proof-stats {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 14px;

    max-width: 500px;
}


.social-proof-stat {

    padding: 22px 24px;

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

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.035),
            rgba(255,255,255,.012)
        );

    backdrop-filter: blur(12px);

    transition:
        transform .45s cubic-bezier(.16,1,.3,1),
        border-color .45s ease,
        background .45s ease;
}


.social-proof-stat:hover {

    transform: translateY(-5px);

    border-color:
        rgba(170,160,255,.28);

    background:
        linear-gradient(
            145deg,
            rgba(120,110,255,.09),
            rgba(255,255,255,.02)
        );
}


.social-proof-stat strong {

    display: block;

    margin-bottom: 6px;

    font-size: 27px;

    line-height: 1;

    font-weight: 600;

    letter-spacing: -.02em;
}


.social-proof-stat span {

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: .12em;

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


/* =====================================================
   PERIOD NOTE
===================================================== */

.social-proof-note {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 28px;
}


.social-proof-note > span {

    padding: 8px 13px;

    border: 1px solid rgba(150,140,255,.20);

    border-radius: 999px;

    color: #a9a0ff;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: .16em;
}


.social-proof-note p {

    margin: 0;

    color: rgba(255,255,255,.38);

    font-size: 13px;
}


/* =====================================================
   VISUAL FRAME
===================================================== */

.social-proof-visual {

    position: relative;

    display: flex;

    justify-content: center;

    align-items: center;
}


.social-proof-frame {

    position: relative;

    width: min(100%, 570px);

    padding: 16px;

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

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.055),
            rgba(255,255,255,.012)
        );

    box-shadow:
        0 40px 100px rgba(0,0,0,.45),
        0 0 80px rgba(110,100,255,.08);

    backdrop-filter: blur(18px);
}


/* =====================================================
   FRAME HEADER
===================================================== */

.social-proof-frame-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 8px 8px 16px;
}


.social-proof-frame-top span {

    font-size: 10px;

    font-weight: 600;

    letter-spacing: .16em;

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


.social-proof-frame-top span:last-child {

    color: #a9a0ff;
}


/* =====================================================
   SCREENSHOTS
===================================================== */

.social-proof-images {

    position: relative;

    min-height: 520px;
}


.social-proof-images img {

    position: absolute;

    width: 58%;

    height: auto;

    display: block;

    border-radius: 20px;

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

    box-shadow:
        0 30px 70px rgba(0,0,0,.55),
        0 0 50px rgba(110,100,255,.08);

    object-fit: cover;

    transition:
        transform .6s cubic-bezier(.16,1,.3,1),
        box-shadow .6s ease;
}


/* MAIN INSIGHTS SCREEN */

.social-proof-images img:first-child {

    top: 0;

    left: 0;

    z-index: 3;

    transform:
        rotate(-3deg);
}


/* PROFILE SCREEN */

.social-proof-images img:last-child {

    right: 0;

    bottom: 0;

    z-index: 2;

    transform:
        rotate(3deg);
}


/* =====================================================
   FRAME HOVER
===================================================== */

.social-proof-frame:hover
.social-proof-images img:first-child {

    transform:
        translate(-8px, -8px)
        rotate(-3deg);
}


.social-proof-frame:hover
.social-proof-images img:last-child {

    transform:
        translate(8px, 8px)
        rotate(3deg);
}




/* =====================================================
   SOCIAL PROOF — MOBILE
   PART 2
===================================================== */

@media (max-width: 768px) {

    .social-proof {
        padding: 100px 0;
        overflow: hidden;
    }


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

    .social-proof-grid {
        display: flex;
        flex-direction: column;
        gap: 55px;
        align-items: stretch;
    }


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

    .social-proof-content {
        max-width: 100%;
    }


    .social-proof-content h2 {
        margin: 20px 0 20px;

        font-size: clamp(42px, 12vw, 58px);

        line-height: .98;
        letter-spacing: -.045em;
    }


    .social-proof-content > p {
        margin-bottom: 32px;

        font-size: 16px;

        line-height: 1.7;
    }


    /* ================================================
       STATS
    ================================================= */

    .social-proof-stats {
        width: 100%;

        grid-template-columns: repeat(2, 1fr);

        gap: 10px;
    }


    .social-proof-stat {
        padding: 18px 16px;

        border-radius: 16px;
    }


    .social-proof-stat strong {
        font-size: 23px;
    }


    .social-proof-stat span {
        font-size: 9px;
        letter-spacing: .10em;
    }


    /* ================================================
       NOTE
    ================================================= */

    .social-proof-note {
        margin-top: 22px;
    }


    /* ================================================
       VISUAL
    ================================================= */

    .social-proof-visual {
        width: 100%;
    }


    .social-proof-frame {
        width: 100%;

        padding: 12px;

        border-radius: 22px;
    }


    /* ================================================
       FRAME HEADER
    ================================================= */

    .social-proof-frame-top {
        padding: 6px 5px 12px;
    }


    .social-proof-frame-top span {
        font-size: 8px;
        letter-spacing: .12em;
    }


    /* ================================================
       SCREENSHOTS
    ================================================= */

    .social-proof-images {

        min-height: 440px;

        position: relative;
    }


    .social-proof-images img {

        width: 67%;

        border-radius: 17px;
    }


    /* INSIGHTS */

    .social-proof-images img:first-child {

        top: 0;
        left: 2%;

        transform:
            rotate(-3deg);
    }


    /* PROFILE */

    .social-proof-images img:last-child {

        right: 2%;
        bottom: 0;

        transform:
            rotate(3deg);
    }


    /* ================================================
       DISABLE HEAVY HOVER ON TOUCH
    ================================================= */

    .social-proof-frame:hover
    .social-proof-images img:first-child {

        transform:
            rotate(-3deg);
    }


    .social-proof-frame:hover
    .social-proof-images img:last-child {

        transform:
            rotate(3deg);
    }

}





/* =====================================================
   SOCIAL PROOF — PREMIUM REVEAL
   PART 3
===================================================== */


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

.social-proof-content-reveal {

    opacity: .01;

    transform:
        translate3d(-45px, 20px, 0);

    transition:

        opacity .85s
        cubic-bezier(.16,1,.3,1),

        transform .9s
        cubic-bezier(.16,1,.3,1);

    will-change:
        opacity,
        transform;
}


.social-proof-content-reveal.social-proof-visible {

    opacity: 1;

    transform:
        translate3d(0,0,0);
}


/* =====================================================
   VISUAL
===================================================== */

.social-proof-visual-reveal {

    opacity: .01;

    transform:
        translate3d(45px, 20px, 0)
        scale(.975);

    transition:

        opacity .9s
        cubic-bezier(.16,1,.3,1),

        transform 1s
        cubic-bezier(.16,1,.3,1);

    transition-delay:
        120ms;

    will-change:
        opacity,
        transform;
}


.social-proof-visual-reveal.social-proof-visible {

    opacity: 1;

    transform:
        translate3d(0,0,0)
        scale(1);
}


/* =====================================================
   SCREENSHOT FLOAT
===================================================== */

.social-proof-images img:first-child {

    animation:
        socialProofFloatOne
        6s
        ease-in-out
        infinite;
}


.social-proof-images img:last-child {

    animation:
        socialProofFloatTwo
        6.5s
        ease-in-out
        infinite;
}


@keyframes socialProofFloatOne {

    0%,
    100% {
        transform:
            rotate(-3deg)
            translateY(0);
    }

    50% {
        transform:
            rotate(-3deg)
            translateY(-7px);
    }

}


@keyframes socialProofFloatTwo {

    0%,
    100% {
        transform:
            rotate(3deg)
            translateY(0);
    }

    50% {
        transform:
            rotate(3deg)
            translateY(7px);
    }

}


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

@media (max-width: 768px) {

    .social-proof-content-reveal {

        transform:
            translate3d(0,25px,0);
    }


    .social-proof-visual-reveal {

        transform:
            translate3d(0,30px,0)
            scale(.985);

        transition-delay:
            80ms;
    }


    .social-proof-images img:first-child {

        animation-duration:
            6.5s;
    }


    .social-proof-images img:last-child {

        animation-duration:
            7s;
    }

}


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

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

    .social-proof-content-reveal,
    .social-proof-visual-reveal {

        opacity: 1;

        transform: none;

        transition: none;
    }


    .social-proof-images img {

        animation: none;
    }

}