:root {

    --black: #000000;
    --dark: #111111;
    --dark-2: #1a1a1a;
    --dark-3: #222222;

    --white: #ffffff;
    --light: #f5f5f5;

    --yellow: #ffd400;
    --gold: #ffea70;

    --glass: rgba(255,255,255,0.05);
    --glass-border: rgba(255,255,255,0.08);

    --shadow:
    0 10px 40px rgba(0,0,0,.4);

    --glow:
    0 0 30px rgba(255,212,0,.35);

    --transition:
    .4s cubic-bezier(.22,.61,.36,1);

    --radius: 24px;

    --container: 1400px;
}

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

html{
    scroll-behavior:smooth;
}

body{

    background:#000;
    color:#fff;

    font-family:'Inter',sans-serif;

    overflow-x:hidden;
    position:relative;
}

img{
    max-width:100%;
    display:block;
}

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

button{
    border:none;
    background:none;
    cursor:pointer;
}

.container{

    width:min(92%,1400px);
    margin:auto;
}

section{
    padding:120px 0;
}

/* ==========================
   BACKGROUND
========================== */

.noise{

    position:fixed;
    inset:0;

    background-image:url("https://grainy-gradients.vercel.app/noise.svg");

    opacity:.04;

    pointer-events:none;

    z-index:1;
}

.background-grid{

    position:fixed;

    inset:0;

    background-image:

    linear-gradient(
    rgba(255,255,255,.04) 1px,
    transparent 1px),

    linear-gradient(
    90deg,
    rgba(255,255,255,.04) 1px,
    transparent 1px);

    background-size:60px 60px;

    z-index:-2;
}

/* ==========================
   FLOATING BLURS
========================== */

.floating-blur{

    position:fixed;

    border-radius:50%;

    filter:blur(120px);

    opacity:.25;

    z-index:-1;
}

.blur-1{

    width:500px;
    height:500px;

    background:#ffd400;

    top:-100px;
    right:-100px;
}

.blur-2{

    width:600px;
    height:600px;

    background:#ffea70;

    bottom:-200px;
    left:-150px;
}

.blur-3{

    width:400px;
    height:400px;

    background:#ffffff;

    top:40%;
    left:50%;
}

/* ==========================
   GLASS
========================== */

.glass{

    background:var(--glass);

    border:1px solid var(--glass-border);

    backdrop-filter:blur(20px);

    -webkit-backdrop-filter:blur(20px);

    box-shadow:var(--shadow);
}

.glass:hover{

    border-color:rgba(255,212,0,.25);
}

/* ==========================
   HEADER
========================== */

.header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:1000;

    transition:.4s;
}

.glass-nav{

    backdrop-filter:blur(20px);

    background:rgba(0,0,0,.5);

    border-bottom:1px solid rgba(255,255,255,.06);
}

.header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:85px;
}

.logo{

    font-size:1.8rem;

    font-weight:900;

    letter-spacing:4px;

    color:var(--yellow);
}

.nav{

    display:flex;
    gap:40px;
}

.nav a{

    position:relative;

    font-weight:500;

    transition:var(--transition);
}

.nav a:hover{

    color:var(--yellow);
}

.nav a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;

    height:2px;

    background:var(--yellow);

    transition:.3s;
}

.nav a:hover::after{

    width:100%;
}

.btn-nav{

    padding:14px 24px;

    background:var(--yellow);

    color:#000;

    border-radius:999px;

    font-weight:700;

    transition:var(--transition);
}

.btn-nav:hover{

    transform:translateY(-3px);

    box-shadow:var(--glow);
}

/* ==========================
   HERO
========================== */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;
}

.hero-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:60px;
}

.hero-badge{

    display:inline-flex;

    align-items:center;

    padding:10px 18px;

    border-radius:999px;

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

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

    margin-bottom:30px;
}

.hero h1{

    font-size:clamp(3rem,7vw,6.5rem);

    line-height:1;

    font-weight:900;

    margin-bottom:30px;
}

.hero h1 span{

    color:var(--yellow);

    text-shadow:0 0 40px rgba(255,212,0,.5);
}

.hero p{

    font-size:1.2rem;

    color:#bcbcbc;

    max-width:650px;

    line-height:1.7;

    margin-bottom:40px;
}

.hero-buttons{

    display:flex;
    gap:20px;
}

/* ==========================
   BUTTONS
========================== */

.btn-primary{

    padding:18px 34px;

    background:var(--yellow);

    color:#000;

    border-radius:999px;

    font-weight:700;

    transition:var(--transition);
}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:

    0 0 40px rgba(255,212,0,.45);
}

