/* =====================================================
   DREAM SECTION
===================================================== */
.spw-dream-section{
    position: relative;
    overflow: visible;

    width: 100%;
    min-height: 850px;

    background: #f5f5f5;

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

    gap: 60px;

    padding: 100px 8%;

    box-sizing: border-box;
}

.spw-dream-section *{
    box-sizing: border-box;
}

/* =====================================================
   DREAM GLOW
===================================================== */

.spw-dream-glow{
    position: absolute;

    width: 900px;
    height: 900px;

    left: -250px;
    bottom: -350px;

    border-radius: 50%;

    background: radial-gradient(circle,
    rgba(157, 78, 255, 0.55) 0%,
    rgba(157, 78, 255, 0.20) 35%,
    rgba(157, 78, 255, 0) 70%);

    filter: blur(60px);

    z-index: 1;
}

/* =====================================================
   DREAM COLUMNS
===================================================== */

    .spw-dream-image-wrap,
.spw-dream-content{
    flex: 1;
    min-width: 0;

    position: relative;
    z-index: 3;
}

/* =====================================================
   DREAM IMAGE
===================================================== */

.spw-dream-image-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
}

.spw-dream-image{
    width: 100%;
    max-width: 700px;

    display: block;

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

    filter: drop-shadow(0 40px 60px rgba(0,0,0,0.18));
}

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

.spw-dream-content{
    display: flex;
    flex-direction: column;
    align-items: flex-end;

    text-align: right;
}

.spw-dream-title{
    margin: 0 0 30px 0;

    font-size: clamp(52px, 6vw, 100px);
    line-height: 0.95;

    font-weight: 900;
    letter-spacing: -3px;

    color: #000;
}

.spw-dream-title span{
    color: #8f39ff;
}

.spw-dream-text{
    margin-bottom: 45px;

    max-width: 520px;

    font-size: 24px;
    line-height: 1.4;

    color: #111;
}

/* =====================================================
   DREAM BUTTON
===================================================== */

.spw-dream-button{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 20px 42px;

    background: #000;
    color: #fff;

    text-decoration: none;

    border-radius: 999px;

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

    transition: all 0.35s ease;
}

.spw-dream-button:hover{
    transform: translateY(-6px);

    background: #8f39ff;

    box-shadow: 0 18px 35px rgba(143,57,255,0.35);
}

/* =====================================================
   DREAM FLOAT
===================================================== */

@keyframes spwAboutFloat{

    0%{
        transform: translateY(0px);
    }

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

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

}

/* =====================================================
   ABOUT PREMIUM SECTION
===================================================== */

.spw-about-card{
    position: relative;

    width: 100%;
    min-height: 760px;

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

    gap: 40px;

    padding: 90px 80px;

    background: #000;

    border-radius: 42px;

    overflow: hidden;

    margin-top: 80px;
}
.spw-about-card-wrapper{
    position: relative;
    z-index: 3;

    width: 100%;

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

    gap: 40px;
}
/* =====================================================
   ABOUT GLOW
===================================================== */

.spw-about-card-glow{
    position: absolute;

    width: 600px;
    height: 600px;

    right: -120px;
    bottom: -200px;

    border-radius: 50%;

    background: radial-gradient(circle,
    rgba(140,60,255,0.65) 0%,
    rgba(140,60,255,0.18) 40%,
    rgba(140,60,255,0) 72%);

    filter: blur(60px);

    z-index: 1;
}

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

.spw-about-card-content,
.spw-about-card-image-wrap{
    flex:1;
    min-width:0;
}

/* =====================================================
   ABOUT TOP
===================================================== */

.spw-about-card-top{
    display: flex;
    align-items: center;

    gap: 18px;

    margin-bottom: 45px;
}

.spw-about-card-line{
    width: 120px;
    height: 2px;

    background: rgba(255,255,255,0.7);
}

.spw-about-card-top p{
    margin: 0;

    color: #fff;

    font-size: 18px;

    letter-spacing: 1px;
}

/* =====================================================
   ABOUT TITLE
===================================================== */

.spw-about-card-title{
    margin: 0 0 35px 0;

    color: #fff;

    font-size: clamp(54px, 5vw, 90px);

    line-height: 0.95;

    font-weight: 900;

    letter-spacing: -2px;
}

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

.spw-about-card-description p{
    margin-bottom: 24px;

    font-size: 22px;
    line-height: 1.4;

    color: rgba(255,255,255,0.92);

    max-width: 760px;
}

/* =====================================================
   ABOUT LIST
===================================================== */

.spw-about-card-list{
    display: flex;
    flex-direction: column;

    gap: 22px;

    margin-top: 45px;
    margin-bottom: 55px;
}

