/*==================================================
            GOOGLE FONT
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700;800;900&display=swap');


/*==================================================
            RESET
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Outfit',sans-serif;
    background:#06111f;
    color:#ffffff;
    overflow-x:hidden;
    position:relative;

}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}


/*==================================================
            ROOT COLORS
==================================================*/

:root{

    --primary:#00e59b;

    --secondary:#0d7cff;

    --dark:#06111f;

    --dark-light:#0d1829;

    --glass:rgba(255,255,255,.06);

    --glass-border:rgba(255,255,255,.12);

    --text:#ffffff;

    --text-light:#b7c7d9;

    --shadow:0 30px 80px rgba(0,0,0,.45);

}


/*==================================================
            PREMIUM BACKGROUND
==================================================*/

.page-bg{

    position:fixed;
    inset:0;
    z-index:-10;
    overflow:hidden;

}

.gradient-one{

    position:absolute;
    width:700px;
    height:700px;

    background:#00ff9d;

    left:-180px;
    top:-220px;

    filter:blur(170px);

    opacity:.18;

    animation:floatGradient 12s ease-in-out infinite;

}

.gradient-two{

    position:absolute;

    width:650px;
    height:650px;

    background:#006eff;

    right:-150px;
    top:80px;

    filter:blur(170px);

    opacity:.18;

    animation:floatGradient2 14s ease-in-out infinite;

}

.gradient-three{

    position:absolute;

    width:550px;
    height:550px;

    background:#00d084;

    bottom:-250px;
    left:35%;

    filter:blur(180px);

    opacity:.15;

}


/*==================================================
            GRID EFFECT
==================================================*/

.grid-overlay{

    position:absolute;

    inset:0;

    background-image:

    linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),

    linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);

    background-size:70px 70px;

    mask-image:linear-gradient(to bottom,rgba(255,255,255,.9),transparent);

}


/*==================================================
            NOISE
==================================================*/

.noise-layer{

    position:absolute;
    inset:0;

    opacity:.05;

    background-image:

    radial-gradient(circle at 20% 20%,white 1px,transparent 1px);

    background-size:8px 8px;

}


/*==================================================
            FLOATING OBJECTS
==================================================*/

.floating-elements{

    position:fixed;

    inset:0;

    pointer-events:none;

    z-index:-5;

}

.glass-orb{

    position:absolute;

    border-radius:50%;

    backdrop-filter:blur(25px);

    border:1px solid rgba(255,255,255,.12);

    background:rgba(255,255,255,.05);

    box-shadow:

    inset 0 0 20px rgba(255,255,255,.08),

    0 0 40px rgba(0,255,170,.15);

}

.orb-1{

    width:120px;
    height:120px;

    top:15%;
    left:8%;

    animation:float1 8s ease-in-out infinite;

}

.orb-2{

    width:70px;
    height:70px;

    right:12%;
    top:18%;

    animation:float2 9s ease-in-out infinite;

}

.orb-3{

    width:180px;
    height:180px;

    bottom:10%;
    right:8%;

    animation:float3 12s ease-in-out infinite;

}

.orb-4{

    width:90px;
    height:90px;

    left:45%;
    bottom:15%;

    animation:float2 10s ease-in-out infinite;

}


/*==================================================
            HERO
==================================================*/

.payroll-hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    padding:120px 8% 80px;

}

.hero-container{

    width:100%;

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

}


/*==================================================
            LEFT CONTENT
==================================================*/

.hero-content{

    position:relative;
    z-index:2;

}

.hero-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(18px);

    border-radius:60px;

    color:#cfe6ff;

    font-size:14px;

    margin-bottom:30px;

}

.tag-dot{

    width:10px;
    height:10px;

    border-radius:50%;

    background:var(--primary);

    box-shadow:0 0 20px var(--primary);

}

.hero-content h1{

    font-size:68px;

    line-height:1.05;

    font-weight:800;

    letter-spacing:-2px;

    margin-bottom:25px;

}

.hero-content h1 span{

    display:block;

    background:linear-gradient(90deg,#00ff9d,#00b8ff);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.hero-content p{

    font-size:19px;

    line-height:1.9;

    color:var(--text-light);

    max-width:620px;

    margin-bottom:45px;

}


/*==================================================
            BUTTONS
==================================================*/

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.btn-primary{

    padding:18px 38px;

    border-radius:60px;

    background:linear-gradient(135deg,#00e59b,#00b3ff);

    color:#fff;

    font-weight:700;

    transition:.4s;

    box-shadow:

    0 15px 40px rgba(0,229,155,.35);

}

.btn-primary:hover{

    transform:translateY(-6px);

    box-shadow:

    0 25px 60px rgba(0,229,155,.45);

}

.btn-secondary{

    padding:18px 38px;

    border-radius:60px;

    border:1px solid rgba(255,255,255,.18);

    color:#fff;

    backdrop-filter:blur(20px);

    background:rgba(255,255,255,.04);

    transition:.4s;

}

.btn-secondary:hover{

    background:rgba(255,255,255,.08);

}


/*==================================================
            STATS
==================================================*/

.hero-stats{

    display:flex;

    gap:20px;

    margin-top:60px;

    flex-wrap:wrap;

}

.stat-card{

    min-width:170px;

    padding:25px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(25px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    transition:.4s;

    box-shadow:var(--shadow);

}

.stat-card:hover{

    transform:translateY(-10px);

    border-color:#00ffb3;

}

.stat-card h2{

    font-size:34px;

    color:var(--primary);

    margin-bottom:8px;

}

.stat-card span{

    color:#b7c7d9;

}


/*==================================================
            ANIMATIONS
==================================================*/

@keyframes floatGradient{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(60px);

    }

}

@keyframes floatGradient2{

    0%,100%{

        transform:translateX(0);

    }

    50%{

        transform:translateX(-70px);

    }

}

@keyframes float1{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-30px);

    }

}

@keyframes float2{

    0%,100%{

        transform:translateY(0) rotate(0);

    }

    50%{

        transform:translateY(35px) rotate(12deg);

    }

}

@keyframes float3{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-45px);

    }

}

/*==================================================
            HERO RIGHT
==================================================*/

.hero-image{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    perspective:1800px;

}


/*==================================================
            MAIN DASHBOARD
==================================================*/

.dashboard-window{

    position:relative;

    width:100%;

    max-width:540px;

    border-radius:32px;

    overflow:hidden;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(35px);

    box-shadow:
    0 40px 90px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.08),
    0 0 60px rgba(0,255,170,.08);

    transform-style:preserve-3d;

    animation:dashboardFloat 7s ease-in-out infinite;

}


/*==================================================
            TOP BAR
==================================================*/

