 /* =========================================================
   PREMIUM SHOWCASE SECTION
========================================================= */

.showcase-section {

    width: 100%;

    min-height: 100vh;

    padding: 150px 30px 100px;

    background-color: #050505;

    color: #fff;

    position: relative;

    overflow: hidden;
}


/* =========================================================
   BACKGROUND GRID
========================================================= */

.showcase-section::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image:

        linear-gradient(
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );

    background-size: 64px 64px;

    pointer-events: none;

    opacity: .7;
}


/* subtle glow */

.showcase-section::after {

    content: "";

    position: absolute;

    width: 700px;

    height: 500px;

    left: 50%;

    top: 50%;

    transform: translate(-50%,-50%);

    background: rgba(255,255,255,.025);

    filter: blur(120px);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.showcase-container {

    width: 100%;

    max-width: 1090px;

    margin: 0 auto;

    position: relative;

    z-index: 2;
}


/* =========================================================
   HEADING
========================================================= */

.showcase-heading {

    width: 100%;

    text-align: center;

    margin-bottom: 45px;
}


.showcase-heading h1 {

    margin: 0;

    color: #fff;

    font-size: clamp(
        42px,
        5vw,
        64px
    );

    line-height: 1.02;

    letter-spacing: -3px;

    font-weight: 700;
}


.showcase-heading p {

    margin: 18px 0 0;

    color: #858585;

    font-size: 15px;

    line-height: 1.5;
}


/* =========================================================
   MAIN GRID

   LEFT | CENTER | RIGHT
========================================================= */

.showcase-grid {

    width: 100%;

    display: grid;

    grid-template-columns:
        273px
        minmax(400px, 1fr)
        273px;

    gap: 10px;

    align-items: stretch;
}


/* =========================================================
   COMMON CARD
========================================================= */

.showcase-card {

    position: relative;

    overflow: hidden;

    background: #0b0b0b;

    border: 1px solid rgba(255,255,255,.16);

    border-radius: 20px;

    isolation: isolate;

    transition:
        transform .45s ease,
        border-color .45s ease;
}


.showcase-card video {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .7s ease;
}


.showcase-card:hover {

    border-color: rgba(255,255,255,.28);

}


.showcase-card:hover video {

    transform: scale(1.04);

}


/* =========================================================
   LEFT COLUMN
========================================================= */

.showcase-left {

    display: flex;

    flex-direction: column;

    gap: 10px;
}


.showcase-left-card {

    height: 273px;

    flex: 1;
}


/* first card */

.showcase-left-card:first-child {

    transform: translateY(0);
}


/* second card */

.showcase-left-card:last-child {

    transform: translateY(0);
}


/* =========================================================
   CENTER
========================================================= */

.showcase-center {

    width: 100%;

    min-width: 0;
}


.showcase-main-card {

    width: 100%;

    height: 556px;

    position: relative;

    overflow: hidden;

    background: #0b0b0b;

    border: 1px solid rgba(255,255,255,.16);

    border-radius: 20px;
}


.showcase-main-card video {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .8s ease;
}


.showcase-main-card:hover video {

    transform: scale(1.025);
}


/* =========================================================
   CENTER VIDEO OVERLAY
========================================================= */

.showcase-main-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            to bottom,
            transparent 55%,
            rgba(0,0,0,.75)
        );

    pointer-events: none;
}


.showcase-main-info {

    position: absolute;

    left: 20px;

    bottom: 18px;

    z-index: 5;
}


.showcase-main-info h3 {

    margin: 0 0 4px;

    color: #fff;

    font-size: 15px;

    font-weight: 600;
}


.showcase-main-info span {

    color: #999;

    font-size: 12px;
}


/* =========================================================
   RIGHT COLUMN
========================================================= */

.showcase-right {

    display: flex;

    flex-direction: column;

    gap: 10px;
}


/* =========================================================
   SEE ALL WORK
========================================================= */