.spw-about-card-item{
    display: flex;
    align-items: center;

    gap: 18px;
}

.spw-about-card-item span{
    width: 28px;
    height: 28px;

    border-radius: 50%;

    background: #933dff;

    flex-shrink: 0;
}

.spw-about-card-item p{
    margin: 0;

    color: #fff;

    font-size: 30px;
}

/* =====================================================
   ABOUT FOOTER
===================================================== */

.spw-about-card-footer{
    font-size: 22px;

    color: rgba(255,255,255,0.92);
}

/* =====================================================
   ABOUT IMAGE
===================================================== */

.spw-about-card-image-wrap{
    position: relative;
    z-index: 3;

    width: 48%;

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

.spw-about-card-image{
    width: 100%;
    max-width: 720px;

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

    filter: drop-shadow(0 35px 60px rgba(0,0,0,0.35));
}

/* =====================================================
   ABOUT FLOAT
===================================================== */

@keyframes spwAboutFloat{

    0%{
        transform: translateY(0px);
    }

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

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

}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width: 980px){

    .spw-about-card-wrapper{
    flex-direction: column;
}

    /* DREAM */

    .spw-dream-section{
        flex-direction: column;

        text-align: center;

        padding: 100px 7%;
    }

    .spw-dream-image-wrap,
    .spw-dream-content{
        width: 100%;
    }

    .spw-dream-content{
        align-items: center;

        text-align: center;
    }

    .spw-dream-title{
        font-size: clamp(48px, 12vw, 72px);
    }

    .spw-dream-text{
        font-size: 20px;
    }

    .spw-dream-image{
        max-width: 500px;
    }

    .spw-dream-glow{
        left: 50%;
        transform: translateX(-50%);
        bottom: -350px;
    }

    /* ABOUT */

    .spw-about-card{
        flex-direction: column;

        padding: 80px 40px;

        border-radius: 30px;

        min-height: auto;
    }

    .spw-about-card-content,
    .spw-about-card-image-wrap{
        width: 100%;
    }

    .spw-about-card-content{
        text-align: center;
    }

    .spw-about-card-top{
        justify-content: center;
    }

    .spw-about-card-title{
        font-size: clamp(42px, 11vw, 68px);
    }

    .spw-about-card-description p,
    .spw-about-card-footer{
        font-size: 20px;
    }

    .spw-about-card-item{
        justify-content: center;
    }

    .spw-about-card-item p{
        font-size: 24px;
    }

    .spw-about-card-image{
        transform: none;

        max-width: 520px;
    }

}
/* =====================================================
   COMPARE SECTION
===================================================== */

.spw-compare-section{
    position: relative;

    width: 100%;

    padding: 90px 5%;

    overflow: hidden;

    background: #f5f5f5;
}

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

.spw-compare-glow{
    position: absolute;

    width: 850px;
    height: 850px;

    left: -180px;
    bottom: -350px;

    border-radius: 50%;

    background: radial-gradient(circle,
    rgba(164,92,255,0.45) 0%,
    rgba(164,92,255,0.18) 40%,
    rgba(164,92,255,0) 72%);

    filter: blur(65px);

    z-index: 1;
}

/* =====================================================
   TOP
===================================================== */

.spw-compare-top{
    position: relative;
    z-index: 3;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 60px;
}

.spw-compare-heading{
    max-width: 700px;
}

.spw-compare-mini{
    display: flex;
    align-items: center;

    gap: 18px;

    margin-bottom: 28px;
}

.spw-compare-mini span{
    width: 90px;
    height: 2px;

    background: #000;
}

.spw-compare-mini p{
    margin: 0;

    font-size: 18px;
    letter-spacing: 1px;
}

.spw-compare-heading h2{
    margin: 0;

    font-size: clamp(52px, 5vw, 88px);
    line-height: 0.95;

    font-weight: 900;

    letter-spacing: -2px;

    color: #000;
}

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

.spw-compare-button{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 20px 40px;

    background: #000;
    color: #fff;

    text-decoration: none;

    border-radius: 999px;

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

    transition: all 0.35s ease;
}

.spw-compare-button:hover{
    transform: translateY(-5px);

    background: #8f39ff;

    box-shadow: 0 15px 35px rgba(143,57,255,0.35);
}

/* =====================================================
   FEATURE CARDS
===================================================== */

.spw-compare-features{
    position: relative;
    z-index: 3;

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

    border: 1px solid #000;

    border-radius: 35px;

    overflow: hidden;

    background: rgba(255,255,255,0.55);

    backdrop-filter: blur(8px);

    margin-bottom: 70px;
}

