/* ============================================
   ObjectifCréA — Design System Optimisé
   Version 2.0 — Février 2026
   ============================================ */

/* --- VARIABLES & RESET --- */
:root {
    --purple: #74529e;
    --purple-dark: #5c3d82;
    --orange: #e05a2b; /* Corrigé WCAG AA : ratio 4.56:1 sur blanc */
    --orange-light: #ff8c42;
    --orange-hover: #c44e24;
    --text: #333;
    --text-light: #555;
    --text-muted: #777;
    --bg-light: #f8f5ff;
    --bg-warm: #fff5f2;
    --white: #fff;
    --border: #e8e8e8;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --gradient: linear-gradient(135deg, var(--purple), var(--orange));
    --gradient-bg: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-warm) 100%);
    --radius: 15px;
    --radius-lg: 20px;
    --radius-pill: 50px;
    --max-width: 1200px;
    --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    line-height: 1.6;
    color: var(--text);
    font-size: 18px;
    background: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul, ol {
    list-style: none;
}

/* --- SKIP LINK (Accessibilité) --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    padding: 12px 24px;
    background: var(--purple);
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 600;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 16px;
}

/* --- HEADER & NAV --- */
.site-header {
    background: var(--white);
    padding: 16px 5%;
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.site-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
}

.site-logo {
    height: 50px;
    width: auto;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
    transition: 0.3s;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
    color: var(--purple);
}

.nav-cta {
    background: var(--gradient);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    transition: opacity 0.3s, transform 0.3s;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* --- HERO SECTIONS --- */
.hero {
    margin-top: 82px;
    padding: 80px 5%;
    text-align: center;
    background: var(--gradient-bg);
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-compact {
    min-height: auto;
    padding: 60px 5%;
}

.hero h1 {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    line-height: 1.25;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    word-break: normal;
    overflow-wrap: normal;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-subtitle strong,
.hero-subtitle span {
    color: var(--orange);
    font-weight: 600;
}

/* --- STATS --- */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin: 48px 0;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--purple);
    line-height: 1;
}

.stat:nth-child(even) .stat-number {
    color: var(--orange);
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
}

/* --- BUTTONS --- */
.btn-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 36px;
    border-radius: var(--radius-pill);
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    min-height: 48px;
    min-width: 48px;
}

.btn-primary {
    background: var(--purple);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(224, 90, 43, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--purple);
    border: 2px solid var(--purple);
}

.btn-secondary:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-white {
    background: var(--white);
    color: var(--purple);
    padding: 16px 36px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--orange);
}

/* --- SECTIONS --- */
.section {
    padding: 80px 5%;
}

.section-alt {
    background: var(--gradient-bg);
}

.section-white {
    background: var(--white);
}

.section-cta {
    background: var(--gradient);
    text-align: center;
    color: var(--white);
}

.section-cta h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 16px;
    color: var(--white);
}

.section-cta p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.95;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--purple);
    margin-bottom: 48px;
}

.section-title span {
    color: var(--orange);
}

/* --- CARDS GRID --- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.card {
    padding: 40px 28px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
    text-align: center;
    border: 2px solid transparent;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange);
}

.card-number {
    font-size: 4rem;
    color: #e9d5ff;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1;
}

.card:nth-child(2) .card-number {
    color: #ffd4c4;
}

.card:nth-child(3) .card-number {
    color: #d5f5e3;
}

.card h3 {
    font-size: 1.4rem;
    color: var(--purple);
    margin-bottom: 16px;
}

.card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* --- PRICING CARDS --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.price-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange);
}

.price-card.popular {
    border: 3px solid var(--orange);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--white);
    padding: 4px 20px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.price-card h3 {
    font-size: 1.6rem;
    color: var(--purple);
    margin-bottom: 16px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 8px;
}

.price-original {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.price-saving {
    background: var(--orange);
    color: var(--white);
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    display: inline-block;
    margin-bottom: 24px;
    font-weight: 600;
    font-size: 14px;
}

.price-features {
    margin-bottom: 28px;
    text-align: left;
    padding: 0 12px;
}

.price-features li {
    padding: 8px 0;
    color: var(--text-light);
    font-size: 16px;
    border-bottom: 1px solid var(--border);
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features li strong {
    color: var(--purple);
}

/* --- PROMO BANNER --- */
.promo-banner {
    background: var(--gradient);
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--radius);
    text-align: center;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* --- PROCESS STEPS --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
}