.btn-secondary{

    padding:18px 34px;

    border-radius:999px;

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

    transition:var(--transition);
}

.btn-secondary:hover{

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

    transform:translateY(-4px);
}

/* ==========================
   HERO VISUAL
========================== */

.hero-visual{

    position:relative;

    height:700px;
}

.glass-orb{

    position:absolute;

    border-radius:50%;

    backdrop-filter:blur(20px);

    animation:float 8s ease-in-out infinite;
}

.orb-1{

    width:260px;
    height:260px;

    background:
    radial-gradient(circle,
    rgba(255,212,0,.7),
    transparent);

    top:80px;
    right:50px;
}

.orb-2{

    width:180px;
    height:180px;

    background:
    radial-gradient(circle,
    rgba(255,255,255,.4),
    transparent);

    bottom:120px;
    left:40px;
}

.orb-3{

    width:130px;
    height:130px;

    background:
    radial-gradient(circle,
    rgba(255,212,0,.8),
    transparent);

    bottom:40px;
    right:120px;
}

.hero-card{

    position:absolute;

    padding:30px;

    border-radius:28px;

    width:260px;
}

.hero-card span{

    color:#aaa;
}

.hero-card h3{

    font-size:3rem;

    color:var(--yellow);

    margin:15px 0;
}

.card-right{

    right:0;
    bottom:150px;
}

/* ==========================
   SECTION HEADER
========================== */

.section-header{

    text-align:center;

    max-width:900px;

    margin:0 auto 80px;
}

.section-header span{

    color:var(--yellow);

    text-transform:uppercase;

    letter-spacing:3px;
}

.section-header h2{

    margin-top:15px;

    font-size:clamp(2.5rem,5vw,4rem);

    font-weight:800;
}

/* ==========================
   SERVICES
========================== */

.services-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:30px;
}

.service-card{

    padding:40px;

    border-radius:30px;

    transition:var(--transition);

    min-height:260px;
}

.service-card:hover{

    transform:
    translateY(-10px)
    rotateX(4deg);

    box-shadow:
    0 20px 60px rgba(255,212,0,.15);
}

.service-icon{

    font-size:3rem;

    margin-bottom:25px;
}

.service-card h3{

    margin-bottom:15px;

    font-size:1.4rem;
}

.service-card p{

    color:#aaa;

    line-height:1.7;
}

/* ===================================
   TRUST / MARQUEE
=================================== */

.trust{
    padding:60px 0;
    overflow:hidden;
}

.marquee{
    width:100%;
    overflow:hidden;
    position:relative;
}

.marquee-content{

    display:flex;
    gap:80px;

    width:max-content;

    animation:marqueeMove 25s linear infinite;
}

.marquee-content span{

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

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

    white-space:nowrap;
}

/* ===================================
   ADVANTAGES
=================================== */

.advantages-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));

    gap:25px;
}

.advantage{

    min-height:180px;

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

    text-align:center;

    border-radius:28px;

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

    transition:var(--transition);

    cursor:pointer;

    position:relative;
    overflow:hidden;
}

.advantage::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    radial-gradient(
    circle at center,
    rgba(255,212,0,.18),
    transparent 70%);

    opacity:0;

    transition:.5s;
}

.advantage:hover{

    transform:
    translateY(-10px);

    border-color:
    rgba(255,212,0,.3);

    box-shadow:
    0 20px 60px rgba(255,212,0,.15);
}

.advantage:hover::before{
    opacity:1;
}

/* ===================================
   CASES
=================================== */

.cases{
    position:relative;
}

.cases-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(450px,1fr));

    gap:35px;

    margin-bottom:80px;
}

.case-card{

    position:relative;

    overflow:hidden;

    border-radius:32px;

    min-height:500px;

    cursor:pointer;
}

.case-card img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:1s;
}

.case-card:hover img{

    transform:
    scale(1.1);
}

.case-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:40px;

    background:
    linear-gradient(
    to top,
    rgba(0,0,0,.9),
    transparent);

    transition:.5s;
}

.case-overlay h3{

    font-size:2rem;

    margin-bottom:10px;
}

.case-overlay p{

    color:var(--yellow);

    font-weight:700;
}

.case-card:hover .case-overlay{

    background:
    linear-gradient(
    to top,
    rgba(0,0,0,.95),
    rgba(0,0,0,.1));
}

/* ===================================
   STATS
=================================== */

.stats{

    display:grid;

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

    gap:30px;
}

.stat{

    padding:45px;

    border-radius:30px;

    text-align:center;

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

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

    backdrop-filter:blur(20px);
}

.stat h3{

    font-size:4rem;

    color:var(--yellow);

    margin-bottom:10px;
}