.spw-feature-card{
    padding: 50px 35px;

    text-align: center;

    border-right: 1px solid #000;
}

.spw-feature-card:last-child{
    border-right: none;
}

.spw-feature-card h3{
    margin: 0 0 18px 0;

    font-size: 22px;
    line-height: 1.1;

    font-weight: 900;

    color: #000;
}

.spw-feature-card p{
    margin: 0;

    font-size: 18px;
    line-height: 1.45;

    color: #111;
}

/* =====================================================
   TABLE
===================================================== */

.spw-compare-table{
    position: relative;
    z-index: 3;

    display: grid;
    grid-template-columns: 0.8fr 1.4fr 1fr;

    gap: 25px;
}

/* COLUMN */

.spw-table-column{
    background: rgba(255,255,255,0.62);

    border-radius: 35px;

    padding: 35px 28px;

    backdrop-filter: blur(10px);
}

.spw-table-column h3{
    margin: 0 0 35px 0;

    font-size: 22px;

    font-weight: 800;

    color: #000;
}

.spw-table-column ul{
    list-style: none;

    padding: 0;
    margin: 0;
}

.spw-table-column li{
    margin-bottom: 16px;

    font-size: 18px;
    line-height: 1.35;

    color: #111;
}

/* =====================================================
   POSITIVE
===================================================== */

.spw-table-positive li{
    font-weight: 500;
}

/* =====================================================
   NEGATIVE
===================================================== */

.spw-table-negative li{
    font-weight: 500;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width: 1100px){

    .spw-compare-features{
        grid-template-columns: repeat(2,1fr);
    }

    .spw-feature-card:nth-child(2){
        border-right: none;
    }

    .spw-feature-card:nth-child(1),
    .spw-feature-card:nth-child(2){
        border-bottom: 1px solid #000;
    }

    .spw-compare-table{
        grid-template-columns: 1fr;

        gap: 20px;
    }

}

@media(max-width: 768px){

    .spw-compare-section{
        padding: 80px 6%;
    }

    .spw-compare-top{
        flex-direction: column;

        align-items: flex-start;
    }

    .spw-compare-heading h2{
        font-size: clamp(40px, 11vw, 62px);
    }

    .spw-compare-features{
        grid-template-columns: 1fr;
    }

    .spw-feature-card{
        border-right: none !important;

        border-bottom: 1px solid #000;
    }

    .spw-feature-card:last-child{
        border-bottom: none;
    }

    .spw-feature-card h3{
        font-size: 20px;
    }

    .spw-feature-card p,
    .spw-table-column li{
        font-size: 17px;
    }

    .spw-table-column{
        padding: 30px 24px;
    }

}


/* =====================================================
   MEDIA SECTION
===================================================== */

.spw-media-section{
    position: relative;

    width: 100%;

    padding: 120px 6%;

    overflow: hidden;

    background: #f5f5f5;
}

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

.spw-media-glow{
    position: absolute;

    width: 700px;
    height: 700px;

    left: -200px;
    bottom: -280px;

    border-radius: 50%;

    background: radial-gradient(circle,
    rgba(145,70,255,0.45) 0%,
    rgba(145,70,255,0.18) 40%,
    rgba(145,70,255,0) 72%);

    filter: blur(60px);

    z-index: 1;
}

/* =====================================================
   WRAPPER
===================================================== */

.spw-media-wrapper{
    position: relative;
    z-index: 3;

    width: 100%;

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

    gap: 90px;
}

/* =====================================================
   LEFT IMAGES
===================================================== */

.spw-media-images,
.spw-media-content{
    flex:1;
    min-width:0;
}

/* IMAGE BASE */

