/* ============================================
   LINA EQUITY - Main Stylesheet
   Fonts: Raleway (titles), Libre Franklin (body)
   Primary: #00B4D8 (teal), Dark: #1B2A4A (navy)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Raleway:wght@400;600;700;800&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    background: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

h2 {
    font-size: 40px;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Colors ---- */
:root {
    --primary: #00B4D8;
    --primary-dark: #0096B7;
    --navy: #1B2A4A;
    --bclair: #AEE1EA;
    --navy-light: #2C3E6B;
    --gold: #D4C5A0;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --text: #333;
    --text-light: #666;
    --white: #fff;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    height: 45px;
    width: auto;
}

.logo-text {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 10px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

nav a {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 20px;
    transition: background 0.3s, color 0.3s;
}

nav a:hover,
nav a.active {
    background: rgba(34,43,73,1);
}

.btn-cta {
    display: inline-block;
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    transition: background 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 550px;
    color: var(--white);
    padding: 100px 0 60px;
}

/* Blue box behind hero text */
.hero-content-box {
    background: rgba(27, 42, 74, 0.95);
    border-radius: 15px;
    padding: 35px 40px;
    backdrop-filter: blur(2px);
}

.hero-content.right {
    margin-left: auto;
}

.hero-content h1 {
    font-size: 32px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.hero-small {
    min-height: 300px;
}

/* Hero for accueil - taller */
.hero-accueil {
    min-height: 520px;
}

.hero-simple {
    min-height: 300px;
}

.hero-simple .container {
    display: none;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 16px 30px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,180,216,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

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

.btn-white:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

/* ============================================
   SECTIONS
   ============================================ */
section {
    padding: 70px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 15px;
    font-size: 40px;
    color: var(--navy);
}

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

.section-subtitle {
    text-align: center;
    color: #0c1322;
    margin-bottom: 50px;
    font-size: 19px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 600;
}

/* ============================================
   CARDS
   ============================================ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.card {
    background: var(--white);
    border-radius: 0px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--navy);
}

.card p {
    font-size: 16px;
    line-height: 1.6;
}

/* Card with photo on top */
.card-photo {
    padding: 0;
    overflow: hidden;
    text-align: center;
}

.card-photo .card-photo-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-photo h3,
.card-photo p {
    padding: 0 25px;
}

.card-photo h3 {
    padding-top: 20px;
}

.card-photo p {
    padding-bottom: 25px;
}

/* Card flat - no background, no shadow */
.card.card-flat {
    background: transparent;
    box-shadow: none;
    padding: 20px 25px;
}

.card.card-flat:hover {
    transform: none;
    box-shadow: none;
}

/* Card bordered - flat + colored top border + left-aligned */
.card.card-bordered {
    background: transparent;
    box-shadow: none;
    padding: 25px 0px;
    text-align: left;
    border-top: 10px solid var(--primary);
}

.card.card-bordered:hover {
    transform: none;
    box-shadow: none;
}

.card.card-bordered:nth-child(1) { border-top-color: #9ADCEA; }
.card.card-bordered:nth-child(2) { border-top-color: #00A9C7; }
.card.card-bordered:nth-child(3) { border-top-color: #027F95; }
.card.card-bordered:nth-child(4) { border-top-color: #3EC1C9; }
.card.card-bordered:nth-child(5) { border-top-color: #328F97; }
.card.card-bordered:nth-child(6) { border-top-color: #AEE13A; }

/* Card illustration image (replaces icon) */
.card-illustration {
    margin: 0 auto 20px;
    object-fit: contain;
}

.container.container-narrow {
    max-width: 1000px;
}

/* ============================================
   ZIGZAG LAYOUT (Comment Investir)
   ============================================ */
.zigzag {
    display: flex;
    flex-direction: column;
    gap: 100px;
    margin-top: 50px;
}

.zigzag-row {
    display: flex;
    align-items: center;
    gap: 120px;
}

.zigzag-row-reverse {
    flex-direction: row-reverse;
}

.zigzag-text {
    flex: 1;
}

.zigzag-text > img {
    margin-bottom: 15px;
}

.zigzag-text h3 {
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 15px;
}

.zigzag-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.5;
}

/* Lignes 1 & 3 (normales) : texte à droite, image à gauche */
.zigzag-row:not(.zigzag-row-reverse) .zigzag-text {
    text-align: right;
}

.zigzag-row:not(.zigzag-row-reverse) .zigzag-text > img {
    margin-left: auto;
    display: block;
}

.zigzag-row:not(.zigzag-row-reverse) .zigzag-image {
    display: flex;
    justify-content: flex-start;
}

/* Lignes 2 & 4 (reverse) : image à droite, texte ok (gauche) */
.zigzag-row-reverse .zigzag-image {
    display: flex;
    justify-content: flex-end;
}

.zigzag-image {
    flex: 1;
}

.zigzag-image img {
    border-radius: 12px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .zigzag-row,
    .zigzag-row-reverse {
        flex-direction: column;
        gap: 25px;
    }

    .zigzag {
        gap: 40px;
    }
}

/* ============================================
   SPLIT SECTIONS (Particuliers / Professionnels on Accueil)
   ============================================ */
.split-section {
    display: flex;
    padding: 0 !important;
    margin: 0;
    overflow: hidden;
    gap: 0;
}

.split-image {
    width: 50%;
    flex-shrink: 0;
    min-height: 450px;
    background-size: cover;
    background-position: center;
}

.split-content {
    width: 50%;
    flex-shrink: 0;
    padding: 150px 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bclair);
}

.split-content-dark {
    background: var(--navy);
    color: var(--white);
}

.split-content.split-content-dark p {
    color: rgba(255,255,255,0.95);
}

.split-title {
    font-family: 'Raleway', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 5px;
}

.split-content-dark .split-title {
    color: var(--white);
}

.split-overtitle {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 25px;
    font-weight: 600;
}

.split-highlight {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 700;
}

.split-highlight-light {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 700;
}

.split-content p {
    font-size: 18px;
    color: #3a3939;
    margin-bottom: 20px;
    line-height: 1.6;
}

.split-section-reverse {
    /* HTML order is already correct: content then image */
}

/* ============================================
   FEATURE ROWS (Particuliers / Professionnels on Accueil)
   ============================================ */
.feature-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-text h2 {
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 8px;
}

.feature-text h2 span {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 15px;
}

.feature-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.feature-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* ============================================
   STEPS (Particuliers page - Comment Investir)
   ============================================ */
.steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 20px;
}

.step-content h3 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    color: var(--text-light);
}

/* ============================================
   PROJECT CARDS (Projets page)
   ============================================ */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.project-card {
    background: #F2F2F2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.3s;
}

.project-card:hover {
    transform: translateY(-3px);
}

.project-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.project-card-body {
    padding: 20px;
}

.project-card-body h3 {
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 8px;
}

.project-card-body p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.3rem;
}

.project-stats {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
}

.project-stats .stat {
    display: flex;
    justify-content: space-between;
}

.project-stats .stat-label {
    color: var(--text-light);
}

.project-stats .stat-value {
    font-weight: 600;
    color: var(--navy);
}

.project-progress {
    margin-top: 12px;
    height: 8px;
    background: var(--medium-gray);
    border-radius: 4px;
    overflow: hidden;
}

.project-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    border-radius: 4px;
    transition: width 0.5s;
}

/* ============================================
   FORM
   ============================================ */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 14px;
    color: var(--text);
    transition: border-color 0.3s;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   ACCORDION (FAQ, CGV)
   ============================================ */
.accordion-item {
    border-bottom: 1px solid var(--medium-gray);
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    cursor: pointer;
    font-size: 17px;
    color: var(--primary);
    font-weight: 500;
    transition: color 0.3s;
    gap: 15px;
}

.accordion-header:hover {
    color: var(--primary-dark);
}

.accordion-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary);
    transition: transform 0.3s, background 0.3s;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    background: var(--primary);
    color: var(--white);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-body-inner {
    padding: 0 0 20px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* FAQ two columns */
.faq-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.faq-column h2 {
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 5px;
}

.faq-column .faq-subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 25px;
}

/* ============================================
   FAQ SPLIT LAYOUT (pleine largeur 50/50)
   ============================================ */
.faq-split {
    display: flex;
    width: 100%;
}

.faq-split-col {
    width: 50%;
    padding: 100px 100px;
}

.faq-split-col h2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 28px;
    margin-bottom: 5px;
}

.faq-split-col .faq-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
}

