/* --- Default Reset --- */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}

/* --- Global (assets/global.css) --- */
html{
    max-width: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

*{
    box-sizing: border-box;
    &&::after, &&::before{
        pointer-events: none;
        user-select: none;
    }
}

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

.logo{
    width: 70px;
    height: 70px;
    background-color: var(--bg);
}

img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            justify-self: center;
            align-self: center;
        }

/* --- Palette (SeductivePink.css) --- */
:root{
    /*BG*/
            --bg: #0a0401;
            --innerBg: #140901;
            --innerBlackBg: #310200;
            --innerBlackLighterBg: #441918;

            /*ACCENT*/
            --accent: #c21c07;
            --accentHover: #d14533;

            /*TEXT*/
            --textMain: #f6c7fa;
            --textP: #f6c7fa;
            --textPLighter: #f6c7fa;
}

/* --- Style (NUNITO.css) --- */
:root{
    --brad: 36px;
    --sectionPadding: 2.5rem;
    --transitionMain: all .4s cubic-bezier(.075, .82, .165, 1);
}

html{
    font-size: 18px;
}

body{
    font-family: 'Nunito', sans-serif;
    color: var(--textMain)
}

h1{
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

h2{
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.2;
}

h3{
    font-size: 28px;
    margin-bottom: 1.2rem;
}

span, b{
    font-size: 24px;
}

a, p{
    font-size: 18px;
}

p{
    margin-bottom: 2.5rem;
}

body{
    background: var(--bg);
    line-height: 150%;
}

.wrapper, section:not(.noWrap){
    width: 100%;
    max-width: 1340px;
    margin: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.noWrap, .wrapper, section:not(.noWrap){
    margin-bottom: 85px;
}

.mainBtn{
    align-self: center;
    justify-self: center;
    margin: 1rem 0;
    padding: 1.4rem 1.5rem;
    background: var(--accent);
    border-radius: var(--brad);
    transition: var(--transitionMain);
    display: block;
}

.mainBtn:hover{
    transform: scale(1.04);
    cursor: pointer;
    box-shadow: 0px 0px 12px 5px var(--accentHover);
}

a{
    color: unset;
    text-decoration: none;
}

@media(max-width: 768px){
    .wrapper, section:not(.noWrap){
        max-width: 95%;
    }

    .mainBtn{
        margin-left: auto;
        margin-right: auto;
    }
}


@media (max-width: 768px){

:root{
    --sectionPadding: 1.5rem;
}

h1{
    font-size: 40px;
    font-weight: 700;
}

h2{
    font-size: 30px;
    font-weight: 500;
    text-align: center;
}

h3{
    font-size: 26px;
    text-align: center;
}

span, b{
    font-size: 22px;
}

p{
    font-size: 18px;
    text-align: center;
}
}

.logo{
    transition: all;
    transition: all .4s cubic-bezier(.075, .82, .165, 1);
}
.logo:hover{
    scale: 1.04;
}


/* --- header.css --- */
header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    margin-bottom: 0!important;
}

/*test*/
header>nav>a {
    display: none!important
}

header>nav>ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 39px
}

.header__nav{
    margin-left: auto;
}

header>nav>ul a {
    width: max-content;
    transition: var(--transitionMain)
}

header>nav>ul a::after {
    content: none
}

header>nav>ul a:hover {
    color: var(--accent)!important
}

header>a {
    max-width: 186px;
    z-index: 80
}

header img, footer img{
    border-radius: 0;
}

@media (max-width: 1024px) {
    header {
        padding:16px 0
    }

    header>a:last-child {
        display: none
    }

    header>nav {
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(21,21,22,.9);
        backdrop-filter: blur(8px);
        z-index: 50;
        transform: translateX(-120%) translateY(0);
        transition: var(--transitionMain);
        display: flex;
        flex-direction: column
    }

    header>nav>ul {
        margin-top: 124px;
        margin-left: 24px;
        flex-direction: column;
        align-items: start;
        gap: 40px;
        height: 80vh;
        overflow-y: auto;
        overflow-x: hidden
    }

    header>nav>ul a {
        color: var(--textMain)!important;
        /* font-size: 16px!important */
    }

    header>nav>a {
        display: inline-block!important;
        margin-top: auto;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 32px;
        z-index: 90;
        max-width: 90%;
        color: var(--textBtn)!important
    }

    .navOpen {
        transform: translateX(0%) translateY(0)
    }
}

