/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

:root{
    --bg:#050505;
    --card:#0d0d0d;
    --card2:#111111;
    --text:#ffffff;
    --muted:#b5b5b5;
    --accent:#7CFF3B;
    --border:rgba(255,255,255,.08);
}

body{
    background:var(--bg);
    color:var(--text);
    font-family:'Inter',sans-serif;
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

.container{
    width:min(1200px,92%);
    margin:auto;
}

/* =========================
   GLOW
========================= */

.cursor-glow{
    position:fixed;
    width:350px;
    height:350px;
    border-radius:50%;
    background:radial-gradient(circle,
    rgba(124,255,59,.12),
    transparent 70%);
    pointer-events:none;
    transform:translate(-50%,-50%);
    z-index:1;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;

    background:rgba(0,0,0,.65);
    backdrop-filter:blur(20px);

    border-bottom:1px solid var(--border);
}

.nav-container{
    height:84px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo img{
    height:64px;
    width:auto;
}

.nav-links{
    display:flex;
    gap:34px;
}

.nav-links a{
    color:white;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{
    color:var(--accent);
}

.header-btn{
    background:var(--accent);
    color:black;

    padding:14px 22px;
    border-radius:14px;

    font-weight:700;
}

.mobile-toggle{
    display:none;
}

.mobile-menu{
    display:none;
}

/* =========================
   HERO
========================= */

.hero{
    min-height:100vh;

    position:relative;

    display:flex;
    align-items:center;
}

.hero-bg{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.92),
        rgba(0,0,0,.60)
    );
}

.hero-content{
    position:relative;
    z-index:2;

    max-width:760px;
}

.hero-tag{
    display:inline-flex;

    padding:12px 18px;

    border-radius:999px;

    border:1px solid rgba(124,255,59,.25);

    color:var(--accent);

    margin-bottom:24px;
}

.hero h1{
    font-family:'Space Grotesk',sans-serif;

    font-size:76px;
    line-height:.95;

    margin-bottom:24px;
}

.hero p{
    color:var(--muted);

    font-size:20px;
    line-height:1.8;

    margin-bottom:34px;
}

.hero-buttons{
    display:flex;
    gap:16px;
}

.btn-primary{
    background:var(--accent);

    color:black;

    padding:18px 28px;

    border-radius:14px;

    font-weight:700;
}

.btn-secondary{
    border:1px solid var(--border);

    padding:18px 28px;

    border-radius:14px;
}

/* =========================
   STATS
========================= */

.stats-section{
    padding:90px 0;
}

.stats-grid{
    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:22px;
}

.stat-card{
    background:var(--card);

    border:1px solid var(--border);

    border-radius:24px;

    text-align:center;

    padding:34px 20px;
}

.stat-card h2{
    font-size:42px;

    color:var(--accent);

    margin-bottom:8px;
}

.stat-card p{
    color:var(--muted);
}

/* =========================
   SECTIONS
========================= */

.section{
    padding:120px 0;
}

.section-heading{
    text-align:center;

    margin-bottom:70px;
}

.section-heading span{
    color:var(--accent);

    text-transform:uppercase;

    letter-spacing:2px;
}

.section-heading h2{
    margin-top:14px;

    font-size:54px;

    font-family:'Space Grotesk',sans-serif;
}

/* =========================
   SERVICES
========================= */

.services-grid{
    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;
}

.service-card{
    background:var(--card);

    border:1px solid var(--border);

    border-radius:28px;

    overflow:hidden;

    transition:.3s;
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-card img{
    height:240px;
    object-fit:cover;
}

.service-content{
    padding:28px;
}

.service-content h3{
    margin-bottom:14px;

    font-size:24px;

    font-family:'Space Grotesk',sans-serif;
}

.service-content p{
    color:var(--muted);

    line-height:1.8;
}

/* =========================
   PROCESS
========================= */

.process-section{
    background:#080808;
}

.process-grid{
    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:22px;
}

.process-card{
    background:var(--card);

    border:1px solid var(--border);

    border-radius:24px;

    overflow:hidden;
}

.process-card img{
    height:180px;
    object-fit:cover;
}

.process-card h3{
    padding:24px;

    text-align:center;
}

/* =========================
   PORTFOLIO
========================= */

.portfolio-grid{
    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:24px;
}

.video-card{
    border-radius:24px;

    overflow:hidden;

    border:1px solid var(--border);
}

.video-card video{
    width:100%;
    display:block;
}

/* =========================
   CONTACT
========================= */

.contact-section{
    padding:120px 0;
}

.contact-header{
    text-align:center;

    max-width:700px;

    margin:auto auto 50px;
}

.contact-header span{
    color:var(--accent);
}

.contact-header h2{
    font-size:58px;

    margin:16px 0;

    font-family:'Space Grotesk',sans-serif;
}

.contact-header p{
    color:var(--muted);

    line-height:1.8;
}

.calendly-wrapper{
    background:var(--card);

    border:1px solid var(--border);

    border-radius:28px;

    overflow:hidden;
}

/* =========================
   FOOTER
========================= */

footer{
    padding:70px 0;

    border-top:1px solid var(--border);

    text-align:center;
}

.footer-logo{
    width:180px;

    margin:auto auto 25px;
}

.social-links{
    display:flex;

    justify-content:center;

    gap:24px;

    flex-wrap:wrap;

    margin-bottom:24px;
}

.social-links a{
    color:var(--accent);
}

/* =========================
   TABLET
========================= */

@media(max-width:1024px){

.services-grid{
    grid-template-columns:1fr 1fr;
}

.portfolio-grid{
    grid-template-columns:1fr 1fr;
}

.process-grid{
    grid-template-columns:1fr 1fr;
}

.stats-grid{
    grid-template-columns:1fr 1fr;
}

.hero h1{
    font-size:56px;
}

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

.cursor-glow{
    display:none;
}

.nav-links{
    display:none;
}

.header-btn{
    display:none;
}

.mobile-toggle{
    display:block;

    background:none;
    border:none;

    color:white;

    font-size:30px;
}

.nav-container{
    height:72px;
}

.logo img{
    height:48px;
}

.hero{
    min-height:85vh;
}

.hero-content{
    text-align:center;

    padding-top:80px;
}

.hero-tag{
    font-size:13px;
}

.hero h1{
    font-size:38px;
    line-height:1.05;
}

.hero p{
    font-size:16px;
}

.hero-buttons{
    flex-direction:column;
}

.btn-primary,
.btn-secondary{
    width:100%;
    text-align:center;
}

.section{
    padding:80px 0;
}

.section-heading{
    margin-bottom:40px;
}

.section-heading h2{
    font-size:34px;
}

.stats-grid{
    grid-template-columns:1fr 1fr;
    gap:14px;
}

.stat-card{
    padding:22px 12px;
}

.stat-card h2{
    font-size:30px;
}

.services-grid{
    grid-template-columns:1fr;
}

.service-card img{
    height:190px;
}

.process-grid{
    grid-template-columns:1fr;
}

.process-card img{
    height:160px;
}

.portfolio-grid{
    grid-template-columns:1fr;
}

.video-card{
    border-radius:18px;
}

.contact-header h2{
    font-size:34px;
}

.calendly-inline-widget{
    height:850px !important;
}

footer{
    padding:50px 0;
}

}

/* REVEAL ANIMATION */

.hidden-element{
    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}

/* ACTIVE NAV LINK */

.active-link{
    color:#7CFF3B !important;
}

/* MOBILE MENU */

.mobile-menu.active{
    display:flex;
    flex-direction:column;
}

/* PAGE LOAD */

body{
    opacity:0;
    transition:opacity .5s ease;
}

body.loaded{
    opacity:1;
}