*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Montserrat',sans-serif;
    background:#050816;
    color:#fff;
    min-height:100vh;
}

.process-header{

    position:fixed;
    top:0;
    left:0;

    width:100%;

    padding:22px 40px;

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

    z-index:1000;

    backdrop-filter:blur(20px);

}

.process-logo{

    color:#fff;
    text-decoration:none;

    font-size:1.2rem;
    font-weight:700;

}

.header-link{

    color:#7dd3fc;
    text-decoration:none;
    font-weight:600;

}

.process-page{

    min-height:100vh;

    padding:60px 40px 60px;

    display:flex;
    align-items:center;

}

.process-shell{

    width:100%;

    display:grid;

    grid-template-columns:350px 1fr;

    gap:30px;

    align-items:stretch;

}

.process-sidebar{

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

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

    border-radius:24px;

    padding:30px;

    height:auto;

    position:sticky;
    top:100px;

    display:flex;
    flex-direction:column;
    justify-content:space-between;

}

.sidebar-label{

    color:#38bdf8;
    font-size:.8rem;
    letter-spacing:2px;

}

.process-sidebar h1{

    margin-top:15px;
    margin-bottom:15px;

    font-size:2rem;

}

.process-sidebar p{

    opacity:.8;
    line-height:1.6;

}

.process-steps{

    margin-top:40px;

    display:flex;
    flex-direction:column;

    gap:12px;

}

.step-item{

    display:flex;
    align-items:center;

    gap:15px;

    opacity:.5;

}

.step-item.active{

    opacity:1;

}

.step-item span{

    width:34px;
    height:34px;

    border-radius:50%;

    background:#0ea5e9;

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

    font-size:.85rem;
    font-weight:700;

}

.sidebar-note{

    margin-top:35px;

    padding:18px;

    background:rgba(14,165,233,.08);

    border-radius:16px;

}

.process-card{

    background:rgba(6,12,28,.88);

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

    border-radius:24px;

    padding:40px;

    min-height:800px;

    display:flex;
    flex-direction:column;
    justify-content:space-between;

}

.panel-heading{

    margin-bottom:35px;

}

.panel-kicker{

    color:#38bdf8;
    font-size:.85rem;

}

.panel-heading h2{

    margin-top:10px;

    font-size:2rem;

}

.panel-heading p{

    margin-top:12px;
    opacity:.75;

}

.category-grid{

    display:grid;

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

    gap:20px;

}

.category-card{

    background:#0f172a;

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

    border-radius:20px;

    padding:24px;

    color:#fff;

    cursor:pointer;

    transition:.3s;

    text-align:left;

    min-height:140px;

}

.category-card:hover{

    transform:translateY(-4px);

    border-color:#38bdf8;

}

.category-card span{

    color:#38bdf8;
    font-weight:700;

}

.category-card h3{

    margin-top:12px;
    margin-bottom:12px;
    font-size:1rem;

}

.category-card p{

    opacity:.75;
    line-height:1.5;

}

.subcategory-grid{

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

    gap:15px;

}

.subcategory-card{

    background:#0f172a;

    border:none;

    color:white;

    padding:20px;

    border-radius:16px;

    cursor:pointer;

}

.validation-grid,
.form-grid{

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

    gap:20px;

}

.form-group{

    display:flex;
    flex-direction:column;

    gap:10px;

}

.form-group label{

    font-weight:600;

}

.form-group input,
.form-group select,
.form-group textarea{

    background:#0f172a;

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

    border-radius:14px;

    padding:14px;

    color:white;

}

textarea{

    min-height:180px;
    resize:vertical;

}

.full{

    margin-top:20px;

}

.option-row{

    display:flex;
    gap:10px;

}

.option-btn{

    flex:1;

    background:#0f172a;

    color:white;

    border:none;

    border-radius:12px;

    padding:14px;

    cursor:pointer;

}

.plan-grid{

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

    gap:20px;

}

.plan-card{

    background:#0f172a;

    border:none;

    border-radius:20px;

    color:white;

    padding:24px;

    cursor:pointer;

    text-align:left;

}

.plan-tag{

    color:#38bdf8;

    font-size:.8rem;
    font-weight:700;

}

.upload-grid{

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

    gap:20px;

}

.upload-box{

    background:#0f172a;

    border:2px dashed rgba(255,255,255,.15);

    border-radius:18px;

    padding:40px 20px;

    text-align:center;

    cursor:pointer;

}

.upload-box input{

    display:none;

}

.success-box{

    text-align:center;

    padding:40px 0;

}

