*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    color:#111827;
    background:#faf9f7;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/* HEADER */

.header{
    background:#fff;
    border-bottom:1px solid #ececec;
}

.nav{
    height:90px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width:56px;
    height:56px;
    object-fit:contain;
}

.logo span{
    font-size:28px;
    font-weight:500;
}

nav{
    display:flex;
    gap:50px;
}

nav a{
    text-decoration:none;
    color:#111;
    font-size:20px;
    font-weight:500;
}

.header-btn{
    background:#f8b739;
    color:#000;
    text-decoration:none;
    padding:18px 38px;
    border-radius:14px;
    font-weight:700;
    font-size:22px;
}

/* HERO */

.hero{
    padding:80px 0;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;
}

.eyebrow{
    color:#204f35;
    font-size:22px;
    font-weight:700;
    margin-bottom:25px;
}

.hero h1{
    font-size:84px;
    line-height:1.08;
    margin-bottom:30px;
    font-weight:800;
}

.hero h1 span{
    color:#204f35;
}

.hero p{
    font-size:30px;
    line-height:1.8;
    color:#5f6368;
    max-width:700px;
}

.download-btn{
    margin-top:40px;
    display:inline-flex;
    align-items:center;
    gap:16px;
    text-decoration:none;
    background:#f8b739;
    color:#000;
    font-size:32px;
    font-weight:700;
    padding:24px 42px;
    border-radius:18px;
}

.version{
    margin-top:18px;
    color:#666;
    font-size:22px;
}

.features{
    display:flex;
    gap:50px;
    margin-top:60px;
}

.feature{
    max-width:180px;
}

.icon{
    width:78px;
    height:78px;
    background:#f9efd9;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:15px;
}

.icon i{
    font-size:32px;
}

.feature h4{
    margin-bottom:10px;
    font-size:24px;
}

.feature p{
    font-size:18px;
    line-height:1.6;
}

/* PHONE */

.hero-image{
    position:relative;
    display:flex;
    justify-content:center;
}

.circle-bg{
    position:absolute;
    width:700px;
    height:700px;
    background:#f7ead2;
    border-radius:50%;
    z-index:1;
}

.hero-image img{
    width:420px;
    position:relative;
    z-index:2;
}

/* BENEFITS */

.benefits{
    background:#f7f1e6;
    padding:40px 0;
    border-top:1px solid #ece5d9;
}

.benefit-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.benefit{
    display:flex;
    align-items:center;
    gap:20px;
}

.benefit i{
    font-size:40px;
}

.benefit h4{
    font-size:28px;
    margin-bottom:6px;
}

.benefit p{
    color:#666;
    font-size:18px;
}

/* FOOTER */

footer{
    background:linear-gradient(90deg,#19452f,#275c3f);
    color:white;
    text-align:center;
    padding:25px;
    font-size:18px;
}

/* RESPONSIVE */

@media(max-width:992px){

    .hero-grid{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:54px;
    }

    .features{
        flex-wrap:wrap;
    }

    .benefit-grid{
        grid-template-columns:1fr 1fr;
    }

    nav{
        display:none;
    }
}

@media(max-width:768px){

    .benefit-grid{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:42px;
    }

    .hero p{
        font-size:20px;
    }

    .download-btn{
        font-size:22px;
    }

    .hero-image img{
        width:300px;
    }

    .circle-bg{
        width:450px;
        height:450px;
    }
}