.showcase-all-work {

    height: 117px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    color: #fff;

    text-decoration: none;

    background: #080808;

    border: 1px solid rgba(255,255,255,.16);

    border-radius: 20px;

    font-size: 13px;

    font-weight: 600;

    transition: .4s;
}


.showcase-all-work b {

    width: 28px;

    height: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #fff;

    color: #111;

    font-size: 15px;

    transition: .4s;
}


.showcase-all-work:hover {

    background: #111;

    border-color: rgba(255,255,255,.30);
}


.showcase-all-work:hover b {

    transform: rotate(45deg);
}


/* =========================================================
   RIGHT PORTRAIT VIDEO
========================================================= */

.showcase-right-card {

    height: 429px;

    border-radius: 20px;
}


.showcase-right-card video {

    object-fit: cover;

}


/* =========================================================
   OVERLAY
========================================================= */

.showcase-overlay {

    position: absolute;

    inset: 0;

    z-index: 2;

    background:

        linear-gradient(
            to bottom,
            transparent 50%,
            rgba(0,0,0,.75)
        );

    pointer-events: none;
}


/* =========================================================
   CARD INFO
========================================================= */

.showcase-card-info {

    position: absolute;

    left: 18px;

    bottom: 17px;

    display: flex;

    align-items: center;

    gap: 8px;

    z-index: 5;
}


.showcase-card-info span {

    font-size: 13px;
}


.showcase-card-info strong {

    font-size: 13px;

    font-weight: 600;

    color: #fff;
}


.showcase-card-info small {

    color: #36a9ff;

    font-size: 10px;
}


/* =========================================================
   LEFT SECOND CARD TEXT
========================================================= */

.showcase-card-text {

    position: absolute;

    left: 18px;

    top: 45px;

    z-index: 5;

    color: rgba(255,255,255,.35);

    font-size: 12px;

    line-height: 1.2;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .showcase-container {

        max-width: 900px;
    }


    .showcase-grid {

        grid-template-columns:
            220px
            minmax(350px,1fr)
            220px;
    }


    .showcase-left-card {

        height: 220px;
    }


    .showcase-main-card {

        height: 450px;
    }


    .showcase-all-work {

        height: 100px;
    }


    .showcase-right-card {

        height: 340px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    .showcase-section {

        padding: 120px 15px 70px;
    }


    .showcase-heading {

        margin-bottom: 30px;
    }


    .showcase-heading h1 {

        font-size: 38px;

        letter-spacing: -2px;

        line-height: 1.05;
    }


    .showcase-heading p {

        font-size: 14px;
    }


    .showcase-grid {

        display: flex;

        flex-direction: column;

        gap: 10px;
    }


    /* CENTER FIRST */

    .showcase-center {

        order: 1;
    }


    .showcase-main-card {

        height: 420px;

        border-radius: 18px;
    }


    /* LEFT */

    .showcase-left {

        order: 2;

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 10px;
    }


    .showcase-left-card {

        height: 220px;
    }


    /* RIGHT */

    .showcase-right {

        order: 3;

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 10px;
    }


    .showcase-all-work {

        height: 220px;
    }


    .showcase-right-card {

        height: 220px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .showcase-heading h1 {

        font-size: 32px;
    }


    .showcase-main-card {

        height: 360px;
    }


    .showcase-left,
    .showcase-right {

        grid-template-columns: 1fr;
    }


    .showcase-left-card,
    .showcase-all-work,
    .showcase-right-card {

        height: 230px;
    }

}


.services-premium {
    background: #000;
    color: #fff;
    padding: 100px 0 80px;
    overflow: hidden;
}

.services-premium .container {
    width: min(1090px, 90%);
    margin: auto;
}

/* =========================
   HEADING
========================= */

.sp-head {
    text-align: center;
    margin-bottom: 65px;
}

.sp-head h2 {
    margin: 0;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -2px;
}

.sp-head p {
    margin: 12px 0 0;
    color: #777;
    font-size: 16px;
}


/* =========================
   MAIN DIAGRAM
========================= */

.sp-diagram {
    position: relative;
    height: 410px;

    border: 1px solid #1c1c1c;
    border-radius: 26px;

    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(255,255,255,.025),
            transparent 55%
        ),
        #030303;

    box-shadow:
        inset 0 0 80px rgba(255,255,255,.015),
        0 20px 80px rgba(0,0,0,.8);
}


/* =========================
   SERVICE CARDS
========================= */

.sp-service {
    position: absolute;
    top: 40px;
    width: 145px;
    height: 120px;
    z-index: 5;
}

.sp-one {
    left: 17%;
}

.sp-two {
    left: 35.5%;
}

.sp-three {
    left: 54%;
}

.sp-four {
    left: 72.5%;
}


.sp-card {
    position: relative;

    width: 96px;
    height: 116px;

    margin: auto;

    border: 1px solid #292929;
    border-radius: 5px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.008)
        );

    box-shadow:
        0 15px 35px rgba(0,0,0,.8),
        inset 0 0 20px rgba(255,255,255,.015);

    display: flex;
    align-items: flex-end;
    justify-content: center;

    padding-bottom: 14px;

    transform: perspective(500px) rotateY(-2deg);
}