.dashboard-top{

    display:flex;

    align-items:center;

    gap:10px;

    padding:18px 22px;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.dashboard-top span{

    width:13px;

    height:13px;

    border-radius:50%;

}

.dashboard-top span:nth-child(1){

    background:#ff5f57;

}

.dashboard-top span:nth-child(2){

    background:#febc2e;

}

.dashboard-top span:nth-child(3){

    background:#28c840;

}


/*==================================================
            BODY
==================================================*/

.dashboard-body{

    padding:28px;

}

.dashboard-title{

    font-size:26px;

    font-weight:700;

    margin-bottom:28px;

    color:#ffffff;

}


/*==================================================
            SALARY CARD
==================================================*/

.salary-card{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:25px;

    border-radius:24px;

    margin-bottom:30px;

    background:linear-gradient(135deg,
    rgba(0,229,155,.22),
    rgba(0,110,255,.18));

    border:1px solid rgba(255,255,255,.08);

}

.salary-card small{

    color:#b8c8d9;

    display:block;

    margin-bottom:8px;

}

.salary-card h3{

    font-size:34px;

    color:#ffffff;

}

.salary-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    font-weight:700;

    color:#00f5a0;

    background:rgba(255,255,255,.08);

    box-shadow:
    inset 0 0 15px rgba(255,255,255,.08),
    0 0 35px rgba(0,255,170,.25);

}


/*==================================================
            PROGRESS
==================================================*/

.progress-box{

    margin-bottom:24px;

}

.progress-head{

    display:flex;

    justify-content:space-between;

    color:#d8e7f5;

    font-size:15px;

    margin-bottom:10px;

}

.progress-bar{

    width:100%;

    height:10px;

    border-radius:30px;

    overflow:hidden;

    background:rgba(255,255,255,.08);

}

.progress-bar span{

    display:block;

    height:100%;

    border-radius:30px;

    background:linear-gradient(90deg,
    #00f5a0,
    #00b8ff);

    box-shadow:
    0 0 20px rgba(0,255,170,.5);

    animation:progressGlow 4s infinite;

}


/*==================================================
            EMPLOYEE LIST
==================================================*/

.employee-list{

    margin-top:35px;

}

.employee{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:16px;

    padding:18px;

    margin-bottom:15px;

    border-radius:18px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.06);

    transition:.35s;

}

.employee:hover{

    transform:translateX(10px);

    border-color:#00f5a0;

}

.employee div:nth-child(2){

    flex:1;

}

.employee h5{

    font-size:16px;

    margin-bottom:4px;

}

.employee span{

    color:#9cb0c5;

    font-size:13px;

}

.employee strong{

    color:#00f5a0;

    font-size:17px;

}

.avatar{

    width:52px;

    height:52px;

    border-radius:50%;

    background:linear-gradient(
    135deg,
    #00e59b,
    #008cff);

    box-shadow:
    0 0 20px rgba(0,255,170,.35);

}


/*==================================================
            FLOATING MINI CARDS
==================================================*/

.floating-card{

    position:absolute;

    padding:18px 22px;

    border-radius:20px;

    backdrop-filter:blur(25px);

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.12);

    box-shadow:
    0 20px 45px rgba(0,0,0,.4);

    animation:floatingCard 6s ease-in-out infinite;

}

.floating-card small{

    color:#9eb4cb;

    display:block;

    margin-bottom:6px;

}

.floating-card h4{

    color:#00f5a0;

    font-size:24px;

}

.floating-one{

    left:-55px;

    top:90px;

}

.floating-two{

    right:-70px;

    top:220px;

    animation-delay:2s;

}

.floating-three{

    bottom:40px;

    left:-35px;

    animation-delay:1s;

}


/*==================================================
            ANIMATION
==================================================*/

@keyframes dashboardFloat{

    0%{

        transform:
        rotateY(-7deg)
        rotateX(5deg)
        translateY(0);

    }

    50%{

        transform:
        rotateY(7deg)
        rotateX(-3deg)
        translateY(-18px);

    }

    100%{

        transform:
        rotateY(-7deg)
        rotateX(5deg)
        translateY(0);

    }

}

@keyframes floatingCard{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-20px);

    }

}

@keyframes progressGlow{

    0%{

        filter:brightness(1);

    }

    50%{

        filter:brightness(1.5);

    }

    100%{

        filter:brightness(1);

    }

}

/*==================================================
            HERO POLISH
==================================================*/

.hero-content,
.hero-image{
    animation:fadeUp .9s ease both;
}

.hero-image{
    animation-delay:.15s;
}

.dashboard-window::before{

    content:"";

    position:absolute;

    inset:-1px;

    border-radius:32px;

    padding:1px;

    background:linear-gradient(
        135deg,
        rgba(0,229,155,.6),
        rgba(0,140,255,.25),
        rgba(255,255,255,.15)
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

    mask-composite:exclude;

    pointer-events:none;

}

.dashboard-window::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    right:-70px;

    top:-70px;

    border-radius:50%;

    background:rgba(0,229,155,.12);

    filter:blur(45px);

}


/*==================================================
            BUTTON EFFECTS
==================================================*/

.btn-primary,
.btn-secondary{

    position:relative;

    overflow:hidden;

}

.btn-primary::before,
.btn-secondary::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:60%;

    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );

    transform:skewX(-25deg);

    transition:.7s;

}

.btn-primary:hover::before,
.btn-secondary:hover::before{

    left:160%;

}


/*==================================================
            CARD HOVER
==================================================*/

.stat-card,
.employee,
.floating-card{

    will-change:transform;

}

.dashboard-window:hover{

    box-shadow:
        0 50px 100px rgba(0,0,0,.55),
        0 0 80px rgba(0,255,170,.12);

}


/*==================================================
            CUSTOM SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#07111f;

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(
        #00e59b,
        #009dff
    );

    border-radius:30px;

}


/*==================================================
            FADE ANIMATION
==================================================*/

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}


/*==================================================
            1200px
==================================================*/

@media(max-width:1200px){

    .hero-content h1{

        font-size:58px;

    }

    .hero-container{

        gap:50px;

    }

}


/*==================================================
            992px
==================================================*/

@media(max-width:992px){

    .payroll-hero{

        padding:100px 6% 70px;

    }

    .hero-container{

        grid-template-columns:1fr;

        text-align:center;

    }

    .hero-content p{

        margin-left:auto;

        margin-right:auto;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-stats{

        justify-content:center;

    }

    .hero-image{

        margin-top:40px;

    }

    .floating-one{

        left:-10px;

    }

    .floating-two{

        right:-10px;

    }

}


/*==================================================
            768px
==================================================*/

@media(max-width:768px){

    .payroll-hero{

        min-height:auto;

        padding:90px 20px 60px;

    }

    .hero-content h1{

        font-size:44px;

        line-height:1.15;

        letter-spacing:-1px;

    }

    .hero-content p{

        font-size:17px;

        line-height:1.8;

    }

    .dashboard-window{

        max-width:100%;

    }

    .floating-card{

        display:none;

    }

    .hero-stats{

        gap:15px;

    }

    .stat-card{

        min-width:150px;

    }

}


/*==================================================
            576px
==================================================*/

@media(max-width:576px){

    .hero-tag{

        font-size:12px;

        padding:10px 18px;

    }

    .hero-content h1{

        font-size:36px;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .btn-primary,
    .btn-secondary{

        width:100%;

        text-align:center;

    }

    .hero-stats{

        flex-direction:column;

    }

    .stat-card{

        width:100%;

    }

    .salary-card{

        padding:18px;

    }

    .salary-card h3{

        font-size:26px;

    }

    .salary-icon{

        width:56px;

        height:56px;

        font-size:24px;

    }

    .dashboard-body{

        padding:20px;

    }

    .employee{

        padding:14px;

    }

    .avatar{

        width:42px;

        height:42px;

    }

}

/*==================================================
        JS EFFECT CLASSES
==================================================*/

.hidden-item{

    opacity:0;

    transform:translateY(70px);

    transition:
    opacity .8s ease,
    transform .8s ease;

}

.show-item{

    opacity:1;

    transform:translateY(0);

}

.cursor-glow{

    position:fixed;

    width:220px;

    height:220px;

    border-radius:50%;

    pointer-events:none;

    left:0;

    top:0;

    transform:translate(-50%,-50%);

    background:radial-gradient(
        rgba(0,255,170,.16),
        transparent 70%
    );

    filter:blur(18px);

    z-index:9999;

    transition:
    left .08s linear,
    top .08s linear;

}

/*==================================================
            TRUSTED SECTION
==================================================*/

.trusted-section{

    position:relative;

    padding:120px 8%;

}

.trusted-section::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    left:-120px;

    top:80px;

    background:#00e59b;

    opacity:.08;

    filter:blur(150px);

    border-radius:50%;

    pointer-events:none;

}

.trusted-section::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    right:-100px;

    bottom:-120px;

    background:#0d7cff;

    opacity:.08;

    filter:blur(160px);

    border-radius:50%;

    pointer-events:none;

}


