    /* Stats Section */
    .stats-section {
        padding-top: 4rem;
        padding-right: 1rem;
        padding-left: 1rem;
        margin-top: -80px;
        position: relative;
        z-index: 3;
    }

    .stats-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        background: rgba(18, 13, 26, 0.75);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 24px;
        padding: 2rem 1rem;
        box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.5),
            0 0 0 1px rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .stat-card {
        text-align: center;
        padding: 1.5rem 1rem;
        position: relative;
        transition: transform 0.3s ease;
    }

    .stat-card:not(:last-child)::after {
        content: '';
        position: absolute;
        right: -1.25rem;
        top: 25%;
        height: 50%;
        width: 1px;
        background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    }

    .stat-card:hover {
        transform: translateY(-4px);
    }

    .stat-icon {
        font-size: 2.5rem;
        color: #7045e1;
        margin-bottom: 1rem;
        display: block;
    }

    .stat-number {
        font-size: 4rem;
        font-weight: 900;
        background: linear-gradient(135deg, #7045e1 0%, #9b7eed 50%, #fff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-family: 'Poppins', sans-serif;
        margin-bottom: 0.75rem;
        line-height: 1;
        letter-spacing: -0.04em;
    }

    .stat-label {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.75);
        font-weight: 700;
        font-family: 'Inter', sans-serif;
        line-height: 1.4;
        letter-spacing: 1.5px;
        text-transform: uppercase;
    }

    @media (max-width: 768px) {
        .stat-card:not(:last-child)::after {
            display: none;
        }
    }

    /* Founder Section - Dark Testimonial */
    .founder-section {
        background: transparent;
        padding: 5rem 1rem;
        position: relative;
        overflow: hidden;
    }

    .founder-container {
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
        position: relative;
        z-index: 1;
    }

    .founder-container > h2 {
        font-family: 'Poppins', sans-serif;
        font-size: 3rem;
        background: linear-gradient(135deg, #ffffff 0%, #ffffff 55%, #ffffff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin: 0 0 1.2rem 0;
        font-weight: 800;
        letter-spacing: -0.035em;
        position: relative;
        display: inline-block;
        line-height: 1.1;
        text-shadow: none;
    }

    .founder-container > h2::after {
        content: '';
        position: absolute;
        bottom: -14px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #7045e1, #9b7eed);
        border-radius: 2px;
        box-shadow: 0 4px 14px rgba(112, 69, 225, 0.45);
    }

    .founder-image {
        margin-bottom: 0;
    }

    .founder-image img {
        width: 100%;
        height: auto;
        border-radius: 16px;
        object-fit: cover;
        border: 3px solid rgba(112, 69, 225, 0.6);
        display: block;
        box-shadow:
            0 20px 50px rgba(44, 23, 138, 0.45),
            0 0 0 1px rgba(112, 69, 225, 0.3);
        transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .founder-image img:hover {
        transform: scale(1.02) translateY(-4px);
    }

    .founder-info-with-philosophy {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 2rem;
        align-items: start;
        margin-top: 1.5rem;
    }

    .founder-info {
        margin-bottom: 0;
        text-align: center;
    }

    .founder-info-text h2 {
        font-size: 1.2rem;
        color: #fff;
        margin: 0.8rem 0 0.2rem 0;
        font-weight: 700;
    }

    .founder-info-text p {
        font-size: 0.8rem;
        color: #7045e1;
        margin: 0;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    .founder-quote {
        font-family: 'Poppins', sans-serif;
        font-size: 3.4rem;
        background: linear-gradient(135deg, #fff 0%, #9b7eed 50%, #7045e1 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 0.8rem;
        line-height: 1;
        font-weight: 800;
        letter-spacing: -0.04em;
        text-transform: uppercase;
    }

    .founder-intro {
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.78);
        line-height: 1.6;
        margin-bottom: 1.5rem;
        font-style: italic;
    }

    .founder-philosophy {
        background: rgba(18, 13, 26, 0.7);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-left: 3px solid #7045e1;
        padding: 1.8rem;
        margin-bottom: 1.5rem;
        border-radius: 16px;
        text-align: left;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    }

    .founder-philosophy p {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.78);
        line-height: 1.6;
        margin: 0 0 0.8rem 0;
    }

    .founder-philosophy p:last-child {
        margin-bottom: 0;
    }

    .founder-philosophy strong {
        color: #7045e1;
        font-weight: 600;
    }

    .founder-values {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(112, 69, 225, 0.3);
    }

    .value-item {
        padding: 1.2rem 0.6rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: transform 0.3s ease;
    }

    .value-item:hover {
        transform: translateY(-4px);
    }

    .value-icon {
        font-size: 1.6rem;
        color: #7045e1;
        margin-bottom: 0.8rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(112, 69, 225, 0.12);
        border: 1px solid rgba(112, 69, 225, 0.3);
    }

    .value-content h3 {
        font-size: 0.85rem;
        color: #fff;
        margin-bottom: 0.3rem;
        font-weight: 700;
    }

    .value-content p {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.55);
        line-height: 1.4;
        margin: 0;
    }

    /* === Cabinet Section (Light theme) === */
    .cabinet-section {
        background: #ffffff;
        padding: 6rem 1.25rem;
        position: relative;
        overflow: hidden;
        color: #1a0f2e;
    }

    .cabinet-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
            radial-gradient(ellipse 55% 45% at 80% 20%, rgba(112, 69, 225, 0.10) 0%, transparent 60%),
            radial-gradient(ellipse 50% 40% at 15% 80%, rgba(155, 126, 237, 0.08) 0%, transparent 60%);
        z-index: 1;
        pointer-events: none;
    }

    .cabinet-section > * {
        position: relative;
        z-index: 2;
    }

    .cabinet-container {
        max-width: 1180px;
        margin: 0 auto;
    }

    /* Header — version claire */
    .cabinet-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .cabinet-header h2 {
        font-family: 'Poppins', sans-serif;
        font-size: 3rem;
        background: #1a1a2e;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1.2rem;
        font-weight: 800;
        letter-spacing: -0.035em;
        position: relative;
        display: inline-block;
        line-height: 1.1;
        text-shadow: none;
    }

    .cabinet-header h2::after {
        content: '';
        position: absolute;
        bottom: -14px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #7045e1, #9b7eed);
        border-radius: 2px;
        box-shadow: 0 4px 14px rgba(112, 69, 225, 0.45);
    }

    .cabinet-header p {
        font-size: 1rem;
        color: rgba(26, 15, 46, 0.7);
        line-height: 1.6;
        max-width: 900px;
        margin: 1.6rem auto 0;
    }

    .cabinet-header p em {
        font-style: normal;
        color: #7045e1;
        font-weight: 600;
    }

    .cabinet-photo {
        margin: 2.4rem auto 0;
        max-width: 720px;
        border-radius: 18px;
        overflow: hidden;
        box-shadow:
            0 30px 60px -25px rgba(72, 40, 179, 0.35),
            0 14px 30px -12px rgba(112, 69, 225, 0.22);
        border: 1px solid rgba(112, 69, 225, 0.18);
    }

    .cabinet-photo img {
        display: block;
        width: 100%;
        height: auto;
    }

    .cabinet-header p.cabinet-description {
        font-size: 1.05rem;
        color: rgba(26, 15, 46, 0.78);
        line-height: 1.8;
        max-width: 100%;
        margin: 2.4rem auto 0;
        padding-top: 2rem;
        border-top: 1px solid rgba(112, 69, 225, 0.18);
        text-align: justify;
        text-align-last: center;
    }

    .cabinet-header p.cabinet-description strong {
        color: #1a0f2e;
        font-weight: 600;
    }

    .cabinet-header p.cabinet-description em {
        font-style: italic;
        color: #7045e1;
        font-weight: 500;
    }

    /* Frame label (small section eyebrows) */
    .frame-label {
        display: inline-block;
        font-family: 'Poppins', sans-serif;
        font-size: 0.7rem;
        font-weight: 700;
        color: #7045e1;
        text-transform: uppercase;
        letter-spacing: 2.5px;
        margin-bottom: 0.85rem;
        position: relative;
        padding-left: 1.5rem;
    }

    .frame-label::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1rem;
        height: 1px;
        background: rgba(112, 69, 225, 0.6);
    }

    .frame-label.centered {
        display: block;
        text-align: center;
        padding-left: 0;
        margin-bottom: 1.1rem;
    }

    .frame-label.centered::before { display: none; }

    /* Frame: manifeste + preuve */
    .cabinet-frame {
        display: grid;
        grid-template-columns: 1.6fr 1fr;
        gap: 1.25rem;
        margin-bottom: 2.5rem;
    }

    .cabinet-manifesto,
    .cabinet-trust,
    .cabinet-signature-block {
        background: linear-gradient(180deg, #ffffff 0%, #fbf9ff 100%);
        border: 1px solid rgba(112, 69, 225, 0.18);
        border-radius: 18px;
        padding: 1.75rem 1.6rem;
        box-shadow:
            0 1px 0 rgba(255, 255, 255, 1) inset,
            0 40px 80px -25px rgba(72, 40, 179, 0.30),
            0 18px 36px -12px rgba(112, 69, 225, 0.22),
            0 4px 10px -4px rgba(112, 69, 225, 0.12);
        position: relative;
        overflow: hidden;
    }

    .cabinet-manifesto::before,
    .cabinet-trust::before,
    .cabinet-signature-block::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #4828b3, #7045e1, #9b7eed);
        opacity: 1;
    }

    .cabinet-manifesto {
        border-left: none;
    }

    .manifesto-headline {
        font-family: 'Poppins', sans-serif;
        font-size: 1.2rem;
        font-weight: 600;
        line-height: 1.35;
        color: #1a0f2e;
        margin: 0 0 1.25rem;
        letter-spacing: -0.01em;
    }

    .manifesto-headline em {
        font-style: normal;
        color: #7045e1;
    }

    .manifesto-points {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.65rem;
    }

    .manifesto-points li {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 0.8rem;
        align-items: start;
        padding-top: 0.65rem;
        border-top: 1px solid rgba(26, 15, 46, 0.08);
    }

    .manifesto-points li:first-child {
        border-top: none;
        padding-top: 0;
    }

    .manifesto-num {
        font-family: 'Poppins', sans-serif;
        font-size: 0.72rem;
        font-weight: 800;
        color: #7045e1;
        letter-spacing: 1px;
        padding-top: 2px;
    }

    .manifesto-points p {
        font-size: 0.85rem;
        line-height: 1.5;
        color: rgba(26, 15, 46, 0.72);
        margin: 0;
    }

    .manifesto-points strong {
        color: #1a0f2e;
        font-weight: 600;
    }

    /* Trust panel */
    .cabinet-trust {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .trust-headline {
        font-family: 'Poppins', sans-serif;
        font-size: 1.2rem;
        font-weight: 600;
        line-height: 1.35;
        color: #1a0f2e;
        margin: 0 0 1.1rem;
        letter-spacing: -0.01em;
    }

    .trust-headline em {
        font-style: normal;
        color: #7045e1;
    }

    .trust-kpis {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.55rem;
        margin-bottom: 0.9rem;
        flex: 1;
    }

    .trust-kpi {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 0.25rem;
        padding: 0.8rem 0.85rem;
        background: linear-gradient(135deg, rgba(112, 69, 225, 0.09), rgba(155, 126, 237, 0.04));
        border: 1px solid rgba(112, 69, 225, 0.18);
        border-radius: 12px;
        transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    }

    .trust-kpi:hover {
        border-color: rgba(112, 69, 225, 0.5);
        background: linear-gradient(135deg, rgba(112, 69, 225, 0.14), rgba(155, 126, 237, 0.08));
        transform: translateY(-2px);
        box-shadow: 0 8px 20px -8px rgba(112, 69, 225, 0.35);
    }

    .trust-kpi-score {
        font-family: 'Poppins', sans-serif;
        font-size: 1.55rem;
        font-weight: 800;
        line-height: 1;
        background: linear-gradient(135deg, #7045e1, #9b7eed);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .trust-kpi-score small {
        font-size: 0.78rem;
        font-weight: 600;
        color: rgba(26, 15, 46, 0.45);
        -webkit-text-fill-color: rgba(26, 15, 46, 0.45);
        margin-left: 1px;
    }

    .trust-kpi-label {
        font-size: 0.72rem;
        color: rgba(26, 15, 46, 0.65);
        line-height: 1.25;
    }

    .trust-kpi-label sup {
        font-size: 0.6rem;
    }

    .trust-footnote {
        font-size: 0.68rem;
        color: rgba(26, 15, 46, 0.45);
        line-height: 1.45;
        margin: 0;
        text-align: center;
        padding-top: 0.4rem;
        border-top: 1px solid rgba(26, 15, 46, 0.06);
    }

    /* Signature block (différenciateurs + politique) */
    .cabinet-signature-block {
        margin-bottom: 2.5rem;
        background: #ffffff;
        border: 1px solid rgba(112, 69, 225, 0.15);
        padding: 1.25rem 1.4rem;
    }

    .signature-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 0.5rem;
    }

    .sig-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        padding: 0.5rem 0.6rem;
        background: linear-gradient(135deg, rgba(112, 69, 225, 0.06), rgba(155, 126, 237, 0.02));
        border: 1px solid rgba(112, 69, 225, 0.15);
        border-radius: 10px;
        color: rgba(26, 15, 46, 0.88);
        font-size: 0.74rem;
        font-weight: 500;
        line-height: 1.2;
        text-align: center;
        transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    }

    .sig-item:hover {
        border-color: rgba(112, 69, 225, 0.45);
        background: linear-gradient(135deg, rgba(112, 69, 225, 0.12), rgba(155, 126, 237, 0.06));
        transform: translateY(-2px);
        box-shadow: 0 8px 20px -8px rgba(112, 69, 225, 0.3);
    }

    .sig-item i {
        color: #7045e1;
        font-size: 0.9rem;
        flex-shrink: 0;
    }

    .signature-divider {
        margin: 0.9rem 0 0.7rem;
        text-align: center;
        position: relative;
    }

    .signature-divider::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 1px;
        background: rgba(112, 69, 225, 0.18);
    }

    .signature-divider span {
        position: relative;
        background: #ffffff;
        padding: 0 1rem;
        font-family: 'Poppins', sans-serif;
        font-size: 0.7rem;
        font-weight: 700;
        color: #7045e1;
        text-transform: uppercase;
        letter-spacing: 2.5px;
    }

    .politique-pillars {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 0.5rem;
    }

    .politique-pillar {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.55rem 0.7rem;
        border-radius: 10px;
        background: linear-gradient(135deg, rgba(112, 69, 225, 0.09), rgba(155, 126, 237, 0.04));
        border: 1px solid rgba(112, 69, 225, 0.2);
        transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
    }

    .politique-pillar:hover {
        border-color: rgba(112, 69, 225, 0.5);
        background: linear-gradient(135deg, rgba(112, 69, 225, 0.16), rgba(155, 126, 237, 0.08));
        transform: translateY(-3px);
        box-shadow: 0 10px 24px -8px rgba(112, 69, 225, 0.35);
    }

    .politique-pillar i {
        color: #7045e1;
        font-size: 1rem;
    }

    .politique-pillar span {
        font-size: 0.74rem;
        font-weight: 600;
        color: rgba(26, 15, 46, 0.85);
        line-height: 1.15;
    }

    /* Logos band */
    .cabinet-certifications {
        padding-top: 2.5rem;
        border-top: 1px solid rgba(112, 69, 225, 0.2);
    }

    .cabinet-certifications-label {
        font-size: 0.72rem;
        font-weight: 700;
        color: rgba(26, 15, 46, 0.55);
        text-transform: uppercase;
        letter-spacing: 2px;
        margin: 0 0 1.5rem;
        text-align: center;
    }

    .cabinet-logos {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 3.5rem;
        flex-wrap: wrap;
    }

    .cabinet-logo-item {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem;
        transition: transform 0.3s ease, opacity 0.3s ease;
        opacity: 0.9;
        text-decoration: none;
        color: inherit;
    }

    a.cabinet-logo-item {
        cursor: pointer;
    }

    .cabinet-logo-item:hover {
        transform: translateY(-3px);
        opacity: 1;
    }

    .cabinet-logo-item img {
        max-height: 70px;
        max-width: 160px;
        width: auto;
        height: auto;
        object-fit: contain;
        filter: none;
    }

    @media (max-width: 960px) {
        .cabinet-frame { grid-template-columns: 1fr; }
        .signature-grid { grid-template-columns: repeat(3, 1fr); }
        .politique-pillars { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 600px) {
        .cabinet-section { padding: 4rem 1rem; }
        .cabinet-manifesto,
        .cabinet-trust,
        .cabinet-signature-block {
            padding: 1.25rem 1rem;
            border-radius: 16px;
        }
        .manifesto-headline { font-size: 1.05rem; margin-bottom: 0.9rem; }
        .manifesto-points p,
        .sig-item { font-size: 0.78rem; }
        .signature-grid { grid-template-columns: repeat(2, 1fr); }
        .trust-kpis { gap: 0.4rem; }
        .trust-kpi { padding: 0.6rem 0.7rem; }
        .trust-kpi-score { font-size: 1.3rem; }
        .cabinet-logos { gap: 2rem; }
        .cabinet-logo-item img { max-height: 55px; max-width: 120px; }
    }

    /* Expertise Section */
    .expertise-section {
        padding: 5rem 1rem;
        background: transparent;
        position: relative;
    }

    .expertise-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
            radial-gradient(ellipse 50% 40% at 90% 20%, rgba(72, 40, 179, 0.14) 0%, transparent 65%),
            radial-gradient(ellipse 40% 30% at 10% 80%, rgba(112, 69, 225, 0.08) 0%, transparent 65%);
        z-index: 0;
        pointer-events: none;
    }

    .expertise-section > * {
        position: relative;
        z-index: 1;
    }

    .expertise-container {
        max-width: 1400px;
        margin: 0 auto;
    }

    .expertise-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .expertise-content {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .expertise-right {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .expertise-header h2 {
        font-family: 'Poppins', sans-serif;
        font-size: 3rem;
        color: #fff;
        margin-bottom: 1.2rem;
        font-weight: 800;
        letter-spacing: -0.035em;
        position: relative;
        display: inline-block;
        line-height: 1.1;
        text-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
    }

    .expertise-header h2::after {
        content: '';
        position: absolute;
        bottom: -14px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #7045e1, #9b7eed);
        border-radius: 2px;
        box-shadow: 0 2px 14px rgba(112, 69, 225, 0.6);
    }

    .expertise-header p {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.6;
        max-width: 1200px;
        margin: 0 auto;
    }

    .expertise-card {
        background: rgba(18, 13, 26, 0.55);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 16px;
        padding: 1.2rem 1rem;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    }

    .expertise-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(44, 23, 138, 0.35) 100%);
        z-index: 1;
        transition: all 0.4s ease;
    }

    .expertise-card h3,
    .expertise-card p {
        position: relative;
        z-index: 2;
    }

    .expertise-card:hover {
        border-color: rgba(112, 69, 225, 0.45);
        box-shadow:
            0 18px 45px rgba(44, 23, 138, 0.4),
            0 0 0 1px rgba(112, 69, 225, 0.25);
        transform: translateY(-10px) scale(1.02);
    }

    .expertise-card:hover::before {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(44, 23, 138, 0.2) 100%);
    }

    .expertise-card-icon {
        font-size: 1.8rem;
        color: #7045e1;
        margin-bottom: 0.6rem;
        display: block;
    }

    .expertise-card h3 {
        font-family: 'Poppins', sans-serif;
        font-size: 1rem;
        color: #ffffff;
        margin-bottom: 0.3rem;
        font-weight: 700;
        text-shadow: 0em 0em 0.3em rgba(0,0,0,0.8);
        letter-spacing: 0.2px;
    }

    .expertise-card h3 .card-norm {
        display: block;
        margin-top: 0.25rem;
        font-size: 0.85rem;
        font-weight: 500;
        opacity: 0.9;
        letter-spacing: 0.3px;
    }

    .expertise-card p {
        font-size: 0.8rem;
        color: #ffffff;
        line-height: 1.4;
        margin: 0;
    }

    

    .expertise-text-box {
        background: rgba(18, 13, 26, 0.75);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 18px;
        padding: 2.2rem;
        height: 100%;
        border-left: 3px solid #7045e1;
        position: relative;
        overflow: hidden;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    }

    .expertise-text-box h3 {
        font-size: 1.4rem;
        color: #fff;
        margin-bottom: 1rem;
        font-weight: 700;
        letter-spacing: -0.01em;
        position: relative;
    }

    .expertise-text-box p {
        font-family: 'Inter', sans-serif;
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .expertise-text-box p:last-child {
        margin-bottom: 0;
    }

    .expertise-text-box strong {
        color: #9b7eed;
        font-weight: 600;
    }

    .event-card{
        /* background-image: url('{{ asset('images/homePageExpertise/banniere-evenement.jpg') }}'); */
        background: linear-gradient(135deg, #7045e1 0%, #9b7eed 100%);
        background-size: cover;
        background-position: center;
        color: #fff;
    }

    .rse-card{
        /* background-image: url('{{ asset('images/homePageExpertise/banniere-rse.jpg') }}'); */
        background: linear-gradient(135deg, #6BA876 0%, #9FD356 100%);
        background-size: cover;
        background-position: center;
        color: #fff;
    }

    .quality-card{
        /* background-image: url('{{ asset('images/homePageExpertise/banniere-qualite.jpg') }}'); */
        background: linear-gradient(135deg, #D4571F 0%, #FFB84D 100%);
        background-size: cover;
        background-position: center;
        color: #fff;
    }

    .qualiopi-card{
        /* background-image: url('{{ asset('images/homePageExpertise/banniere-qualiopi.jpg') }}'); */
        background: linear-gradient(135deg, #4A90E2 0%, #7BB3E8 100%);
        background-size: cover;
        background-position: center;
        color: #fff;
    }

    .environment-card{
        /* background-image: url('{{ asset('images/homePageExpertise/banniere-environnement.jpg') }}'); */
        background: linear-gradient(135deg, #4A7C5E 0%, #7BA986 100%);
        background-size: cover;
        background-position: center;
        color: #fff;
    }

    .health-safety-card{
        /* background-image: url('{{ asset('images/homePageExpertise/banniere-hygiene-securite.jpg') }}'); */
        background: linear-gradient(135deg, #C85A54 0%, #E89B8F 100%);
        background-size: cover;
        background-position: center;
        color: #fff;
    }

    .energy-card{
        /* background-image: url('{{ asset('images/homePageExpertise/banniere-energie.jpg') }}'); */
        background: linear-gradient(135deg, #F4B942 0%, #FFD580 100%);
        background-size: cover;
        background-position: center;
        color: #333;
    }

    .mobility-card{
        /* background-image: url('{{ asset('images/homePageExpertise/banniere-mobilite.jpg') }}'); */
        background: linear-gradient(135deg, #00A4B8 0%, #3DBCD1 100%);
        background-size: cover;
        background-position: center;
        color: #fff;
    }

    .iso27001-card{
        /* background-image: url('{{ asset('images/homePageExpertise/banniere-iso27001.jpg') }}'); */
        background: linear-gradient(135deg, #2C5282 0%, #4A7BA7 100%);
        background-size: cover;
        background-position: center;
        color: #fff;
    }

    .anticorruption-card{
        /* background-image: url('{{ asset('images/homePageExpertise/banniere-anticorruption.jpg') }}'); */
        background: linear-gradient(135deg, #5A6370 0%, #8B939E 100%);
        background-size: cover;
        background-position: center;
        color: #fff;
    }

    .continuity-card{
        /* background-image: url('{{ asset('images/homePageExpertise/banniere-continuite-activite.jpg') }}'); */
        background: linear-gradient(135deg, #6e4cb5 0%, #9f88e0 100%);
        background-size: cover;
        background-position: center;
        color: #fff;
    }

    .ecovadis-card{
        background: linear-gradient(135deg, #00A4B8 0%, #3DBCD1 100%);
        background-size: cover;
        background-position: center;
        color: #fff;
    }

    .rse-general-card{
        background: linear-gradient(135deg, #6e4cb5 0%, #9f88e0 100%);
        background-size: cover;
        background-position: center;
        color: #fff;
    }

    /* ===== Expertise Filter — V6 banner ===== */
    .expertise-filter {
        display: flex;
        width: 100%;
        position: relative;
        z-index: 30;
    }

    .ef-banner {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        width: 100%;
        background: rgba(91, 91, 91, 0.8);
        border: 1px solid rgba(112, 69, 225, 0.35);
        border-radius: 18px;
        padding: 1.2rem 1.5rem;
        flex-wrap: wrap;
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        box-shadow:
            0 14px 40px rgba(0, 0, 0, 0.35),
            inset 0 1px 0 rgba(255, 255, 255, 0.05);
        position: relative;
    }

    .ef-banner-icon {
        width: 50px;
        height: 50px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 14px;
        font-size: 1.3rem;
        color: #fff;
        flex: 0 0 auto;
    }

    .ef-banner-text {
        flex: 1 1 240px;
        min-width: 0;
    }

    .ef-banner-q {
        font-family: 'Poppins', sans-serif;
        font-size: 1.15rem;
        font-weight: 600;
        color: #fff;
        margin: 0 0 0.2rem;
        line-height: 1.3;
        letter-spacing: -0.01em;
    }

    .ef-banner-sub {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.65);
        margin: 0;
        line-height: 1.5;
    }

    .ef-control {
        position: relative;
        flex: 0 0 auto;
    }

    .ef-trigger {
        appearance: none;
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        background: #fff;
        color: #1a112a;
        border: none;
        border-radius: 10px;
        padding: 0.75rem 1.2rem;
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        font-size: 0.95rem;
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.25s ease;
    }

    .ef-trigger:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 26px rgba(255, 255, 255, 0.18);
    }

    .ef-trigger[aria-expanded="true"] {
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
    }

    .ef-trigger-value {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 280px;
    }

    .ef-trigger-reset {
        appearance: none;
        background: rgba(26, 17, 42, 0.08);
        border: 1px solid rgba(26, 17, 42, 0.12);
        color: rgba(26, 17, 42, 0.55);
        width: 22px;
        height: 22px;
        border-radius: 50%;
        font-size: 0.65rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        flex: 0 0 auto;
        transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }

    .ef-trigger-reset:hover {
        background: rgba(220, 53, 69, 0.15);
        color: #c0392b;
        border-color: rgba(220, 53, 69, 0.35);
    }

    .ef-trigger-chevron {
        flex: 0 0 auto;
        color: rgba(26, 17, 42, 0.6);
        font-size: 0.75rem;
        transition: transform 0.25s ease;
    }

    .ef-trigger[aria-expanded="true"] .ef-trigger-chevron {
        transform: rotate(180deg);
    }

    /* Panel */
    .ef-panel {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        width: 460px;
        max-width: calc(100vw - 2rem);
        background: rgba(18, 13, 26, 0.96);
        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(22px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        box-shadow:
            0 24px 60px rgba(0, 0, 0, 0.6),
            0 0 0 1px rgba(112, 69, 225, 0.08);
        z-index: 50;
        overflow: hidden;
        animation: efPanelIn 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
        transform-origin: top right;
    }

    @keyframes efPanelIn {
        from { opacity: 0; transform: translateY(-6px) scale(0.97); }
        to   { opacity: 1; transform: translateY(0) scale(1); }
    }

    .ef-panel-search {
        position: relative;
        padding: 0.85rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .ef-panel-search i {
        position: absolute;
        left: 1.6rem;
        top: 50%;
        transform: translateY(-50%);
        color: rgba(255, 255, 255, 0.4);
        font-size: 0.85rem;
        pointer-events: none;
    }

    .ef-panel-search input {
        width: 100%;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 9px;
        padding: 0.55rem 0.75rem 0.55rem 2.2rem;
        font-family: 'Inter', sans-serif;
        font-size: 0.88rem;
        color: #fff;
        outline: none;
        transition: border-color 0.2s ease, background 0.2s ease;
    }

    .ef-panel-search input::placeholder {
        color: rgba(255, 255, 255, 0.4);
    }

    .ef-panel-search input:focus {
        border-color: rgba(112, 69, 225, 0.6);
        background: rgba(112, 69, 225, 0.08);
    }

    .ef-panel-scroll {
        max-height: 440px;
        overflow-y: auto;
        padding: 0.5rem 0;
        scrollbar-width: thin;
        scrollbar-color: rgba(112, 69, 225, 0.45) transparent;
    }

    .ef-panel-scroll::-webkit-scrollbar {
        width: 6px;
    }

    .ef-panel-scroll::-webkit-scrollbar-track {
        background: transparent;
    }

    .ef-panel-scroll::-webkit-scrollbar-thumb {
        background: rgba(112, 69, 225, 0.4);
        border-radius: 4px;
    }

    .ef-section {
        padding: 0.5rem 1rem 0.75rem;
    }

    .ef-section + .ef-section {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        margin-top: 0.25rem;
    }

    .ef-section-title {
        font-family: 'Inter', sans-serif;
        font-size: 0.68rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: rgba(255, 255, 255, 0.45);
        margin: 0.35rem 0 0.6rem;
    }

    .ef-options {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .ef-options-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2px 6px;
    }

    .ef-option {
        appearance: none;
        background: transparent;
        border: 1px solid transparent;
        border-radius: 9px;
        padding: 0.5rem 0.7rem;
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        color: rgba(255, 255, 255, 0.82);
        font-family: 'Inter', sans-serif;
        font-size: 0.85rem;
        font-weight: 500;
        text-align: left;
        cursor: pointer;
        transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
        min-width: 0;
    }

    .ef-option > span:not(.ef-tag) {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        flex: 1 1 auto;
    }

    .ef-option > i {
        color: #9b7eed;
        font-size: 0.85rem;
        flex: 0 0 auto;
    }

    .ef-option:hover {
        background: rgba(112, 69, 225, 0.12);
        color: #fff;
    }

    .ef-option.is-active {
        background: rgba(112, 69, 225, 0.22);
        color: #fff;
        border-color: rgba(155, 126, 237, 0.35);
    }

    .ef-option.is-active::after {
        content: "\F26B"; /* bi-check2 */
        font-family: 'bootstrap-icons';
        margin-left: auto;
        color: #9b7eed;
        font-size: 0.95rem;
        flex: 0 0 auto;
    }

    .ef-option.is-hidden {
        display: none;
    }

    .ef-tag {
        flex: 0 0 auto;
        background: rgba(112, 69, 225, 0.18);
        color: #c8b7f5;
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        padding: 2px 7px;
        border-radius: 5px;
        line-height: 1.4;
        min-width: 36px;
        text-align: center;
    }

    .ef-no-results {
        text-align: center;
        padding: 1.5rem 1rem;
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.85rem;
    }

    .ef-no-results i {
        margin-right: 0.4rem;
        color: #7045e1;
    }

    /* Mobile : bandeau stack vertical, panel pleine largeur */
    @media (max-width: 768px) {
        .ef-banner {
            gap: 1rem;
            padding: 1.1rem 1.1rem;
        }

        .ef-banner-icon {
            width: 42px;
            height: 42px;
            font-size: 1.1rem;
        }

        .ef-banner-text {
            flex: 1 1 100%;
        }

        .ef-banner-q {
            font-size: 1rem;
        }

        .ef-banner-sub {
            font-size: 0.78rem;
        }

        .ef-control {
            width: 100%;
        }

        .ef-trigger {
            width: 100%;
            justify-content: space-between;
        }

        .ef-panel {
            left: 0;
            right: 0;
            width: auto;
            max-width: none;
        }

        .ef-options-grid {
            grid-template-columns: 1fr;
        }

        .ef-panel-scroll {
            max-height: 60vh;
        }
    }

    /* Card filter animations */
    .expertise-card-col {
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .expertise-card-col.is-hidden {
        display: none !important;
    }

    /* Filtered state: switch the cards grid to a uniform layout.
       Original Bootstrap row (col-lg-2/3/4/5) is preserved when no filter is active. */
    #expertiseCardsGrid.is-filtered {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
        margin: 0 !important;
    }

    #expertiseCardsGrid.is-filtered > .expertise-card-col {
        width: auto !important;
        max-width: none !important;
        flex: initial !important;
        padding: 0 !important;
        margin-top: 0 !important;
    }

    @media (max-width: 1199.98px) {
        #expertiseCardsGrid.is-filtered {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }

    @media (max-width: 767.98px) {
        #expertiseCardsGrid.is-filtered {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1rem;
        }
    }

    @media (max-width: 480px) {
        #expertiseCardsGrid.is-filtered {
            grid-template-columns: 1fr;
        }
    }

    .expertise-card-col.is-appearing {
        animation: cardFadeIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    }

    @keyframes cardFadeIn {
        from {
            opacity: 0;
            transform: translateY(10px) scale(0.97);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .expertise-empty {
        text-align: center;
        padding: 2.5rem 1.5rem;
        color: rgba(255, 255, 255, 0.6);
        background: rgba(18, 13, 26, 0.4);
        border: 1px dashed rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        margin-top: 1rem;
    }

    .expertise-empty i {
        font-size: 1.6rem;
        color: #7045e1;
        margin-bottom: 0.4rem;
        display: block;
    }

    .expertise-empty p {
        margin: 0;
        font-size: 0.9rem;
    }

    /* Mobile */
    @media (max-width: 768px) {
        .expertise-filter {
            margin-bottom: 1.2rem;
            gap: 0.45rem;
        }

        .filter-chip {
            padding: 0.3rem 0.7rem;
            font-size: 0.75rem;
        }

        .filter-sep {
            height: 14px;
            margin: 0 0.15rem;
        }
    }

    /* Offer Section */
    .offers-section {
        background: transparent;
        padding: 5rem 1rem;
        position: relative;
        overflow: hidden;
    }

    .offers-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
            radial-gradient(ellipse 50% 50% at 15% 30%, rgba(72, 40, 179, 0.16) 0%, transparent 65%),
            radial-gradient(ellipse 55% 50% at 85% 75%, rgba(112, 69, 225, 0.10) 0%, transparent 65%);
        z-index: 1;
        pointer-events: none;
    }

    .offers-section > * {
        position: relative;
        z-index: 2;
    }

    .offers-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .offers-header h2 {
        font-family: 'Poppins', sans-serif;
        font-size: 3rem;
        color: #ffffff;
        margin-bottom: 1.2rem;
        font-weight: 800;
        letter-spacing: -0.035em;
        position: relative;
        display: inline-block;
        line-height: 1.1;
        text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    }

    .offers-header h2::after {
        content: '';
        position: absolute;
        bottom: -14px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #7045e1, #9b7eed);
        border-radius: 2px;
        box-shadow: 0 2px 14px rgba(112, 69, 225, 0.6);
    }

    .offers-header p {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.6;
        max-width: 900px;
        margin: 0 auto;
    }

    .offers-container {
        max-width: 1600px;
        margin: 0 auto;
    }

    .offer-card {
        background: rgba(18, 13, 26, 0.75);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 18px;
        padding: 2.2rem;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        position: relative;
        overflow: hidden;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    }

    .offer-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #2c178a, #7045e1, #2c178a);
        opacity: 0.8;
    }

    .offer-card:hover {
        border-color: rgba(112, 69, 225, 0.6);
        background: rgba(112, 69, 225, 0.08);
        box-shadow:
            0 20px 50px rgba(44, 23, 138, 0.3),
            0 0 0 1px rgba(112, 69, 225, 0.2);
        transform: translateY(-10px);
    }

    .offer-title {
        font-family: 'Poppins', sans-serif;
        font-size: 1.7rem;
        color: #ffffff;
        margin-bottom: 1rem;
        font-weight: 800;
        letter-spacing: -0.025em;
        line-height: 1.2;
    }

    .offer-description {
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.7;
        margin-bottom: 1rem;
    }


    .btn-orange {
        background: linear-gradient(135deg, #2c178a 0%, #4828b3 50%, #7045e1 100%);
        color: #fff;
        border: none;
        padding: 0.95rem 2.2rem;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 700;
        transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
                    box-shadow 0.35s ease,
                    color 0.25s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        text-decoration: none;
        margin: 0.3rem 0.4rem;
        box-shadow:
            0 10px 28px rgba(44, 23, 138, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        position: relative;
        overflow: hidden;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .btn-orange::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent);
        transition: left 0.6s ease;
        pointer-events: none;
    }

    .btn-orange:hover::before {
        left: 100%;
    }

    .btn-orange:hover {
        color: #fff;
        transform: translateY(-3px);
        box-shadow:
            0 18px 38px rgba(44, 23, 138, 0.55),
            0 0 0 1px rgba(112, 69, 225, 0.4);
        text-decoration: none;
    }

    /* Variante outline : CTA secondaire — texte/bordure violet foncé, se remplit au hover */
    .btn-orange-outline,
    a.btn-orange-outline {
        background: transparent;
        color: #2c178a;
        border: 2px solid #4828b3;
        padding: 0.9rem 2.2rem;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 700;
        transition: transform 0.3s ease, color 0.25s ease, background 0.3s ease, border-color 0.25s ease, box-shadow 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        text-decoration: none;
        margin: 0.3rem 0.4rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .btn-orange-outline:hover,
    a.btn-orange-outline:hover {
        color: #fff;
        background: linear-gradient(135deg, #2c178a 0%, #4828b3 60%, #7045e1 100%);
        border-color: #4828b3;
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(44, 23, 138, 0.35);
        text-decoration: none;
    }

    /* Variante ghost : lien texte discret pour "Voir tout / Afficher plus" */
    .btn-orange-ghost,
    a.btn-orange-ghost {
        background: transparent;
        color: #4828b3;
        border: none;
        padding: 0.55rem 0.4rem;
        font-size: 0.9rem;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        text-decoration: none;
        margin: 0.3rem 0.4rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: color 0.2s ease, gap 0.2s ease;
    }

    .btn-orange-ghost:hover,
    a.btn-orange-ghost:hover {
        color: #2c178a;
        gap: 0.7rem;
        text-decoration: none;
    }

    .btn-orange-ghost::after {
        content: '→';
        transition: transform 0.2s ease;
    }

    .btn-orange-ghost:hover::after {
        transform: translateX(3px);
    }

    .btn-orange-ghost2,
    a.btn-orange-ghost2 {
        background: transparent;
        color: #7045e1;
        border: none;
        padding: 0.55rem 0.4rem;
        font-size: 0.9rem;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        text-decoration: none;
        margin: 0.3rem 0.4rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: color 0.2s ease, gap 0.2s ease;
    }

    .btn-orange-ghost2:hover,
    a.btn-orange-ghost2:hover {
        color: rgb(255, 255, 255);
        gap: 0.7rem;
        text-decoration: none;
    }

    .btn-orange-ghost2::after {
        content: '→';
        transition: transform 0.2s ease;
    }

    .btn-orange-ghost2:hover::after {
        transform: translateX(3px);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .founder-info-with-philosophy {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .founder-values {
            grid-template-columns: 1fr;
            gap: 1.2rem;
        }

        .founder-image img {
            width: 40%;
        }

        .divimage{
            display: flex;
            justify-content: center;
        }
    }

    @media (max-width: 768px) {
        .stats-section {
            padding: 3rem 1rem;
            margin-top: -60px;
        }

        .stats-container {
            gap: 1.5rem;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        }

        .stat-card {
            padding: 2rem 1rem;
        }

        .stat-icon {
            font-size: 2rem;
            margin-bottom: 0.75rem;
        }

        .stat-number {
            font-size: 2.2rem;
        }

        .stat-label {
            font-size: 0.9rem;
        }

        .founder-section {
            padding: 2rem 1rem;
        }

        .founder-quote {
            font-size: 1.6rem;
            margin-bottom: 0.6rem;
        }

        .founder-intro {
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .founder-info-with-philosophy {
            grid-template-columns: 1fr;
            gap: 1.2rem;
            margin-top: 1rem;
        }

        .founder-info-text h2 {
            font-size: 1rem;
        }

        .founder-info-text p {
            font-size: 0.75rem;
        }

        .founder-philosophy {
            padding: 1.2rem;
            margin: 0;
        }

        .founder-philosophy p {
            font-size: 0.85rem;
            line-height: 1.5;
            margin-bottom: 0.6rem;
        }

        .founder-values {
            grid-template-columns: 1fr;
            gap: 0.8rem;
            margin-top: 1rem;
            padding-top: 1rem;
        }

        .value-content h3 {
            font-size: 0.8rem;
        }

        .value-content p {
            font-size: 0.7rem;
        }
    }

    @media (max-width: 480px) {
        .stats-section {
            padding: 2.5rem 1rem;
            margin-top: -40px;
        }

        .stats-container {
            grid-template-columns: repeat(2, 1fr);
            gap: 1.25rem;
        }

        .stat-card {
            padding: 1.5rem 0.75rem;
        }

        .stat-icon {
            font-size: 1.75rem;
            margin-bottom: 0.5rem;
        }

        .stat-number {
            font-size: 1.8rem;
        }

        .stat-label {
            font-size: 0.85rem;
        }

        .founder-section {
            padding: 1.5rem 1rem;
        }

        .founder-quote {
            font-size: 1.6rem;
            margin-bottom: 0.5rem;
        }

        .founder-intro {
            font-size: 0.85rem;
            margin-bottom: 1rem;
            line-height: 1.5;
        }

        .founder-info-with-philosophy {
            grid-template-columns: 1fr;
            gap: 0.8rem;
            margin-top: 0.8rem;
        }

        .founder-info-text h2 {
            font-size: 0.95rem;
            margin: 0.6rem 0 0.2rem 0;
        }

        .founder-info-text p {
            font-size: 0.7rem;
        }

        .founder-philosophy {
            padding: 1rem;
            margin: 0;
            border-left-width: 3px;
        }

        .founder-philosophy p {
            font-size: 0.8rem;
            line-height: 1.4;
            margin-bottom: 0.5rem;
        }

        .founder-values {
            grid-template-columns: 1fr;
            gap: 0.6rem;
            margin-top: 0.8rem;
            padding-top: 0.8rem;
        }

        .value-item {
            padding: 0.7rem 0.4rem;
        }

        .value-icon {
            font-size: 1.3rem;
            margin-bottom: 0.4rem;
        }

        .value-content h3 {
            font-size: 0.8rem;
        }

        .value-content p {
            font-size: 0.7rem;
        }
    }
    /* Reviews Section */
    .reviews-section {
        padding: 5rem 1rem;
        background: transparent;
        position: relative;
        overflow: hidden;
    }

    .reviews-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
            radial-gradient(ellipse 45% 40% at 80% 20%, rgba(72, 40, 179, 0.12) 0%, transparent 65%),
            radial-gradient(ellipse 40% 35% at 15% 80%, rgba(112, 69, 225, 0.08) 0%, transparent 65%);
        z-index: 0;
        pointer-events: none;
    }

    .reviews-section > * {
        position: relative;
        z-index: 1;
    }

    .reviews-container {
        max-width: 1500px;
        margin: 0 auto;
    }

    .reviews-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .reviews-header h2 {
        font-family: 'Poppins', sans-serif;
        font-size: 3rem;
        color: #fff;
        margin-bottom: 1.2rem;
        font-weight: 800;
        letter-spacing: -0.035em;
        position: relative;
        display: inline-block;
        line-height: 1.1;
        text-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
    }

    .reviews-header h2::after {
        content: '';
        position: absolute;
        bottom: -14px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #7045e1, #9b7eed);
        border-radius: 2px;
        box-shadow: 0 2px 14px rgba(112, 69, 225, 0.6);
    }

    .reviews-header p {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.6;
        max-width: 900px;
        margin: 0 auto;
    }

    .review-card {
        background: rgba(18, 13, 26, 0.75);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 18px;
        padding: 2rem;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        height: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    }

    .review-card::before {
        content: '"';
        position: absolute;
        top: -8px;
        right: 18px;
        font-size: 5rem;
        color: rgba(112, 69, 225, 0.18);
        font-family: Georgia, serif;
        line-height: 1;
        font-weight: 700;
    }

    .review-card:hover {
        border-color: rgba(112, 69, 225, 0.4);
        box-shadow:
            0 20px 50px rgba(44, 23, 138, 0.4),
            0 0 0 1px rgba(112, 69, 225, 0.2);
        transform: translateY(-10px);
    }

    .review-card-header {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.2rem;
    }

    .review-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        flex-shrink: 0;
        border: 2px solid rgba(112, 69, 225, 0.6);
        box-shadow: 0 0 0 3px rgba(112, 69, 225, 0.12);
    }

    .review-author-info {
        text-align: left;
        flex: 1;
    }

    .review-author-name {
        font-family: 'Poppins', sans-serif;
        font-size: 1rem;
        color: #fff;
        font-weight: 600;
        margin-bottom: 0.3rem;
        line-height: 1.3;
    }

    .review-author-company {
        font-size: 0.85rem;
        color: #9b7eed;
        margin: 0;
        font-weight: 500;
    }

    .review-text {
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.78);
        line-height: 1.7;
        font-style: italic;
        text-align: left;
        margin-bottom: 1rem;
        flex-grow: 1;
    }

    /* Swiper Reviews Styles */
    .swiper-reviews {
        padding-top: 2rem;
        padding-bottom: 2rem;
        max-width: 100%;
    }

    .swiper-reviews .swiper-slide {
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .review-card {
        min-height: 250px;
    }

    /* Swiper Reviews Navigation */
    .swiper-reviews-pagination {
        position: relative;
        margin-top: 2rem;
    }

    .swiper-reviews .swiper-button-prev,
    .swiper-reviews .swiper-button-next {
        color: #7045e1;
        width: 40px;
        height: 40px;
        background: rgba(18, 13, 26, 0.8);
        border: 1.5px solid rgba(112, 69, 225, 0.45);
        border-radius: 50%;
        transition: all 0.3s ease;
        top: 50%;
        backdrop-filter: blur(10px);
    }

    .swiper-reviews .swiper-button-prev:after,
    .swiper-reviews .swiper-button-next:after {
        font-size: 1.2rem;
        font-weight: 700;
    }

    .swiper-reviews .swiper-button-prev:hover,
    .swiper-reviews .swiper-button-next:hover {
        background: rgba(112, 69, 225, 0.18);
        border-color: #7045e1;
        color: #fff;
    }

    .swiper-reviews .swiper-pagination-bullet {
        background: rgba(255, 255, 255, 0.25);
        opacity: 1;
    }

    .swiper-reviews .swiper-pagination-bullet-active {
        background: #7045e1;
        box-shadow: 0 0 12px rgba(112, 69, 225, 0.6);
    }

    /* Case Studies Section */
    .case-studies-section {
        padding: 5rem 1rem;
        background: transparent;
        position: relative;
        overflow: hidden;
    }

    .case-studies-container {
        max-width: 1400px;
        margin: 0 auto;
    }

    .case-studies-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .case-studies-header h2 {
        font-family: 'Poppins', sans-serif;
        font-size: 3rem;
        color: #fff;
        margin-bottom: 1.2rem;
        font-weight: 800;
        letter-spacing: -0.035em;
        position: relative;
        display: inline-block;
        line-height: 1.1;
        text-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
    }

    .case-studies-header h2::after {
        content: '';
        position: absolute;
        bottom: -14px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #7045e1, #9b7eed);
        border-radius: 2px;
        box-shadow: 0 2px 14px rgba(112, 69, 225, 0.6);
    }

    .case-studies-header p {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.6;
        max-width: 900px;
        margin: 0 auto;
    }

    .case-study-item {
        display: flex;
        align-items: center;
        gap: 3rem;
        margin-bottom: 2rem;
        position: relative;
    }

    .case-study-item:nth-child(even) {
        flex-direction: row-reverse;
    }

    .case-study-image {
        flex: 0 0 45%;
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        border: 1px solid rgba(112, 69, 225, 0.18);
        box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.5),
            0 0 0 1px rgba(112, 69, 225, 0.08);
        transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .case-study-image:hover {
        transform: scale(1.02);
    }

    .case-study-image img {
        transition: transform 0.6s ease;
    }

    .case-study-image:hover img {
        transform: scale(1.05);
    }

    .case-study-image img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        display: block;
    }

    .case-study-image::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(44, 23, 138, 0.1) 0%, rgba(44, 23, 138, 0) 100%);
        z-index: 1;
    }

    .case-study-content {
        flex: 1;
        padding: 2rem;
    }

    .case-study-badge {
        display: inline-block;
        background: rgba(112, 69, 225, 0.1);
        color: #9b7eed;
        padding: 0.5rem 1.2rem;
        border-radius: 50px;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        margin-bottom: 1rem;
        border: 1px solid rgba(112, 69, 225, 0.3);
        backdrop-filter: blur(8px);
    }

    .case-study-content h3 {
        font-family: 'Poppins', sans-serif;
        font-size: 1.8rem;
        color: #fff;
        margin-bottom: 1rem;
        font-weight: 700;
        letter-spacing: -0.02em;
    }

    .case-study-description {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.72);
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }

    .case-study-results {
        background: rgba(18, 13, 26, 0.7);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-left: 3px solid #7045e1;
        padding: 1.5rem;
        border-radius: 12px;
        margin-bottom: 1.5rem;
    }

    .case-study-results h4 {
        font-size: 0.78rem;
        color: #9b7eed;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        margin-bottom: 0.8rem;
    }

    .case-study-results ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .case-study-results li {
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.78);
        line-height: 1.6;
        padding-left: 1.5rem;
        position: relative;
        margin-bottom: 0.5rem;
    }

    .case-study-results li:before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #7045e1;
        font-weight: bold;
    }

    .case-study-cta {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        color: #9b7eed;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        padding-bottom: 0.3rem;
        border-bottom: 2px solid rgba(112, 69, 225, 0.4);
    }

    .case-study-cta:hover {
        color: #fff;
        border-bottom-color: #7045e1;
        gap: 0.7rem;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .case-study-item,
        .case-study-item:nth-child(even) {
            flex-direction: column;
        }

        .case-study-image {
            flex: 0 0 100%;
        }

        .case-study-content {
            flex: 1;
            padding: 1.5rem 0;
        }
    }

    @media (max-width: 768px) {
        .case-studies-section {
            padding: 3rem 1rem;
        }

        .case-study-item {
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .case-study-image img {
            height: 300px;
        }

        .case-study-content {
            padding: 1rem 0;
        }

        .case-study-content h3 {
            font-size: 1.4rem;
            margin-bottom: 0.8rem;
        }

        .case-study-description {
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }
    }

    /* Articles Section */
    .articles-section {
        padding: 5rem 1rem;
        background: transparent;
        position: relative;
        overflow: hidden;
    }

    .articles-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
            radial-gradient(ellipse 50% 45% at 80% 25%, rgba(72, 40, 179, 0.16) 0%, transparent 65%),
            radial-gradient(ellipse 45% 40% at 15% 75%, rgba(112, 69, 225, 0.10) 0%, transparent 65%);
        z-index: 1;
        pointer-events: none;
    }

    .articles-section > * {
        position: relative;
        z-index: 2;
    }

    .articles-container {
        max-width: 1400px;
        margin: 0 auto;
    }

    .articles-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .articles-header h2 {
        font-family: 'Poppins', sans-serif;
        font-size: 3rem;
        color: #ffffff;
        margin-bottom: 1.2rem;
        font-weight: 800;
        letter-spacing: -0.035em;
        position: relative;
        display: inline-block;
        line-height: 1.1;
        text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    }

    .articles-header h2::after {
        content: '';
        position: absolute;
        bottom: -14px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #7045e1, #9b7eed);
        border-radius: 2px;
        box-shadow: 0 2px 14px rgba(112, 69, 225, 0.6);
    }

    .articles-header p {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.6;
        max-width: 900px;
        margin: 0 auto;
    }

    .article-card {
        background: rgba(18, 13, 26, 0.78);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-radius: 18px;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        height: 100%;
        display: flex;
        flex-direction: column;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .article-card:hover {
        transform: translateY(-14px);
        box-shadow:
            0 24px 55px rgba(44, 23, 138, 0.5),
            0 0 0 1px rgba(112, 69, 225, 0.35);
        border-color: rgba(112, 69, 225, 0.35);
    }

    .article-image {
        position: relative;
        overflow: hidden;
        height: 250px;
    }

    .article-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .article-card:hover .article-image img {
        transform: scale(1.05);
    }

    .article-category {
        position: absolute;
        top: 1rem;
        left: 1rem;
        background: linear-gradient(135deg, #2c178a 0%, #4828b3 100%);
        color: #fff;
        padding: 0.45rem 1rem;
        border-radius: 50px;
        font-size: 0.72rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        z-index: 2;
        box-shadow: 0 4px 12px rgba(44, 23, 138, 0.4);
        backdrop-filter: blur(10px);
    }

    .article-content {
        padding: 2rem;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .article-meta {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 1rem;
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.5);
    }

    .article-meta span {
        display: flex;
        align-items: center;
        gap: 0.3rem;
    }

    .article-title {
        font-family: 'Poppins', sans-serif;
        font-size: 1.25rem;
        color: #fff;
        margin-bottom: 0.8rem;
        font-weight: 700;
        line-height: 1.4;
        letter-spacing: -0.015em;
    }

    .article-excerpt {
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.6;
        margin-bottom: 1.5rem;
        flex-grow: 1;
    }

    .article-link {
        color: #9b7eed;
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
        padding-bottom: 0.2rem;
        border-bottom: 2px solid rgba(112, 69, 225, 0.4);
    }

    .article-link:hover {
        gap: 1rem;
        color: #fff;
        border-bottom-color: #7045e1;
    }

    .article-link::after {
        content: "→";
    }

    /* Featured Article */
    .article-featured {
        grid-column: span 2;
    }

    .article-featured .article-image {
        height: 350px;
    }

    .article-featured .article-title {
        font-size: 1.6rem;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .article-featured {
            grid-column: span 1;
        }

        .article-featured .article-image {
            height: 250px;
        }

        .article-featured .article-title {
            font-size: 1.25rem;
        }
    }

    @media (max-width: 768px) {
        .articles-section {
            padding: 3rem 1rem;
        }

        .articles-header h2 {
            font-size: 1.8rem;
        }

        .article-image {
            height: 220px;
        }

        .article-content {
            padding: 1.5rem;
        }

        .article-title {
            font-size: 1.1rem;
        }

        .article-excerpt {
            font-size: 0.9rem;
        }
    }

    /* FAQ Section */
    .faq-section {
        padding: 5rem 1rem;
        background: transparent;
        position: relative;
        overflow: hidden;
    }

    .faq-container {
        max-width: 1000px;
        margin: 0 auto;
    }

    .faq-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .faq-header h2 {
        font-family: 'Poppins', sans-serif;
        font-size: 3rem;
        color: #ffffff;
        margin-bottom: 1.2rem;
        font-weight: 800;
        letter-spacing: -0.035em;
        position: relative;
        display: inline-block;
        line-height: 1.1;
        text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    }

    .faq-header h2::after {
        content: '';
        position: absolute;
        bottom: -14px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #7045e1, #9b7eed);
        border-radius: 2px;
        box-shadow: 0 2px 14px rgba(112, 69, 225, 0.6);
    }

    .faq-header p {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.6;
        max-width: 800px;
        margin: 0 auto;
    }

    .faq-accordion {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .faq-item {
        border: 1px solid rgba(255, 255, 255, 0.06);
        background: rgba(18, 13, 26, 0.78);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    }

    .faq-item:hover {
        border-color: rgba(112, 69, 225, 0.35);
        box-shadow:
            0 12px 35px rgba(44, 23, 138, 0.35),
            0 0 0 1px rgba(112, 69, 225, 0.15);
        transform: translateY(-2px);
    }

    .faq-item.active {
        border-color: rgba(112, 69, 225, 0.5);
        box-shadow:
            0 14px 40px rgba(44, 23, 138, 0.4),
            0 0 0 1px rgba(112, 69, 225, 0.25);
    }

    .faq-question {
        background: transparent;
        padding: 1.5rem;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
        user-select: none;
    }

    .faq-question:hover {
        background: rgba(112, 69, 225, 0.06);
    }

    .faq-item.active .faq-question {
        background: linear-gradient(135deg, rgba(112, 69, 225, 0.10) 0%, rgba(44, 23, 138, 0.08) 100%);
    }

    .faq-question-text {
        font-family: 'Poppins', sans-serif;
        font-size: 1.05rem;
        color: #fff;
        font-weight: 600;
        margin: 0;
        flex-grow: 1;
        letter-spacing: -0.01em;
    }

    .faq-icon {
        color: #7045e1;
        font-size: 1.3rem;
        margin-left: 1rem;
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }

    .faq-item.active .faq-icon {
        transform: rotate(180deg);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        background: rgba(0, 0, 0, 0.25);
    }

    .faq-item.active .faq-answer {
        max-height: 600px;
        padding: 1.5rem;
    }

    .faq-answer-text {
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.72);
        line-height: 1.7;
        margin: 0;
    }

    .faq-answer-text strong {
        color: #9b7eed;
        font-weight: 600;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .faq-section {
            padding: 3rem 1rem;
        }

        .faq-header h2 {
            font-size: 1.8rem;
        }

        .faq-question {
            padding: 1.2rem;
        }

        .faq-question-text {
            font-size: 1rem;
        }

        .faq-icon {
            font-size: 1.1rem;
            margin-left: 0.8rem;
        }

        .faq-item.active .faq-answer {
            max-height: 600px;
            padding: 1.2rem;
        }

        .faq-answer-text {
            font-size: 0.9rem;
        }
    }

    /* Floating Button */
    .floating-btn {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        background: linear-gradient(135deg, #2c178a 0%, #4828b3 50%, #7045e1 100%);
        color: #fff;
        padding: 1.05rem 1.8rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        font-size: 0.9rem;
        box-shadow:
            0 12px 32px rgba(44, 23, 138, 0.55),
            0 0 0 1px rgba(112, 69, 225, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        display: flex;
        align-items: center;
        gap: 0.6rem;
        z-index: 999;
        border: none;
        cursor: pointer;
        white-space: nowrap;
        animation: floatPulse 3s ease-in-out infinite;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    @keyframes floatPulse {
        0%, 100% {
            box-shadow:
                0 10px 30px rgba(44, 23, 138, 0.5),
                0 0 0 0 rgba(112, 69, 225, 0.4);
        }
        50% {
            box-shadow:
                0 10px 30px rgba(44, 23, 138, 0.5),
                0 0 0 12px rgba(112, 69, 225, 0);
        }
    }

    .floating-btn:hover {
        transform: translateY(-8px) scale(1.04);
        box-shadow:
            0 18px 45px rgba(44, 23, 138, 0.6),
            0 0 0 1px rgba(112, 69, 225, 0.5);
        color: #fff;
        animation: none;
    }

    .floating-btn:active {
        transform: translateY(-4px) scale(1);
    }

    .floating-btn i {
        font-size: 1.2rem;
    }

    /* Responsive - Mobile Optimization */
    @media (max-width: 768px) {
        .floating-btn {
            bottom: 1.5rem;
            right: 1.5rem;
            padding: 0.85rem 1.2rem;
            font-size: 0.85rem;
        }

        .floating-btn i {
            font-size: 1rem;
        }
    }

    @media (max-width: 480px) {
        .floating-btn {
            bottom: 1rem;
            right: 1rem;
            padding: 0.75rem 1rem;
            font-size: 0.8rem;
            border-radius: 40px;
        }

        .floating-btn i {
            font-size: 0.9rem;
        }

        /* Sur mobile, peut être affiché en icon seul si nécessaire */
        .floating-btn span {
            display: none;
        }

        .floating-btn.text-visible span {
            display: inline;
        }
    }

    #bg-canvas {
        display: none;
    }
    
    canvas {
        display: block;
    }

    /* Contact Form Section */
    .contact-section {
        padding: 5rem 1rem;
        background: transparent;
        position: relative;
        overflow: hidden;
    }

    .contact-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
            radial-gradient(ellipse 50% 45% at 15% 30%, rgba(72, 40, 179, 0.16) 0%, transparent 65%),
            radial-gradient(ellipse 45% 40% at 90% 70%, rgba(112, 69, 225, 0.10) 0%, transparent 65%);
        z-index: 0;
        pointer-events: none;
    }

    .contact-section > * {
        position: relative;
        z-index: 1;
    }

    .contact-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 380px 1fr;
        gap: 3rem;
        align-items: stretch;
    }

    .contact-info-box {
        background:
            linear-gradient(135deg, rgba(44, 23, 138, 0.85) 0%, rgba(72, 40, 179, 0.7) 100%),
            rgba(18, 13, 26, 0.85);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border: 1px solid rgba(112, 69, 225, 0.35);
        border-radius: 18px;
        padding: 2.5rem;
        color: #fff;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        box-shadow:
            0 18px 50px rgba(0, 0, 0, 0.5),
            0 0 0 1px rgba(112, 69, 225, 0.15);
    }

    .contact-info-box::before {
        content: "";
        position: absolute;
        top: -50%;
        right: -50%;
        width: 280px;
        height: 280px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
        border-radius: 50%;
    }

    .contact-info-box::after {
        content: "";
        position: absolute;
        bottom: -30%;
        left: -30%;
        width: 220px;
        height: 220px;
        background: radial-gradient(circle, rgba(112, 69, 225, 0.2) 0%, transparent 70%);
        border-radius: 50%;
    }

    .contact-info-box > * {
        position: relative;
        z-index: 2;
    }

    .contact-info-title {
        font-family: 'Poppins', sans-serif;
        font-size: 2rem;
        color: #fff;
        margin-bottom: 1rem;
        font-weight: 800;
        letter-spacing: -0.025em;
        line-height: 1.1;
    }

    .contact-info-subtitle {
        font-size: 0.78rem;
        color: #9b7eed;
        margin-bottom: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .contact-info-description {
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.7;
        margin-bottom: 2rem;
    }

    .contact-info-phone {
        font-size: 1.25rem;
        color: #fff;
        font-weight: 600;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.6rem;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .contact-info-phone:hover {
        color: #9b7eed;
    }

    .contact-info-phone i {
        color: #9b7eed;
    }

    .contact-info-address {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.85);
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .contact-info-email {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.95);
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .contact-info-email:hover {
        color: #9b7eed;
    }

    .contact-info-email i {
        color: #9b7eed;
        font-size: 1.05rem;
    }

    .contact-form-wrapper {
        display: flex;
        flex-direction: column;
    }


    .contact-header {
        text-align: left;
        margin-bottom: 2rem;
    }

    .contact-header h2 {
        font-family: 'Poppins', sans-serif;
        font-size: 2.2rem;
        color: #fff;
        margin-bottom: 0.6rem;
        font-weight: 800;
        letter-spacing: -0.03em;
        line-height: 1.1;
        text-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
    }

    .contact-header p {
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.6;
    }

    .contact-form {
        background: rgba(18, 13, 26, 0.6);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 18px;
        padding: 2rem;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .contact-form-group:last-child {
        margin-bottom: 0;
    }

    .contact-form label {
        display: block;
        font-family: 'Inter', sans-serif;
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.78);
        font-weight: 600;
        margin-bottom: 0.6rem;
        letter-spacing: 0.4px;
        text-transform: uppercase;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form-select {
        width: 100%;
        padding: 0.9rem 1.1rem;
        border: 1.5px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        font-family: 'Inter', sans-serif;
        font-size: 0.95rem;
        color: #fff;
        transition: all 0.3s ease;
        box-sizing: border-box;
        background: rgba(7, 5, 11, 0.65);
        backdrop-filter: blur(8px);
    }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
        color: rgba(255, 255, 255, 0.35);
    }

    .contact-form input:focus,
    .contact-form textarea:focus,
    .contact-form-select:focus {
        outline: none;
        border-color: #7045e1;
        background: rgba(7, 5, 11, 0.85);
        box-shadow: 0 0 0 3px rgba(112, 69, 225, 0.18);
    }

    .contact-form textarea {
        resize: vertical;
        min-height: 120px;
        font-family: 'Inter', sans-serif;
    }

    .contact-form-select {
        cursor: pointer;
        appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c084fc' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 0.8rem center;
        background-size: 1.2em;
        padding-right: 2.5rem;
    }

    .contact-form-select option {
        background: #0c0814;
        color: #fff;
    }

    .contact-form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .contact-form-submit {
        background: linear-gradient(135deg, #2c178a 0%, #4828b3 50%, #7045e1 100%);
        background-size: 200% 200%;
        background-position: 0% 50%;
        color: #fff;
        border: none;
        padding: 1.1rem 2rem;
        border-radius: 50px;
        font-family: 'Poppins', sans-serif;
        font-size: 1rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
        width: 100%;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow:
            0 12px 30px rgba(44, 23, 138, 0.45),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        position: relative;
        overflow: hidden;
    }

    .contact-form-submit::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
        transition: left 0.6s ease;
    }

    .contact-form-submit:hover::before {
        left: 100%;
    }

    .contact-form-submit:hover {
        transform: translateY(-4px);
        background-position: 100% 50%;
        box-shadow:
            0 18px 40px rgba(44, 23, 138, 0.6),
            0 0 0 1px rgba(112, 69, 225, 0.4);
    }

    .contact-form-submit:active {
        transform: translateY(0);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .contact-container {
            grid-template-columns: 320px 1fr;
            gap: 2rem;
        }

        .contact-info-box {
            padding: 2rem;
        }
    }

    @media (max-width: 768px) {
        .contact-section {
            padding: 3rem 1rem;
        }

        .contact-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .contact-info-box {
            padding: 2rem;
        }

        .contact-header h2 {
            font-size: 1.4rem;
        }

        .contact-form-row {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
    }

    @media (max-width: 480px) {
        .contact-section {
            padding: 2rem 1rem;
        }

        .contact-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .contact-info-box {
            padding: 1.5rem;
        }

        .contact-info-title {
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
        }

        .contact-header h2 {
            font-size: 1.2rem;
        }

        .contact-form input,
        .contact-form textarea,
        .contact-form-select {
            font-size: 0.9rem;
            padding: 0.7rem 0.8rem;
        }

        .contact-form-submit {
            font-size: 0.9rem;
            padding: 0.75rem 1.5rem;
        }
    }

    /* === Responsive global polish === */

    /* Section headers: réduire les h2 sur mobile/tablette */
    @media (max-width: 992px) {
        .cabinet-header h2,
        .founder-container > h2,
        .expertise-header h2,
        .offers-header h2,
        .reviews-header h2,
        .case-studies-header h2,
        .articles-header h2,
        .faq-header h2 {
            font-size: 2.2rem;
        }

        .cabinet-header,
        .expertise-header,
        .offers-header,
        .reviews-header,
        .case-studies-header,
        .articles-header,
        .faq-header {
            margin-bottom: 2.5rem;
        }
    }

    @media (max-width: 576px) {
        .cabinet-header h2,
        .founder-container > h2,
        .expertise-header h2,
        .offers-header h2,
        .reviews-header h2,
        .case-studies-header h2,
        .articles-header h2,
        .faq-header h2 {
            font-size: 1.7rem;
        }

        .cabinet-header p,
        .expertise-header p,
        .offers-header p,
        .reviews-header p,
        .case-studies-header p,
        .articles-header p,
        .faq-header p {
            font-size: 0.9rem;
        }

        .cabinet-header p.cabinet-description {
            font-size: 0.92rem;
            line-height: 1.7;
            margin-top: 1.8rem;
            padding-top: 1.5rem;
            text-align: left;
            text-align-last: left;
        }

        .expertise-section,
        .offers-section,
        .reviews-section,
        .case-studies-section,
        .articles-section,
        .faq-section {
            padding: 2.5rem 1rem;
        }
    }

    /* Expertise text-box mobile */
    @media (max-width: 992px) {
        .expertise-text-box {
            padding: 1.6rem;
        }

        .expertise-text-box h3 {
            font-size: 1.2rem;
        }

        .expertise-text-box p {
            font-size: 0.9rem;
        }

        .expertise-card {
            min-height: 110px;
        }

        .expertise-card h3 {
            font-size: 0.95rem;
        }
    }

    /* Offer card mobile */
    @media (max-width: 768px) {
        .offer-card {
            padding: 1.6rem;
        }

        .offer-title {
            font-size: 1.4rem;
        }

        .offer-description {
            font-size: 0.9rem;
        }
    }

    /* Articles featured - empêche span 2 sur petit écran (était déjà CSS-grid only mais rendu via Bootstrap) */
    @media (max-width: 768px) {
        .article-featured .article-image {
            height: 200px;
        }

        .article-featured .article-title {
            font-size: 1.15rem;
        }
    }

    /* Floating button : éviter collision avec le bouton mobile/CTA, et empêcher de couvrir le texte */
    @media (max-width: 480px) {
        .floating-btn {
            padding: 0.7rem;
            border-radius: 50%;
            width: 48px;
            height: 48px;
            justify-content: center;
        }

        .floating-btn span {
            display: none;
        }

        .floating-btn i {
            font-size: 1.2rem;
            margin: 0;
        }
    }

    /* ============================================================
       LIGHT THEME OVERRIDES
       Sections concernées : Notre Expertise, Nos Offres,
       Ils nous font confiance, Articles & Ressources, Contact.
       ============================================================ */

    /* --- Section backgrounds & decorative gradients --- */
    .expertise-section,
    .offers-section,
    .reviews-section,
    .articles-section,
    .contact-section {
        background: #ffffff;
    }

    .expertise-section::before,
    .offers-section::before,
    .reviews-section::before,
    .articles-section::before,
    .contact-section::before {
        background:
            radial-gradient(ellipse 55% 45% at 85% 20%, rgba(112, 69, 225, 0.10) 0%, transparent 65%),
            radial-gradient(ellipse 50% 40% at 10% 80%, rgba(72, 40, 179, 0.06) 0%, transparent 65%);
    }

    /* --- Headers (titres + paragraphes intro) --- */
    .expertise-header h2,
    .offers-header h2,
    .reviews-header h2,
    .articles-header h2,
    .contact-header h2 {
        color: #1a1a2e;
        text-shadow: none;
    }

    .expertise-header p,
    .offers-header p,
    .reviews-header p,
    .articles-header p,
    .contact-header p {
        color: rgba(26, 26, 46, 0.7);
    }

    /* --- Expertise --- */
    .expertise-text-box {
        background: linear-gradient(180deg, #ffffff 0%, #fbf9ff 100%);
        border: 1px solid rgba(112, 69, 225, 0.18);
        border-left: 3px solid #7045e1;
        box-shadow:
            0 1px 0 rgba(255, 255, 255, 1) inset,
            0 40px 80px -25px rgba(72, 40, 179, 0.30),
            0 18px 36px -12px rgba(112, 69, 225, 0.22),
            0 4px 10px -4px rgba(112, 69, 225, 0.12);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .expertise-text-box h3 {
        color: #1a1a2e;
    }

    .expertise-text-box p {
        color: rgba(26, 26, 46, 0.75);
    }

    .expertise-text-box strong {
        color: #4828b3;
    }

    /* Les cartes du grid Expertise ont toutes une variante colorée
       (event-card, rse-card, etc.) — on garde leur dégradé d'origine et
       on adoucit juste l'overlay sombre pour qu'elles ressortent mieux
       sur le nouveau fond clair. */
    .expertise-card {
        box-shadow: 0 10px 30px rgba(44, 23, 138, 0.18);
    }

    .expertise-card::before {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 100%);
    }

    .expertise-card:hover {
        border-color: rgba(112, 69, 225, 0.45);
        box-shadow:
            0 18px 45px rgba(44, 23, 138, 0.32),
            0 0 0 1px rgba(112, 69, 225, 0.25);
    }

    .expertise-card:hover::before {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.08) 100%);
    }

    /* --- Offres --- */
    .offer-card {
        background: linear-gradient(180deg, #ffffff 0%, #fbf9ff 100%);
        border: 1px solid rgba(112, 69, 225, 0.18);
        box-shadow:
            0 1px 0 rgba(255, 255, 255, 1) inset,
            0 40px 80px -25px rgba(72, 40, 179, 0.30),
            0 18px 36px -12px rgba(112, 69, 225, 0.22),
            0 4px 10px -4px rgba(112, 69, 225, 0.12);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .offer-card:hover {
        background: linear-gradient(180deg, #ffffff 0%, #fbf9ff 100%);
        border-color: rgba(112, 69, 225, 0.5);
        box-shadow:
            0 1px 0 rgba(255, 255, 255, 1) inset,
            0 50px 100px -25px rgba(72, 40, 179, 0.40),
            0 22px 44px -12px rgba(112, 69, 225, 0.30),
            0 6px 14px -4px rgba(112, 69, 225, 0.18),
            0 0 0 1px rgba(112, 69, 225, 0.25);
    }

    .offer-title {
        color: #1a1a2e;
    }

    .offer-description {
        color: rgba(26, 26, 46, 0.72);
    }

    /* --- Avis / Reviews --- */
    .review-card {
        background: linear-gradient(180deg, #ffffff 0%, #fbf9ff 100%);
        border: 1px solid rgba(112, 69, 225, 0.18);
        box-shadow:
            0 1px 0 rgba(255, 255, 255, 1) inset,
            0 40px 80px -25px rgba(72, 40, 179, 0.30),
            0 18px 36px -12px rgba(112, 69, 225, 0.22),
            0 4px 10px -4px rgba(112, 69, 225, 0.12);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .review-card::before {
        color: rgba(112, 69, 225, 0.30);
    }

    .review-card:hover {
        border-color: rgba(112, 69, 225, 0.5);
        box-shadow:
            0 1px 0 rgba(255, 255, 255, 1) inset,
            0 50px 100px -25px rgba(72, 40, 179, 0.40),
            0 22px 44px -12px rgba(112, 69, 225, 0.30),
            0 6px 14px -4px rgba(112, 69, 225, 0.18),
            0 0 0 1px rgba(112, 69, 225, 0.25);
    }

    .review-author-name {
        color: #1a1a2e;
    }

    .review-author-company {
        color: #4828b3;
    }

    .review-text {
        color: rgba(26, 26, 46, 0.75);
    }

    .swiper-reviews .swiper-button-prev,
    .swiper-reviews .swiper-button-next {
        background: #ffffff;
        border-color: rgba(112, 69, 225, 0.5);
        color: #4828b3;
        box-shadow: 0 6px 18px rgba(44, 23, 138, 0.15);
    }

    .swiper-reviews .swiper-button-prev:hover,
    .swiper-reviews .swiper-button-next:hover {
        background: #7045e1;
        border-color: #7045e1;
        color: #fff;
    }

    .swiper-reviews .swiper-pagination-bullet {
        background: rgba(26, 26, 46, 0.25);
    }

    .swiper-reviews .swiper-pagination-bullet-active {
        background: #7045e1;
    }

    /* --- Articles --- */
    .article-card {
        background: linear-gradient(180deg, #ffffff 0%, #fbf9ff 100%);
        border: 1px solid rgba(112, 69, 225, 0.18);
        box-shadow:
            0 1px 0 rgba(255, 255, 255, 1) inset,
            0 40px 80px -25px rgba(72, 40, 179, 0.30),
            0 18px 36px -12px rgba(112, 69, 225, 0.22),
            0 4px 10px -4px rgba(112, 69, 225, 0.12);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .article-card:hover {
        border-color: rgba(112, 69, 225, 0.5);
        box-shadow:
            0 1px 0 rgba(255, 255, 255, 1) inset,
            0 50px 100px -25px rgba(72, 40, 179, 0.40),
            0 22px 44px -12px rgba(112, 69, 225, 0.30),
            0 6px 14px -4px rgba(112, 69, 225, 0.18),
            0 0 0 1px rgba(112, 69, 225, 0.25);
    }

    .article-title {
        color: #1a1a2e;
    }

    .article-excerpt {
        color: rgba(26, 26, 46, 0.7);
    }

    .article-meta {
        color: rgba(26, 26, 46, 0.5);
    }

    .article-link {
        color: #4828b3;
        border-bottom-color: rgba(112, 69, 225, 0.5);
    }

    .article-link:hover {
        color: #2c178a;
        border-bottom-color: #4828b3;
    }

    /* --- Contact --- */
    .contact-form {
        background: linear-gradient(180deg, #ffffff 0%, #fbf9ff 100%);
        border: 1px solid rgba(112, 69, 225, 0.18);
        box-shadow:
            0 1px 0 rgba(255, 255, 255, 1) inset,
            0 40px 80px -25px rgba(72, 40, 179, 0.30),
            0 18px 36px -12px rgba(112, 69, 225, 0.22),
            0 4px 10px -4px rgba(112, 69, 225, 0.12);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .contact-form label {
        color: rgba(26, 26, 46, 0.75);
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form-select {
        color: #1a1a2e;
        background: #f8fafd;
        border-color: rgba(26, 26, 46, 0.12);
        backdrop-filter: none;
    }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
        color: rgba(26, 26, 46, 0.4);
    }

    .contact-form input:focus,
    .contact-form textarea:focus,
    .contact-form-select:focus {
        background: #ffffff;
        border-color: #7045e1;
        box-shadow: 0 0 0 3px rgba(112, 69, 225, 0.18);
    }

    .contact-form-select option {
        background: #ffffff;
        color: #1a1a2e;
    }

    /* La contact-info-box garde son style violet (CTA panel) — c'est un contraste voulu sur fond clair */

    /* ============================================================
       ENRICHISSEMENT VISUEL — Offres, Avis, Articles
       ============================================================ */

    /* --- Nos Offres : numéro, icône circulaire, tag --- */
    .offer-card {
        position: relative;
        overflow: hidden;
    }

    .offer-card::before {
        height: 4px;
        background: linear-gradient(90deg, #2c178a, #7045e1, #9b7eed);
        opacity: 0.85;
        transition: height 0.35s ease, opacity 0.35s ease;
    }

    .offer-card:hover::before {
        height: 6px;
        opacity: 1;
    }

    .offer-number {
        position: absolute;
        top: 1rem;
        right: 1.25rem;
        font-family: 'Poppins', sans-serif;
        font-size: 2.6rem;
        font-weight: 800;
        line-height: 1;
        background: linear-gradient(135deg, rgba(112, 69, 225, 0.25), rgba(112, 69, 225, 0.08));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        letter-spacing: -0.04em;
        pointer-events: none;
        user-select: none;
    }

    .offer-icon-wrap {
        width: 64px;
        height: 64px;
        border-radius: 18px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #7045e1 0%, #4828b3 100%);
        color: #fff;
        font-size: 1.7rem;
        margin-bottom: 1.25rem;
        box-shadow:
            0 10px 24px rgba(72, 40, 179, 0.35),
            inset 0 1px 0 rgba(255, 255, 255, 0.25);
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .offer-card:hover .offer-icon-wrap {
        transform: translateY(-4px) rotate(-4deg);
    }

    .offer-tag {
        display: inline-block;
        align-self: flex-start;
        font-family: 'Poppins', sans-serif;
        font-size: 0.65rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.4px;
        color: #4828b3;
        background: rgba(112, 69, 225, 0.12);
        padding: 0.3rem 0.75rem;
        border-radius: 999px;
        margin-bottom: 0.75rem;
        border: 1px solid rgba(112, 69, 225, 0.25);
    }

    .offer-title {
        margin-bottom: 0.85rem;
    }

    .offer-description {
        margin-bottom: 1.5rem;
    }

    /* --- Bandeau image en haut de l'offer-card --- */
    .offer-card {
        padding: 0;
    }

    .offer-banner {
        position: relative;
        height: 180px;
        overflow: hidden;
        border-radius: 17px 17px 0 0;
        background: linear-gradient(135deg, #2c178a, #7045e1);
    }

    .offer-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease;
    }

    .offer-card:hover .offer-banner img {
        transform: scale(1.06);
    }

    .offer-banner::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 45%, rgba(255, 255, 255, 0.92) 100%);
        pointer-events: none;
    }

    .offer-banner .offer-number {
        top: 0.85rem;
        right: 1.1rem;
        font-size: 2.4rem;
        background: none;
        -webkit-background-clip: initial;
        background-clip: initial;
        -webkit-text-fill-color: #ffffff;
        color: #ffffff;
        text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
        z-index: 2;
    }

    .offer-banner .offer-tag {
        position: absolute;
        bottom: 0.9rem;
        left: 1rem;
        margin: 0;
        z-index: 2;
        background: rgba(255, 255, 255, 0.94);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-color: rgba(255, 255, 255, 0.7);
        color: #2c178a;
    }

    .offer-card-body {
        padding: 1.6rem 1.8rem 1.8rem;
    }

    @media (max-width: 768px) {
        .offer-card {
            padding: 0;
        }
        .offer-banner {
            height: 160px;
        }
        .offer-card-body {
            padding: 1.4rem 1.4rem 1.6rem;
        }
    }

    /* --- Avis : étoiles, gros guillemet, ring sur avatar --- */
    .review-card {
        overflow: hidden;
    }

    .review-card::before {
        font-size: 6.5rem;
        top: -6px;
        right: 14px;
        color: rgba(112, 69, 225, 0.18);
    }

    .review-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #7045e1, #9b7eed, #7045e1);
        opacity: 0.7;
        transition: opacity 0.35s ease;
    }

    .review-card:hover::after {
        opacity: 1;
    }

    .review-avatar {
        width: 56px;
        height: 56px;
        border: 2px solid #fff;
        box-shadow:
            0 0 0 2px #7045e1,
            0 6px 16px rgba(72, 40, 179, 0.25);
    }

    .review-rating {
        display: inline-flex;
        gap: 0.25rem;
        margin-bottom: 1rem;
        color: #7045e1;
        font-size: 0.95rem;
    }

    .review-rating i {
        filter: drop-shadow(0 2px 4px rgba(112, 69, 225, 0.35));
    }

    .review-text {
        font-size: 0.95rem;
        line-height: 1.75;
        position: relative;
        padding-left: 0.25rem;
    }

    /* --- Articles : badge "à la une", icônes méta, lien animé --- */
    .article-image {
        position: relative;
    }

    .article-image::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.45) 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
        z-index: 1;
    }

    .article-card:hover .article-image::after {
        opacity: 1;
    }

    .article-featured-badge {
        position: absolute;
        top: 1rem;
        right: 1rem;
        z-index: 3;
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        background: linear-gradient(135deg, #7045e1 0%, #4828b3 100%);
        color: #fff;
        font-family: 'Poppins', sans-serif;
        font-size: 0.7rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 0.45rem 0.9rem;
        border-radius: 999px;
        box-shadow: 0 6px 18px rgba(72, 40, 179, 0.4);
    }

    .article-featured-badge i {
        font-size: 0.7rem;
        color: #fff3a8;
    }

    .article-category {
        background: linear-gradient(135deg, #2c178a 0%, #4828b3 100%);
        box-shadow: 0 6px 18px rgba(44, 23, 138, 0.35);
        z-index: 2;
    }

    .article-meta {
        gap: 1.25rem;
        font-size: 0.78rem;
        color: rgba(26, 26, 46, 0.55);
    }

    .article-meta span {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
    }

    .article-meta i {
        color: #7045e1;
        font-size: 0.85rem;
    }

    .article-link {
        position: relative;
        padding-bottom: 0.3rem;
        transition: gap 0.3s ease, color 0.3s ease;
    }

    .article-link::after {
        content: "→";
        display: inline-block;
        transition: transform 0.3s ease;
    }

    .article-link:hover::after {
        transform: translateX(6px);
    }