.mobile__menu {
    display: none;
    z-index: 61
}

.burger {
    width: 60px;
    height: 60px;
    transition-duration: .5s;
    position: relative;
    scale: 0.4
}

.open>.icon-left {
    background: 0 0
}

.open>.icon-left::before {
    transform: rotateZ(45deg) scaleX(1.4) translate(4px,4px)
}

.open>.icon-left::after {
    transform: rotateZ(-45deg) scaleX(1.4) translate(4px,-4px)
}

.open>.icon-right {
    background: 0 0
}

.open>.icon-right::before {
    transform: rotateZ(-45deg) scaleX(1.4) translate(-4px,4px)
}

.open>.icon-right::after {
    transform: rotateZ(45deg) scaleX(1.4) translate(-4px,-4px)
}

.icon-left {
    transition-duration: .5s;
    position: absolute;
    height: 8px;
    width: 50%;
    top: 30px;
    background-color: #fff
}

.icon-left::before {
    transition-duration: .5s;
    position: absolute;
    width: 100%;
    height: 8px;
    background-color: #fff;
    content: "";
    top: -20px
}

.icon-left::after {
    transition-duration: .5s;
    position: absolute;
    width: 100%;
    height: 8px;
    background-color: #fff;
    content: "";
    top: 20px
}

.icon-left:hover {
    cursor: pointer
}

.icon-right {
    transition-duration: .5s;
    position: absolute;
    height: 8px;
    width: 50%;
    top: 30px;
    background-color: #fff;
    left: 30px
}

.icon-right::before {
    transition-duration: .5s;
    position: absolute;
    width: 100%;
    height: 8px;
    background-color: #fff;
    content: "";
    top: -20px
}

.icon-right::after {
    transition-duration: .5s;
    position: absolute;
    width: 100%;
    height: 8px;
    background-color: #fff;
    content: "";
    top: 20px
}

@media (max-width: 1024px) {
    .mobile__menu {
        display:block;
        justify-self: flex-end;
        margin-left: auto;
    }

    header .mainBtn{
        display: none;
    }
}

.fadeInDown,header {
    animation-delay: .5s!important
}

/* --- hero.css --- */
.heroGrid {
    display: grid;
    grid-template-rows: repeat(5, 1fr);
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
    padding: 5% 0;
    && .heroInfo{
        position: relative;
        display: grid;
        grid-template-rows: 1fr 1fr auto;
        gap: 16px;
        grid-row: 2/5;
        && span{
            color: var(--accent);
        }
        && p {
            max-height: fit-content;
            margin-bottom: 0;
        }
        && .mainBtn{
            min-width: 50%;
            text-align: center;
            margin: 0;
            margin-right: auto;
        }
        && h1{
            margin-top: auto;
        }
        && span{
            font-size: inherit;
        }
        && .heroGradient{
            position: absolute;
            background-color: var(--bg);
            left: -50%;
            top: -10%;
            height: 120%;
            width: 300%;
            z-index: -1;
            filter: blur(20px);
        }
    }
    && .heroSwiper{
        width: 100%;
        grid-column: 2;
        grid-row: 1/6;
        cursor: grab;
        background-color: var(--innerBlackLighterBg);
        border-radius: var(--brad);
        padding: 1.5rem;
        position: relative;
        && .swiper-slide{
            border-radius: var(--brad);
            overflow: hidden;
            display: flex;
            flex-direction: row;
        
            && img{
                width: 50%;  
            }
        }
        &&:active{
            cursor: grabbing;
        }
    }

    && .heroarrow{
        position: absolute;
        height: 64px;
        width: 64px;
        background-color: var(--bg);
        border: var(--innerBlackLighterBg) 4px solid;
        top: calc(50% - 32px);
        left: 8px;
        z-index: 2;
        transition: var(--transitionMain);
        border-radius: 50%;
        &&.right{
            right: 8px;
            left: unset;
        }
        &&.left img{
            transform: scaleX(-1);
        }
        &&:hover{
            scale: 1.04;
            cursor: pointer;
            box-shadow: 0px 0px 12px 5px var(--accentHover);
        }
        &&:active{
            scale: 0.96;
            box-shadow: 0px 0px 12px 12px var(--accentHover);
        }
    }
}

