@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Inter',sans-serif;

    background:#f8fafc;

    color:#1e293b;

    line-height:1.7;

}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.container{

    width:100%;
    max-width:1200px;

    margin:auto;

    padding:0 20px;

}

/* HEADER */

.header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    background:#ffffff;

    border-bottom:1px solid #e2e8f0;

    z-index:999;

}

.navbar{

    height:80px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.logo img{

    height:50px;

}

.nav-links{

    display:flex;

    gap:35px;

}

.nav-links a{

    color:#1e293b;

    font-weight:600;

}

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    background:#ff7a30;

    color:#fff;

    padding:14px 28px;

    border-radius:12px;

    font-weight:600;

}

.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    border:1px solid #e2e8f0;

    color:#1e293b;

    padding:14px 28px;

    border-radius:12px;

    font-weight:600;

}

/* HERO */

.hero{

    padding-top:170px;

    padding-bottom:100px;

}

.hero-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.hero-badge{

    display:inline-block;

    background:#fff1e8;

    color:#ff7a30;

    padding:12px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    margin-bottom:25px;

}

.hero-content h1{

    font-size:60px;

    line-height:1.1;

    margin-bottom:25px;

    font-weight:800;

}

.hero-content p{

    color:#64748b;

    font-size:18px;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    margin-bottom:40px;

}

.hero-features{

    display:flex;

    gap:20px;

}

.feature-box{

    background:#fff;

    padding:24px;

    border-radius:18px;

    box-shadow:0 10px 30px rgba(15,23,42,0.05);

}

.feature-box strong{

    display:block;

    font-size:28px;

    color:#ff7a30;

}

.feature-box span{

    color:#64748b;

    font-size:14px;

}

.hero-image img{

    border-radius:24px;

    box-shadow:0 20px 40px rgba(15,23,42,0.08);

}

/* SERVICES */

.services{

    padding:100px 0;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:#ff7a30;

    font-size:14px;

    font-weight:700;

}

.section-title h2{

    font-size:42px;

    margin-top:18px;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.service-card{

    background:#fff;

    padding:35px;

    border-radius:24px;

    box-shadow:0 10px 30px rgba(15,23,42,0.05);

}

.service-icon{

    width:70px;

    height:70px;

    background:#fff1e8;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    margin-bottom:25px;

}

.service-card h3{

    margin-bottom:18px;

    font-size:24px;

}

.service-card p{

    color:#64748b;

}

/* ABOUT */

.about{

    padding:100px 0;

    background:#fff;

}

.about-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image img{

    border-radius:24px;

}

.about-content span{

    color:#ff7a30;

    font-size:14px;

    font-weight:700;

}

.about-content h2{

    font-size:46px;

    line-height:1.2;

    margin:20px 0;

}

.about-content p{

    color:#64748b;

    margin-bottom:25px;

}

.about-content ul{

    margin-bottom:35px;

}

.about-content ul li{

    margin-bottom:14px;

    color:#64748b;

}

/* CONTACT */

.contact{

    padding:100px 0;

}

.contact-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.contact-content span{

    color:#ff7a30;

    font-size:14px;

    font-weight:700;

}

.contact-content h2{

    font-size:46px;

    margin:20px 0;

    line-height:1.2;

}

.contact-content p{

    color:#64748b;

}

.contact-form{

    background:#fff;

    padding:40px;

    border-radius:24px;

    box-shadow:0 10px 30px rgba(15,23,42,0.05);

}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:16px 18px;

    border:1px solid #e2e8f0;

    border-radius:12px;

    margin-bottom:18px;

    font-family:'Inter',sans-serif;

    outline:none;

}

.contact-form textarea{

    resize:none;

}

/* FOOTER */

.footer{

    background:#fff;

    padding:80px 0 30px;

    border-top:1px solid #e2e8f0;

}

.footer-wrapper{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:50px;

}

.footer-logo{

    height:50px;

    margin-bottom:20px;

}

.footer p,
.footer li{

    color:#64748b;

}

.footer ul{

    list-style:none;

}

.footer ul li{

    margin-bottom:10px;

}

.footer h4{

    margin-bottom:18px;

}

.copyright{

    margin-top:60px;

    padding-top:25px;

    border-top:1px solid #e2e8f0;

    text-align:center;

    color:#64748b;

}

/* MOBILE */

@media(max-width:991px){

    .hero-wrapper,
    .services-grid,
    .about-wrapper,
    .contact-wrapper,
    .footer-wrapper{

        grid-template-columns:1fr;

    }

    .hero-content h1{

        font-size:42px;

    }

    .section-title h2,
    .about-content h2,
    .contact-content h2{

        font-size:34px;

    }

    .hero-buttons{

        flex-direction:column;

        align-items:flex-start;

    }

    .hero-features{

        flex-direction:column;

    }

    .nav-links{

        display:none;

    }

}