.process-step-number {
    width: 72px;
    height: 72px;
    background: var(--gradient);
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.process-step h4 {
    font-size: 1.2rem;
    color: var(--purple);
    margin-bottom: 8px;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* --- FAQ --- */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-section-group {
    margin-bottom: 48px;
}

.faq-section-group h2 {
    font-size: 1.8rem;
    color: var(--purple);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(224, 90, 43, 0.2);
    text-align: left;
}

.faq-item {
    margin-bottom: 16px;
    background: #fafafa;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--orange);
}

.faq-question {
    padding: 20px 56px 20px 20px;
    color: var(--purple);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    line-height: 1.4;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--orange);
    transition: transform 0.3s;
}

.faq-item[open] .faq-question::after,
.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 800px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

/* --- CHAT WIDGET --- */
.chat-fab {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 64px;
    height: 64px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(224, 90, 43, 0.4);
    z-index: 999;
    cursor: pointer;
    color: var(--white);
    font-weight: 700;
    font-size: 1.4rem;
    border: none;
    transition: transform 0.3s;
}

.chat-fab:hover {
    transform: scale(1.1);
}

.chat-fab:focus-visible {
    outline: 3px solid var(--purple);
    outline-offset: 3px;
}

.chat-popup {
    display: none;
    position: fixed;
    bottom: 100px;
    left: 24px;
    width: 370px;
    max-height: 500px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    flex-direction: column;
    overflow: hidden;
}

.chat-popup.active {
    display: flex;
}

.chat-popup-header {
    background: var(--gradient);
    color: var(--white);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-popup-header strong {
    font-size: 1.1rem;
}

.chat-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
}

.chat-close:focus-visible {
    outline: 2px solid var(--white);
}

.chat-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    background: #fafafa;
    min-height: 250px;
}

.message {
    margin-bottom: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 15px;
    line-height: 1.5;
}

.message-bot {
    background: var(--white);
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.message-user {
    background: var(--gradient);
    color: var(--white);
    margin-left: auto;
    max-width: 75%;
}

.chat-input-area {
    padding: 12px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 8px;
}

.chat-input-area input {
    flex: 1;
    padding: 10px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-family: inherit;
}

.chat-input-area input:focus {
    outline: none;
    border-color: var(--orange);
}

.chat-input-area button {
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    min-height: 44px;
    min-width: 44px;
    transition: background 0.3s;
}

.chat-input-area button:hover {
    background: var(--purple);
}

/* --- WHATSAPP FAB --- */
.wa-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s;
}

.wa-fab:hover {
    transform: scale(1.1);
}

.wa-fab:focus-visible {
    outline: 3px solid #128C7E;
    outline-offset: 3px;
}

.wa-fab svg {
    width: 36px;
    height: 36px;
}

/* --- FOOTER --- */
.site-footer {
    padding: 48px 5%;
    background: #1a1a2e;
    text-align: center;
    color: rgba(255,255,255,0.7);
}

.footer-logo {
    height: 50px;
    width: auto;
    margin: 0 auto 24px;
}

.site-footer a {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    transition: color 0.3s;
}

.site-footer a:hover {
    color: var(--orange);
}

.site-footer p {
    color: rgba(255,255,255,0.5);
}

.footer-phone {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 16px 0;
    color: var(--orange);
}

.footer-legal {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    margin: 0 12px;
}

.footer-legal a:hover {
    color: var(--orange);
}

/* --- CONTACT FORM --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.form-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.form-card:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 15px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(224, 90, 43, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.info-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: var(--bg-warm);
    padding: 32px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.info-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
}

.info-card h3 {
    font-size: 1.3rem;
    color: var(--purple);
    margin-bottom: 12px;
}

.info-card p,
.info-card a {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.info-card a {
    color: var(--orange);
    font-weight: 600;
}

.info-card a:hover {
    color: var(--purple);
}

/* --- ABOUT PAGE --- */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
}