.success-icon{

    width:80px;
    height:80px;

    margin:auto;
    margin-bottom:20px;

    border-radius:50%;

    background:#10b981;

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

    font-size:2rem;
    font-weight:700;

}

.temp-case-card{

    margin-top:25px;

    background:#0f172a;

    border-radius:20px;

    padding:25px;

}

.wizard-actions{

    margin-top:40px;

    display:flex;
    justify-content:space-between;

}

.primary-action,
.secondary-action{

    border:none;

    cursor:pointer;

    border-radius:14px;

    padding:14px 28px;

    font-weight:600;

}

.primary-action{

    background:#0ea5e9;
    color:white;

}

.secondary-action{

    background:#1e293b;
    color:white;

}

.wizard-panel{

    display:none;

}

.wizard-panel.active{

    display:block;

}

.gradient-text{

    background:
    linear-gradient(
        90deg,
        #2563eb,
        #60a5fa
    );

    background-clip:text;
    -webkit-background-clip:text;

    color:transparent;
    -webkit-text-fill-color:transparent;
}

@media(max-width:1100px){

    .process-shell{

        grid-template-columns:1fr;

    }

    .process-sidebar{

        position:relative;
        top:auto;

    }

    .category-grid,
    .plan-grid,
    .validation-grid,
    .form-grid,
    .upload-grid{

        grid-template-columns:1fr;

    }

}

.process-sidebar{

    background:rgba(6,12,28,.92);

    backdrop-filter:blur(30px);

    z-index:2;

}

.process-sidebar::before{
    display:none;
}

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

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:url("../assets/scale.png");

    background-repeat:no-repeat;
    background-position:left center;
    background-size:35%;

    opacity:.05;

    pointer-events:none;
}

.process-card{
    min-height:800px;
}

.process-page::after{

    content:"";

    position:fixed;

    top:0;
    right:0;

    width:100%;
    height:100%;

    background:url("../assets/justice.png");

    background-repeat:no-repeat;

    background-position:right top;

    background-size:30%;

    opacity:.05;

    pointer-events:none;

}

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

.floating-social{

    position:fixed;

    right:35px;
    bottom:35px;

    z-index:1000;
}

#socialToggle{

    width:62px;
    height:62px;

    border:none;

    border-radius:50%;

    cursor:pointer;

    font-size:28px;

    color:white;

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #1d4ed8
    );

    box-shadow:
    0 15px 40px rgba(37,99,235,.45);

    transition:.35s ease;
}

#socialToggle:hover{

    transform:scale(1.08);
}

.social-menu{

    position:absolute;

    right:0;
    bottom:80px;

    display:flex;
    flex-direction:column;

    gap:10px;

    opacity:0;

    visibility:hidden;

    transform:
    translateY(10px);

    transition:.35s ease;
}

.social-menu.active{

    opacity:1;

    visibility:visible;

    transform:
    translateY(0);
}

.social-menu a{

    text-decoration:none;

    color:white;

    font-size:14px;

    padding:12px 18px;

    border-radius:14px;

    backdrop-filter:blur(20px);

    background:
    rgba(9,16,40,.95);

    border:
    1px solid rgba(37,99,235,.2);

    box-shadow:
    0 10px 25px rgba(0,0,0,.3);

    transition:.25s ease;
}

.social-menu a:hover{

    border-color:#2563eb;

    transform:translateX(-4px);
}

.cta-text{

    max-width:560px;

    margin:0 auto 34px;

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

    font-size:20px;

    line-height:1.7;
}

.cta-panel .primary-btn{

    padding:20px 42px;

    font-size:15px;

    box-shadow:
        0 20px 60px rgba(37,99,235,.35);
}

/* =========================================================
   footer
========================================================= */

.bottom-footer{

    display:flex;

    justify-content:center;

    gap:40px;

    padding:40px 20px;

    margin-top:80px;

    font-size:13px;

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

}

.bottom-footer a{

    color:inherit;

    text-decoration:none;

}


/* =========================================================
   PROGRESS INDICATOR
========================================================= */


.top-progress{

    position:relative;

    margin-bottom:50px;

}

.progress-line{

    height:4px;

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

    border-radius:999px;

}

.progress-fill-line{

    width:0%;

    height:100%;

    background:#38bdf8;

    border-radius:999px;

    transition:.4s ease;

}

.progress-points{

    display:flex;

    justify-content:space-between;

    margin-top:-14px;

}

.progress-point{

    width:32px;
    height:32px;

    border-radius:50%;

    background:#0f172a;

    border:2px solid rgba(255,255,255,.15);

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

    font-size:.8rem;

    transition:.3s ease;

}

.progress-point.active{

    background:#38bdf8;

    border-color:#38bdf8;

}