/* ==================================================
   GLOBAL
================================================== */

:root{
    --bg:#1e242d ;
    --bg2:#10294a;
    --card:rgba(255,255,255,.05);
    --card-hover:rgba(255,255,255,.09);
    --border:rgba(255,255,255,.10);
    --text:#f8fafc;
    --muted:#a9b4c7;
    --primary:#39755a;
    --radius:24px;
}


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

img,
svg,
video{
    max-width:100%;
    height:auto;
}


h1,
h2,
h3,
p,
li,
strong,
em,
span{
    overflow-wrap:anywhere;
    word-break:break-word;
}


.hero-text,
.card,
.future-box,
.application-card,
.benefit{
    min-width:0;
}


html{
    scroll-behavior:smooth;
    hyphens:auto;
}


body{
    font-family:"Montserrat",sans-serif;
    color:var(--text);
    min-height:100vh;
    background:

    radial-gradient(
        circle at bottom left,
        rgba(0,120,255,.15),
        transparent 40%
    ),

    linear-gradient(
        135deg,
        var(--bg),
        var(--bg2)
    );

}

.container{
    width:min(1400px,92%);
    margin-inline:auto;
}


.container p{
    max-width:75ch;
    line-height:1.8;
    color:var(--muted);

    text-align:justify;
    text-justify:inter-word;
    hyphens:auto;
}

.justify{
    text-align:justify!important;
    hyphens:auto;
}



/* ==================================================
   HERO
================================================== */


.job-hero{
    padding:80px 0 60px;
    position:relative;
    overflow:hidden;
    isolation:isolate;
}



.job-hero::before{
    content:"";
    position:absolute;
    z-index:-1;
    width:650px;
    height:650px;
    right:-250px;
    top:-300px;
    background:
    radial-gradient(
        circle,
        rgba(57,117,90,.25),
        transparent 70%
    );
}


.back-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:var(--muted);
    text-decoration:none;
    margin-bottom:25px;

    position:relative;
    z-index:5;
}



.back-btn:hover{
    color:white;
}

.job-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 24px;
    margin-bottom:35px;
    margin-left:clamp(0px,6vw,80px);
    border-radius:999px;
    position:relative;
    overflow:hidden;
    background:
    linear-gradient(
        135deg,
        rgba(57,117,90,.35),
        rgba(255,255,255,.08)
    );


    border:1px solid rgba(142,232,176,.35);
    backdrop-filter:blur(18px);
    color:#dfffea;
    font-size:.78rem;
    font-weight:700;
    letter-spacing:2.5px;
    text-transform:uppercase;
    box-shadow:
    0 10px 35px rgba(57,117,90,.25),
    inset 0 0 20px rgba(255,255,255,.08);
    transition:.35s ease;
}



.job-badge::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.25),
        transparent
    );

    transform:translateX(-120%);
    transition:.6s;

}



.job-badge:hover::before{
    transform:translateX(120%);
}



.job-badge:hover{
    transform:translateX(8px);
    border-color:#8ee8b0;

}

.hero-text-layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) 300px;
    gap:50px;
    align-items:center;

}



.hero-text{
    min-width:0;
}


.job-hero h1{

    font-size:clamp(
        1.4rem,
        2vw,
        2.2rem
    );
    line-height:1.12;

    letter-spacing:-1.5px;
    font-weight:800;
    max-width:900px;
    margin-bottom:30px;

}



.job-hero p{
    font-size:1.05rem;
    margin-bottom:18px;

}



/* ==================================================
   FUTURE BOX
================================================== */

.future-box{
    position:relative;
    overflow:hidden;
    padding:28px;
    border-radius:26px;


    background:
    linear-gradient(
        145deg,
        rgba(57,117,90,.30),
        rgba(255,255,255,.05)
    );

    border:
    1px solid rgba(57,117,90,.45);

    backdrop-filter:blur(20px);


    box-shadow:
    0 20px 60px rgba(0,0,0,.25);

}



.future-box::before{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    right:-70px;
    top:-70px;
    border-radius:50%;
    background:
    rgba(142,232,176,.15);
}



.future-text{
    position:relative;
    z-index:2;
}



.future-text span{
    display:block;
    font-size:.7rem;
    letter-spacing:3px;
    color:#a9b4c7;
}



.future-text strong{
    display:block;
    margin-top:8px;
    font-size:1.45rem;
}



.future-text em{
    display:block;
    margin-top:5px;
    color:#8ee8b0;
}



/* ==================================================
   META
================================================== */


.hero-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:25px;
    margin-top:40px;
}



.job-meta{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}



.job-meta div{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 18px;
    border-radius:15px;
    background:
    rgba(255,255,255,.05);
    border:1px solid var(--border);
}



.job-meta i{
    color:var(--primary);
}


/* ==================================================
   CONTENT LAYOUT
================================================== */


.job-content{
    padding:50px 0 100px;
}



.job-layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) 380px;
    gap:32px;

    align-items:start;

}



/* ==================================================
   CARDS
================================================== */


.card{
    position:relative;
    overflow:hidden;
    padding:clamp(22px,3vw,35px);
    margin-bottom:28px;
    border-radius:var(--radius);

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.08),
        rgba(255,255,255,.04)
    );


    border:1px solid var(--border);

    backdrop-filter:blur(18px);


    box-shadow:
    0 15px 45px rgba(0,0,0,.18);


    transition:
    transform .3s ease,

    border-color .3s ease,

    background .3s ease;

}