/*==================================================
            SECTION HEADING
==================================================*/

.section-heading{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.section-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:12px 24px;

    border-radius:50px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    color:#00e59b;

    font-size:14px;

    font-weight:600;

    margin-bottom:22px;

}

.section-heading h2{

    font-size:54px;

    line-height:1.15;

    margin-bottom:22px;

    font-weight:800;

}

.section-heading h2 span{

    display:block;

    background:linear-gradient(
        90deg,
        #00e59b,
        #00b5ff
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.section-heading p{

    color:#b8c8d8;

    font-size:18px;

    line-height:1.9;

}


/*==================================================
            GRID
==================================================*/

.trusted-grid{

    max-width:1350px;

    margin:auto;

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:28px;

}


/*==================================================
            CARD
==================================================*/

.trust-card{

    position:relative;

    overflow:hidden;

    padding:35px;

    border-radius:28px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(25px);

    transition:.45s ease;

    box-shadow:
    0 20px 45px rgba(0,0,0,.28);

}

.trust-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(0,229,155,.10),
        transparent,
        rgba(13,124,255,.10)
    );

    opacity:0;

    transition:.45s;

}

.trust-card::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    right:-70px;

    top:-70px;

    background:rgba(0,229,155,.15);

    border-radius:50%;

    filter:blur(55px);

    opacity:0;

    transition:.45s;

}


/*==================================================
            HOVER
==================================================*/

.trust-card:hover{

    transform:
    translateY(-12px);

    border-color:
    rgba(0,229,155,.45);

    box-shadow:
    0 30px 70px rgba(0,0,0,.40),
    0 0 40px rgba(0,229,155,.10);

}

.trust-card:hover::before,

.trust-card:hover::after{

    opacity:1;

}


/*==================================================
            TEXT
==================================================*/

.trust-card h3{

    font-size:44px;

    margin-bottom:12px;

    color:#00e59b;

    font-weight:800;

}

.trust-card span{

    color:#c7d6e5;

    font-size:17px;

}

.trust-card small{

    display:block;

    color:#8fa8bc;

    margin-bottom:18px;

    letter-spacing:.5px;

}

.trust-card h2{

    font-size:48px;

    margin-bottom:18px;

    color:#ffffff;

}

.trust-card p{

    color:#b8c8d8;

    line-height:1.8;

}


/*==================================================
            LARGE CARD
==================================================*/

.trust-card.large{

    grid-column:span 2;

    min-height:260px;

    display:flex;

    justify-content:center;

    flex-direction:column;

    background:
    linear-gradient(
        135deg,
        rgba(0,229,155,.12),
        rgba(13,124,255,.10)
    );

}


/*==================================================
            RESPONSIVE
==================================================*/

@media(max-width:992px){

    .trusted-grid{

        grid-template-columns:
        repeat(2,1fr);

    }

    .trust-card.large{

        grid-column:span 2;

    }

}

@media(max-width:768px){

    .trusted-section{

        padding:90px 20px;

    }

    .section-heading h2{

        font-size:38px;

    }

    .section-heading p{

        font-size:16px;

    }

    .trusted-grid{

        grid-template-columns:1fr;

    }

    .trust-card.large{

        grid-column:span 1;

    }

    .trust-card{

        padding:28px;

    }

    .trust-card h3{

        font-size:36px;

    }

    .trust-card h2{

        font-size:38px;

    }

}

/*==================================================
                PAYROLL FEATURES
==================================================*/

.payroll-features{

    position:relative;

    padding:130px 8%;

    overflow:hidden;

}

.payroll-features::before{

    content:"";

    position:absolute;

    width:550px;

    height:550px;

    left:-180px;

    bottom:-120px;

    background:#00e59b;

    opacity:.08;

    filter:blur(180px);

    border-radius:50%;

}

.payroll-features::after{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    right:-120px;

    top:80px;

    background:#0d7cff;

    opacity:.08;

    filter:blur(180px);

    border-radius:50%;

}


/*==================================================
                WRAPPER
==================================================*/

.feature-wrapper{

    max-width:1400px;

    margin:80px auto 0;

    display:grid;

    grid-template-columns:1fr 420px 1fr;

    align-items:center;

    gap:45px;

}


/*==================================================
                COLUMN
==================================================*/

.feature-column{

    display:flex;

    flex-direction:column;

    gap:30px;

}


/*==================================================
                FEATURE CARD
==================================================*/

.feature-card{

    position:relative;

    overflow:hidden;

    padding:35px;

    border-radius:28px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(30px);

    border:1px solid rgba(255,255,255,.08);

    transition:.45s;

    box-shadow:
    0 25px 55px rgba(0,0,0,.28);

}

.feature-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        135deg,
        rgba(0,229,155,.10),
        transparent,
        rgba(13,124,255,.10)
    );

    opacity:0;

    transition:.45s;

}

.feature-card:hover{

    transform:
    translateY(-10px);

    border-color:
    rgba(0,229,155,.45);

    box-shadow:
    0 35px 70px rgba(0,0,0,.40),
    0 0 40px rgba(0,229,155,.10);

}

.feature-card:hover::before{

    opacity:1;

}


/*==================================================
                ICON
==================================================*/

.feature-icon{

    width:72px;

    height:72px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:20px;

    margin-bottom:25px;

    font-size:32px;

    background:
    linear-gradient(
        135deg,
        rgba(0,229,155,.18),
        rgba(13,124,255,.15)
    );

    border:1px solid rgba(255,255,255,.08);

    box-shadow:
    inset 0 0 20px rgba(255,255,255,.08),
    0 0 25px rgba(0,229,155,.15);

}

.feature-card h3{

    font-size:26px;

    margin-bottom:15px;

}

.feature-card p{

    color:#b8c8d8;

    line-height:1.9;

}