/* Colonne gauche : fond blanc, textes questions en bleu */
.faq-split-left {
    background: #ffffff;
}

.faq-split-left h2 {
    color: var(--navy);
}

.faq-split-left .faq-subtitle {
    color: var(--text-light);
}

.faq-split-left .accordion-header span:first-child {
    color: var(--primary);
    font-weight: 700;
}

.faq-split-left .accordion-icon {
    color: var(--primary);
    border-color: var(--primary);
}

/* Colonne droite : fond bleu clair, textes questions en noir */
.faq-split-right {
    background: var(--bclair);
}

.faq-split-right h2 {
    color: var(--navy);
}

.faq-split-right .faq-subtitle {
    color: var(--navy);
}

.faq-split-right .accordion-header span:first-child {
    color: var(--navy);
    font-weight: 700;
}

.faq-split-right .accordion-icon {
    color: var(--navy);
    border-color: var(--navy);
}

/* Accordion icon style cercle */
.faq-split .accordion-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.faq-split .accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 15px 0;
    cursor: pointer;
    border: none;
    background: none;
}

.faq-split .accordion-item {
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.faq-split .accordion-item:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .faq-split {
        flex-direction: column;
    }
    .faq-split-col {
        width: 100%;
        padding: 40px 25px;
    }
}