.spw-media-image{
    position: absolute;

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

    border-radius: 24px;

    box-shadow: 0 25px 45px rgba(0,0,0,0.12);

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

/* IMAGE POSITIONS */

.spw-media-image-1{
    left: 0;
    top: 30px;

    transform: rotate(-8deg);
}

.spw-media-image-2{
    right: 20px;
    top: 130px;

    transform: rotate(6deg);

    animation-delay: 1s;
}

.spw-media-image-3{
    left: 90px;
    bottom: 0;

    transform: rotate(-3deg);

    animation-delay: 2s;
}

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

.spw-media-content{
    width: 50%;
}

/* TOP */

.spw-media-top{
    display: flex;
    align-items: center;

    gap: 18px;

    margin-bottom: 40px;
}

.spw-media-line{
    width: 120px;
    height: 2px;

    background: #000;
}

.spw-media-top p{
    margin: 0;

    font-size: 18px;
    letter-spacing: 1px;

    color: #000;
}

/* TITLE */

.spw-media-title{
    margin: 0 0 35px 0;

    font-size: clamp(40px, 4vw, 62px);
    line-height: 1;

    font-weight: 780;

    letter-spacing: -1px;

    color: #000;
}

/* TEXT */

.spw-media-description p{
    margin-bottom: 24px;

    font-size: 22px;
    line-height: 1.4;

    color: #111;

    max-width: 760px;
}

/* LIST */

.spw-media-list{
    display: flex;
    flex-direction: column;

    gap: 22px;

    margin-top: 45px;
    margin-bottom: 50px;
}

.spw-media-item{
    display: flex;
    align-items: center;

    gap: 18px;
}

.spw-media-item span{
    width: 28px;
    height: 28px;

    border-radius: 50%;

    background: #933dff;

    flex-shrink: 0;
}

.spw-media-item p{
    margin: 0;

    font-size: 28px;

    color: #000;
}

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

.spw-media-button{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 20px 42px;

    background: #000;
    color: #fff;

    text-decoration: none;

    border-radius: 999px;

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

    transition: all 0.35s ease;
}

.spw-media-button:hover{
    transform: translateY(-6px);

    background: #8f39ff;

    box-shadow: 0 18px 35px rgba(143,57,255,0.35);
}

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

@keyframes spwMediaFloat{

    0%{
        transform: translateY(0px);
    }

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

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

}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width: 980px){

    .spw-media-wrapper{
        flex-direction: column;

        gap: 70px;
    }

    .spw-media-images,
    .spw-media-content{
        width: 100%;
    }

    .spw-media-content{
        text-align: center;
    }

    .spw-media-top{
        justify-content: center;
    }

    .spw-media-title{
        font-size: clamp(42px, 11vw, 68px);
    }

    .spw-media-description p{
        font-size: 20px;
    }

    .spw-media-item{
        justify-content: center;
    }

    .spw-media-item p{
        font-size: 24px;
    }

    .spw-media-images{
        min-height: 420px;
    }

    .spw-media-image{
        max-width: 220px;
    }

}

/* =====================================================
   PLANS SECTION
===================================================== */

.spw-pricing-section{
    position: relative;

    width: 100%;

    display: grid;
    grid-template-columns: 0.9fr 1fr 1fr;

    gap: 28px;

    padding: 90px 5%;

    background: #ead2ff;

    overflow: hidden;
}

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

.spw-pricing-glow{
    position: absolute;

    width: 900px;
    height: 900px;

    left: -220px;
    top: -250px;

    border-radius: 50%;

    background: radial-gradient(circle,
    rgba(162,88,255,0.45) 0%,
    rgba(162,88,255,0.18) 40%,
    rgba(162,88,255,0) 72%);

    filter: blur(70px);

    z-index: 1;
}

/* =====================================================
   INTRO
===================================================== */

.spw-pricing-intro{
    position: relative;
    z-index: 3;

    display: flex;
    flex-direction: column;
}

/* MINI */

.spw-pricing-mini{
    display: flex;
    align-items: center;

    gap: 18px;

    margin-bottom: 40px;
}

.spw-pricing-mini span{
    width: 90px;
    height: 2px;

    background: #000;
}

.spw-pricing-mini p{
    margin: 0;

    font-size: 18px;
    letter-spacing: 1px;

    color: #000;
}

/* TITLE */

.spw-pricing-title{
    margin: 0 0 45px 0;

    font-size: clamp(52px, 5vw, 88px);
    line-height: 0.95;

    font-weight: 900;

    letter-spacing: -2px;

    color: #000;
}

/* =====================================================
   PLAN CARDS
===================================================== */

