*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#050816;
    color:#ffffff;
    overflow-x:hidden;
}

/* =========================
   CONTAINER
========================= */

.container{
    width:100%;
    max-width:1440px;
    margin:auto;
    padding:0 72px;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;

    backdrop-filter:blur(18px);

    background:rgba(5,8,22,.72);

    border-bottom:1px solid rgba(255,255,255,.05);
}

.nav-container{
    height:92px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo img{
    width:180px;
    height:auto;
    object-fit:contain;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:44px;
}

.nav-links a{
    text-decoration:none;
    color:#cbd5e1;

    font-size:15px;
    font-weight:500;

    transition:.3s ease;
}

.nav-links a:hover{
    color:#ffffff;
}

.btn-nav{
    text-decoration:none;
    color:#ffffff;

    background:
    linear-gradient(
        135deg,
        #7c3aed,
        #2563eb
    );

    padding:15px 28px;

    border-radius:18px;

    font-size:14px;
    font-weight:600;

    transition:.3s ease;
}

.btn-nav:hover{
    transform:translateY(-3px);

    box-shadow:
    0 15px 35px rgba(124,58,237,.25);
}

/* =========================
   HERO
========================= */

.hero{
    min-height:auto;

    position:relative;

    overflow:hidden;

    padding-top:115px;
    padding-bottom:30px;

    background:
    radial-gradient(
        circle at top left,
        rgba(124,58,237,.25),
        transparent 35%
    ),
    #050816;
}

.hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to bottom,
        rgba(5,8,22,.04),
        rgba(5,8,22,.96)
    );
}

.hero-grid{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:40px;
}

.hero-content{
    max-width:760px;

    margin-top:0;
}

.hero-badge{
    display:inline-flex;
    align-items:center;

    padding:12px 22px;

    border-radius:999px;

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.08);

    color:#d4d4d8;

    font-size:14px;

    margin-bottom:34px;
}

.hero h1{
    font-size:60px;
    line-height:.96;

    letter-spacing:-4px;

    font-weight:800;

    margin-bottom:24px;

    max-width:760px;
}

.hero p{
    max-width:680px;

    font-size:18px;
    line-height:1.8;

    color:#94a3b8;

    margin-bottom:34px;
}

.hero-buttons{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

/* =========================
   VISUAL
========================= */

.hero-visual{
    position:relative;

    height:680px;

    margin-top:-40px;
}

/* NETWORK */

.network-bg{
    position:absolute;
    inset:0;

    background-image:
    radial-gradient(
        rgba(99,102,241,.5) 1px,
        transparent 1px
    );

    background-size:40px 40px;

    opacity:.15;

    mask-image:
    radial-gradient(circle, black 35%, transparent 80%);
}

/* BARS */

.chart-bars{
    position:absolute;

    bottom:70px;
    right:40px;

    display:flex;
    align-items:flex-end;

    gap:18px;
}

.bar{
    width:72px;

    border-radius:20px 20px 0 0;

    background:
    linear-gradient(
        to top,
        rgba(124,58,237,.15),
        rgba(59,130,246,.75)
    );

    border:
    1px solid rgba(255,255,255,.08);

    animation:floatBars 4s ease-in-out infinite;
}

.bar-1{height:120px;}
.bar-2{height:180px;}
.bar-3{height:260px;}
.bar-4{height:340px;}
.bar-5{height:460px;}

@keyframes floatBars{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0);
    }

}

/* GROWTH LINE */

.growth-line{
    position:absolute;

    width:540px;
    height:540px;

    border-top:
    4px solid #7c3aed;

    border-right:
    4px solid #3b82f6;

    border-radius:50%;

    transform:
    rotate(25deg);

    right:0;
    bottom:60px;

    filter:
    drop-shadow(0 0 25px rgba(124,58,237,.7));
}

/* FLOATING CARDS */

.floating-card{
    position:absolute;

    background:
    rgba(10,15,35,.75);

    border:
    1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(14px);

    border-radius:24px;

    padding:22px 26px;

    min-width:220px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.25);

    animation:floating 5s ease-in-out infinite;
}