@media (max-width: 768px) {
    .heroGrid{
        grid-template-rows: 1fr 1fr;
        grid-template-columns: 1fr;
        && .heroarrow{
            height: 48px;
            width: 48px;
            top: calc(50% - 24px);
        }
        && .heroInfo{
            grid-row: 2;
            grid-column: 1;
            justify-content: center;
            grid-template-rows: auto;
            && h1{
                margin: 0 auto;
                margin-top: 16px;
                max-width: fit-content;
                text-align: center;
            }
        && .mainBtn{
            margin: 0 auto;
        }
        } 
        && .heroSwiper{
            grid-row: 1;
            grid-column: 1;
        } 
        
    }
}

.hero{
    position: relative;
    left: 0;
    top: 0;
    box-shadow: 0px 0px 28px 27px var(--bg) inset;
    && .heroBg{
    position: absolute;
    z-index: -1;
    max-height: 100%;
    width: 100%;
}
}

/* --- toc.css --- */
.toc{
    background-color: var(--bg);
    border-radius: var(--brad);
    margin-top: 75px!important;
}

.toc a{
    transition: var(--transitionMain);
    &&:hover{
        color: var(--accent);
        cursor: pointer;
    }
}

.toc__container>ul li {
    min-width: max-content;
    max-width: max-content
}

.toc__container>ul a {
    padding-left: 24px;
    padding-right: 24px;
}

/* Custom scrollbar for TOC container */
.toc__container {
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
}

.toc__container::-webkit-scrollbar {
    height: 8px;
}

.toc__container::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 4px;
}

/* Swiper scrollbar styles */
.toc__container .swiper-scrollbar,
.toc .toc__container .swiper-scrollbar,
section.toc .toc__container .swiper-scrollbar {
    position: relative !important;
    background: transparent !important;
    border-radius: 6px !important;
    height: 6px !important;
    margin-top: 10px !important;
    min-width: 100% !important;
    opacity: 1 !important;
    transition: opacity 0.3s ease !important;
    left: 0;
    right: 0;
}

.toc__container .swiper-scrollbar-drag {
    background-color: var(--accent);
    border-radius: 6px;
    height: 100%;
    position: relative;
    cursor: default;
}

/* Hide scrollbar after first interaction */
.toc__container.swiper-scrollbar-hidden .swiper-scrollbar {
    opacity: 0;
}

/* Show scrollbar on hover */
.toc__container:hover .swiper-scrollbar {
    opacity: 1;
}

/* --- afterheader.css --- */
.pastTOC{
    position: relative;
    overflow: hidden;
    && .pastTOCBG{
        position: absolute;
        z-index: 1;
        right: 10%;
        transform: scaleX(-1) translateY(-10%);
        &&::after{
            content: '';
            position: absolute;
            width: 150%;
            height: 200%;
            right: 90%;
            top: 0;
            background: var(--innerBlackBg);
            filter: blur(50px);
            z-index: 1;
            transform: rotate(15deg);
        }
    }
    && .pastTOCMain{
        grid-column: 2;
        text-align: center;
        margin-bottom: 0;
        padding: var(--sectionPadding) 0;
        text-align: left;
        display: grid;
        position: relative;
        grid-template-columns: repeat(2, 1fr);
        && *:not(.pastTOCGradBg){
            z-index: 2;
            position: relative;
        }
        && .pastTOCGradBg{
            position: absolute;
            left: -38%;
            top: -82%;
            width: 150%;
            height: 200%;
            filter: blur(50px);
            transform: rotate(15deg);
            z-index: 1;
            background-color: var(--innerBlackBg);
            pointer-events: none;
            user-select: none;
        }
        && .mainBtn{
            margin: 0;
            margin-right: auto;
            min-width: 50%;
            text-align: center;
        }
    }
}

@media (max-width: 768px){
    .pastTOC{
        && .pastTOCBG{
            right: 10%;
            transform: scaleX(-1) translateY(10%) scale(1.5);
            &&::after{
                display: none;
            }
        }
        && .pastTOCMain{
            grid-template-columns: 1fr;
            grid-template-rows: repeat(2, 1fr);
            && .mainBtn{
                margin: 0 auto;
            }
            && div{
                grid-row: 2;
            }
            && .pastTOCGradBg{
                filter: blur(20px);
                transform: unset;
                top: -20%;
                left: -25%;
            }
        }
    }
    }

/* --- features.css --- */
.htu{
    && h2{
        margin-bottom: 32px;
    }
}
.htu > div:last-child {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}