/* little diagonal side */

.sp-card::after {
    content: "";
    position: absolute;

    top: 0;
    right: -13px;

    width: 13px;
    height: 100%;

    background: linear-gradient(
        120deg,
        #171717,
        #070707
    );

    border-right: 1px solid #222;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;

    clip-path: polygon(
        0 0,
        100% 18%,
        100% 100%,
        0 100%
    );
}


/* =========================
   LOADER CIRCLE
========================= */

.sp-loader {
    position: absolute;

    top: 10px;
    left: 10px;

    width: 20px;
    height: 20px;

    border-radius: 50%;

    border: 2px solid #242936;
    border-right-color: #5d5df5;
    border-bottom-color: #5d5df5;

    transform: rotate(-35deg);
}


/* =========================
   LABEL
========================= */

.sp-label {
    position: relative;
    z-index: 3;

    min-width: 78px;

    padding: 5px 8px;

    border: 1px solid #303030;
    border-radius: 6px;

    background: rgba(8,8,8,.85);

    color: #ddd;

    font-size: 11px;
    line-height: 12px;

    text-align: left;

    box-shadow: 0 5px 15px rgba(0,0,0,.5);
}

.sp-label span {
    display: block;
}


/* =========================
   CONNECTING LINES
========================= */

.sp-line {
    position: absolute;

    top: 158px;

    width: 1px;
    height: 90px;

    background: linear-gradient(
        to bottom,
        #3b3b3b,
        #666,
        #3b3b3b
    );

    z-index: 1;
}


/* vertical lines */

.line-one {
    left: 22.2%;
}

.line-two {
    left: 40.8%;
}

.line-three {
    left: 59.3%;
}

.line-four {
    left: 77.8%;
}


/* =========================
   DIAGONAL CONNECTIONS
========================= */

.line-one::after,
.line-two::after,
.line-three::after,
.line-four::after {

    content: "";

    position: absolute;

    top: 89px;

    width: 50px;
    height: 1px;

    background: #555;
}


/* left side diagonals */

.line-one::after {
    left: 0;
    transform: rotate(45deg);
    transform-origin: left;
}

.line-two::after {
    left: 0;
    transform: rotate(45deg);
    transform-origin: left;
}


/* right side */

.line-three::after {
    right: 0;
    transform: rotate(-45deg);
    transform-origin: right;
}

.line-four::after {
    right: 0;
    transform: rotate(-45deg);
    transform-origin: right;
}


/* =========================
   CENTER HORIZONTAL LINE
========================= */

.sp-center-line {
    position: absolute;

    left: 25%;
    right: 25%;

    top: 248px;

    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        #555 10%,
        #555 90%,
        transparent
    );

    z-index: 2;
}


/* =========================
   CENTER NODE
========================= */

