/* ==========================================================
   NovaHire — Modern Recruitment Landing
   ========================================================== */

:root{
    --bg:#06070b;
    --bg-secondary:#0d1117;
    --surface:rgba(255,255,255,.06);
    --surface-hover:rgba(255,255,255,.09);

    --border:rgba(255,255,255,.08);

    --text:#ffffff;
    --muted:#a5adbb;

    --primary:#4f7cff;
    --secondary:#7f5cff;
    --cyan:#34d5ff;

    --radius:22px;

    --shadow:0 25px 80px rgba(0,0,0,.45);

    --transition:.35s ease;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body.menu-open{

overflow:hidden;

}

body{
    font-family:'Inter',sans-serif;
    background:var(--bg);
    color:var(--text);
    overflow-x:hidden;
    line-height:1.7;
}

/* ========================= */

body::before{
    content:"";
    position:fixed;
    inset:0;
    pointer-events:none;

    background-image:
        radial-gradient(rgba(255,255,255,.025) 1px, transparent 1px);

    background-size:26px 26px;
}

/* ========================= */

a{
    color:inherit;
    text-decoration:none;
}

img{
    display:block;
    max-width:100%;
}

.container{
    width:min(1180px,92%);
    margin:auto;
}

.narrow{
    max-width:900px;
}

.section{
    padding:120px 0;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    display:inline-block;

    color:var(--cyan);

    margin-bottom:14px;

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:.82rem;
}

.section-title h2{

    font-size:clamp(2rem,5vw,3.5rem);

    font-weight:800;

}

/* ========================= */

.background{
    position:fixed;
    inset:0;
    overflow:hidden;
    z-index:-5;
}

.gradient{

    position:absolute;

    width:700px;
    height:700px;

    border-radius:50%;

    filter:blur(120px);

    opacity:.33;

    animation:float 18s infinite alternate ease-in-out;

}

.one{

    background:#3d6cff;

    top:-150px;
    left:-120px;

}

.two{

    background:#8a3dff;

    right:-200px;
    top:120px;

    animation-duration:24s;

}

.three{

    background:#00d5ff;

    left:35%;
    bottom:-220px;

    animation-duration:20s;

}

@keyframes float{

from{

transform:translateY(-40px) translateX(-30px);

}

to{

transform:translateY(50px) translateX(40px);

}

}

/* ========================= */

.header{

position:fixed;

top:0;
left:0;
width:100%;

backdrop-filter:blur(18px);

background:rgba(6,7,11,.55);

border-bottom:1px solid rgba(255,255,255,.05);

z-index:1000;

}

.header .container{

display:flex;

justify-content:space-between;

align-items:center;

padding:20px 0;

}

.logo{

font-size:1.35rem;

font-weight:800;

letter-spacing:.5px;

}

nav{

display:flex;

gap:30px;

}

nav a{

color:var(--muted);

transition:var(--transition);

position:relative;

}

nav a:hover{

color:white;

}

nav a::after{

content:"";

position:absolute;

left:0;
bottom:-8px;

width:0;

height:2px;

background:linear-gradient(90deg,var(--primary),var(--cyan));

transition:.3s;

}

nav a:hover::after{

width:100%;

}

/* ========================= */

.hero{

padding-top:170px;

padding-bottom:120px;

}

.hero-grid{

display:grid;

grid-template-columns:1.1fr .9fr;

gap:70px;

align-items:center;

}

.badge{

display:inline-flex;

padding:10px 18px;

border-radius:100px;

background:rgba(79,124,255,.18);

border:1px solid rgba(79,124,255,.3);

margin-bottom:30px;

font-size:.85rem;

}

.hero h1{

font-size:clamp(3rem,7vw,5.7rem);

line-height:1;

font-weight:900;

margin-bottom:28px;

}

.hero p{

font-size:1.12rem;

color:var(--muted);

max-width:650px;

margin-bottom:40px;

}

.hero-buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

}

/* ========================= */

.btn{

padding:15px 32px;

border-radius:100px;

font-weight:700;

transition:var(--transition);

display:inline-flex;

align-items:center;

justify-content:center;

}

.primary{

background:linear-gradient(135deg,var(--primary),var(--secondary));

color:white;

box-shadow:0 15px 40px rgba(79,124,255,.35);

}

.primary:hover{

transform:translateY(-4px);

box-shadow:0 22px 50px rgba(79,124,255,.45);

}

.secondary{

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

}

.secondary:hover{

background:rgba(255,255,255,.09);

}

/* ========================= */

.hero-card{

background:var(--surface);

backdrop-filter:blur(25px);

border:1px solid var(--border);

padding:40px;

border-radius:var(--radius);

box-shadow:var(--shadow);

}