.htu > div:last-child > div {
    display: grid;
    grid-template-columns: 0.5fr 2.4fr;
    gap: 3vw;
    flex-direction: row;
    padding: 30px;
    background-color: var(--innerBg);
    border-radius: var(--brad);
    overflow: hidden;
}


.htu > div:last-child > div p:last-child {
    margin-bottom: 0;
}
.htu > div:last-child > div > div > p:last-child {
    color: var(--ultraDark50) !important;
}
.htu > div:last-child > div > p:last-child {
    color: var(--ultraDark50) !important;
}
.htu > div:last-child > div > div:first-child p:first-child,
.htu > div:last-child > div > p:first-child {
    /* background-color: var(--accent);
    border-radius: var(--brad); */
    font-weight: 700 !important;
    color: var(--textMain) !important;
    margin-bottom: 0;
    justify-self: center;
    aspect-ratio: 1 / 1;
    text-align: center;
    line-height: 100%;
    box-sizing: content-box;
}

.htu_number{
    background-color: var(--accent);
    box-sizing: border-box;
    border-radius: var(--brad);
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    justify-content: center;
    display: flex
;

}


.htu > div:last-child > div > div:first-child p:first-child,
.htu > div:last-child > div > p:last-child {
    max-width: 90%;
}

@media(max-width: 768px){
    .htu > div:last-child > div, .htu > div:last-child > div:nth-child(3) div{
    grid-template-rows: 0.5fr 1fr;
    grid-template-columns: 1fr;
    gap: 24px;
}
}

.htu > div:last-child > div:nth-child(3) > div:nth-child(2) img {
    width: 90% !important;
}

.htu-step{
    background: var(--accent);
    color: var(--textMain);
    aspect-ratio: 1/1;
    border-radius: 50%;
    display: flex;
    max-height: 100px;
    padding: 20px;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    align-self: center;
}

@media (max-width: 974px) {
    .htu > div:last-child {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        gap: 20px;
        align-items: center;
    }
}
@media (max-width: 768px) {
    .htu > div:last-child {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
     
    .htu h2{
        margin-bottom: 16px!important;
    }
    .htu > div:last-child > div{
        padding: 16px;
    }

    .htu-step{
        margin: 0 auto;
    }
}

/* --- partner.css --- */
#partners{
    padding: var(--sectionPadding);
    background-color: var(--innerBg);
    border-radius: var(--brad);
}

.partnerContainer{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 64px;
}

.partnerLogo{
    display: block;
    height: min(150px, 12rem);
    width: min(150px, 12rem);
    padding: 0.5rem;
    border-radius: 50%;
    background-color: var(--innerBlackLighterBg, white);
    border: var(--accent, blue) 4px solid;
    transition: var(--transitionMain);
    &&:nth-child(2n-1){
        padding: 0;
    }
}

.partnerLogo:hover, .partnerLogo:active{
    scale: 1.04;
    box-shadow: inset 0px 0px 100px 0px var(--accent, blue);
    /* background: var(--accent); */
}

.partnerLogo img{
    height: 100%;
    object-fit: contain;
}

@media (max-width: 768px){
    .partnerContainer{
    flex-direction: column;
    gap: 20px;
}
}