.sp-business {
    position: absolute;

    left: 50%;
    bottom: 25px;

    transform: translateX(-50%);

    min-width: 175px;
    height: 48px;

    padding: 0 20px;

    border-radius: 30px;

    border: 1px solid #333;

    background:
        linear-gradient(
            180deg,
            #161616,
            #080808
        );

    box-shadow:
        0 10px 30px rgba(0,0,0,.7),
        inset 0 1px rgba(255,255,255,.05);

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    font-size: 14px;
    color: #ddd;

    z-index: 10;
}


/* small vertical line to business */

.sp-business::before {
    content: "";

    position: absolute;

    top: -70px;
    left: 50%;

    width: 1px;
    height: 70px;

    background: linear-gradient(
        to bottom,
        #555,
        #222
    );
}


/* plus circle */

.sp-plus {
    width: 23px;
    height: 23px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #6969ff,
        #4949d9
    );

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 19px;
    font-weight: 500;

    box-shadow: 0 0 15px rgba(80,80,255,.25);
}


/* =========================
   HOVER
========================= */

.sp-card {
    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.sp-card:hover {
    transform:
        perspective(500px)
        rotateY(-2deg)
        translateY(-8px);

    border-color: #444;

    box-shadow:
        0 20px 45px rgba(0,0,0,.9),
        0 0 25px rgba(90,90,255,.08);
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .services-premium {
        padding: 70px 0 50px;
    }

    .sp-head {
        margin-bottom: 40px;
    }

    .sp-head h2 {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .sp-head p {
        font-size: 14px;
    }

    .sp-diagram {
        height: 620px;
        border-radius: 20px;
    }

    .sp-service {
        width: 120px;
        height: 105px;
        top: auto;
    }

    .sp-one {
        left: 8%;
        top: 45px;
    }

    .sp-two {
        left: auto;
        right: 8%;
        top: 45px;
    }

    .sp-three {
        left: 8%;
        top: 205px;
    }

    .sp-four {
        left: auto;
        right: 8%;
        top: 205px;
    }

    .sp-card {
        width: 82px;
        height: 100px;
    }

    .sp-label {
        font-size: 9px;
        line-height: 10px;
    }

    .sp-loader {
        width: 17px;
        height: 17px;
    }

    /* mobile connecting lines */

    .sp-line {
        display: none;
    }

    .sp-center-line {
        display: none;
    }

    .sp-business {
        bottom: 65px;
        min-width: 165px;
    }

    .sp-business::before {
        top: -80px;
        height: 80px;
    }

    /* mobile central connection */

    .sp-diagram::after {
        content: "";

        position: absolute;

        left: 50%;
        top: 300px;

        width: 1px;
        height: 175px;

        background: linear-gradient(
            to bottom,
            #555,
            #222,
            transparent
        );

        transform: translateX(-50%);
    }
}

/* =========================================
   PREMIUM STATS SECTION
========================================= */

.stats-section {
    width: 100%;
    padding: 95px 0 125px;
    background: #000;
    color: #fff;
    overflow: hidden;
}

.stats-section .container {
    width: min(1090px, 90%);
    margin: 0 auto;
    text-align: center;
}


/* =========================================
   TOP TAG
========================================= */

.stats-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 5px 12px;

    border: 1px solid #292929;
    border-radius: 20px;

    background:
        linear-gradient(
            180deg,
            #171717,
            #0b0b0b
        );

    color: #8a8a8a;

    font-size: 12px;
    line-height: 1;

    box-shadow:
        0 4px 15px rgba(0,0,0,.5),
        inset 0 1px rgba(255,255,255,.04);

    margin-bottom: 14px;
}


/* =========================================
   HEADING
========================================= */

.stats-section h2 {
    margin: 0;

    font-size: 44px;
    line-height: 1.12;

    font-weight: 700;

    letter-spacing: -1.8px;

    background: linear-gradient(
        180deg,
        #ffffff 15%,
        #e5e5e5 55%,
        #777 100%
    );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


.stats-sub {
    margin: 12px 0 32px;

    color: #777;

    font-size: 15px;
    line-height: 1.5;
}


/* =========================================
   GRID
========================================= */

.stats-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 13px;

    text-align: center;
}


/* =========================================
   CARD
========================================= */

.stat-card {
    position: relative;

    height: 300px;

    overflow: hidden;

    border-radius: 24px;

    border: 1px solid #202020;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(255,255,255,.025),
            transparent 60%
        ),
        #050505;

    box-shadow:
        inset 0 0 55px rgba(255,255,255,.015),
        0 20px 50px rgba(0,0,0,.6);

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================
   GRID BACKGROUND
========================================= */

.grid-bg {
    position: absolute;

    inset: 0;

    opacity: .65;

    background-image:
        linear-gradient(
            rgba(255,255,255,.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.045) 1px,
            transparent 1px
        );

    background-size:
        70px 70px;

    mask-image:
        radial-gradient(
            ellipse at center,
            black 25%,
            transparent 90%
        );

    -webkit-mask-image:
        radial-gradient(
            ellipse at center,
            black 25%,
            transparent 90%
        );
}


/* =========================================
   CARD INNER GLOW
========================================= */

.stat-card::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(255,255,255,.035),
            transparent 55%
        );

    pointer-events: none;
}


