/* ============================================
   HOME.CSS - Page d'accueil Helpify
   ============================================ */

/* ========== HERO HELPIFY ========== */
.hero-helpify {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    padding: 4rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-helpify .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-label {
    display: inline-block;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.text-green {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: bold;
}

.hero-button{
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-avatars {
    display: flex;
}

.stat-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -10px;
}

.stat-avatars img:first-child {
    margin-left: 0;
}

.stat-text strong {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
}

.stat-text p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

/* Testimonial Card */
.hero-testimonial {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.181);
    position: relative;
}

.testimonial-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.testimonial-stars {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-logo {
    width: 200px;
}

.hero-testimonial p {
    margin-top: 10px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    font-weight: 350;
}

.nomassociation{
    font-size: small;
    font-weight: 500;
    font-style: normal;
}

/* ========== WHY SECTION ========== */
.why-section {
    padding: 5rem 0;
    background: white;
}

.section-header-small {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin-bottom: 1.5rem;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 3rem;
}

.link-arrow:hover {
    text-decoration: underline;
}

.features-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-box {
    background: var(--bg-light-green);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-icon.green {
    background: var(--primary-color);
}

.feature-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.feature-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* ========== PROFILES SECTION ========== */
.profiles-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.section-title-center {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle-center {
    font-size: 1.125rem;
    color: var(--text-light);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.profile-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}


.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.profile-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.profile-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.profile-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.profile-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.link-arrow-green {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
}

.link-arrow-green:hover {
    text-decoration: underline;
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
    padding: 5rem 0;
    background: white;
}


.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.step-card {
    text-align: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 5rem 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-helpify .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .features-grid-3,
    .profiles-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .section-title,
    .section-title-center {
        font-size: 1.75rem;
    }
}

video{
    width:80%;
    margin-left: 10%;
    border-radius: 50px;
    border-color: rgb(15, 103, 15);
    margin-bottom: 0px;
}

.sectionvideo{
    background-color: rgb(138, 248, 144);
}

.titrevideo{
    text-align: center;
    color: rgba(0, 0, 0, 0.501);
    font-size: 30px;
    margin-bottom: 40px;
    font-family:'Times New Roman', Times, serif
}



/* ========== TYPES D'ASSOCIATIONS ========== */
.associations-types {
    padding: 5rem 0;
    background: var(--bg-light);
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.type-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.type-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.type-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.type-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 1024px) {
    .types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .types-grid {
        grid-template-columns: 1fr;
    }
}