/* --- info.css --- */
.section-flex {
            position: relative;
            display: grid;
            grid-template-columns: 1fr 2fr 1fr;
            align-items: start;
            gap: 24px;
            justify-content: space-between;
            flex-wrap: wrap;
            /* margin-bottom: 150px!important; */
        }

        .section-flex img{
        }

        .flexTextblock{
            z-index: 4;
            justify-self: center;
            align-self: center;
            margin: auto 0;
            grid-column: 2;
        }

        #infolist .wrapper{
            margin-bottom: 0;
        }

        .big_bg{
            position: absolute;
            width: 100%;
            height: 101%;
            left: -30%;
            top: -0.5%;
            z-index: 1;
            && img{
                object-position: 0% 20%;
            }
        }


        .section-flex.stretch {
            align-items: stretch
        }

        .section-flex {
            display: grid;
            grid-template-columns: 1fr 2fr 1fr;
        }

        .section-flex {
            gap: 70px;
            padding-right: 80px;
            padding-left: 80px;
        }

        .section-flex div img {
            display: block;
            width: 150%;
        }

        .section-flex.row-reverse {
            flex-direction: row-reverse
        }

        .step {
            display: flex;
            flex-direction: row;
            align-items: center;
            margin-bottom: 20px;
            gap: 24px
        }

        .step_flex {
            display: flex;
            align-items: center;
            gap: 12px
        }

        .step-number {
            background: var(--accent);
            color: var(--textMain);
            min-width: 52px;
            min-height: 52px;
            border-radius: 10%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            position: relative;
            && .buoy{
                position: absolute;
                height: 100%;
                width: 100%;
                aspect-ratio: 1/1;
            }
        }

        .infowrapper{
            position: relative;
            && .box_shadow{
                position: absolute;
                height: 100%;
                width: 100%;
                left: 0;
                right: 0;
                z-index: 1;
                background: linear-gradient(180deg,var(--bg) 1%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0) 80%, var(--bg) 99%),
                linear-gradient(93deg,var(--bg) 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0) 90%, var(--bg) 100%);       
                user-select: none;
                pointer-events: none;     
            }
        }

        .info-block .step-number {
            background: var(--acccent);
            color: var(--textMain) !important
        }

        .step-content h3 {
            margin-bottom: 12px !important;
            font-weight: 700;
        }

        .step-content p {
            margin: 0
        }

        .info .section-flex {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 24px;
            justify-content: space-between;
            flex-wrap: wrap
        }

        .info-block .section-flex.reverse {
            flex-direction: column-reverse
        }

        .info__steps-container {
            display: grid;
            flex-direction: row;
            
            && .mainBtn{
                margin: 0 auto;
                min-width: 60%;
                text-align: center;
            }
        }

        

        .info__steps {
            display: flex;
            flex-wrap: wrap;
            column-gap: 24px;
            align-self: center;
            position: relative;
            z-index: 3;
            &&::after{
                content: '';
                position: absolute;
                left: -5%;
                top: -1%;
                width: 110%;
                height: 102%;
                filter: blur(20px);
                background: var(--innerBg);
                z-index: -1;
            }
        }

        .info__steps-container a {
            max-width: 240px
        }

        .info-block h2+p {
            margin-bottom: 32px
        }

        .info-block img {
            border-radius: var(--brad)
        }

        @media (min-width: 768px) {
            .info__steps .step {
                flex: 1 1 40% !important
            }

            .info-block .info__steps-container {
                align-items: start
            }

            .info__steps-container {
                align-items: center
            }


        }

        @media (max-width: 1200px) {
            .info {
                padding: 60px 0
            }

            .step {
                flex-direction: column;
                align-items: start
            }

            .info .section-flex {
                align-items: start
            }

            .info .section-flex_second {
                flex-direction: column-reverse
            }

            .info .section-flex>* {
                flex: 0 1 100%
            }

            .info .sectionImg .desktop {
                display: none
            }

            .info .sectionImg .mobile {
                display: block
            }

            .info__steps .step {
                flex: 1 1 100%
            }

            .info-block .info__steps .step {
                flex: 1 1 100% !important
            }
        }

        @media (min-width: 1200px) {
            .info .sectionImg .desktop {
                display: block
            }

            .info .sectionImg .mobile {
                display: none
            }

            .info__steps .step {
                flex: 1 1 100% !important
            }

            .info__steps-container {
                align-items: start
            }

            .section-flex .mainBtn {
                align-self: flex-start;
            }
        }

        @media (max-width: 700px) {
            
            .section-flex div img {
                display: none;
            }

            .section-flex.column-reverse {
                flex-direction: column-reverse
            }

            .section-flex {
                gap: 0;
                align-items: start
            }

            .step-number {
                align-self: center;
            }

            .section-flex{
                padding-left: 0;
                padding-right: 0;
                grid-template-columns: 1fr;
                grid-template-rows: 1fr;
            }

            .info__steps{
                && h2{
                    margin-left: auto;
                    margin-right: auto;
                }
                &&::after{
                    display: none!important;
                }
            }
        }

