:root {
    --primary: #111827;
    /* Bleu nuit profond text/headers */
    --accent: #22c55e;
    /* Vert d'eau/accent de marque Jobberry */
    --accent-light: #f0fdf4;
    /* Fond très léger vert */
    --bg-light: #f9fafb;
    /* Fond gris très clair pour alternance */
    --text-dark: #374151;
    /* Couleur du corps de texte principal */
    --text-muted: #6b7280;
    /* Couleur secondaire textuelle */
    --border: #e5e7eb;
    /* Bordures légères */
    --font: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 80px 0;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}

/* --- HERO SECTION --- */
.hero {
    background-color: #702283;
    color: #ffffff;
    padding: 100px 0 80px 0;
    text-align: center;
}

.hero h1 {
    color: #ffffff;
    font-size: 2.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-tagline {
    font-size: 1.25rem;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.hero-stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
}

.hero-stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 16px;
}

.hero-stat-text {
    font-size: 1.1rem;
    color: #f3f4f6;
    font-weight: 500;
}

.hero-footer {
    margin-top: 50px;
    font-size: 0.9rem;
    color: #9ca3af;
    font-style: italic;
}

/* --- VALUES & WHY US --- */
.why-us {
    background-color: #ffffff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.why-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    padding: 32px;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.why-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.why-icon {
    color: #702283;
    flex-shrink: 0;
}

.why-title {
    font-size: 1.3rem;
    color: #702283;
}

.why-desc {
    color: var(--text-muted);
    font-size: 1rem;
}

/* --- KEY FIGURES BLOCK --- */
.figures {
    background-color: #702283;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    color: white;
}

.figures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.figure-item-value {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.figure-item-label {
    font-size: 0.95rem;
    color: lightgray;
    font-weight: 500;
    padding: 0 10px;
}

/* --- TESTIMONIALS --- */
.testimonials {
    background-color: #ffffff;
    color: #702283;
}

.testimonials-block-title {
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin: 40px 0 24px 0;
    border-bottom: 2px solid var(--border);
    padding-bottom: 8px;
}

.testimonials-block-title:first-of-type {
    margin-top: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 24px;
}

@media (max-width: 600px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: var(--bg-light);
    border-left: 4px solid #702283;
    padding: 24px;
    border-radius: 0 8px 8px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-quote {
    font-style: italic;
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 16px;
    position: relative;
}

.testimonial-author {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}

/* --- METHODOLOGY --- */
.method {
    background-color: var(--bg-light);
    color: #702283;
}

.method-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-top: -36px;
    margin-bottom: 48px;
    font-size: 1.1rem;
}

.method-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.method-step {
    display: flex;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.method-number {
    background-color: #702283;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-content {
    padding: 20px 24px;
}

.method-title {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.method-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- SPECIALIZATIONS --- */
.specializations {
    background: #ffffff;
    text-align: center;
    color: #702283;
}

.specs-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
    list-style: none;
}

.specs-list li {
    background-color: #702283;
    color: white;
    border: 1px solid #58026d;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
}

/* --- TEAM / CONTACT --- */
.team {
    background-color: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.team-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.team-info h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.team-role {
    color: #702283;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.team-dept {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    min-height: 40px;
}

.team-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.team-contact-link:hover {
    color: #702283;
}

.team-contact-link svg {
    color: var(--text-muted);
}

.team-contact-link:hover svg {
    color: #702283;
}

/* --- FOOTER --- */
.main-footer {
    background: var(--primary);
    color: #ffffff;
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
    border-top: 4px solid var(--accent);
}

.footer-logo {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.footer-logo span {
    color: var(--accent);
}

.footer-address {
    color: #9ca3af;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--accent);
}