.grassroots-hero {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
}

.grassroots-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/grassroots-hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.grassroots-hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.78);
}

.grassroots-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(20px, 10vw, 245px);
    width: 100%;
    text-align: center;
}

.grassroots-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 4vw, 60px);
    font-weight: 700;
    color: #FF5722;
    margin-bottom: 24px;
    margin-top: 100px;
    text-align: center;
    max-width: 100%;
    line-height: 1.6em;
}

.grassroots-hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(14px, 2vw, 20px);
    font-weight: 400;
    line-height: 1.5em;
    color: #eaebec;
    max-width: 935px;
    margin: 0 auto;
    text-align: center;
}


.section-heading-orange {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #FF5722;
    text-align: center;
    margin-bottom: 24px;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    text-align: center;
    margin-bottom: 60px;
}

.section-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 1.5;
    text-align: center;
}


.who-we-are-section {
    background: #FFFFFF;
    padding: var(--space-section-v) var(--space-section-h);
}

.who-we-are-container {
    max-width: 900px;
    margin: 0 auto;
}


.why-grassroots-section {
    background: #F5F5F5;
    padding: var(--space-section-v) var(--space-section-h);
}

.why-grassroots-container {
    max-width: 900px;
    margin: 0 auto;
}


.athlete-model-section {
    background: #FFFFFF;
    padding: var(--space-section-v) var(--space-section-h);
    text-align: center;
}

.athlete-model-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.athlete-model-flow {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: var(--space-gap-lg);
    margin-top: 60px;
}

.model-stage {
    flex: 1;
    background: #F9F9F9;
    border-radius: 12px;
    padding: var(--space-card-v) var(--space-card-h);
    border-left: 5px solid #FF5722;
    transition: all 0.3s ease;
}

.model-stage:hover {
    background: #FFFFFF;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.stage-badge {
    display: inline-block;
    background: #FF5722;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.stage-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    text-align: center;
}

.stage-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stage-list li {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #333333;
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    text-align: left;
}

.stage-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #FF5722;
    font-size: 20px;
    font-weight: 700;
}

.model-arrow {
    font-size: 40px;
    color: #FF5722;
    font-weight: 700;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}


.core-services-section {
    background: #F5F5F5;
    padding: var(--space-section-v) var(--space-section-h);
    text-align: center;
}

.core-services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 40px;
    margin-top: 60px;
}

.service-tier {
    background: #FFFFFF;
    border-radius: 12px;
    padding: var(--space-card-v) var(--space-card-h);
    transition: all 0.3s ease;
}

.service-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.tier-entry {
    border-top: 5px solid #E53935;
}

.tier-core {
    border-top: 5px solid #43A047;
}

.tier-elite {
    border-top: 5px solid #FFD700;
}

.tier-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 24px;
}

.tier-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tier-list li {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #333333;
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    text-align: left;
}

.tier-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF5722;
    font-weight: 700;
}


.grassroots-sports-section {
    background: #FFFFFF;
    padding: var(--space-section-v) var(--space-section-h);
}

.grassroots-sports-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.grassroots-sports-section .grassroots-sports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.sport-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.sport-card {
    background: #1A1A1A;
    border-radius: 15px;
    padding: 32px 24px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

}

.sport-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(255, 87, 34, 0.4);
    background: #212121;
}


.sport-card-link:nth-child(7) {
    grid-column: 2 / 3;
}

.sport-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #FFC107;
    margin-bottom: 16px;
    text-align: center;
}

.sport-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.6;
    text-align: center;
}




@media (max-width: 1200px) {
    .athlete-model-flow {
        flex-wrap: wrap;
    }

    .model-arrow {
        display: none;
    }

    .model-stage {
        min-width: calc(50% - 12px);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .grassroots-sports-section .grassroots-sports-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sport-card:nth-child(7) {
        grid-column: 1 / 2;
    }
}

@media (max-width: 992px) {
    .grassroots-hero {
        height: 500px;
    }

    .grassroots-hero-title {
        font-size: clamp(18px, 1vw, 10px);
    }

    .grassroots-hero-subtitle {
        font-size: 20px;
    }

    .section-heading-orange {
        font-size: 24px;
    }

    .section-text {
        font-size: 16px;
    }

    .athlete-model-flow {
        flex-direction: column;
    }

    .model-stage {
        min-width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
    }

    .grassroots-sports-section .grassroots-sports-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .grassroots-hero {
        min-height: 400px;
        height: auto;
    }

    .grassroots-hero-title {
        font-size: 10px;
        margin-top: 60px;
        line-height: 1.8em;
    }

    .grassroots-hero-subtitle {
        font-size: 16px;
    }

    .who-we-are-section,
    .why-grassroots-section {
        padding: clamp(40px, 8vw, 60px) clamp(16px, 4vw, 24px);
    }

    .athlete-model-section,
    .core-services-section,
    .grassroots-sports-section {
        padding: clamp(40px, 8vw, 60px) clamp(16px, 4vw, 24px);
    }

    .model-stage,
    .service-tier,
    .sport-card {
        padding: 32px 24px;
    }

    .services-grid {
        display: flex !important;
        flex-direction: column !important;
    }

    .grassroots-sports-section .grassroots-sports-grid {
        display: flex !important;
        flex-direction: column !important;
    }


}


@media (max-width: 480px) {
    .grassroots-hero {
        min-height: clamp(250px, 60vh, 350px);
        height: auto;
    }

    .grassroots-hero-title {
        font-size: 25px;
    }

    .grassroots-hero-subtitle {
        font-size: 16px;
    }

    .section-heading-orange {
        font-size: clamp(16px, 4.5vw, 20px);
    }

    .section-text {
        font-size: clamp(12px, 3.5vw, 14px);
        text-align: center;
    }

    .stage-title,
    .tier-title,
    .sport-title {
        font-size: clamp(14px, 4vw, 18px);
    }

}

a {
    color: inherit;
    text-decoration: none;
}