/* --- pricing_plans.css --- */
.pricingContainer{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 24px;
    && .pricingCard{
        background: var(--innerBg);
        display: flex;
        flex-direction: column;
        border-radius: var(--brad);
        &&:nth-child(2){
            background: var(--innerBlackLighterBg);
            && .pricingTop{
                && span, b{
                    border: 4px solid var(--accentHover);
                    border-bottom: unset;
                    background: var(--innerBlackLighterBg)
                }

                && b{
                background-color: var(--accentHover);
                color: var(--bg);
            }
            }
            && .pricingBottom{
                border-top: 4px solid var(--accentHover);
            }
        }      
        && .pricingTop{
            display: flex;
            flex-direction: column;
            && .pricingImage{
                aspect-ratio: 1/1;
                border-radius: var(--brad) var(--brad) 0 0;
                overflow: hidden;
                && img{
                    object-position: 50% 20%;
                }
                
            }
            && span, b{
                position: relative;
                z-index: 2;
                padding: 4px 8px;
                border-radius: 16px 16px 0 0;
                transform: translateY(-74px); 
                background: var(--innerBg);
                max-width: fit-content;
                margin: 0 auto;
                border: 4px solid var(--accent);
                border-bottom: unset;
            }

            && b{
                background-color: var(--accent);
                font-weight: 700;
            }

            
                
            } 
        }
        && .pricingBottom{
            padding: var(--sectionPadding);
            padding-bottom: 0px;
            transform: translateY(-78px);
            border-top: 4px solid var(--accent);
            && ul{
                display: flex;
                flex-direction: column;
                gap: 16px;
                && li{
                list-style:disc;
                list-style-position: inside;
                &&:nth-child(2n)::marker{
                    color: var(--accent);
                }
            }
            }
            
            
        }
    }

    @media (max-width: 768px){
        .pricingContainer{
            grid-template-columns: 1fr;
        }
    }


/* --- gallery.css --- */
#gallery .wrapper{
    margin-bottom: 0;
}

.gallery {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: nowrap;
    max-width: 98%;
    border-radius: var(--bradMed);
    overflow: hidden;
    margin-bottom: 75px;
    &&:hover{
        cursor: grab;
    }
    &&:active{
        cursor: grabbing;
    }
}
.gallery::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    pointer-events: none;
    background: linear-gradient(100deg,var(--bg) 0%, rgba(1, 14, 1, 0) 20%, rgba(1, 14, 1, 0) 80%, var(--bg) 100%);
}
.gallery > .swiper-wrapper {
    /* aspect-ratio: 8/2; */
    /* max-height: 419px; */
    max-height: unset !important;
    align-items: stretch !important;
}

.gallery .swiper-slide {
    height: unset !important;
    border-radius: var(--bradMed);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.gallery .swiper-slide img {
    aspect-ratio: 1/1;
    max-height: 400px;
}
.resultControls {
    width: 85%;
}
.resultControls > div {
    background-color: transparent !important;
}
.resultControls > div img {
    filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.5));
}
@media (max-width: 1024px) {
    .gallery::after {
            background: linear-gradient(94deg, var(--bg), rgba(1, 14, 1, 0) 20%, rgba(1, 14, 1, 0) 80%, var(--bg) 100%);
    }
}
@media (max-width: 768px) {
    .resultControls {
        display: flex;
        width: 117%;
    }
    .gallery .swiper-slide {
        width: 74%;
    }
    .resultControls {
        display: none;
    }
}

/* --- reviews.css --- */
#reviews .swiper{
  width:100%; max-width: 1400px; margin:0 auto; padding:0 20px;
  overflow:hidden;
  cursor: grab;
  &&:active{
    cursor: grabbing
  }
}

.rv-head{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}
.rv-kicker{
  grid-column:1/-1; color:var(--brand); font-weight:800; display:flex; align-items:center; gap:8px;
  text-shadow: var(--neon);
}
.rv-dot{ width:8px; height:8px; border-radius:50%; background:var(--brand); display:inline-block; }
.rv-title{
  text-align: start;
  margin:0;
  color: var(--textMain);
}

.rev-btn{
  width:64px; 
  height:64px; 
  border-radius:50%;
  background: var(--innerBg); 
  color: var(--textMain);
  border: none var(--bg) 4px;
  cursor:pointer; 
  transition: var(--transitionMain);
  
          &&:hover {
            scale: 1.04;
            cursor: pointer;
            box-shadow: 0px 0px 12px 5px var(--accentHover);
            }
        &&:active {
            scale: 0.96;
            box-shadow: 0px 0px 12px 12px var(--accentHover);
        }
        && .disabled{
            cursor:not-allowed;
        }
        && img{
            object-fit: contain;
        }
    
}

.rev-btn:hover{
  transform: translateY(-2px);
  background: var(--innerBg);
  border-color: var(--accent);
  color: var(--textMain);
}

