* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", sans-serif;
    background: #f5f7fa;
}

/* Header */

header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: #2ecc71;
    border-radius: 10px;
}

nav {
    display: flex;
    gap: 35px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.header-btn {
    text-decoration: none;
    background: #22c55e;
    color: white;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
}

/* Hero */

.hero {
    min-height: 500px;
    background: #03142d;
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 8%;
}

/* Green shape */

.shape {
    position: absolute;
    left: -120px;
    top: -100px;
    width: 350px;
    height: 350px;
    background: #16a34a;
    transform: rotate(45deg);
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.tagline {
    color: #22c55e;
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero h1 {
    color: white;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 40px;
}

.services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 40px;
    color: #d8dde8;
    margin-bottom: 40px;
}

.services div {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.services i {
    color: #22c55e;
    margin-right: 10px;
}

.buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 14px 35px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.primary {
    background: #22c55e;
    color: white;
}

.secondary {
    border: 1px solid rgba(255,255,255,.3);
    color: white;
}

.btn:hover {
    transform: translateY(-3px);
}

/* Image */

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    z-index: 2;
}

.hero-image img {
    max-width: 520px;
    width: 100%;
    object-fit: contain;
}

/* Stats */

.stats {
    max-width: 1200px;
    margin: -80px auto 80px;
    padding: 0 30px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
}

.card i {
    color: #22c55e;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
    color: #111827;
}

.card p {
    color: #6b7280;
    line-height: 1.7;
}

/* Responsive */

@media (max-width: 992px) {

    .hero {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .services {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    nav {
        display: none;
    }
}