.hero-card h3{

margin-bottom:24px;

font-size:1.4rem;

}

.hero-card ul{

list-style:none;

display:flex;

flex-direction:column;

gap:18px;

}

.hero-card li{

color:#d8dbe5;

}

/* ========================= */

.cards{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.card{

background:var(--surface);

border:1px solid var(--border);

padding:38px;

border-radius:var(--radius);

transition:var(--transition);

backdrop-filter:blur(18px);

}

.card:hover{

transform:translateY(-10px);

background:var(--surface-hover);

}

.card h3{

margin-bottom:18px;

font-size:1.3rem;

}

.card p{

color:var(--muted);

}

/* ========================= */

.document{

background:rgba(255,255,255,.04);

padding:60px;

border-radius:28px;

border:1px solid rgba(255,255,255,.08);

backdrop-filter:blur(25px);

}

.document h3{

margin-top:35px;

margin-bottom:15px;

font-size:1.4rem;

}

.document h3:first-child{

margin-top:0;

}

.document p{

color:var(--muted);

}

/* ========================= */

.privacy-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.privacy-card{

padding:35px;

border-radius:22px;

background:var(--surface);

border:1px solid var(--border);

transition:var(--transition);

}

.privacy-card:hover{

transform:translateY(-8px);

}

.privacy-card h3{

margin-bottom:16px;

}

.privacy-card p{

color:var(--muted);

}

/* ========================= */
/* Stats */
/* ========================= */

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat-card{

    text-align:center;

    padding:45px 30px;

    border-radius:24px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-10px);

    background:rgba(255,255,255,.08);

}

.stat-card h3{

    font-size:3rem;

    font-weight:800;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--cyan)
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    margin-bottom:12px;

}

.stat-card p{

    color:var(--muted);

    font-size:1rem;

}

@media (max-width:900px){

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media (max-width:600px){

.stats-grid{

grid-template-columns:1fr;

}

}

/* ========================= */
/* Contact */
/* ========================= */

.contact-card{
    text-align:center;
    padding:80px 50px;
    border-radius:32px;
    background:var(--surface);
    border:1px solid var(--border);
    backdrop-filter:blur(24px);
    box-shadow:var(--shadow);
}

.contact-card h2{
    font-size:clamp(2rem,4vw,3rem);
    margin-bottom:20px;
}

.contact-card p{
    color:var(--muted);
    max-width:650px;
    margin:0 auto 40px;
}

/* Contact Info */

.contact-info{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:45px;
}

.contact-item{
    padding:30px;
    border-radius:18px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    transition:.35s;
}

.contact-item:hover{
    transform:translateY(-6px);
    background:rgba(255,255,255,.08);
}

.contact-item h3{
    margin-bottom:12px;
    font-size:1rem;
    color:#fff;
}

.contact-item a,
.contact-item span{
    color:var(--muted);
    font-size:1rem;
    word-break:break-word;
    transition:.3s;
}

.contact-item a:hover{
    color:var(--cyan);
}

@media (max-width:768px){

    .contact-info{
        grid-template-columns:1fr;
    }

}

/* ========================= */
/* Why Choose Us */
/* ========================= */

.section-description{
    max-width:720px;
    margin:20px auto 0;
    color:var(--muted);
    text-align:center;
}

.features-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.feature-card{

    padding:35px;
    border-radius:24px;

    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    transition:.35s;

}

.feature-card:hover{

    transform:translateY(-10px);

    background:rgba(255,255,255,.08);

}

.feature-icon{

    width:70px;
    height:70px;

    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;

    margin-bottom:25px;

    background:linear-gradient(
        135deg,
        rgba(79,124,255,.2),
        rgba(0,213,255,.15)
    );

}

.feature-card h3{

    margin-bottom:15px;
    font-size:1.25rem;

}

.feature-card p{

    color:var(--muted);

}

@media(max-width:1000px){

    .features-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:700px){

    .features-grid{
        grid-template-columns:1fr;
    }

}

/* ========================= */
/* Footer */
/* ========================= */

footer{
    border-top:1px solid rgba(255,255,255,.08);
    padding:70px 0 30px;
}

.footer{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:50px;
    flex-wrap:wrap;
}

.footer h3{
    margin-bottom:12px;
}

.footer p{
    color:var(--muted);
}

.footer div:last-child{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.footer a{
    color:var(--muted);
    transition:.3s;
}

.footer a:hover{
    color:#fff;
}

.copyright{
    text-align:center;
    color:var(--muted);
    margin-top:50px;
    font-size:.9rem;
}

/* ========================= */
/* Scroll Progress */
/* ========================= */

.scroll-progress{
    position:fixed;
    top:0;
    left:0;
    width:0%;
    height:4px;
    background:linear-gradient(90deg,var(--primary),var(--cyan));
    z-index:99999;
}

/* ========================= */
/* Cursor Glow */
/* ========================= */

.cursor-glow{
    position:fixed;
    width:260px;
    height:260px;
    border-radius:50%;
    pointer-events:none;
    background:radial-gradient(circle,
        rgba(79,124,255,.25),
        transparent 70%);
    transform:translate(-50%,-50%);
    z-index:-1;
}

/* ========================= */
/* Reveal Animation */
/* ========================= */

.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:1s ease;
}

.reveal.active{
    opacity:1;
    transform:none;
}

/* ========================= */
/* Top Button */
/* ========================= */

.top-btn{
    position:fixed;
    right:30px;
    bottom:30px;

    width:55px;
    height:55px;

    border:none;
    cursor:pointer;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;
    font-size:22px;

    box-shadow:0 15px 40px rgba(0,0,0,.35);

    opacity:0;
    visibility:hidden;

    transition:.35s;

    z-index:999;
}

.top-btn.show{
    opacity:1;
    visibility:visible;
}

.top-btn:hover{
    transform:translateY(-6px) scale(1.08);
}

/* ========================= */
/* Scrollbar */
/* ========================= */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#090909;
}