#reviews .swiper{ padding:40px 0 }
#reviews .swiper-slide{
  transition: transform .35s ease, z-index .35s ease, opacity .35s ease, filter .35s ease;
  will-change: transform;
  z-index:1; opacity:.9; filter:saturate(1);
  pointer-events:auto;
}

#reviews .swiper-slide-prev{
  transform:  translateY(6px) translateX(-6px) rotateY(4deg);
}
#reviews .swiper-slide-next{
  transform:  translateY(6px) translateX(6px) rotateY(-4deg);
}

#reviews .swiper-slide-active{
  transform: scale(1.00);
  z-index:3; opacity:1; filter:saturate(1.04);
}

.rv-card{
  border-radius:var(--brad);
  border: 2px solid transparent;
  padding:16px;
  box-shadow: var(--shadow);
  transition: var(--transitionMain);
  color: var(--textMain);
  position:relative; overflow:hidden;
}

#reviews .swiper-slide-active .rv-card {
  background: var(--accent);
  border: 2px solid var(--accent);
  box-shadow: 0 0 5px var(--accentHover);
  transform: none; 
}

.rv-top{ display:flex; align-items:center; gap:10px; margin-bottom:8px }
.rv-avatar{
  width:44px; height:44px; border-radius:50%; padding:2px;
  border:4px solid var(--bg);
  background: var(--accent);
}
.rv-avatar img{ width:100%; height:100%; border-radius:50%; display:block; object-fit:cover }
.rv-meta{ display:flex; flex-direction:column; line-height:1.1; }
.rv-meta strong{ color: var(--textMain) }
.rv-meta span{ font-size:12px; color: var(--muted) }
.rv-rate{ margin-left:auto; color: var(--brand-3); font-weight:900; text-shadow: var(--neon) }

.rv-quote{ color: var(--muted); line-height:1.55; margin:6px 0 10px; text-align: left; }
.rv-tags{ display:flex; gap:8px; flex-wrap:wrap }
.rv-tags span{
  font-size:12px; padding:6px 10px; border-radius:999px;
  background: linear-gradient(180deg, #fff, #fff2fb);
  color: var(--textMain);
  border:1px solid rgba(255, 0, 168, .22);
}

.rv-controls{ display:none; gap:10px; margin-bottom: 20px; }

@media (max-width: 980px){
  #reviews .swiper-slide-prev,
  #reviews .swiper-slide-next{
    transform: scale(.97) translateY(4px) rotateY(2deg);
  }
  
  .rv-title{
    text-align: center;
  }
  .rv-controls{
    margin-bottom: 0;
    display: none;
  }
  .rv-card{ width:95% }
  #reviews .swiper{ padding-left:20px !important; }
}
@media (max-width: 620px){
  #reviews .swiper-slide-prev,
  #reviews .swiper-slide-next{
    transform: scale(.985) translateY(2px) rotateY(0);
  }

  #reviews .swiper{
    padding-bottom: 0;
  }
}

#reviews .chip-glass{ color:var(--textMain); }

.badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.pill {
  display: inline-flex;
  background: var(--bg);
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: .85rem;
  border: 1px solid var(--accent);
  transition: var(--transitionMain);
}
.pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 12px rgba(255,0,168,.18) inset, var(--haze);
}


/* --- prefaq.css --- */
.preFaq{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    position: relative;
    padding: var(--sectionPadding);
    overflow: hidden;
    border-radius: var(--brad);
    && .gradBg{
        position: absolute;
        top: -50%;
        left: 0;
        z-index: -1;
        width: 55%;
        filter: blur(75px);
        height: 200%;
        background-color: var(--innerBlackBg);
    }
    && .mainBtn{
        display: block;
        margin-right: auto;
        min-width: 40%;
        text-align: center;
    }
    && .preFaqImageContainer{
        position: absolute;
        z-index: -2;
        right: 0;
        top: 0;
        && img{
            object-fit: cover;
            transform: translateY(-9%) translateX(10%);
        }
        
    }
}

@media (max-width: 768px){
    .preFaq{
        grid-template-columns: 1fr;
        grid-template-rows: 0.75fr 1fr;
        && .mainBtn{
        min-width: 60%;
        }
        && div:first-child{
            grid-row: 2;
        }
        && .gradBg{
            filter: blur(50px);
            height: 70%;
            width: 200%;
            top: unset;
            bottom: 0%;
            left: -50%;
        }
        && .preFaqImageContainer{
            transform: translateY(35%) translateX(-15%) scale(1.5);
        }
    }
}

