*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Inter,sans-serif;
    background:#f8fafc;
    color:#111827;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

a{
    text-decoration:none;
}

img{
    width:100%;
    display:block;
}

/* Navbar */

.navbar{
    background:#ffffff;
    position:sticky;
    top:0;
    z-index:1000;
    border-bottom:1px solid #e5e7eb;
}

.nav-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
}

.logo{
    font-size:24px;
    font-weight:800;
}

.logo span{
    color:#2563eb;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:24px;
}

.nav-links a{
    color:#475569;
    font-weight:600;
}

.nav-btn{
    background:#111827;
    color:#ffffff !important;
    padding:12px 20px;
    border-radius:50px;
}

.menu-btn{
    display:none;
}

/* Hero */

.hero{
    padding:100px 0;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.2fr 0.8fr;
    gap:60px;
    align-items:center;
}

.hero-tag{
    display:inline-block;
    background:#dbeafe;
    color:#1d4ed8;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:24px;
}

.hero h1{
    font-size:72px;
    line-height:1;
    margin-bottom:24px;
    letter-spacing:-3px;
}

.hero p{
    color:#64748b;
    font-size:20px;
    margin-bottom:32px;
}

.hero-buttons{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

.primary-btn{
    background:#2563eb;
    color:#ffffff;
    padding:15px 28px;
    border-radius:50px;
    font-weight:700;
}

.secondary-btn{
    border:1px solid #d1d5db;
    color:#111827;
    padding:15px 28px;
    border-radius:50px;
    font-weight:700;
}

/* Hero Image */

.hero-image-card{
    background:#ffffff;
    padding:24px;
    border-radius:30px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.hero-image-card img{
    border-radius:24px;
    margin-bottom:20px;
}

.mini-card{
    background:#f8fafc;
    padding:16px;
    border-radius:18px;
    margin-top:14px;
    border:1px solid #e5e7eb;
}

.mini-card h3{
    font-size:24px;
    margin-bottom:4px;
}

/* Sections */

section{
    padding:80px 0;
}

.section-header{
    margin-bottom:50px;
}

.section-header span{
    color:#2563eb;
    font-weight:700;
    text-transform:uppercase;
    font-size:14px;
}

.section-header h2{
    font-size:52px;
    line-height:1.1;
    margin-top:14px;
    margin-bottom:18px;
}

.section-header p{
    color:#64748b;
    max-width:700px;
}

/* Metrics */

.metrics-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.metric-card{
    background:#ffffff;
    padding:30px;
    border-radius:24px;
    border:1px solid #e5e7eb;
}

.metric-card h2{
    font-size:42px;
    margin-bottom:10px;
}

/* Business */

.business-grid,
.build-grid,
.experience-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.business-card,
.build-card,
.experience-card{
    background:#ffffff;
    padding:28px;
    border-radius:24px;
    border:1px solid #e5e7eb;
}

.business-card h3,
.build-card h3,
.experience-card h3{
    margin-bottom:14px;
}

/* Scratch */

.scratch-section{
    background:#111827;
    color:#ffffff;
}

.scratch-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.scratch-left span{
    color:#93c5fd;
    font-weight:700;
    text-transform:uppercase;
}

.scratch-left h2{
    font-size:52px;
    line-height:1.1;
    margin:18px 0;
}

.scratch-left p{
    color:#cbd5e1;
}

.scratch-right{
    display:grid;
    gap:16px;
}

.scratch-card{
    background:rgba(255,255,255,0.08);
    padding:20px;
    border-radius:20px;
}

/* CTA */

.cta-box{
    background:#ffffff;
    padding:60px;
    border-radius:32px;
    text-align:center;
    border:1px solid #e5e7eb;
}

.cta-box h2{
    font-size:52px;
    margin-bottom:18px;
}

.cta-box p{
    color:#64748b;
    margin-bottom:30px;
}

/* Footer */

.footer{
    border-top:1px solid #e5e7eb;
    padding:30px 0;
}

.footer-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer-links{
    display:flex;
    gap:20px;
}

/* Responsive */

@media(max-width:991px){

    .hero-grid,
    .scratch-grid,
    .business-grid,
    .build-grid,
    .experience-grid,
    .metrics-grid{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:52px;
    }

    .section-header h2,
    .scratch-left h2,
    .cta-box h2{
        font-size:40px;
    }

    .nav-links{
        display:none;
    }

    .menu-btn{
        display:block;
        background:none;
        border:none;
        font-size:16px;
        font-weight:700;
    }

    .footer-wrapper{
        flex-direction:column;
        gap:20px;
    }

}