/* ============================================
   STATS TABLE
   ============================================ */
.stats-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.stats-table th,
.stats-table td {
    padding: 14px 20px;
    text-align: center;
    font-size: 14px;
}

.stats-table thead th {
    background: var(--navy);
    color: var(--white);
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
}

.stats-table thead th:first-child {
    text-align: left;
    border-radius: 8px 0 0 0;
}

.stats-table thead th:last-child {
    border-radius: 0 8px 0 0;
}

.stats-table tbody td {
    border-bottom: 1px solid var(--medium-gray);
}

.stats-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
}

.stats-table tbody tr:last-child td {
    border-bottom: none;
}

/* Reports grid */
.reports-grid {
    display: flex;
    gap: 80px;
    justify-content: center;
    flex-wrap: wrap;
}

.report-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.report-item:hover {
    transform: translateY(-5px);
}

.report-icon {
    width: 80px;
    height: 100px;
    margin: 0 auto 12px;
    background: var(--light-gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #E53935;
    position: relative;
}

.report-item p {
    font-size: 13px;
    color: var(--text-light);
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 22px;
    color: var(--navy);
    margin: 35px 0 15px;
}

.legal-content h3 {
    font-size: 18px;
    color: var(--navy);
    margin: 25px 0 10px;
}

.legal-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 12px;
    padding-left: 20px;
}

.legal-content ul li {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 6px;
    list-style: disc;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--light-gray) url('../images/accueil/background_footer.gif') repeat;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-warning {
    background: var(--primary);
    color: var(--white);
    padding: 25px;
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.5;
}

.footer-warning strong {
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
}

.footer-col h4 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 15px;
    font-family: 'Raleway', sans-serif;
}

.footer-col a {
    display: block;
    font-size: 17px;
    color: var(--text-light);
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-partners {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-partners img {
    height: 30px;
    width: auto;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--medium-gray);
    font-size: 12px;
    color: var(--text-light);
}

/* ============================================
   MEDIATION PAGE
   ============================================ */
/* Médiation - Texte d'intro */
.mediation-intro {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
}

/* Médiation - Deux boites (Voie postale / Via courriel) */
.mediation-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto 50px;
}

.mediation-box {
    text-align: center;
    padding: 30px;
    background: #FFFFFF;
    border-radius: 12px;
}

.mediation-box h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 20px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
}

.mediation-box p {
    font-size: 16px;
    color: var(--text);
    line-height: 1.6;
}

/* Médiation - 4 colonnes solutions/informations */
.mediation-solutions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.solution-box {
    text-align: center;
    padding: 20px 15px;
}

.solution-box h4 {
    color: var(--primary);
    font-size: 20px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    margin-bottom: 12px;
}

.solution-box p {
    font-size: 16px;
    color: var(--text);
    line-height: 1.6;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary);
}

.text-navy {
    color: var(--navy);
}

.bg-light {
    background: var(--light-gray);
}

.bg-bclair {
    background: var(--bclair);
}

.bg-navy {
    background: var(--navy);
    color: var(--white);
}

.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    /* Nav mobile */
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--navy);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 5px;
        transition: right 0.3s;
        box-shadow: -5px 0 20px rgba(0,0,0,0.3);
    }

    nav.open {
        right: 0;
    }

    nav a {
        width: 100%;
        text-align: left;
        padding: 12px 15px;
        border-radius: 8px;
    }

    .hamburger {
        display: flex;
    }

    /* Hero */
    .hero {
        min-height: 350px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-accueil {
        min-height: 400px;
    }

    /* Sections */
    section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 24px;
    }

    /* Cards */
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    /* Split sections */
    .split-section,
    .split-section-reverse {
        flex-direction: column;
    }

    .split-image {
        min-height: 300px;
    }

    .split-content {
        padding: 40px 25px;
    }

    /* Feature rows */
    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .feature-image img {
        height: 250px;
    }

    /* Steps */
    .steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Projects */
    .projects-grid {
        grid-template-columns: 1fr;
    }

    /* Form */
    .form-grid {
        grid-template-columns: 1fr;
    }

    /* FAQ */
    .faq-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    /* Mediation */
    .mediation-info {
        grid-template-columns: 1fr;
    }

    .mediation-solutions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 22px;
    }

    .section-title {
        font-size: 22px;
    }

    .btn {
        padding: 10px 24px;
        font-size: 13px;
    }

    .container {
        padding: 0 15px;
    }
}
