body{
    font-family: Arial, sans-serif;
    background:#ffd21f;
    color:#1a1a1a;
    overflow-x:hidden;
}

.section-space{
    padding:100px 0;
}

img{
    width:100%;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

nav{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(255,210,31,0.92);
    backdrop-filter:blur(10px);
    padding:20px 0;
    border-bottom:1px solid rgba(0,0,0,0.08);
}

.nav-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.brand{
    font-size:30px;
    font-weight:800;
    letter-spacing:2px;
}

nav ul{
    display:flex;
    gap:25px;
    list-style:none;
    margin:0;
    padding:0;
}

nav li{
    list-style:none;
}

nav a{
    text-decoration:none;
    color:#111;
    font-weight:700;
    transition:0.3s;
}

nav a:hover{
    opacity:0.6;
}

.hero{
    padding:90px 0 120px;
}

.hero-tag{
    display:inline-block;
    background:#111;
    color:#fff;
    padding:10px 18px;
    border-radius:50px;
    margin-bottom:20px;
    font-size:14px;
    letter-spacing:1px;
}

.hero h1{
    font-size:72px;
    line-height:1.05;
    font-weight:900;
    margin-bottom:25px;
}

.hero p{
    font-size:20px;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.hero-stats{
    display:flex;
    gap:40px;
    margin-top:50px;
}

.hero-stats strong{
    display:block;
    font-size:34px;
}

.hero-stats span{
    font-size:14px;
    text-transform:uppercase;
}

.intro-strip{
    background:#111;
    color:#fff;
    padding:35px 0;
    text-align:center;
    font-size:22px;
    font-weight:600;
}

.section-title span{
    text-transform:uppercase;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.section-title h2{
    font-size:52px;
    font-weight:900;
    margin-top:10px;
    margin-bottom:25px;
}

.section-title.center{
    text-align:center;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:35px;
}

.feature-card{
    background:#fff3b0;
    border-radius:24px;
    padding:30px;
}

.alt-bg{
    background:#ffe560;
}

.solution-card{
    background:#fff7cf;
    padding:25px;
    border-radius:28px;
    height:100%;
    transition:0.35s;
}

.solution-card:hover{
    transform:translateY(-10px);
}

.solution-card h3{
    margin-top:25px;
    margin-bottom:15px;
    font-size:28px;
    font-weight:800;
}

.solution-card p{
    line-height:1.8;
}

.industries-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:50px;
}

.industry-box{
    background:#fff3b0;
    padding:35px;
    border-radius:26px;
}

.banner-section{
    padding:60px 0;
}

.banner-box{
    background:#111;
    color:#fff;
    border-radius:35px;
    padding:60px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

.banner-box h2{
    font-size:48px;
    font-weight:900;
}

.insight-card{
    background:#fff7cf;
    padding:35px;
    border-radius:26px;
    height:100%;
}

.insight-card h3{
    font-size:30px;
    font-weight:800;
    margin-bottom:15px;
}

footer{
    background:#111;
    color:#fff;
    padding:80px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:40px;
}

footer ul{
    list-style:none;
    padding:0;
}

footer li{
    margin-bottom:12px;
}

footer a{
    color:#fff;
    text-decoration:none;
}

.copyright{
    margin-top:50px;
    border-top:1px solid rgba(255,255,255,0.15);
    padding-top:25px;
    text-align:center;
}

.fade-up{
    opacity:0;
    transform:translateY(30px);
}

.fade-up.visible{
    opacity:1;
    transform:translateY(0);
    transition:0.8s ease;
}

@media(max-width:992px){

    .hero h1{
        font-size:48px;
    }

    .section-title h2{
        font-size:40px;
    }

    .industries-grid,
    .feature-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .banner-box{
        flex-direction:column;
        text-align:center;
    }

    .hero-stats{
        flex-wrap:wrap;
    }

    nav ul{
        gap:14px;
        flex-wrap:wrap;
        justify-content:flex-end;
    }
}

@media(max-width:576px){

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

    .section-title h2{
        font-size:32px;
    }

    .brand{
        font-size:22px;
    }

    .nav-wrap{
        flex-direction:column;
        gap:15px;
    }
}