@keyframes floating{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-14px);
    }

    100%{
        transform:translateY(0);
    }

}

.floating-card span{
    color:#a5b4fc;

    font-size:14px;
}

.floating-card h3{
    font-size:42px;

    margin:10px 0;
}

.floating-card p{
    color:#94a3b8;

    font-size:14px;
}

.card-1{
    left:0;
    top:280px;
}

.card-2{
    top:90px;
    right:80px;
}

.card-3{
    bottom:90px;
    right:0;
}

/* =========================
   BUTTONS
========================= */

.btn-primary{
    text-decoration:none;
    color:#ffffff;

    background:
    linear-gradient(
        135deg,
        #7c3aed,
        #2563eb
    );

    padding:18px 34px;

    border-radius:18px;

    font-weight:600;

    transition:.3s ease;
}

.btn-primary:hover{
    transform:translateY(-4px);
}

.btn-secondary{
    text-decoration:none;
    color:#ffffff;

    border:
    1px solid rgba(255,255,255,.10);

    background:
    rgba(255,255,255,.03);

    padding:18px 34px;

    border-radius:18px;

    font-weight:500;

    transition:.3s ease;
}

.btn-secondary:hover{
    background:
    rgba(255,255,255,.06);
}

/* =========================
   GENERAL SECTION
========================= */

section{
    padding:110px 0;
}

.section-title{
    margin-bottom:60px;
}

.section-title span{
    color:#7c3aed;

    text-transform:uppercase;

    letter-spacing:3px;

    font-size:14px;
    font-weight:700;
}

.section-title h2{
    margin-top:24px;

    font-size:64px;
    line-height:1.02;

    letter-spacing:-4px;

    max-width:880px;
}

/* =========================
   SERVICES
========================= */

.services-grid{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:30px;
}

.service-card{
    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,255,255,.06);

    border-radius:34px;

    padding:46px;

    transition:.4s ease;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-number{
    color:#7c3aed;

    margin-bottom:24px;
}

.service-card h3{
    font-size:32px;

    margin-bottom:20px;
}

.service-card p{
    color:#94a3b8;

    line-height:1.9;
}

/* =========================
   AI SECTION
========================= */

.ai-container{
    display:grid;
    grid-template-columns:1fr 1fr;

    gap:100px;
}

.ai-left span{
    color:#7c3aed;

    letter-spacing:3px;

    text-transform:uppercase;

    font-size:14px;
}

.ai-left h2{
    margin-top:24px;

    font-size:72px;

    line-height:.96;

    letter-spacing:-5px;
}

.ai-right p{
    color:#94a3b8;

    font-size:22px;

    line-height:1.9;
}

/* =========================
   STATS
========================= */

.stats-grid{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(240px,1fr));

    gap:28px;
}

.stat-card{
    padding:60px 36px;

    border-radius:30px;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.04),
        rgba(255,255,255,.02)
    );

    border:
    1px solid rgba(255,255,255,.06);

    text-align:center;
}