/* --- faq.css --- */
.faq>div {
    border-radius: var(--brad)
}

#faq{
    background-color: var(--innerBg);
    border-radius: var(--brad);
    padding: var(--sectionPadding);

}

.accord__container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accord__item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    padding: 32px 64px;
    background-color: var(--innerBlackLighterBg);
    border-radius: var(--brad);
    transition: var(--transitionMain);
    &&:hover{
        box-shadow: 0px 0px 12px 5px var(--accentHover);
        cursor: pointer;
        z-index: 3;
    }
}

.accord__item h3,.accord__item p {
    margin-bottom: 0;
}

.accord__item>div:first-child>p {
    font-weight: 400;
    color: var(--mainText)!important;
    font-size: 24px!important;
    margin-bottom: 0
}

.accord__item>div:first-child {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center
}

.accord__item>div:last-child {
    max-height: 0;
    visibility: hidden;
    transition: var(--transitionMain)
}

.accord__item>div:last-child p {
    text-align: left;
}

.show {
    visibility: visible!important
}

.accord__item div + div {
    transition: max-height 0.3s ease;
    overflow: hidden;
    box-sizing: border-box; 
}

.accord__item div + div p {
    transition: margin-top 0.3s ease;
    visibility: hidden;
    margin: 0;
}

.accord__item div + div.show p {
    visibility: visible;
    opacity: 1;
    padding: 0 1rem;
}

div.show{
    margin-top: 28px;
}

@media (max-width: 768px){
    .accord__item{
        padding: 32px 16px;
    }
}

/* --- footer.css --- */
footer {
    background-color: var(--innerBlackBg);
    position: relative;
}

.footer__top {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 36px;
    margin-bottom: 29px
}

.footer__top>div:first-child {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px
}

.footer__top>div>ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.footer__top>nav{
    width: 39%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.footer__top>div>ul a {
    display: inline-block;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center
}

.footer__top>div>ul img {
    height: 55%;
    object-fit: contain;
}

.footer__top>nav ul {
    margin-left: auto;
    max-width: 80%;
    display: flex;
    flex-direction: row;
    align-items: left;
    flex-wrap: wrap;
    row-gap: 20px;
    justify-content: left;
    flex-direction: column;
}

.footer__top>nav li a {
    width: max-content;
    text-decoration: none;
    transition: transform 150ms cubic-bezier(0.47, 0, 0.745, 0.715);
}


.footer__top>nav li a:hover{
    color: var(--accentHover);
    scale: 1.04;
}

.footer__bottom {
    padding: 16px 0;
    text-align: center;
    background-color: var(--innerBlackBg);
    border-top: 1px var(--innerBg) solid;
}

.footer__bottom p {
    justify-self: center;
    line-height: 150%;
}

@media (max-width: 768px) {
    .footer__top {
        flex-direction:column-reverse;
        align-items: start;
        gap: 24px
    }

    /* .footer__top>div:first-child>a {
        max-width: 153px
    } */

    /* .footer__top>div>ul {
        display: none
    } */

    @media (max-width: 768px) {
    .footer__top>nav ul {
        margin-left: 0;
        padding-left: 0;
        max-width: 80%;
        align-items: center;
        gap: 24px;
        row-gap: 12px;
        justify-content: center;
        text-align: center;
        list-style: none;
        min-width: fit-content;
        justify-self: center;
    }
}

    .footer__top>nav ul:not(:last-child){
        margin-bottom: 12px;
    }

    .footer__top>nav{
        width: min-content;
        grid-template-columns: 1fr;
        align-self: center;
        white-space: nowrap;
    }

    .footer__top>div>ul a{
        width: 52px;
        height: 52px;
    }
}

@media (max-width: 768px) {
    .footer__top>div:first-child {
        flex-direction: column;
        align-self: center;
    }

    .footer__bottom{
        text-align: center;
    }

    .footer__top>div>ul{
        padding: 0;
    }
}

.logo, .footer__top div:first-child a{
    transition: var(--transitionMain);
    border-radius: var(--brad);
    padding: 12px;
}

.btnContainer:hover, .logo:hover, .footer__top div:first-child a:hover{
    scale: 1.05;
    background: var(--accentHover);
    box-shadow: 0px 0px 12px 5px var(--accentHover);
}
