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

:root{
    --bg:#030712;
    --surface:#0f172a;
    --card:#111827;
    --card-hover:#172033;

    --primary:#2563eb;
    --primary-hover:#1d4ed8;

    --accent:#38bdf8;

    --text:#f8fafc;
    --muted:#94a3b8;

    --border:rgba(255,255,255,.08);

    --success:#10b981;
    --warning:#f59e0b;
    --danger:#ef4444;
}

html{
    scroll-behavior:smooth;
}

body{
    background:var(--bg);
    color:var(--text);
    font-family:'Inter',sans-serif;
    line-height:1.7;
}

/*
|--------------------------------------------------------------------------
| Layout
|--------------------------------------------------------------------------
*/

.container{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:0 24px;
}

/*
|--------------------------------------------------------------------------
| Header
|--------------------------------------------------------------------------
*/

header{
    position:sticky;
    top:0;
    z-index:999;
    background:rgba(15,23,42,.95);
    backdrop-filter:blur(20px);
    border-bottom:1px solid var(--border);
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:85px;
}

.logo{
    font-size:24px;
    font-weight:800;
    color:#fff;
    text-decoration:none;
}

nav{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
}

nav a{
    color:#cbd5e1;
    text-decoration:none;
    margin-left:24px;
    font-size:15px;
    font-weight:500;
    transition:.25s;
}

nav a:hover{
    color:#fff;
}

.nav-btn{
    background:var(--primary);
    color:#fff !important;
    padding:12px 20px;
    border-radius:10px;
    font-weight:600;
}

.nav-btn:hover{
    background:var(--primary-hover);
}

/*
|--------------------------------------------------------------------------
| Hero
|--------------------------------------------------------------------------
*/

.hero-section{
    text-align:center;
    max-width:1400px;
    margin:auto;
    padding:140px 30px 100px;
}

.hero-badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(37,99,235,.15);
    color:#60a5fa;
    font-weight:600;
    margin-bottom:25px;
}

.hero-section h1{
    font-size:76px;
    font-weight:800;
    line-height:1.05;
    max-width:1100px;
    margin:0 auto 25px;
}

.hero-section p{
    max-width:850px;
    margin:0 auto 40px;
    color:var(--muted);
    font-size:20px;
}

.hero-actions{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

/*
|--------------------------------------------------------------------------
| Buttons
|--------------------------------------------------------------------------
*/

.button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    padding:16px 30px;
    border-radius:14px;
    font-weight:700;
    transition:.25s;
}

.button.primary{
    background:var(--primary);
    color:#fff;
}

.button.primary:hover{
    background:var(--primary-hover);
    transform:translateY(-2px);
}

.button.secondary{
    border:1px solid var(--border);
    color:#fff;
}

.button.secondary:hover{
    background:rgba(255,255,255,.05);
}

/*
|--------------------------------------------------------------------------
| Statistics
|--------------------------------------------------------------------------
*/

.stats-section{
    max-width:1400px;
    margin:0 auto 100px;
    padding:0 30px;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.stat-card{
    background:var(--card);
    border:1px solid var(--border);
    border-radius:20px;
    padding:32px;
    text-align:center;
}

.stat-card h3{
    font-size:42px;
    color:var(--accent);
    margin-bottom:10px;
}

.stat-card p{
    color:var(--muted);
}

/*
|--------------------------------------------------------------------------
| Sections
|--------------------------------------------------------------------------
*/

.service-categories,
.why-section,
.packages-section,
.infrastructure-section,
.cta-section{
    max-width:1400px;
    margin:0 auto 100px;
    padding:0 30px;
}

.service-categories h2,
.why-section h2,
.packages-section h2,
.infrastructure-section h2,
.cta-section h2{
    text-align:center;
    font-size:48px;
    margin-bottom:45px;
}

.section-header{
    text-align:center;
    margin-bottom:50px;
}

.section-header p{
    color:var(--muted);
}

/*
|--------------------------------------------------------------------------
| Categories
|--------------------------------------------------------------------------
*/

.category-grid{
    display:grid;
    grid-template-columns:
        repeat(auto-fit,minmax(280px,1fr));
    gap:24px;
}

.category-card{
    background:var(--card);
    border:1px solid var(--border);
    border-radius:20px;
    padding:32px;
    transition:.25s;
}

.category-card:hover{
    background:var(--card-hover);
    transform:translateY(-5px);
    border-color:var(--primary);
}

.category-card h3{
    margin-bottom:15px;
    font-size:24px;
}

.category-card p{
    color:var(--muted);
}

/*
|--------------------------------------------------------------------------
| Features
|--------------------------------------------------------------------------
*/

.features-grid{
    display:grid;
    grid-template-columns:
        repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.feature-card{
    background:var(--card);
    border:1px solid var(--border);
    border-radius:18px;
    padding:24px;
    text-align:center;
    font-weight:600;
}

/*
|--------------------------------------------------------------------------
| Packages
|--------------------------------------------------------------------------
*/

.packages{
    display:grid;
    grid-template-columns:
        repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.card{
    background:var(--card);
    border:1px solid var(--border);
    border-radius:22px;
    padding:35px;
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
    border-color:var(--primary);
    box-shadow:
        0 20px 50px rgba(37,99,235,.18);
}

.card h3{
    font-size:28px;
    margin-bottom:15px;
}

.price{
    font-size:48px;
    font-weight:800;
    color:#fff;
    margin:20px 0;
}

.card p{
    color:#cbd5e1;
    margin-bottom:25px;
}

/*
|--------------------------------------------------------------------------
| Runtime Infrastructure
|--------------------------------------------------------------------------
*/

.runtime-grid{
    display:grid;
    grid-template-columns:
        repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.runtime-card{
    background:var(--card);
    border:1px solid var(--border);
    border-radius:18px;
    padding:30px;
    text-align:center;
    font-weight:700;
    color:var(--accent);
}

/*
|--------------------------------------------------------------------------
| CTA
|--------------------------------------------------------------------------
*/

.cta-section{
    text-align:center;
    padding-bottom:100px;
}

.cta-section p{
    color:var(--muted);
    margin-bottom:30px;
    font-size:18px;
}

/*
|--------------------------------------------------------------------------
| Footer
|--------------------------------------------------------------------------
*/

footer{
    margin-top:80px;
    border-top:1px solid var(--border);
    padding:40px;
    text-align:center;
    color:var(--muted);
    background:#08101e;
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/

@media(max-width:1200px){

    .hero-section h1{
        font-size:62px;
    }
}

@media(max-width:992px){

    .stats-section{
        grid-template-columns:repeat(2,1fr);
    }

    .hero-section h1{
        font-size:52px;
    }

    .navbar{
        flex-direction:column;
        gap:20px;
        padding:20px 0;
    }

    nav{
        justify-content:center;
    }

    nav a{
        margin:8px 12px;
    }
}

@media(max-width:768px){

    .hero-section{
        padding:90px 20px 70px;
    }

    .hero-section h1{
        font-size:38px;
    }

    .hero-section p{
        font-size:16px;
    }

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

    .service-categories h2,
    .why-section h2,
    .packages-section h2,
    .infrastructure-section h2,
    .cta-section h2{
        font-size:32px;
    }

    .packages,
    .category-grid,
    .features-grid,
    .runtime-grid{
        grid-template-columns:1fr;
    }
}