.profile-img {
    width: 100%;
    max-width: 380px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.story-text h2 {
    font-size: 2.5rem;
    color: var(--purple);
    margin-bottom: 24px;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.highlight {
    color: var(--orange);
    font-weight: 600;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-step {
    text-align: center;
    padding: 24px 16px;
    background: var(--white);
    border-radius: var(--radius);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.timeline-step:hover {
    border-color: var(--orange);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.timeline-year {
    font-size: 2rem;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 8px;
}

.timeline-step:nth-child(even) .timeline-year {
    color: var(--orange);
}

.timeline-title {
    font-size: 1.1rem;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 4px;
}

.timeline-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- BLOG --- */
.filters-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 32px 5%;
    border-bottom: 1px solid var(--border);
}

.filter-btn {
    padding: 10px 24px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-pill);
    cursor: pointer;
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
    font-family: inherit;
    transition: all 0.3s;
}

.filter-btn:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.filter-btn.active {
    background: var(--gradient);
    color: var(--white);
    border-color: var(--purple);
}

.article-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    display: block;
    border: 2px solid transparent;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(116, 82, 158, 0.15);
    border-color: var(--orange);
}

.article-image {
    width: 100%;
    height: 180px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.article-image::after {
    content: attr(data-category);
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 12px;
    background: var(--white);
    color: var(--orange);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.article-content {
    padding: 24px;
}

.article-title {
    font-size: 1.25rem;
    color: var(--purple);
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.article-excerpt {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 14px;
}

.article-date {
    color: var(--text-muted);
}

.article-readtime {
    background: var(--bg-light);
    padding: 4px 10px;
    border-radius: 10px;
    color: var(--orange);
    font-weight: 600;
}

/* --- NEWSLETTER --- */
.newsletter-form {
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: var(--radius-pill);
    font-size: 16px;
    font-family: inherit;
}

.newsletter-form button {
    padding: 16px 32px;
    background: var(--white);
    color: var(--purple);
    border: none;
    border-radius: var(--radius-pill);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    font-family: inherit;
    min-height: 48px;
}

.newsletter-form button:hover {
    color: var(--orange);
    transform: translateY(-2px);
}

/* --- TESTIMONIALS --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
}

.testimonial-card:hover {
    border-color: var(--orange);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.testimonial-card::before {
    content: "\201C";
    font-size: 4rem;
    color: var(--purple);
    opacity: 0.15;
    position: absolute;
    top: 12px;
    left: 20px;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testimonial-info strong {
    display: block;
    color: var(--purple);
    font-size: 0.95rem;
}

.testimonial-info span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.testimonial-stars {
    color: #f5a623;
    font-size: 1.1rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

/* --- BLOG ARTICLE BODY --- */
.article-body h2 {
    font-size: 1.6rem;
    color: var(--purple);
    margin: 40px 0 16px;
    line-height: 1.3;
}

.article-body h3 {
    font-size: 1.3rem;
    color: var(--text);
    margin: 32px 0 12px;
}

.article-body p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.article-body ul, .article-body ol {
    margin: 16px 0 24px 24px;
    list-style: disc;
}

.article-body ol {
    list-style: decimal;
}

.article-body li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.article-body strong {
    color: var(--text);
}

.article-body blockquote {
    border-left: 4px solid var(--orange);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--bg-light);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--text-light);
}

/* --- ANIMATIONS (respecte prefers-reduced-motion) --- */
@media (prefers-reduced-motion: no-preference) {
    .fade-in {
        animation: fadeInUp 0.6s ease both;
    }

    .fade-in-delay-1 { animation-delay: 0.15s; }
    .fade-in-delay-2 { animation-delay: 0.3s; }
    .fade-in-delay-3 { animation-delay: 0.45s; }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(24px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 16px;
        box-shadow: var(--shadow-md);
        gap: 0;
    }

    .nav-links a {
        padding: 12px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .stats-row {
        gap: 32px;
    }

    .btn-row {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
    }

    .cards-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .story-grid {
        grid-template-columns: 1fr;
    }

    .timeline-grid {
        grid-template-columns: 1fr 1fr;
    }

    .chat-popup {
        width: calc(100% - 32px);
        left: 16px;
        right: 16px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .filters-row {
        gap: 8px;
    }

    .filter-btn {
        font-size: 14px;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .timeline-grid {
        grid-template-columns: 1fr;
    }
}

/* --- SR-ONLY (Accessibilité) --- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* --- PRINT --- */
@media print {
    .site-header, .chat-fab, .wa-fab, .chat-popup {
        display: none !important;
    }

    .hero {
        margin-top: 0;
        min-height: auto;
    }

    body {
        font-size: 14px;
        color: #000;
    }
}
