/* ========= RESET ========= */

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

img{
    display:block;
    max-width:100%;
}

body{
    font-family:'Poppins',sans-serif;
    color:#1e293b;
    background:#ffffff;
    line-height:1.7;
}

/* ========= GLOBAL ========= */

.container{
    width:min(1120px,90%);
    margin:auto;
}

section{
    padding:80px 0;
}

h1,h2{
    line-height:1.2;
}

/* ========= BUTTON ========= */

.cta-btn{
    display:inline-block;
    text-decoration:none;
    background:#0E5B5A;
    color:#fff;
    font-weight:600;
    padding:16px 28px;
    border-radius:12px;
    transition:.3s;
}

.cta-btn:hover{
    transform:translateY(-2px);
}

/* ========= HERO ========= */

#hero{
    min-height:100vh;
    display:flex;
    align-items:center;
}

#hero .container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.brand{
    display:inline-block;
    margin-bottom:18px;
    font-size:.95rem;
    font-weight:600;
    color:#0f766e;
    background:#ecfeff;
    padding:8px 14px;
    border-radius:999px;
}

#hero h1{
    font-size:clamp(1.5rem,4vw,3.5rem);
    margin-bottom:20px;
    color:#0f172a;
}

.subtitle{
    font-size:1rem;
    font-weight:600;
    margin-bottom:10px;
}

.description{
    max-width:600px;
    margin-bottom:32px;
    color:#475569;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.5;
}

.hero-image{
    display:flex;
    justify-content:center;
}

.hero-image img{
    max-width:500px;
}

/* ========= SERVICES ========= */

#services{
    background:#f8fafc;
}

#services h2{
    text-align:center;
    margin-bottom:40px;
    font-size:2rem;
}

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

.service-card{
    background:#fff;
    padding:24px;
    border-radius:16px;
    box-shadow:0 4px 20px rgba(0,0,0,.05);
    font-weight:500;
}

/* ========= COMING SOON ========= */

#coming-soon{
    text-align:center;
}

#coming-soon h2{
    margin-bottom:20px;
    font-size:2rem;
}

#coming-soon p{
    max-width:700px;
    margin:0 auto 16px;
    color:#475569;
}

#coming-soon .cta-btn{
    margin-top:20px;
}

/* ========= RESPONSIVE ========= */

@media (max-width: 768px){

    #hero{
        min-height:auto;
        padding-top:80px;
    }

    #hero .container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .description{
        margin-left:auto;
        margin-right:auto;
    }

    .hero-image{
        order:-1;
        
    }
    .hero-image img{
        width: 90%;
        max-width: 300px;
    }

    #hero h1{
        font-size:2.5rem;
    }

}