/*==================================================
                CONTROL HUB
==================================================*/

.control-hub{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:520px;

}

.hub-circle{

    position:relative;

    width:280px;

    height:280px;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        rgba(0,229,155,.15),
        rgba(13,124,255,.15)
    );

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(35px);

    display:flex;

    justify-content:center;

    align-items:center;

    animation:hubFloat 6s ease-in-out infinite;

    box-shadow:
    0 40px 90px rgba(0,0,0,.35),
    0 0 60px rgba(0,229,155,.12);

}

.hub-circle::before{

    content:"";

    position:absolute;

    inset:-18px;

    border-radius:50%;

    border:2px dashed rgba(0,229,155,.35);

    animation:rotateHub 18s linear infinite;

}

.hub-circle::after{

    content:"";

    position:absolute;

    inset:-40px;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.08);

}

.hub-inner{

    text-align:center;

}

.hub-inner h2{

    font-size:42px;

    margin-bottom:8px;

    background:
    linear-gradient(
        90deg,
        #00e59b,
        #00b8ff
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.hub-inner span{

    color:#d5e5f5;

    font-size:18px;

}


/*==================================================
                CONNECTING LINES
==================================================*/

.hub-line{

    position:absolute;

    background:
    linear-gradient(
        90deg,
        rgba(0,229,155,.6),
        transparent
    );

}

.top-left{

    width:120px;

    height:2px;

    left:-30px;

    top:135px;

}

.bottom-left{

    width:120px;

    height:2px;

    left:-30px;

    bottom:135px;

}

.top-right{

    width:120px;

    height:2px;

    right:-30px;

    top:135px;

    transform:rotate(180deg);

}

.bottom-right{

    width:120px;

    height:2px;

    right:-30px;

    bottom:135px;

    transform:rotate(180deg);

}


/*==================================================
                ANIMATION
==================================================*/

@keyframes rotateHub{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

@keyframes hubFloat{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

}


/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:1100px){

    .feature-wrapper{

        grid-template-columns:1fr;

        gap:50px;

    }

    .control-hub{

        order:-1;

        min-height:350px;

    }

}

@media(max-width:768px){

    .payroll-features{

        padding:90px 20px;

    }

    .hub-circle{

        width:220px;

        height:220px;

    }

    .hub-inner h2{

        font-size:32px;

    }

    .feature-card{

        padding:28px;

    }

    .hub-line{

        display:none;

    }

}

/*==================================================
                PAYROLL PROCESS
==================================================*/

.payroll-process{

    position:relative;

    padding:130px 8%;

    overflow:hidden;

}

.payroll-process::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    top:-180px;

    left:-180px;

    border-radius:50%;

    background:#00e59b;

    opacity:.08;

    filter:blur(170px);

}

.payroll-process::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    right:-120px;

    bottom:-120px;

    border-radius:50%;

    background:#0d7cff;

    opacity:.08;

    filter:blur(170px);

}


/*==================================================
                TIMELINE
==================================================*/

.process-timeline{

    position:relative;

    max-width:1250px;

    margin:90px auto 0;

}

.timeline-line{

    position:absolute;

    left:50%;

    top:0;

    transform:translateX(-50%);

    width:4px;

    height:100%;

    border-radius:30px;

    background:

    linear-gradient(

        to bottom,

        #00e59b,

        #00c5ff,

        #00e59b

    );

    box-shadow:

    0 0 25px rgba(0,229,155,.45);

}


/*==================================================
                STEP
==================================================*/

.process-step{

    position:relative;

    width:50%;

    margin-bottom:80px;

}

.process-step.left{

    padding-right:80px;

}

.process-step.right{

    margin-left:50%;

    padding-left:80px;

}


/*==================================================
                DOT
==================================================*/

.process-step::before{

    content:"";

    position:absolute;

    top:35px;

    width:22px;

    height:22px;

    border-radius:50%;

    background:#00e59b;

    border:4px solid #06111f;

    box-shadow:

    0 0 30px rgba(0,229,155,.7);

    z-index:5;

}

.process-step.left::before{

    right:-11px;

}

.process-step.right::before{

    left:-11px;

}


/*==================================================
                CARD
==================================================*/

.process-card{

    position:relative;

    overflow:hidden;

    padding:35px;

    border-radius:28px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(30px);

    border:1px solid rgba(255,255,255,.08);

    transition:.45s;

    box-shadow:

    0 25px 60px rgba(0,0,0,.28);

}

.process-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(

        135deg,

        rgba(0,229,155,.10),

        transparent,

        rgba(13,124,255,.10)

    );

    opacity:0;

    transition:.45s;

}

.process-card:hover{

    transform:

    translateY(-10px);

    border-color:

    rgba(0,229,155,.45);

    box-shadow:

    0 35px 80px rgba(0,0,0,.40),

    0 0 35px rgba(0,229,155,.10);

}

.process-card:hover::before{

    opacity:1;

}


/*==================================================
                NUMBER
==================================================*/

.step-number{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:20px;

    margin-bottom:25px;

    font-size:24px;

    font-weight:700;

    color:#00e59b;

    background:

    linear-gradient(

        135deg,

        rgba(0,229,155,.18),

        rgba(13,124,255,.15)

    );

    border:1px solid rgba(255,255,255,.08);

    box-shadow:

    inset 0 0 20px rgba(255,255,255,.08),

    0 0 20px rgba(0,229,155,.15);

}

.process-card h3{

    font-size:28px;

    margin-bottom:18px;

}

.process-card p{

    color:#b8c8d8;

    line-height:1.9;

}


/*==================================================
                ANIMATION
==================================================*/

.process-step::before{

    animation:pulseDot 2.5s infinite;

}

@keyframes pulseDot{

    0%{

        box-shadow:

        0 0 0 rgba(0,229,155,.8);

    }

    50%{

        box-shadow:

        0 0 25px rgba(0,229,155,.9);

    }

    100%{

        box-shadow:

        0 0 0 rgba(0,229,155,.8);

    }

}


/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:992px){

    .timeline-line{

        left:22px;

    }

    .process-step{

        width:100%;

        margin-left:0;

        padding-left:70px;

        padding-right:0;

    }

    .process-step.left,

    .process-step.right{

        margin-left:0;

        padding-left:70px;

        padding-right:0;

    }

    .process-step::before{

        left:11px;

        right:auto;

    }

}

@media(max-width:768px){

    .payroll-process{

        padding:90px 20px;

    }

    .process-card{

        padding:28px;

    }

    .process-card h3{

        font-size:24px;

    }

    .step-number{

        width:60px;

        height:60px;

        font-size:20px;

    }

}

/*==================================================
                WHY CHOOSE US
==================================================*/

.why-payroll{

    position:relative;

    padding:130px 8%;

    overflow:hidden;

}

.why-payroll::before{

    content:"";

    position:absolute;

    width:520px;

    height:520px;

    left:-180px;

    top:120px;

    background:#00e59b;

    opacity:.08;

    filter:blur(180px);

    border-radius:50%;

}

.why-payroll::after{

    content:"";

    position:absolute;

    width:480px;

    height:480px;

    right:-180px;

    bottom:-120px;

    background:#0d7cff;

    opacity:.08;

    filter:blur(180px);

    border-radius:50%;

}