.spw-pricing-card{
    position: relative;
    z-index: 3;

background: rgba(255,255,255,0.88);

    border-radius: 42px;

    padding: 40px 36px;

    display: flex;
    flex-direction: column;

    min-height: 760px;

    transition: all 0.35s ease;

    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.spw-pricing-card:hover{
    transform: translateY(-10px);

    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

/* DELUXE */

.spw-pricing-deluxe{
    min-height: 520px;

    justify-content: space-between;
}

/* TITLES */

.spw-pricing-card h3{
    margin: 0 0 28px 0;

    font-size: 52px;
    line-height: 1;

    font-weight: 900;

    color: #000;
}

/* DESCRIPTION */

.spw-pricing-description,
.spw-pricing-deluxe p{
    font-size: 22px;
    line-height: 1.35;

    color: #111;

    margin-bottom: 30px;
}

/* LIST */

.spw-pricing-card ul{
    list-style: none;

    padding: 0;
    margin: 0;

    display: flex;
    flex-direction: column;

    gap: 16px;
}

.spw-pricing-card li{
    font-size: 18px;
    line-height: 1.4;

    color: #111;
}

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

.spw-pricing-card-button{
    all: unset;

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

    padding: 20px 36px;

    background: #000;
    color: #fff;

    border-radius: 999px;

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

    cursor: pointer;

    text-decoration: none;

    transition: all .35s ease;
}

.spw-pricing-cta-button:hover{
    transform: translateY(-5px);

    background: #8f39ff;

    box-shadow: 0 18px 35px rgba(143,57,255,0.35);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width: 1200px){

    .spw-pricing-section{
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .spw-pricing-card{
        min-height: auto;
    }

}

@media(max-width: 768px){

    .spw-pricing-section{
        padding: 80px 6%;
    }

    .spw-pricing-title{
        font-size: clamp(40px, 11vw, 64px);
    }

    .spw-pricing-card{
        padding: 35px 28px;

        border-radius: 28px;
    }

    .spw-pricing-card h3{
        font-size: 40px;
    }

    .spw-pricing-description,
    .spw-pricing-deluxe p{
        font-size: 20px;
    }

    .spw-pricing-card li{
        font-size: 17px;
    }
}
.spw-pricing-cta-button{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 16px 34px;

    background: #000;
    color: #fff;

    text-decoration: none;

    border-radius: 14px;

    font-size: 15px;
    font-weight: 600;
    letter-spacing: .5px;

    transition: .3s ease;

    border: 1px solid #000;
}

.spw-pricing-cta-button:hover{
    background: #9747ff;
    border-color: #9747ff;

    transform: translateY(-2px);
}
/* =====================================================
   SOFTWARE HERO SECTION
===================================================== */

.spw-software-section{
    position: relative;

    padding: 140px 7%;

    overflow: clip;

    background:
    linear-gradient(
        90deg,
        #f7f7f7 0%,
        #f4e7ff 50%,
        #f7f7f7 100%
    );
}

/* GLOW */

.spw-software-glow{
    position: absolute;

    width: 500px;
    height: 500px;

    background: #c14bff;

    border-radius: 50%;

    filter: blur(140px);

    opacity: .18;

    top: -120px;
    right: -120px;

    pointer-events: none;
}

/* HEADER */

.spw-software-header{
    position: relative;
    z-index: 2;

    max-width: 1200px;

    margin: 0 auto 80px auto;
}

.spw-software-title{
    font-size: clamp(42px, 5vw, 72px);

    line-height: 1.05;

    font-weight: 800;

    color: #000;

    max-width: 1100px;

    margin-bottom: 35px;
}

.spw-software-description{
    font-size: 20px;

    line-height: 1.7;

    color: #1c1c1c;

    max-width: 1200px;
}

/* CONTENT */

.spw-software-content{
    position: relative;
    z-index: 2;

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

    gap: 60px;

    max-width: 1400px;

    margin: auto;
}

/* IMAGE */

.spw-software-image-wrap,
.spw-software-text-box{
    flex:1;
    min-width:0;
}

.spw-software-image{
    width: 100%;

    display: block;

    border-radius: 38px;

    object-fit: cover;

    box-shadow:
    0 20px 60px rgba(0,0,0,.15);
}

/* TEXT BOX */

.spw-software-text-box p{
    font-size: 22px;

    line-height: 1.7;

    color: #111;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width: 992px){

    .spw-software-section{
        padding: 100px 7%;
    }

    .spw-software-content{
        flex-direction: column;
    }

    .spw-software-image-wrap,
    .spw-software-text-box{
        width: 100%;
    }

    .spw-software-title{
        font-size: 42px;
    }

    .spw-software-description,
    .spw-software-text-box p{
        font-size: 18px;
    }

}

/* ====================================
   MAIN BANNER
==================================== */

.spw-main-banner{
    position: relative;

    width: 100%;
    min-height: 550px;

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

    padding: 120px 8%;

    border-radius: 40px;

    overflow: hidden;

    background-image: url("../../img/banners/main.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* DARK OVERLAY */

.spw-main-banner-overlay{
    position: absolute;

    inset: 0;

    background:
    linear-gradient(
        135deg,
        rgba(0,0,0,.75),
        rgba(40,0,70,.55)
    );

    z-index: 1;
}

/* CONTENT */

.spw-main-banner-content{
    position: relative;
    z-index: 2;

    max-width: 1000px;

    text-align: center;
}

/* TITLE */

.spw-main-banner-title{
    margin:0;

    color:#fff;

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

    line-height:1.1;

    font-weight:900;

    letter-spacing:-2px;
}

/* =====================================================
   SOFTWARE SOLUTIONS
===================================================== */

.spw-software-solutions{
    position: relative;

    margin: 120px 0;
    padding: 70px 5%;

    background: #000;
    border-radius: 45px;

    overflow: clip;
}

/* BACKGROUND GLOW */

.spw-software-solutions::before{
    content: '';

    position: absolute;

    width: 700px;
    height: 700px;

    background: radial-gradient(
        circle,
        rgba(196, 132, 255, 0.45) 0%,
        rgba(196, 132, 255, 0.15) 35%,
        transparent 70%
    );

    top: -250px;
    left: -150px;

    z-index: 1;
}

.spw-software-solutions::after{
    content: '';

    position: absolute;

    width: 700px;
    height: 700px;

    background: radial-gradient(
        circle,
        rgba(165, 84, 255, 0.45) 0%,
        rgba(165, 84, 255, 0.15) 35%,
        transparent 70%
    );

    bottom: -350px;
    right: -150px;

    z-index: 1;
}

/* CONTENT */

.spw-software-solutions-header,
.spw-software-cards{
    position: relative;
    z-index: 3;
}

.spw-software-solutions-header{
    max-width: 1200px;
    margin-bottom: 60px;
}

.spw-software-solutions-header h2{
    color: #fff;

    font-size: clamp(2.3rem, 4vw, 4.2rem);
    font-weight: 800;
    line-height: 1.2;

    letter-spacing: -1px;
}

/* CARDS */

.spw-software-cards{
    display: flex;
    justify-content: center;
    gap: 28px;

    flex-wrap: wrap;
}

.spw-software-card{
    width: 290px;
    min-height: 270px;

    padding: 35px 28px;

    border: 1px solid rgba(255,255,255,0.9);
    border-radius: 30px;

    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.12) 0%,
        rgba(255,255,255,0.04) 100%
    );

    backdrop-filter: blur(12px);

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

    text-align: center;

    transition: 0.35s ease;
}

.spw-software-card:hover{
    transform: translateY(-8px);

    background: linear-gradient(
        180deg,
        rgba(196, 132, 255, 0.25) 0%,
        rgba(255,255,255,0.06) 100%
    );

    box-shadow: 0 20px 50px rgba(165, 84, 255, 0.25);
}

.spw-software-card h3{
    color: #fff;

    font-size: 2.2rem;
    font-weight: 800;

    margin-bottom: 10px;
}

.spw-software-card span{
    display: block;

    color: #fff;

    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.25;

    margin-bottom: 25px;
}

.spw-software-card p{
    color: rgba(255,255,255,0.92);

    font-size: 1.1rem;
    line-height: 1.5;
}

/* RESPONSIVE */

@media(max-width: 1200px){

    .spw-software-cards{
        gap: 22px;
    }

    .spw-software-card{
        width: calc(50% - 11px);
    }
}

@media(max-width: 768px){

    .spw-software-solutions{
        padding: 60px 7%;
        border-radius: 30px;
    }

    .spw-software-solutions-header{
        margin-bottom: 45px;
    }

    .spw-software-solutions-header h2{
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .spw-software-card{
        width: 100%;
        min-height: auto;
    }

    .spw-software-card h3{
        font-size: 2rem;
    }

    .spw-software-card span{
        font-size: 1rem;
    }

    .spw-software-card p{
        font-size: 1rem;
    }
}
/* =====================================================
   SOFTWARE BENEFITS
===================================================== */

.spw-software-benefits{
    width: 100%;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;

    align-items: center;

    padding: 120px 5%;

    overflow: clip;
}

/* LEFT */

.spw-software-benefits-content{
    width: 100%;
    min-width: 0;
}

.spw-software-benefits-label{
    display: inline-block;

    margin-bottom: 18px;

    color: #9f67ff;

    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.spw-software-benefits-content h2{
    margin-bottom: 28px;

    color: #000;

    font-size: clamp(2.4rem, 4vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
}

.spw-software-benefits-content p{
    color: #2a2a2a;

    font-size: 1.08rem;
    line-height: 1.8;

    max-width: 650px;
}

/* RIGHT */

.spw-software-benefits-grid{
    width: 100%;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;

    min-width: 0;
}

/* CARD */

.spw-software-benefit-card{
    padding: 35px 28px;

    border-radius: 28px;

    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.92) 0%,
        rgba(245,240,255,0.95) 100%
    );

    border: 1px solid rgba(160,110,255,0.15);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.06),
        0 0 30px rgba(160,110,255,0.08);

    transition: 0.35s ease;
}

.spw-software-benefit-card:hover{
    transform: translateY(-8px);
}

/* ICON */

.spw-software-benefit-icon{
    width: 72px;
    height: 72px;

    margin-bottom: 24px;

    border-radius: 20px;

    background: linear-gradient(
        135deg,
        #f4ebff 0%,
        #ffffff 100%
    );

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

    box-shadow: 0 8px 20px rgba(160,110,255,0.12);
}

.spw-software-benefit-icon img{
    width: 42px;
    height: 42px;

    object-fit: contain;
}

/* TEXT */

.spw-software-benefit-card h3{
    color: #111;

    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.5;
}

/* RESPONSIVE */

@media(max-width: 1100px){

    .spw-software-benefits{
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .spw-software-benefits-content{
        text-align: center;
    }

    .spw-software-benefits-content p{
        margin: auto;
    }
}

@media(max-width: 768px){

    .spw-software-benefits{
        padding: 90px 7%;
    }

    .spw-software-benefits-grid{
        grid-template-columns: 1fr;
    }

    .spw-software-benefits-content h2{
        font-size: 2.5rem;
    }

    .spw-software-benefit-card{
        padding: 30px 24px;
    }
}
/* =========================================
   GLOBAL HORIZONTAL OVERFLOW FIX
========================================= */

html,
body{
    width: 100%;
    overflow-x: clip;
}

.spw-media-images,
.spw-about-card-image-wrap,
.spw-dream-section,
.spw-compare-section,
.spw-pricing-section,
.spw-software-section,
.spw-software-solutions{
    position: relative;
    overflow: clip;
}

.spw-media-image,
.spw-about-card-image,
.spw-dream-image{
    max-width: 100%;
}
/* =====================================================
   SERVICES + PROCESS SECTION
===================================================== */

.spw-services-process{
    width: 100%;

    padding: 80px 4% 120px;

    background: #f5f5f5;
}

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

.spw-services-top{
    margin-bottom: 110px;
}

.spw-services-title{
    margin: 0 0 50px 0;

    text-align: center;

    font-size: clamp(42px, 5vw, 72px);
    font-weight: 900;

    color: #000;
}

/* GRID */

.spw-services-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 24px;

    align-items: stretch;
}

/* CARD */

.spw-service-card{
    position: relative;

    min-height: 250px;

    padding: 22px 26px 30px;

    border-radius: 34px;

    background: linear-gradient(
        135deg,
        #b24dff 0%,
        #9b3dff 45%,
        #8f35ff 100%
    );

    overflow: hidden;

    box-shadow:
        0 15px 35px rgba(143,57,255,0.18);

    transition: .35s ease;
}

.spw-service-card:hover{
    transform: translateY(-8px);
}

/* TOP BAR */

.spw-service-card-top{
    position: relative;

    width: 100%;
    height: 72px;

    border-radius: 18px;

    margin-bottom: 26px;

    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.25) 0%,
        rgba(50,0,70,0.85) 100%
    );

    display: flex;
    align-items: center;

    padding-left: 22px;

    overflow: hidden;
}

.spw-service-card-top::after{
    content: '';

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.28),
        transparent
    );
}