::-webkit-scrollbar-thumb{
    background:linear-gradient(
        var(--primary),
        var(--secondary)
    );
    border-radius:20px;
}

/* ========================= */
/* Selection */
/* ========================= */

::selection{
    background:var(--primary);
    color:#fff;
}

/* ========================= */
/* Responsive */
/* ========================= */

@media (max-width:1000px){

.hero-grid{
    grid-template-columns:1fr;
}

.cards{
    grid-template-columns:1fr;
}

.privacy-grid{
    grid-template-columns:1fr;
}

.hero-card{
    max-width:700px;
}

}

@media (max-width:768px){



.hero{
    padding-top:160px;
}

.hero h1{
    font-size:3rem;
}

.section{
    padding:90px 0;
}

.document{
    padding:35px;
}

.contact-card{
    padding:60px 25px;
}

.footer{
    flex-direction:column;
}

}

@media (max-width:500px){

.hero-buttons{
    flex-direction:column;
}

.btn{
    width:100%;
}

.badge{
    font-size:.75rem;
}

.hero-card{
    padding:25px;
}

.document{
    padding:25px;
}

}

.btn{
    position:relative;
    overflow:hidden;
}

.ripple{
    position:absolute;
    border-radius:50%;
    transform:scale(0);
    animation:ripple .6s linear;
    background:rgba(255,255,255,.4);
    pointer-events:none;
}

@keyframes ripple{

to{

transform:scale(4);

opacity:0;

}

}

.language-switcher{
    display:flex;
    gap:8px;
    align-items:center;
}

.lang-btn{
    padding:8px 16px;
    border:none;
    border-radius:999px;
    cursor:pointer;
    background:rgba(255,255,255,.06);
    color:#fff;
    transition:.3s;
    font-weight:600;
}

.lang-btn:hover{
    background:rgba(255,255,255,.12);
}

.lang-btn.active{
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
}

/* ===========================
   Mobile Menu
=========================== */

.menu{

display:flex;

align-items:center;

gap:30px;

}

.menu-toggle{

display:none;

width:46px;

height:46px;

border:none;

background:rgba(255,255,255,.08);

border-radius:14px;

cursor:pointer;

padding:0;

position:relative;

transition:.3s;

}

.menu-toggle span{

position:absolute;

left:11px;

width:24px;

height:2px;

background:#fff;

transition:.35s;

}

.menu-toggle span:nth-child(1){

top:15px;

}

.menu-toggle span:nth-child(2){

top:22px;

}

.menu-toggle span:nth-child(3){

top:29px;

}

.menu-toggle.active span:nth-child(1){

transform:rotate(45deg);

top:22px;

}

.menu-toggle.active span:nth-child(2){

opacity:0;

}

.menu-toggle.active span:nth-child(3){

transform:rotate(-45deg);

top:22px;

}

@media(max-width:768px){

.menu-toggle{

display:block;

z-index:2000;

}

.menu{

position:fixed;

top:0;

right:-100%;

width:280px;

height:100vh;

padding:120px 35px;

background:rgba(6,7,11,.95);

backdrop-filter:blur(25px);

display:flex;

flex-direction:column;

align-items:flex-start;

gap:35px;

transition:.4s;

border-left:1px solid rgba(255,255,255,.08);

}

.menu.active{

right:0;

}

nav{

display:flex;

flex-direction:column;

gap:25px;

}

.language-switcher{

margin-top:auto;

}

}