/*==================================================
                GRID
==================================================*/

.why-grid{

    max-width:1400px;

    margin:80px auto 0;

    display:grid;

    grid-template-columns:1.4fr 1fr 1fr;

    gap:28px;

}


/*==================================================
                CARD
==================================================*/

.why-card{

    position:relative;

    overflow:hidden;

    padding:35px;

    border-radius:30px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(28px);

    border:1px solid rgba(255,255,255,.08);

    transition:.45s ease;

    box-shadow:
    0 25px 60px rgba(0,0,0,.30);

}

.why-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(0,229,155,.10),
        transparent,
        rgba(13,124,255,.10)
    );

    opacity:0;

    transition:.45s;

}

.why-card::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    right:-90px;

    top:-90px;

    border-radius:50%;

    background:rgba(0,229,155,.12);

    filter:blur(60px);

    opacity:0;

    transition:.45s;

}

.why-card:hover{

    transform:translateY(-12px);

    border-color:rgba(0,229,155,.40);

    box-shadow:
    0 35px 80px rgba(0,0,0,.40),
    0 0 35px rgba(0,229,155,.10);

}

.why-card:hover::before,
.why-card:hover::after{

    opacity:1;

}


/*==================================================
                FEATURED CARD
==================================================*/

.featured{

    grid-row:span 2;

    background:
    linear-gradient(
        135deg,
        rgba(0,229,155,.14),
        rgba(13,124,255,.10)
    );

    display:flex;

    flex-direction:column;

    justify-content:center;

}


/*==================================================
                ICON
==================================================*/

.card-icon{

    width:80px;

    height:80px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

    border-radius:22px;

    font-size:34px;

    background:
    linear-gradient(
        135deg,
        rgba(0,229,155,.18),
        rgba(13,124,255,.15)
    );

    border:1px solid rgba(255,255,255,.08);

    box-shadow:
    inset 0 0 20px rgba(255,255,255,.08),
    0 0 25px rgba(0,229,155,.15);

}


/*==================================================
                TYPOGRAPHY
==================================================*/

.why-card h3{

    font-size:28px;

    margin-bottom:18px;

    line-height:1.3;

    color:#ffffff;

}

.why-card p{

    color:#b8c8d8;

    line-height:1.9;

    margin-bottom:22px;

}

.featured ul{

    margin-top:10px;

}

.featured ul li{

    color:#d5e5f4;

    margin-bottom:14px;

    font-size:16px;

    display:flex;

    align-items:center;

    gap:10px;

}


/*==================================================
                FEATURED TITLE
==================================================*/

.featured h3{

    font-size:34px;

}


/*==================================================
                HOVER ICON
==================================================*/

.why-card:hover .card-icon{

    transform:rotate(-8deg) scale(1.08);

    transition:.4s;

}


/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:1100px){

    .why-grid{

        grid-template-columns:1fr 1fr;

    }

    .featured{

        grid-column:span 2;

        grid-row:auto;

    }

}

@media(max-width:768px){

    .why-payroll{

        padding:90px 20px;

    }

    .why-grid{

        grid-template-columns:1fr;

    }

    .featured{

        grid-column:auto;

    }

    .why-card{

        padding:28px;

    }

    .featured h3{

        font-size:28px;

    }

    .card-icon{

        width:68px;

        height:68px;

        font-size:28px;

    }

}

/*==================================================
                PAYROLL PLANS
==================================================*/

.payroll-plans{

    position:relative;

    padding:130px 8%;

    overflow:hidden;

}

.payroll-plans::before{

    content:"";

    position:absolute;

    width:520px;

    height:520px;

    left:-180px;

    top:100px;

    background:#00e59b;

    border-radius:50%;

    filter:blur(180px);

    opacity:.08;

}

.payroll-plans::after{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    right:-160px;

    bottom:-120px;

    background:#0d7cff;

    border-radius:50%;

    filter:blur(180px);

    opacity:.08;

}


/*==================================================
                GRID
==================================================*/

.plans-grid{

    max-width:1400px;

    margin:80px auto 0;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    align-items:center;

}


/*==================================================
                CARD
==================================================*/

.plan-card{

    position:relative;

    overflow:hidden;

    padding:45px 35px;

    border-radius:30px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(30px);

    border:1px solid rgba(255,255,255,.08);

    transition:.45s ease;

    box-shadow:
    0 25px 60px rgba(0,0,0,.30);

}

.plan-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(0,229,155,.10),
        transparent,
        rgba(13,124,255,.10)
    );

    opacity:0;

    transition:.45s;

}

.plan-card:hover{

    transform:translateY(-14px);

    border-color:rgba(0,229,155,.40);

    box-shadow:
    0 40px 90px rgba(0,0,0,.45),
    0 0 40px rgba(0,229,155,.12);

}

.plan-card:hover::before{

    opacity:1;

}


/*==================================================
            FEATURED CARD
==================================================*/

.featured-plan{

    transform:scale(1.05);

    background:linear-gradient(
        135deg,
        rgba(0,229,155,.15),
        rgba(13,124,255,.12)
    );

    border:1px solid rgba(0,229,155,.25);

    box-shadow:
    0 35px 90px rgba(0,0,0,.45),
    0 0 60px rgba(0,229,155,.10);

}

.featured-plan:hover{

    transform:
    translateY(-14px)
    scale(1.05);

}


/*==================================================
                BADGE
==================================================*/

.popular-tag{

    position:absolute;

    top:22px;

    right:22px;

    padding:8px 18px;

    border-radius:40px;

    font-size:13px;

    font-weight:600;

    color:#06111f;

    background:linear-gradient(
        90deg,
        #00e59b,
        #5dffcb
    );

    box-shadow:
    0 8px 25px rgba(0,229,155,.35);

}


/*==================================================
                PLAN TYPE
==================================================*/

.plan-type{

    display:inline-block;

    padding:10px 18px;

    border-radius:30px;

    margin-bottom:22px;

    color:#00e59b;

    font-size:14px;

    font-weight:600;

    border:1px solid rgba(0,229,155,.25);

    background:rgba(0,229,155,.08);

}

.plan-card h3{

    font-size:30px;

    margin-bottom:15px;

    color:#ffffff;

}

.plan-card p{

    color:#b8c8d8;

    line-height:1.8;

    margin-bottom:28px;

}


/*==================================================
                LIST
==================================================*/

.plan-card ul{

    display:flex;

    flex-direction:column;

    gap:16px;

    margin-bottom:35px;

}

.plan-card ul li{

    color:#d7e4f2;

    display:flex;

    align-items:center;

    gap:10px;

    font-size:16px;

}


/*==================================================
                BUTTON
==================================================*/

.plan-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:100%;

    padding:18px;

    border-radius:60px;

    color:#ffffff;

    font-weight:700;

    transition:.4s;

    background:linear-gradient(
        135deg,
        #00e59b,
        #0d7cff
    );

    box-shadow:
    0 15px 35px rgba(0,229,155,.30);

}

.plan-btn:hover{

    transform:translateY(-4px);

    box-shadow:
    0 25px 45px rgba(0,229,155,.40);

}


