/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    color: #0f172a;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: white;
    border-bottom: 1px solid #eee;
}

.logo-main {
    font-weight: 700;
    font-size: 22px;
}

.logo-sub {
    color: #16a34a;
    margin-left: 5px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #334155;
}

.nav-links .active {
    color: #16a34a;
}

.btn-contact {
    background: #16a34a;
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
}

/* HERO */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 60px;
    background: linear-gradient(135deg, #0b1f3a, #0f2f57);
    color: white;
}

.hero-left {
    max-width: 550px;
}

.hero-left h1 {
    font-size: 46px;
    margin: 20px 0;
}

.hero-left span {
    color: #22c55e;
}

.hero-left p {
    color: #cbd5e1;
}

.badge {
    background: rgba(255,255,255,0.1);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
}

.hero-buttons {
    margin-top: 20px;
}

.btn-green {
    background: #16a34a;
    padding: 12px 22px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
}

.btn-light {
    background: white;
    color: #0f172a;
    padding: 12px 22px;
    border-radius: 8px;
    margin-left: 10px;
    text-decoration: none;
}

.hero-features {
    display: flex;
    gap: 25px;
    margin-top: 25px;
    font-size: 14px;
}

.hero-right img {
    width: 520px;
    border-radius: 10px;
}

/* WHAT SECTION */
.what {
    background: #f1f5f9;
    padding: 80px 60px;
    text-align: center;
}

.label {
    color: #16a34a;
    font-size: 13px;
    font-weight: 600;
}

.what h2 {
    margin-top: 10px;
    font-size: 30px;
}

/* CARDS */
.cards {
    display: flex;
    margin-top: 50px;
    gap: 20px;
}

.card {
    display: flex;
    gap: 15px;
    width: 25%;
    text-align: left;
    padding: 10px;
    position: relative;
}

/* divider */
.card:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 10%;
    height: 80%;
    width: 1px;
    background: #e2e8f0;
}

.icon {
    background: #e6f4ea;
    color: #16a34a;
    padding: 15px;
    border-radius: 12px;
}

.text h3 {
    font-size: 16px;
}

.text p {
    font-size: 13px;
    color: #64748b;
    margin-top: 5px;
}

.line {
    width: 30px;
    height: 3px;
    background: #16a34a;
    margin: 6px 0;
}

/* MOBILE */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .cards {
        flex-wrap: wrap;
    }

    .card {
        width: 48%;
    }
}

@media (max-width: 600px) {
    .cards {
        flex-direction: column;
    }

    .card {
        width: 100%;
    }
}