/* =========================================
   CONTENT
========================================= */

.stat-content {
    position: relative;

    z-index: 3;

    margin-top: -5px;

    width: 100%;
}


/* =========================================
   BIG NUMBER
========================================= */

.stat-content h3 {
    margin: 0;

    font-size: 64px;

    line-height: .9;

    font-weight: 800;

    letter-spacing: -3px;

    background: linear-gradient(
        180deg,
        #ffffff 5%,
        #e9e9e9 30%,
        #777 70%,
        #222 100%
    );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    filter:
        drop-shadow(0 7px 4px rgba(0,0,0,.8));
}


/* =========================================
   TITLE
========================================= */

.stat-content h4 {
    margin: 3px 0 7px;

    color: #f1f1f1;

    font-size: 25px;

    line-height: 1;

    font-weight: 700;

    letter-spacing: -1px;

    text-transform: lowercase;
}


/* =========================================
   DESCRIPTION
========================================= */

.stat-content p {
    margin: 0;

    color: #777;

    font-size: 14px;

    line-height: 16px;

    font-weight: 400;
}


/* =========================================
   BOTTOM LEFT ICON
========================================= */

.stat-icon {
    position: absolute;

    left: 27px;
    bottom: 26px;

    width: 40px;
    height: 40px;

    border-radius: 50%;

    border: 1px solid #303030;

    background:
        radial-gradient(
            circle at 35% 30%,
            #292929,
            #101010
        );

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ddd;

    font-size: 19px;

    z-index: 5;

    box-shadow:
        0 5px 15px rgba(0,0,0,.7),
        inset 0 1px rgba(255,255,255,.05);
}


/* =========================================
   HOVER
========================================= */

.stat-card {
    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.stat-card:hover {
    transform: translateY(-5px);

    border-color: #333;

    box-shadow:
        inset 0 0 55px rgba(255,255,255,.025),
        0 25px 70px rgba(0,0,0,.8);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

    .stats-section {
        padding: 70px 0 80px;
    }

    .stats-section h2 {
        font-size: 36px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-card {
        height: 280px;
    }
}


@media (max-width: 500px) {

    .stats-section .container {
        width: 92%;
    }

    .stats-section h2 {
        font-size: 30px;
        letter-spacing: -1px;
    }

    .stats-sub {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .stats-tag {
        font-size: 11px;
    }

    .stat-content h3 {
        font-size: 58px;
    }

    .stat-content h4 {
        font-size: 23px;
    }

    .stat-content p {
        font-size: 13px;
    }

    .stat-icon {
        left: 20px;
        bottom: 20px;
    }
}