.stat p{

    color:#bcbcbc;
}

/* ===================================
   TIMELINE
=================================== */

.timeline{

    position:relative;
}

.timeline-wrapper{

    position:relative;

    display:flex;

    flex-direction:column;

    gap:40px;

    max-width:1000px;

    margin:auto;
}

.timeline-wrapper::before{

    content:"";

    position:absolute;

    left:25px;

    top:0;
    bottom:0;

    width:2px;

    background:
    linear-gradient(
    var(--yellow),
    transparent);
}

.timeline-item{

    position:relative;

    padding:35px 35px 35px 80px;

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

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

    border-radius:24px;

    backdrop-filter:blur(15px);

    transition:var(--transition);
}

.timeline-item::before{

    content:"";

    position:absolute;

    left:15px;
    top:50%;

    width:20px;
    height:20px;

    border-radius:50%;

    background:var(--yellow);

    transform:translateY(-50%);

    box-shadow:
    0 0 20px var(--yellow);
}

.timeline-item:hover{

    transform:
    translateX(10px);

    border-color:
    rgba(255,212,0,.25);
}

/* ===================================
   TESTIMONIALS
=================================== */

.testimonial-slider{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(350px,1fr));

    gap:30px;
}

.testimonial{

    padding:40px;

    border-radius:28px;
}

.testimonial p{

    font-size:1.15rem;

    line-height:1.8;

    color:#d5d5d5;

    margin-bottom:25px;
}

.testimonial h4{

    color:var(--yellow);
}

/* ===================================
   CTA
=================================== */

.cta{
    padding-bottom:150px;
}

.cta-box{

    text-align:center;

    padding:90px 40px;

    border-radius:40px;

    position:relative;

    overflow:hidden;
}

.cta-box::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(255,212,0,.18),
    transparent);

    top:-250px;
    left:50%;

    transform:
    translateX(-50%);
}

.cta-box h2{

    font-size:4rem;

    margin-bottom:20px;
}

.cta-box p{

    color:#bdbdbd;

    margin-bottom:40px;

    font-size:1.1rem;
}

/* ===================================
   FOOTER
=================================== */

.footer{

    border-top:
    1px solid rgba(255,255,255,.06);

    padding:50px 0;

    background:
    rgba(255,255,255,.02);
}

.footer .container{

    display:flex;

    justify-content:space-between;

    align-items:center;
}

.footer-logo{

    font-size:2rem;

    font-weight:900;

    color:var(--yellow);
}

.footer p{

    color:#888;
}

/* ===================================
   CURSOR GLOW
=================================== */

.cursor-glow{

    position:fixed;

    width:300px;
    height:300px;

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(255,212,0,.15),
    transparent);

    pointer-events:none;

    transform:
    translate(-50%,-50%);

    z-index:9999;
}

/* ===================================
   BURGER
=================================== */

.burger{

    display:none;

    width:40px;
    height:40px;

    position:relative;
}

.burger span{

    position:absolute;

    width:100%;
    height:2px;

    background:white;

    left:0;
}

.burger span:first-child{
    top:14px;
}

.burger span:last-child{
    bottom:14px;
}

/* ===================================
   PARTICLES
=================================== */

#particles{

    position:absolute;

    inset:0;

    overflow:hidden;

    pointer-events:none;
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:1200px){

    .hero-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-visual{
        height:500px;
    }

    .stats{
        grid-template-columns:1fr;
    }
}

@media(max-width:992px){

    .nav{
        display:none;
    }

    .btn-nav{
        display:none;
    }

    .burger{
        display:block;
    }

    .cases-grid{
        grid-template-columns:1fr;
    }

    .case-card{
        min-height:400px;
    }
}

@media(max-width:768px){

    section{
        padding:90px 0;
    }

    .hero h1{
        font-size:3rem;
    }

    .hero p{
        font-size:1rem;
    }

    .cta-box h2{
        font-size:2.5rem;
    }

    .section-header h2{
        font-size:2.5rem;
    }

    .timeline-item{
        padding:25px 25px 25px 70px;
    }

    .footer .container{
        flex-direction:column;
        gap:20px;
    }
}

@media(max-width:576px){

    .hero-buttons{
        flex-direction:column;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        text-align:center;
    }

    .service-card{
        padding:30px;
    }

    .stat h3{
        font-size:3rem;
    }

    .case-card{
        min-height:300px;
    }
}

.nav.active{

    position:fixed;

    top:85px;
    left:0;

    width:100%;

    display:flex;
    flex-direction:column;

    gap:25px;

    padding:40px;

    background:
    rgba(0,0,0,.95);

    backdrop-filter:blur(30px);

    z-index:999;
}