.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient( rgba(24, 48, 30, .88), rgba(24, 48, 30, .88) );
    background-size: cover;
    background-position: center;
    color: white;
}

.hero h1 {
    font-size: 4rem;
    width: 100%;
    /*max-width: 900px;*/
    color: white;
}
    
.hero-text {
    max-width: 1000px; 
}

.hero-image {
    margin: 3rem 0;
    width: 100%;
    max-width: 1200px;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,.35);
}

.hero-tagline {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    opacity: .9;
}

.hero-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px auto;
    background: #fff;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
    overflow: hidden;
}

.hero-logo img {
    width: 96px;
    height: 96px;
    object-fit: contain;
    display: block;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all .2s ease;
}

.btn-primary {
    background: #2f5d3a;
    color: white;
}

.btn-primary:hover {
    background: #3b7448;
}

.btn-secondary {
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background: rgba(255,255,255,.1);
}

.credibility {
    margin-top: 2rem;
    font-size: 1.1rem;
    opacity: .9;
}

:root {
    --green: #2f5d3a;
    --light-green: #eef5ef;
    --accent: #6e9c65;
    --text: #1f1f1f;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(300px, 1fr) );
    gap: 2rem;
    margin-top: 3rem;
}

.intro-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba( 0, 0, 0, .08 );
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(280px, 1fr) );
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba( 0, 0, 0, .08 );
    transition: transform .2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.intro-section {
    background: #f7faf7;
    padding: 6rem 2rem;
}

.features-section {
    background: white;
    padding: 6rem 2rem;
}

.showcase-section {
    background: #eef5ef;
    padding: 3rem 2rem;
}

.stats-grid {
    max-width: 900px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2f5d3a;
    margin-bottom: .5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #555;
}

body {
    font-family: "Segoe UI", sans-serif;
    color: #1f1f1f;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.audience-card {
    background: #f4f8f4;
    border: 1px solid #dbe7db;
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all .2s ease;
}

.audience-icon {
    font-size: 2.5rem;
    margin-bottom: .75rem;
}

.audience-name {
    font-weight: 600;
}

.audience-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

.credibility-section {
    padding-bottom: 4rem;
}

.credibility-section .btn-green {
    display: block;
    width: fit-content;
    margin: 2rem auto 0 auto;
}

.btn-green {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 14px 28px;
    background: #2f5d3a;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all .2s ease;
}

.btn-green:hover {
    background: #3d7548;
    transform: translateY(-2px);
}

.hero-highlights {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,.9);
    margin-bottom: 2.5rem;
}

.hero-highlights span {
    padding: .4rem .8rem;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
}

.primary-highlight {
    background: rgba(255,255,255,.20);
    border: 2px solid rgba(255,255,255,.45);
    box-shadow: 0 0 12px rgba(255,255,255,.15);
    font-weight: 700;
    transform: scale(1.03);  /* Ever so slightly larger for attention */
}

/* MOBILE SETTINGS */
@media (max-width: 768px) {

    .hero {
        padding: 3rem 1rem;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.15;
    }

    .hero-logo {
        width: 90px;
        height: 90px;
        margin-bottom: 20px;
    }

    .hero-logo img {
        width: 72px;
        height: 72px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: fit-content;
        min-width: 220px;
    }

    .hero-image {
        margin-top: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }

    .stats-grid {
        gap: 1rem;
    }
    
    .container {
        padding: 0 0.75rem;
    }

    .features-section {
        padding: 3rem 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
        line-height: 1.2;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }

}