/* ==================================================
   PACK NETWORKS - PREMIUM CONSULTING DESIGN SYSTEM
   ================================================== */

:root{

    --primary:#0F172A;
    --secondary:#1E293B;
    --accent:#2563EB;

    --bg:#F8FAFC;
    --surface:#FFFFFF;

    --text:#1E293B;
    --muted:#64748B;

    --border:#E2E8F0;

    --radius:24px;

    --shadow:
    0 10px 40px rgba(15,23,42,.06);

}

/* ==================================================
   RESET
   ================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:
    Inter,
    Segoe UI,
    sans-serif;

    background:var(--bg);

    color:var(--text);

    line-height:1.8;

    font-size:18px;

    overflow-x:hidden;
}

/* ==================================================
   LINKS
   ================================================== */

a{
    color:var(--accent);
    text-decoration:none;
    transition:.3s;
}

a:hover{
    opacity:.85;
}

/* ==================================================
   HEADER
   ================================================== */

header{

    position:sticky;

    top:0;

    z-index:999;

    background:
    rgba(255,255,255,.92);

    backdrop-filter:blur(14px);

    border-bottom:
    1px solid var(--border);

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 6%;
}

.logo{

    font-size:1.4rem;

    font-weight:700;

    color:var(--primary);

    letter-spacing:.5px;
}

nav{

    display:flex;

    gap:24px;

    flex-wrap:wrap;
}

nav a{

    color:var(--secondary);

    font-size:.95rem;

    font-weight:500;
}

nav a:hover{

    color:var(--accent);
}

/* ==================================================
   HERO
   ================================================== */

.hero{

    min-height:70vh;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:120px 20px;

    background:

    radial-gradient(
    circle at top right,
    rgba(37,99,235,.18),
    transparent 35%),

    radial-gradient(
    circle at bottom left,
    rgba(37,99,235,.10),
    transparent 30%),

    #0F172A;

    color:white;
}

.hero h1{

    max-width:1000px;

    font-size:
    clamp(42px,6vw,72px);

    line-height:1.05;

    margin-bottom:25px;

    color:white;
}

.hero p{

    max-width:850px;

    font-size:1.25rem;

    color:#CBD5E1;
}

.hero-badge{

    display:inline-block;

    margin-bottom:20px;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.20);

    color:#CBD5E1;

    font-size:.85rem;

    font-weight:600;

    letter-spacing:.5px;

    text-transform:uppercase;
}

/* ==================================================
   CONTENT SECTIONS
   ================================================== */

section{

    max-width:1200px;

    margin:50px auto;

    padding:70px;

    background:var(--surface);

    border-radius:var(--radius);

    border:1px solid var(--border);

    box-shadow:var(--shadow);
}

/* ==================================================
   TYPOGRAPHY
   ================================================== */

h1,h2,h3{

    color:var(--primary);

    font-weight:700;

    line-height:1.2;
}

h2{

    font-size:
    clamp(30px,4vw,44px);

    margin-bottom:25px;
}

h3{

    font-size:24px;

    margin-bottom:15px;
}

p{

    margin-bottom:20px;

    color:#334155;
}

ul{

    margin-left:25px;

    margin-bottom:25px;
}

li{

    margin-bottom:12px;
}

/* ==================================================
   ARTICLE GRID
   ================================================== */

.article-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

    margin-top:40px;
}

.article-card{

    background:white;

    border:1px solid var(--border);

    border-radius:20px;

    padding:30px;

    transition:.3s;

    box-shadow:
    0 4px 20px rgba(0,0,0,.04);
}

.article-card:hover{

    transform:
    translateY(-6px);

    box-shadow:
    0 20px 40px rgba(15,23,42,.10);
}

.article-card h3{

    font-size:22px;
}

.article-card p{

    margin-top:10px;
}

/* ==================================================
   CTA SECTION
   ================================================== */

.cta-box{

    text-align:center;

    background:

    linear-gradient(
    135deg,
    #0F172A,
    #1E293B);

    color:white;

    padding:80px 40px;

    border-radius:30px;
}

.cta-box h2{

    color:white;
}

.cta-box p{

    color:#CBD5E1;
}

.cta-button{

    display:inline-block;

    margin-top:25px;

    background:var(--accent);

    color:white;

    padding:16px 34px;

    border-radius:999px;

    font-weight:600;

    transition:.3s;
}

.cta-button:hover{

    transform:translateY(-2px);

    background:#1D4ED8;
}

/* ==================================================
   FEATURE BOXES
   ================================================== */

.feature-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:25px;

    margin-top:40px;
}

.feature-card{

    background:#F8FAFC;

    border:1px solid var(--border);

    border-radius:20px;

    padding:30px;
}

.feature-card h3{

    font-size:20px;
}

/* ==================================================
   STATS
   ================================================== */

.stats-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:25px;

    margin-top:40px;
}

.stats-grid div{

    background:#F8FAFC;

    border:1px solid var(--border);

    border-radius:20px;

    text-align:center;

    padding:35px;
}

.stats-grid h3{

    font-size:42px;

    color:var(--accent);

    margin-bottom:10px;
}

/* ==================================================
   TABLES
   ================================================== */

table{

    width:100%;

    border-collapse:collapse;

    margin-top:30px;
}

th{

    background:#0F172A;

    color:white;

    padding:16px;
}

td{

    padding:16px;

    border:1px solid var(--border);
}

/* ==================================================
   FOOTER
   ================================================== */

footer{

    background:#0F172A;

    color:#CBD5E1;

    text-align:center;

    padding:50px 20px;

    margin-top:80px;
}

footer p{

    color:#CBD5E1;

    margin-bottom:10px;
}

footer a{

    color:#60A5FA;
}

/* ==================================================
   MOBILE
   ================================================== */

@media(max-width:768px){

    header{

        flex-direction:column;

        align-items:flex-start;
    }

    nav{

        margin-top:15px;

        gap:12px;
    }

    section{

        padding:40px 25px;

        margin:25px 15px;
    }

    .hero{

        min-height:60vh;

        padding:100px 25px;
    }

    .hero h1{

        font-size:42px;
    }

    body{

        font-size:16px;
    }
}