.spw-service-card-top img{
    width: 105px;

    position: relative;
    z-index: 2;
}

/* TEXT */

.spw-service-card h3{
    margin: 0;

    color: #fff;

    font-size: 1.95rem;
    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -.5px;
}

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

.spw-process-wrap{
    width: 100%;
}

.spw-process-title{
    margin: 0 0 90px 0;

    text-align: center;

    font-size: clamp(42px, 5vw, 70px);
    font-weight: 900;

    color: #000;
}

/* GRID */

.spw-process-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 40px;

    align-items: start;
}

/* STEP */

.spw-process-step{
    position: relative;

    min-height: 260px;
}

.spw-process-step span{
    display: block;

    margin-bottom: 10px;

    font-size: 5rem;
    font-weight: 900;

    color: #000;
}

.spw-process-step h3{
    max-width: 320px;

    margin: 0;

    font-size: 2rem;
    line-height: 1.1;

    font-weight: 800;

    color: #000;
}

/* CENTER */

.spw-process-step-center{
    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    padding-top: 130px;
}

/* LINES */

.spw-process-line-left,
.spw-process-line-right{
    position: absolute;

    width: 320px;
    height: 120px;

    fill: none;

    stroke: #000;
    stroke-width: 3;
}

.spw-process-line-left{
    left: 170px;
    top: 190px;
}