.card::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.04),
        transparent
    );

    pointer-events:none;

}



.card:hover{
    transform:translateY(-5px);
    border-color:var(--primary);
    background:var(--card-hover);

}



.card h2{
    position:relative;
    z-index:2;
    margin-bottom:25px;
    font-size:

    clamp(
        1.3rem,
        2vw,
        1.8rem
    );

}



/* ==================================================
   LISTS
================================================== */


.card ul{
    list-style:none;
}



.card li{
    position:relative;
    padding-left:24px;
    margin-bottom:14px;
    max-width:75ch;
    color:var(--muted);
    line-height:1.65;

}



.card li::before{
    content:"";
    position:absolute;
    left:0;
    top:.65em;
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--primary);

}



/* Sub Liste */

.has-sublist{
    margin-top:15px;
}



.sub-list{
    margin-top:15px;
    padding-left:10px;

}



.sub-list li{
    margin-bottom:10px;
}



.sub-list li::before{
    width:6px;
    height:6px;
}





/* ==================================================
   BENEFITS
================================================== */


.benefits{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}



.benefit{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;

    padding:clamp(18px,3vw,28px);

    border-radius:20px;

    background:rgba(255,255,255,.05);
    border:1px solid var(--border);

    color:var(--muted);
    line-height:1.6;

    overflow-wrap:break-word;
    word-break:normal;
    hyphens:auto;

    transition:.3s;
}


.benefit:hover{
    transform:translateY(-5px);
    border-color:var(--primary);
    background:

    rgba(255,255,255,.08);

}



.benefit i{
    font-size:28px;
    color:var(--primary);

}





/* ==================================================
   SIDEBAR
================================================== */


.sidebar{
    position:sticky;
    top:30px;

}



.application-card{
    position:relative;
    overflow:hidden;
    padding:30px;
    border-radius:26px;
    background:

    linear-gradient(
        180deg,
        rgba(255,255,255,.09),
        rgba(255,255,255,.04)
    );


    border:1px solid var(--border);
    backdrop-filter:blur(20px);
    box-shadow:

    0 20px 50px rgba(0,0,0,.2);

}



.application-card::before{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    right:-120px;
    top:-120px;
    border-radius:50%;
    background:

    rgba(57,117,90,.15);

}



.application-card h3{
    position:relative;
    z-index:2;
    font-size:2rem;
    margin-bottom:15px;

}



.application-card p{
    position:relative;
    z-index:2;
    margin-bottom:25px;

}



.contact{
    position:relative;
    z-index:2;
}



.contact p{
    display:flex;
    align-items:center;

    gap:12px;

    margin-bottom:18px;

}



.contact i{

    width:20px;

    color:var(--primary);

}



/* ==================================================
   DOWNLOAD BUTTON
================================================== */


.download-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;


    min-width:260px;

    padding:16px 28px;


    border-radius:18px;


    color:white;

    text-decoration:none;

    font-weight:700;


    background:

    linear-gradient(
        135deg,
        var(--primary),
        #4d9a76
    );


    border:1px solid rgba(255,255,255,.2);


    box-shadow:

    0 12px 35px rgba(57,117,90,.35);


    transition:.3s;


    position:relative;

    overflow:hidden;

}



.download-btn:hover{

    transform:translateY(-4px);

    filter:brightness(1.1);

}



/* ==================================================
   RESPONSIVE
================================================== */


/* Tablet */

@media(max-width:1200px){


    .job-layout{

        grid-template-columns:1fr;

    }


    .sidebar{

        position:relative;

        top:auto;

    }


    .application-card{

        max-width:700px;

    }

}




/* Mobile */


@media(max-width:900px){


    .hero-text-layout{

        grid-template-columns:1fr;

        gap:30px;

    }


    .future-box{

        max-width:420px;

    }


    .hero-bottom{

        flex-direction:column;

        align-items:stretch;

    }


    .job-meta{

        width:100%;

    }


    .job-meta div{

        width:100%;

    }


    .download-btn{

        width:100%;

    }

    .benefits{
        grid-template-columns:1fr;
    }

    .container p{
        max-width:100%;
    }

}





@media(max-width:600px){


    .job-hero{

        padding:55px 0 40px;

    }

    .container p{
        text-align:left;
    }



    .job-badge{

        margin-left:0;

        width:auto;

        max-width:100%;

        text-align:center;

        letter-spacing:1.5px;

        padding:10px 18px;

    }



    .job-hero h1{
        font-size:1.4rem;
        letter-spacing:-.4px;
    }



    .job-hero p{

        font-size:.95rem;

        line-height:1.7;

    }



    .future-box{

        padding:22px;

        border-radius:22px;

    }



    .future-text strong{

        font-size:1.25rem;

    }



    .card{

        border-radius:20px;

    }



    .card h2{

        font-size:1.35rem;

    }



    .application-card{

        padding:24px;

    }


}





@media(max-width:380px){


    .container{

        width:94%;

    }



    .job-meta div{

        font-size:.85rem;

        padding:10px;

    }



    .download-btn{

        padding:14px 16px;

        font-size:.85rem;

    }

}