/* about.css

/* --- Mise en page générale --- */
.about-page { background-color: #fff; }
.main-container { padding-top: 60px; }
@media (min-width: 960px) { .main-container { padding-top: 100px; } }

/* --- Section Héros --- */
.about-hero {
    padding: 5rem 5%;
    text-align: center;
    background-color: #f5f5f7;
    border-bottom: 1px solid #e5e5e7;
}
.about-hero .hero-content { max-width: 800px; margin: 0 auto; }
.about-hero .hero-subtitle {
    font-weight: 700;
    color: #3e2372;
    margin-bottom: 1rem;
    display: block;
    letter-spacing: 1px;
}
.about-hero h1 { font-size: 3.5rem; font-weight: 800; color: #1d1d1f; margin-bottom: 1.5rem; }
.about-hero p { font-size: 1.2rem; color: #6e6e73; line-height: 1.7; }

/* --- Section Fonctionnement --- */
.how-it-works-explained { padding: 5rem 5%; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.section-header h2 { font-size: 2.5rem; font-weight: 800; color: #1d1d1f; margin-bottom: 1rem; }
.section-header .subtitle { font-size: 1.1rem; color: #6e6e73; }

.dual-view-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.path-card { border-radius: 24px; padding: 2.5rem; }
.path-card.client-path { background-color: #f5f5f7; }
.path-card.provider-path { background-color: #e3ddf1; }

.path-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.path-header svg { stroke: #3e2372; fill: none; stroke-width: 1.5; flex-shrink: 0; }
.path-header h3 { font-size: 1.8rem; margin: 0; }

.path-steps { list-style: none; padding: 0; }
.path-steps li {
    padding-left: 2rem;
    position: relative;
    padding-bottom: 1.5rem;
    border-left: 2px solid #d1d5db;
}
.path-steps li:last-child { border-left: 2px solid transparent; }
.path-steps li::before {
    content: '';
    position: absolute;
    left: -9px; /* (1.5rem / 2) - 1px */
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #d1d5db;
}
.path-steps li strong { display: block; font-size: 1.1rem; margin-bottom: 0.25rem; }
.path-steps li span { color: #6e6e73; }

/* --- Section Engagements --- */
.values-section { padding: 5rem 5%; background-color: #fff; text-align: center; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 900px; margin: 0 auto; }
.value-card { text-align: left; padding: 2rem; border: 1px solid #e5e5e7; border-radius: 16px; transition: all 0.3s ease; }
.value-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0,0,0,0.07); border-color: transparent; }
.value-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e3ddf1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.value-icon svg { stroke: #3e2372; stroke-width: 2; fill: none; }
.value-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.value-card p { color: #6e6e73; line-height: 1.6; }

/* --- Section Fondateurs --- */
.story-section { padding: 5rem 5%; background-color: #f5f5f7; }
.story-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; max-width: 1100px; margin: 0 auto; }
.story-grid.reverse { grid-template-columns: 1.2fr 1fr; }
.story-grid.reverse .story-image { grid-column: 2; }
.story-grid.reverse .story-content { grid-column: 1; grid-row: 1; }
.story-image img { width: 100%; border-radius: 24px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.story-content h2 { font-size: 2.5rem; font-weight: 800; color: #1d1d1f; }
.story-content p { font-size: 1.1rem; line-height: 1.8; color: #333; margin-top: 1.5rem; }
.founder-quote { font-style: italic; color: #3e2372; font-weight: 500; }

/* --- Section Double CTA --- */
.dual-cta-section { padding: 5rem 5%; text-align: center; }
.dual-cta-section h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; }
.dual-cta-section p { max-width: 500px; margin: 0 auto 2rem; font-size: 1.1rem; color: #6e6e73; }
.cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* --- Responsive --- */
@media (max-width: 960px) {
    .dual-view-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .story-grid, .story-grid.reverse { grid-template-columns: 1fr; text-align: center; }
    .story-grid.reverse .story-image { grid-column: 1; grid-row: 1; }
    .story-grid.reverse .story-content { grid-row: 2; }
}
@media (max-width: 768px) {
    .about-hero h1, .section-header h2, .story-content h2, .dual-cta-section h2 { font-size: 2rem; }
}