.spw-process-line-right{
    right: 190px;
    top: 190px;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width: 1200px){

    .spw-services-grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .spw-process-grid{
        grid-template-columns: 1fr;

        gap: 70px;
    }

    .spw-process-step,
    .spw-process-step-center{
        min-height: auto;

        text-align: center;

        padding-top: 0;

        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .spw-process-step h3{
        max-width: 500px;
    }

    .spw-process-line-left,
    .spw-process-line-right{
        display: none;
    }
}

@media(max-width: 768px){

    .spw-services-process{
        padding: 70px 6% 90px;
    }

    .spw-services-grid{
        grid-template-columns: 1fr;
    }

    .spw-service-card{
        min-height: auto;
    }

    .spw-service-card h3{
        font-size: 1.7rem;
    }

    .spw-process-title{
        margin-bottom: 60px;
    }

    .spw-process-step span{
        font-size: 4rem;
    }

    .spw-process-step h3{
        font-size: 1.7rem;
    }
}
/* =====================================================
   TESTIMONIALS PREMIUM
===================================================== */

.spw-testimonials-section{
    position: relative;

    margin: 120px 5%;

    padding: 90px 70px;

    border-radius: 42px;

    overflow: hidden;

    background: linear-gradient(
        135deg,
        #7e2cff 0%,
        #9d4cff 45%,
        #6d14ff 100%
    );

    box-shadow:
        0 30px 80px rgba(125,40,255,0.22);
}

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

.spw-testimonials-glow{
    position: absolute;

    width: 700px;
    height: 700px;

    top: -250px;
    right: -180px;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(255,255,255,0.25) 0%,
        rgba(255,255,255,0.05) 40%,
        transparent 72%
    );

    filter: blur(40px);

    pointer-events: none;
}

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

