.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;
    max-width: 900px;
}

.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-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);
}