.stat-card h3{
    font-size:68px;

    margin-bottom:14px;

    background:
    linear-gradient(
        135deg,
        #7c3aed,
        #2563eb
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.stat-card p{
    color:#94a3b8;
}

/* =========================
   CTA
========================= */

.cta-box{
    text-align:center;

    padding:110px 70px;

    border-radius:44px;

    background:
    linear-gradient(
        135deg,
        rgba(124,58,237,.16),
        rgba(37,99,235,.12)
    );

    border:
    1px solid rgba(255,255,255,.08);
}

.cta-box span{
    color:#7c3aed;

    text-transform:uppercase;

    letter-spacing:3px;

    font-size:14px;
}

.cta-box h2{
    margin:34px auto 48px auto;

    max-width:900px;

    font-size:68px;
    line-height:1.02;

    letter-spacing:-4px;
}

/* =========================
   FOOTER
========================= */

.footer{
    padding:60px 0;

    border-top:
    1px solid rgba(255,255,255,.06);
}

.footer-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.footer-logo img{
    width:180px;
}

.footer-copy{
    color:#64748b;

    font-size:14px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

    .container{
        padding:0 34px;
    }

    .hero{
        padding-top:110px;
    }

    .hero-grid{
        grid-template-columns:1fr;

        gap:20px;
    }

    .hero-content{
        max-width:100%;
    }

    .hero h1{
        font-size:56px;
    }

    .hero-visual{
        height:480px;

        margin-top:-20px;
    }

    .growth-line{
        width:360px;
        height:360px;

        right:50%;

        transform:
        translateX(50%)
        rotate(25deg);
    }

    .chart-bars{
        right:50%;

        transform:
        translateX(50%);
    }

    .bar{
        width:54px;
    }

    .bar-1{height:80px;}
    .bar-2{height:120px;}
    .bar-3{height:180px;}
    .bar-4{height:240px;}
    .bar-5{height:300px;}

    .floating-card{
        min-width:180px;

        padding:18px 20px;
    }

    .floating-card h3{
        font-size:34px;
    }

    .card-1{
        left:40px;
        top:150px;
    }

    .card-2{
        top:0;
        right:80px;
    }

    .card-3{
        right:40px;
        bottom:10px;
    }

}

@media(max-width:768px){

    .container{
        padding:0 22px;
    }

    .nav-container{
        height:74px;
    }

    .logo img{
        width:120px;
    }

    .nav-links{
        display:none;
    }

    .btn-nav{
        padding:12px 18px;

        font-size:12px;

        border-radius:14px;
    }

    .hero{
        padding-top:95px;
        padding-bottom:10px;
    }

    .hero-grid{
        gap:0;
    }

    .hero-badge{
        font-size:11px;

        padding:10px 15px;

        margin-bottom:24px;
    }

    .hero h1{
        font-size:42px;

        line-height:.98;

        letter-spacing:-3px;

        margin-bottom:20px;
    }

    .hero p{
        font-size:16px;

        line-height:1.7;

        margin-bottom:26px;
    }

    .hero-buttons{
        flex-direction:column;

        width:100%;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;

        text-align:center;
    }

    .hero-visual{
        height:320px;

        margin-top:0;
    }

    .growth-line{
        width:240px;
        height:240px;

        bottom:10px;
    }

    .chart-bars{
        gap:8px;

        bottom:0;
    }

    .bar{
        width:34px;
    }

    .bar-1{height:50px;}
    .bar-2{height:80px;}
    .bar-3{height:120px;}
    .bar-4{height:160px;}
    .bar-5{height:210px;}

    .floating-card{
        min-width:130px;

        padding:12px 14px;

        border-radius:18px;
    }

    .floating-card span{
        font-size:10px;
    }

    .floating-card h3{
        font-size:24px;
    }

    .floating-card p{
        font-size:10px;
    }

    .card-1{
        left:0;
        top:100px;
    }

    .card-2{
        top:0;
        right:0;
    }

    .card-3{
        right:0;
        bottom:0;
    }

    section{
        padding:80px 0;
    }

    .section-title h2,
    .ai-left h2,
    .cta-box h2{
        font-size:38px;

        letter-spacing:-2px;
    }

    .services-grid{
        gap:18px;
    }

    .service-card{
        padding:28px;
    }

    .service-card h3{
        font-size:24px;
    }

    .service-card p{
        font-size:15px;
    }

    .ai-container{
        grid-template-columns:1fr;

        gap:40px;
    }

    .ai-right p{
        font-size:16px;
    }

    .stats-grid{
        gap:16px;
    }

    .stat-card{
        padding:36px 20px;
    }

    .stat-card h3{
        font-size:42px;
    }

    .cta-box{
        padding:60px 24px;

        border-radius:28px;
    }

    .footer-container{
        flex-direction:column;

        gap:20px;

        text-align:center;
    }

}