.spw-testimonials-header{
    position: relative;
    z-index: 2;

    max-width: 850px;

    margin-bottom: 70px;
}

.spw-testimonials-label{
    display: inline-block;

    margin-bottom: 20px;

    color: rgba(255,255,255,0.85);

    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;

    text-transform: uppercase;
}

.spw-testimonials-header h2{
    margin: 0 0 28px 0;

    color: #fff;

    font-size: clamp(3rem, 5vw, 5.5rem);
    line-height: .95;

    font-weight: 900;

    letter-spacing: -2px;
}

.spw-testimonials-header h2 strong{
    font-style: italic;
}

.spw-testimonials-header p{
    margin: 0;

    max-width: 700px;

    color: rgba(255,255,255,0.92);

    font-size: 1.2rem;
    line-height: 1.7;
}

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

.spw-testimonials-grid{
    position: relative;
    z-index: 2;

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

    gap: 28px;
}

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

.spw-testimonial-card{
    padding: 35px;

    border-radius: 28px;

    border: 1px solid rgba(255,255,255,0.25);

    background: rgba(255,255,255,0.08);

    backdrop-filter: blur(10px);

    transition: .35s ease;
}

.spw-testimonial-card:hover{
    transform: translateY(-8px);

    background: rgba(255,255,255,0.12);

    border-color: rgba(255,255,255,0.4);
}

/* STARS */

.spw-testimonial-stars{
    margin-bottom: 22px;

    color: #fff;

    font-size: 1.3rem;
    letter-spacing: 3px;
}

/* COMMENT */

.spw-testimonial-comment{
    margin: 0 0 30px 0;

    color: #fff;

    font-size: 1.15rem;
    line-height: 1.7;
}

/* USER */

.spw-testimonial-user{
    display: flex;
    align-items: center;

    gap: 16px;
}

.spw-testimonial-user img{
    width: 62px;
    height: 62px;

    border-radius: 50%;

    object-fit: cover;

    border: 2px solid rgba(255,255,255,0.25);
}

.spw-testimonial-user span{
    color: #fff;

    font-size: 1rem;
    font-weight: 700;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width: 980px){

    .spw-testimonials-grid{
        grid-template-columns: 1fr;
    }

    .spw-testimonials-section{
        padding: 70px 40px;
    }
}

@media(max-width: 768px){

    .spw-testimonials-section{
        margin: 80px 6%;

        padding: 60px 28px;

        border-radius: 30px;
    }

    .spw-testimonials-header{
        margin-bottom: 50px;
    }

    .spw-testimonials-header h2{
        font-size: 2.8rem;
        line-height: 1;
    }

    .spw-testimonials-header p{
        font-size: 1rem;
    }

    .spw-testimonial-card{
        padding: 28px;
    }

    .spw-testimonial-comment{
        font-size: 1rem;
    }
}

/* FIX OVERFLOW */

html,
body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
}

*{
    box-sizing:border-box;
}

img{
    max-width:100%;
    height:auto;
}

.spw-dream-section,
.spw-about-card,
.spw-media-wrapper,
.spw-software-content{
    overflow:hidden;
}