/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:1100px){

    .plans-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .featured-plan{

        grid-column:span 2;

        transform:none;

    }

    .featured-plan:hover{

        transform:translateY(-12px);

    }

}

@media(max-width:768px){

    .payroll-plans{

        padding:90px 20px;

    }

    .plans-grid{

        grid-template-columns:1fr;

    }

    .featured-plan{

        grid-column:auto;

    }

    .plan-card{

        padding:35px 28px;

    }

    .plan-card h3{

        font-size:26px;

    }

    .popular-tag{

        position:static;

        display:inline-block;

        margin-bottom:18px;

    }

}

/*==================================================
            CLIENT SUCCESS STORIES
==================================================*/

.client-success{

    position:relative;

    padding:130px 8%;

    overflow:hidden;

}

.client-success::before{

    content:"";

    position:absolute;

    width:520px;

    height:520px;

    left:-180px;

    top:60px;

    border-radius:50%;

    background:#00e59b;

    opacity:.08;

    filter:blur(180px);

}

.client-success::after{

    content:"";

    position:absolute;

    width:480px;

    height:480px;

    right:-180px;

    bottom:-120px;

    border-radius:50%;

    background:#0d7cff;

    opacity:.08;

    filter:blur(180px);

}


/*==================================================
            TESTIMONIAL WRAPPER
==================================================*/

.testimonial-wrapper{

    max-width:1400px;

    margin:90px auto 60px;

    display:grid;

    grid-template-columns:1fr 1.15fr 1fr;

    align-items:center;

    gap:30px;

}


/*==================================================
            TESTIMONIAL CARD
==================================================*/

.testimonial-card{

    position:relative;

    overflow:hidden;

    padding:40px 35px;

    border-radius:30px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(30px);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:
        0 25px 60px rgba(0,0,0,.28);

    transition:.45s ease;

}

.testimonial-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(0,229,155,.10),
        transparent,
        rgba(13,124,255,.10)
    );

    opacity:0;

    transition:.45s;

}

.testimonial-card::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    right:-90px;

    top:-90px;

    border-radius:50%;

    background:rgba(0,229,155,.12);

    filter:blur(70px);

    opacity:0;

    transition:.45s;

}


/*==================================================
            PREMIUM LAYER EFFECT
==================================================*/

.testimonial-wrapper .testimonial-card:first-child{

    transform:
        perspective(1000px)
        rotateY(10deg)
        rotateZ(-2deg)
        scale(.95);

}

.testimonial-wrapper .testimonial-card:last-child{

    transform:
        perspective(1000px)
        rotateY(-10deg)
        rotateZ(2deg)
        scale(.95);

}


/*==================================================
            FEATURED TESTIMONIAL
==================================================*/

.featured-testimonial{

    transform:scale(1.08);

    z-index:5;

    background:linear-gradient(
        135deg,
        rgba(0,229,155,.15),
        rgba(13,124,255,.12)
    );

    border:1px solid rgba(0,229,155,.30);

    box-shadow:
        0 40px 90px rgba(0,0,0,.40),
        0 0 60px rgba(0,229,155,.12);

}

.featured-testimonial::before{

    opacity:1;

}

.featured-testimonial::after{

    opacity:1;

}


/*==================================================
            HOVER
==================================================*/

.testimonial-card:hover{

    transform:
        translateY(-14px)
        scale(1.02);

    border-color:rgba(0,229,155,.40);

    box-shadow:
        0 40px 90px rgba(0,0,0,.45),
        0 0 35px rgba(0,229,155,.12);

}

.featured-testimonial:hover{

    transform:
        translateY(-14px)
        scale(1.08);

}


/*==================================================
            QUOTE
==================================================*/

.quote-icon{

    font-size:70px;

    line-height:1;

    margin-bottom:20px;

    font-weight:700;

    color:#00e59b;

    opacity:.85;

}


/*==================================================
            CONTENT
==================================================*/

.testimonial-card p{

    color:#c7d6e5;

    line-height:1.9;

    font-size:17px;

    margin-bottom:35px;

}


/*==================================================
            CLIENT INFO
==================================================*/

.client-info{

    display:flex;

    align-items:center;

    gap:16px;

}

.client-avatar{

    width:64px;

    height:64px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

    font-weight:700;

    color:#ffffff;

    background:linear-gradient(
        135deg,
        #00e59b,
        #0d7cff
    );

    box-shadow:
        0 15px 35px rgba(0,229,155,.25);

}

.client-info h4{

    font-size:20px;

    margin-bottom:6px;

    color:#ffffff;

}

.client-info span{

    color:#8ea8bc;

    font-size:15px;

}


/*==================================================
            RATING
==================================================*/

.testimonial-rating{

    max-width:700px;

    margin:auto;

    text-align:center;

}

.testimonial-rating h3{

    font-size:34px;

    margin-bottom:15px;

    color:#ffffff;

}

.testimonial-rating p{

    color:#b8c8d8;

    line-height:1.8;

}


/*==================================================
            RESPONSIVE
==================================================*/

@media(max-width:1100px){

    .testimonial-wrapper{

        grid-template-columns:1fr;

        gap:35px;

    }

    .testimonial-wrapper .testimonial-card:first-child,

    .testimonial-wrapper .testimonial-card:last-child,

    .featured-testimonial{

        transform:none;

    }

    .featured-testimonial:hover{

        transform:translateY(-12px);

    }

}

@media(max-width:768px){

    .client-success{

        padding:90px 20px;

    }

    .testimonial-card{

        padding:30px 25px;

    }

    .quote-icon{

        font-size:56px;

    }

    .testimonial-rating h3{

        font-size:26px;

    }

    .client-avatar{

        width:56px;

        height:56px;

        font-size:18px;

    }

}

/*==================================================
                INDUSTRIES WE SERVE
==================================================*/

.industries-section{

    position:relative;

    padding:130px 8%;

    overflow:hidden;

}

.industries-section::before{

    content:"";

    position:absolute;

    width:520px;

    height:520px;

    left:-180px;

    top:80px;

    border-radius:50%;

    background:#00e59b;

    opacity:.08;

    filter:blur(180px);

}

.industries-section::after{

    content:"";

    position:absolute;

    width:480px;

    height:480px;

    right:-180px;

    bottom:-120px;

    border-radius:50%;

    background:#0d7cff;

    opacity:.08;

    filter:blur(180px);

}


/*==================================================
                GRID
==================================================*/

.industries-grid{

    max-width:1400px;

    margin:80px auto 0;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}


/*==================================================
                CARD
==================================================*/

.industry-card{

    position:relative;

    overflow:hidden;

    padding:38px 32px;

    border-radius:28px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(28px);

    border:1px solid rgba(255,255,255,.08);

    transition:all .45s ease;

    box-shadow:
        0 25px 60px rgba(0,0,0,.28);

}

.industry-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(0,229,155,.10),
        transparent,
        rgba(13,124,255,.10)
    );

    opacity:0;

    transition:.45s;

}

.industry-card::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    right:-90px;

    top:-90px;

    border-radius:50%;

    background:rgba(0,229,155,.12);

    filter:blur(65px);

    opacity:0;

    transition:.45s;

}


