/* =============================
   HERO SECTION - Clean Design with Gradient Title
   Background: White/Transparent
   Title: Teal to Gold Gradient
============================= */

.hero {
    position: relative;
    padding: 6rem 0 5rem;
    background: var(--bg-body);
    overflow: hidden;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

/* Beautiful Teal to Gold Gradient Title */
.hero h1 {
    font-size: 3.75rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;

    /* Gradient from Teal to Gold */
    background: linear-gradient(135deg,
            var(--color-brand-teal) 0%,
            var(--color-brand-teal-dark) 25%,
            var(--color-brand-gold) 75%,
            var(--color-brand-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;

    /* Fallback */
    color: var(--color-brand-teal);

    /* Subtle glow */
    filter: drop-shadow(0 2px 8px rgba(30, 127, 127, 0.15));

    /* Smooth animation */
    animation: gradient-shift 8s ease infinite;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero p {
    font-size: 1.35rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

/* Impact Stats */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3.5rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-subtle);
}

.impact-stats div {
    text-align: center;
}

.impact-stats dt {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-brand-teal);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.impact-stats dd {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0;
    font-weight: 500;
}

/* Section spacing */
.section {
    padding: 5rem 0;
}

.section.alt {
    background: var(--bg-surface-muted);
}

.section-head {
    text-align: center;
    margin-bottom: 3rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero {
        padding: 5rem 0 4rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .impact-stats {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 0 3rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero .btn {
        width: 100%;
        max-width: 320px;
    }

    .impact-stats dt {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 3rem 0 2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .impact-stats dt {
        font-size: 2rem;
    }

    .impact-stats dd {
        font-size: 0.9rem;
    }
}