/*==================================================
                HOVER
==================================================*/

.industry-card:hover{

    transform:
        translateY(-12px);

    border-color:
        rgba(0,229,155,.40);

    box-shadow:
        0 40px 90px rgba(0,0,0,.42),
        0 0 35px rgba(0,229,155,.12);

}

.industry-card:hover::before,

.industry-card:hover::after{

    opacity:1;

}


/*==================================================
                ICON
==================================================*/

.industry-icon{

    width:78px;

    height:78px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

    border-radius:22px;

    font-size:34px;

    background:linear-gradient(
        135deg,
        rgba(0,229,155,.18),
        rgba(13,124,255,.15)
    );

    border:1px solid rgba(255,255,255,.08);

    box-shadow:
        inset 0 0 20px rgba(255,255,255,.08),
        0 0 25px rgba(0,229,155,.15);

    transition:.4s;

}

.industry-card:hover .industry-icon{

    transform:
        rotate(-8deg)
        scale(1.08);

}


/*==================================================
                TYPOGRAPHY
==================================================*/

.industry-card h3{

    font-size:26px;

    color:#ffffff;

    margin-bottom:16px;

    line-height:1.3;

}

.industry-card p{

    color:#b8c8d8;

    font-size:16px;

    line-height:1.9;

}


/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:1100px){

    .industries-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .industries-section{

        padding:90px 20px;

    }

    .industries-grid{

        grid-template-columns:1fr;

        gap:24px;

    }

    .industry-card{

        padding:30px 25px;

    }

    .industry-icon{

        width:68px;

        height:68px;

        font-size:28px;

    }

    .industry-card h3{

        font-size:22px;

    }

}

/*==================================================
                FAQ SECTION
==================================================*/

.faq-section{

    position:relative;

    padding:130px 8%;

    overflow:hidden;

}

.faq-section::before{

    content:"";

    position:absolute;

    width:520px;

    height:520px;

    left:-180px;

    top:60px;

    border-radius:50%;

    background:#00e59b;

    opacity:.08;

    filter:blur(180px);

}

.faq-section::after{

    content:"";

    position:absolute;

    width:480px;

    height:480px;

    right:-180px;

    bottom:-120px;

    border-radius:50%;

    background:#0d7cff;

    opacity:.08;

    filter:blur(180px);

}


/*==================================================
                WRAPPER
==================================================*/

.faq-wrapper{

    max-width:1100px;

    margin:80px auto 0;

    display:flex;

    flex-direction:column;

    gap:24px;

}


/*==================================================
                FAQ ITEM
==================================================*/

.faq-item{

    position:relative;

    overflow:hidden;

    border-radius:26px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(28px);

    border:1px solid rgba(255,255,255,.08);

    transition:.4s ease;

    box-shadow:
        0 20px 50px rgba(0,0,0,.25);

}

.faq-item::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(0,229,155,.10),
        transparent,
        rgba(13,124,255,.10)
    );

    opacity:0;

    transition:.4s;

}

.faq-item:hover{

    border-color:rgba(0,229,155,.35);

    transform:translateY(-4px);

    box-shadow:
        0 30px 70px rgba(0,0,0,.38),
        0 0 30px rgba(0,229,155,.10);

}

.faq-item:hover::before{

    opacity:1;

}


/*==================================================
                ACTIVE ITEM
==================================================*/

.faq-item.active{

    border-color:rgba(0,229,155,.45);

    box-shadow:
        0 35px 80px rgba(0,0,0,.40),
        0 0 40px rgba(0,229,155,.15);

}

.faq-item.active::before{

    opacity:1;

}


/*==================================================
                QUESTION
==================================================*/

.faq-question{

    width:100%;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;

    padding:28px 30px;

    background:transparent;

    border:none;

    cursor:pointer;

    color:#ffffff;

    text-align:left;

    font-size:20px;

    font-weight:600;

}

.faq-question span{

    flex:1;

    line-height:1.6;

}

.faq-question i{

    width:52px;

    height:52px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    font-size:24px;

    color:#00e59b;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}


/*==================================================
                ACTIVE ICON
==================================================*/

.faq-item.active .faq-question i{

    transform:rotate(45deg);

    background:linear-gradient(
        135deg,
        #00e59b,
        #0d7cff
    );

    color:#ffffff;

}


/*==================================================
                ANSWER
==================================================*/

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .45s ease;

}

.faq-answer p{

    padding:0 30px 30px;

    color:#b8c8d8;

    font-size:16px;

    line-height:1.9;

}


/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:768px){

    .faq-section{

        padding:90px 20px;

    }

    .faq-wrapper{

        gap:18px;

    }

    .faq-question{

        padding:22px;

        font-size:17px;

    }

    .faq-question i{

        width:46px;

        height:46px;

        font-size:20px;

    }

    .faq-answer p{

        padding:0 22px 24px;

        font-size:15px;

    }

}

/*==================================================
                PREMIUM CTA
==================================================*/

.premium-cta{

    position:relative;

    padding:140px 8%;

    overflow:hidden;

}

.premium-cta::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    left:-220px;

    top:-180px;

    border-radius:50%;

    background:#00e59b;

    opacity:.08;

    filter:blur(220px);

}

.premium-cta::after{

    content:"";

    position:absolute;

    width:600px;

    height:600px;

    right:-220px;

    bottom:-220px;

    border-radius:50%;

    background:#0d7cff;

    opacity:.08;

    filter:blur(220px);

}


/*==================================================
                CONTAINER
==================================================*/

.cta-container{

    position:relative;

    z-index:2;

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:60px;

    align-items:center;

}


/*==================================================
                LEFT CONTENT
==================================================*/

.cta-content h2{

    font-size:58px;

    line-height:1.15;

    margin:20px 0 25px;

    color:#ffffff;

}

.cta-content h2 span{

    background:linear-gradient(
        90deg,
        #00e59b,
        #0d7cff
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.cta-content p{

    font-size:18px;

    color:#b8c8d8;

    line-height:1.9;

    max-width:650px;

    margin-bottom:40px;

}


/*==================================================
                FEATURES
==================================================*/

.cta-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-bottom:45px;

}

.cta-feature{

    display:flex;

    align-items:center;

    gap:15px;

    padding:18px 22px;

    border-radius:18px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    transition:.35s;

}

.cta-feature i{

    font-size:24px;

    color:#00e59b;

}

.cta-feature span{

    color:#ffffff;

    font-weight:500;

}

.cta-feature:hover{

    transform:translateY(-5px);

    border-color:rgba(0,229,155,.35);

    box-shadow:
        0 15px 35px rgba(0,0,0,.30),
        0 0 20px rgba(0,229,155,.12);

}


/*==================================================
                BUTTONS
==================================================*/

.cta-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.primary-cta-btn,

.secondary-cta-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 34px;

    border-radius:60px;

    font-size:16px;

    font-weight:700;

    transition:.4s;

}

.primary-cta-btn{

    color:#06111f;

    background:linear-gradient(
        135deg,
        #00e59b,
        #5dffcb
    );

    box-shadow:
        0 20px 45px rgba(0,229,155,.30);

}

.primary-cta-btn:hover{

    transform:translateY(-5px);

    box-shadow:
        0 28px 55px rgba(0,229,155,.40);

}

.secondary-cta-btn{

    color:#ffffff;

    border:1px solid rgba(255,255,255,.12);

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(20px);

}

.secondary-cta-btn:hover{

    transform:translateY(-5px);

    border-color:rgba(0,229,155,.35);

    background:rgba(255,255,255,.08);

}


/*==================================================
                RIGHT CARD
==================================================*/

.cta-card{

    position:relative;

    overflow:hidden;

    padding:40px;

    border-radius:32px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(30px);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:
        0 35px 80px rgba(0,0,0,.35);

}

.cta-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(0,229,155,.12),
        transparent,
        rgba(13,124,255,.12)
    );

    opacity:.9;

}

.cta-card>*{

    position:relative;

    z-index:2;

}

.cta-card-header h3{

    font-size:30px;

    color:#ffffff;

    margin-bottom:15px;

}

.cta-card-header p{

    color:#b8c8d8;

    line-height:1.8;

    margin-bottom:35px;

}


/*==================================================
                STATS
==================================================*/

.cta-stats{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.cta-stat{

    padding:24px;

    border-radius:20px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    text-align:center;

    transition:.35s;

}

.cta-stat h4{

    font-size:34px;

    color:#00e59b;

    margin-bottom:10px;

}

.cta-stat span{

    color:#d5e5f4;

    font-size:15px;

    line-height:1.6;

}

.cta-stat:hover{

    transform:translateY(-6px);

    border-color:rgba(0,229,155,.30);

}


/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:1100px){

    .cta-container{

        grid-template-columns:1fr;

    }

    .cta-content{

        text-align:center;

    }

    .cta-content p{

        margin-left:auto;

        margin-right:auto;

    }

    .cta-buttons{

        justify-content:center;

    }

}

@media(max-width:768px){

    .premium-cta{

        padding:90px 20px;

    }

    .cta-content h2{

        font-size:40px;

    }

    .cta-features{

        grid-template-columns:1fr;

    }

    .cta-stats{

        grid-template-columns:1fr;

    }

    .cta-card{

        padding:30px;

    }

    .primary-cta-btn,

    .secondary-cta-btn{

        width:100%;

    }

}

/*==================================================
            CONSULTATION SECTION
==================================================*/

.consultation-section{

    position:relative;

    padding:140px 8%;

    overflow:hidden;

}

.consultation-section::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    left:-220px;

    top:-180px;

    border-radius:50%;

    background:#00e59b;

    opacity:.08;

    filter:blur(220px);

}

.consultation-section::after{

    content:"";

    position:absolute;

    width:600px;

    height:600px;

    right:-220px;

    bottom:-220px;

    border-radius:50%;

    background:#0d7cff;

    opacity:.08;

    filter:blur(220px);

}


/*==================================================
            CONTAINER
==================================================*/

.consultation-container{

    position:relative;

    z-index:2;

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}


/*==================================================
            LEFT CONTENT
==================================================*/

.consultation-content h2{

    font-size:58px;

    line-height:1.15;

    margin:20px 0 25px;

    color:#ffffff;

}

.consultation-content h2 span{

    background:linear-gradient(
        90deg,
        #00e59b,
        #0d7cff
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.consultation-content>p{

    max-width:620px;

    color:#b8c8d8;

    font-size:18px;

    line-height:1.9;

    margin-bottom:45px;

}


/*==================================================
            POINTS
==================================================*/

.consultation-points{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.consultation-point{

    display:flex;

    gap:20px;

    align-items:flex-start;

    padding:24px;

    border-radius:22px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(22px);

    border:1px solid rgba(255,255,255,.08);

    transition:.4s;

}

.consultation-point:hover{

    transform:translateX(10px);

    border-color:rgba(0,229,155,.35);

    box-shadow:
        0 18px 40px rgba(0,0,0,.30),
        0 0 25px rgba(0,229,155,.10);

}

.consultation-point i{

    width:58px;

    height:58px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    font-size:24px;

    color:#00e59b;

    background:rgba(0,229,155,.12);

    border:1px solid rgba(0,229,155,.20);

    flex-shrink:0;

}

.consultation-point h4{

    font-size:22px;

    color:#ffffff;

    margin-bottom:8px;

}

.consultation-point p{

    color:#b8c8d8;

    line-height:1.7;

}


/*==================================================
            FORM BOX
==================================================*/

.consultation-form-box{

    position:relative;

    overflow:hidden;

    padding:40px;

    border-radius:34px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(30px);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:
        0 35px 90px rgba(0,0,0,.35);

}

.consultation-form-box::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(0,229,155,.10),
        transparent,
        rgba(13,124,255,.10)
    );

    pointer-events:none;

}


/*==================================================
            FORM
==================================================*/

.consultation-form-box form{

    position:relative;

    z-index:2;

}

.form-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.form-group{

    display:flex;

    flex-direction:column;

    margin-bottom:22px;

}

.form-group label{

    color:#dbe8f5;

    margin-bottom:10px;

    font-size:15px;

    font-weight:600;

}

.form-group input,

.form-group select,

.form-group textarea{

    width:100%;

    padding:17px 18px;

    border-radius:16px;

    border:1px solid rgba(255,255,255,.08);

    background:rgba(255,255,255,.05);

    color:#ffffff;

    font-size:15px;

    outline:none;

    transition:.35s;

    backdrop-filter:blur(20px);

}

.form-group textarea{

    resize:vertical;

    min-height:150px;

}

.form-group input::placeholder,

.form-group textarea::placeholder{

    color:#91a7ba;

}

.form-group input:focus,

.form-group select:focus,

.form-group textarea:focus{

    border-color:#00e59b;

    box-shadow:
        0 0 0 4px rgba(0,229,155,.08),
        0 0 25px rgba(0,229,155,.15);

}


/*==================================================
            BUTTON
==================================================*/

.consultation-btn{

    width:100%;

    padding:20px;

    border:none;

    border-radius:60px;

    cursor:pointer;

    font-size:17px;

    font-weight:700;

    color:#06111f;

    background:linear-gradient(
        135deg,
        #00e59b,
        #5dffcb
    );

    box-shadow:
        0 20px 45px rgba(0,229,155,.30);

    transition:.4s;

}

.consultation-btn:hover{

    transform:translateY(-5px);

    box-shadow:
        0 30px 55px rgba(0,229,155,.40);

}


/*==================================================
            RESPONSIVE
==================================================*/

@media(max-width:1100px){

    .consultation-container{

        grid-template-columns:1fr;

        gap:50px;

    }

    .consultation-content{

        text-align:center;

    }

    .consultation-content>p{

        margin-left:auto;

        margin-right:auto;

    }

}

@media(max-width:768px){

    .consultation-section{

        padding:90px 20px;

    }

    .consultation-content h2{

        font-size:40px;

    }

    .form-grid{

        grid-template-columns:1fr;

    }

    .consultation-form-box{

        padding:28px;

    }

    .consultation-point{

        padding:18px;

    }

    .consultation-point h4{

        font-size:18px;

    }

}