/* Affiliate Builder Styles */

/* Required field indicator */
.affiliate-builder label.required::after {
    content: " *";
    color: #f1416c;
    font-weight: bold;
}

/* Layout */
.affiliate-builder .content {
    padding: 0 !important;
}

@media (min-width: 992px) {
    .affiliate-builder .content {
        padding: 0 !important;
    }
}

/* Dropzone */
.affiliate-builder .dropzone .dz-preview .dz-image {
    width: unset;
    height: unset;
    max-height: 250px;
    max-width: 830px;
}

.affiliate-builder .dropzone .dz-preview .dz-image img {
    width: 100%;
}

/* Cards */
.affiliate-builder .card .card-header,
.affiliate-builder .card-header {
    border: unset !important;
}

/* Spacing utilities */
.affiliate-builder .ll-5 {
    margin-left: 10px;
}

/* ==========================================================================
   FRONT-OFFICE - Page: Testimonials
   ========================================================================== */

.testimonials-hero {
    position: relative;
    min-height: 500px;
    margin: 0;
    overflow: hidden;
}

.testimonials-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.testimonials-hero-bg img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.testimonials-hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: flex-start;
    padding-top: 60px;
    padding-bottom: 60px;
    min-height: 500px;
    box-sizing: border-box;
}

.testimonials-hero-text {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 612px;
    flex-shrink: 0;
}

.testimonials-hero-title {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 50px;
    line-height: 55px;
    color: #ffffff;
    margin: 0;
}

.testimonials-hero-intro {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #ffffff;
    margin: 0;
}

.testimonials-hero-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.testimonials-hero-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #ffffff;
}

.testimonials-hero-bullets li::before {
    content: '';
    width: 10px;
    height: 10px;
    min-width: 10px;
    background-color: #ffffff;
    border-radius: 50%;
}

.testimonials-section {
    padding: 80px 0;
    background-color: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.testimonial-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.testimonial-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.testimonial-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-card-name {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 28px;
    color: #000;
    margin: 0;
}

.testimonial-card-agency {
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: var(--affiliate-primary, #1a3a7a);
    margin: 0 0 16px 0;
}

.testimonial-card-quote {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #555;
    font-style: italic;
    margin: 0;
}

.testimonial-card-quote::before {
    content: '"';
}

.testimonial-card-quote::after {
    content: '"';
}

.testimonial-cta-card {
    background: linear-gradient(135deg, #0f2a5c 0%, #1a3a7a 50%, var(--affiliate-primary, #1a3a7a) 100%);
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-cta-card h3 {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    color: #fff;
    margin: 0 0 16px 0;
}

.testimonial-cta-card p,
.testimonial-cta-card .cta-card-content p {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 12px 0;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.testimonial-cta-card p:last-of-type,
.testimonial-cta-card .cta-card-content p:last-of-type {
    margin-bottom: 0;
}

.testimonial-cta-card .cta-card-content {
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-cta-card .cta-card-content p:empty {
    display: none;
}

.testimonial-cta-card .btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background-color: #fff;
    color: var(--affiliate-primary, #1a3a7a);
    border: none;
    border-radius: 25.5px;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
    transition: all 0.3s;
    width: fit-content;
    margin-top: 20px;
}

.testimonial-cta-card .btn-cta:hover {
    background-color: #f0f0f0;
}

/* Testimonials - Responsive */
@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-hero {
        min-height: auto;
    }
    
    .testimonials-hero-content {
        flex-direction: column;
        padding-top: 40px;
        padding-bottom: 40px;
        min-height: auto;
        gap: 20px;
    }
    
    .testimonials-hero-text {
        max-width: 100%;
        gap: 20px;
    }
    
    .testimonials-hero-title {
        font-size: 32px;
        line-height: 38px;
    }
    
    .testimonials-hero-intro {
        font-size: 16px;
        line-height: 26px;
    }
    
    .testimonials-hero-bullets li {
        font-size: 16px;
        line-height: 24px;
    }
    
    .testimonials-section {
        padding: 40px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .testimonial-card-image {
        height: 180px;
    }
    
    .testimonial-card-content {
        padding: 16px;
    }
    
    .testimonial-card-name {
        font-size: 20px;
        line-height: 26px;
    }
    
    .testimonial-card-agency {
        font-size: 15px;
        line-height: 22px;
    }
    
    .testimonial-card-quote {
        font-size: 14px;
        line-height: 22px;
    }
    
    .testimonial-cta-card {
        padding: 24px 20px;
    }
    
    .testimonial-cta-card h3 {
        font-size: 20px;
        line-height: 26px;
    }
    
    .testimonial-cta-card p {
        font-size: 14px;
        line-height: 22px;
    }
    
    .testimonial-cta-card .btn-cta {
        font-size: 15px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .testimonials-hero-title {
        font-size: 26px;
        line-height: 32px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .testimonial-card-image {
        height: 220px;
    }
    
    .testimonial-card-content {
        padding: 20px;
    }
}

/* ===========================================
   GLOBAL: Masquer les paragraphes vides TinyMCE
   =========================================== */

/* Masquer les paragraphes vides (y compris ceux avec &nbsp; ou <br>) */
.affiliate-content p:empty,
.affiliate-content p:has(br:only-child),
.hero-content p:empty,
.hero-content p:has(br:only-child),
.cta-card-content p:empty,
.cta-card-content p:has(br:only-child),
.support-item-content p:empty,
.support-item-content p:has(br:only-child),
.section-text p:empty,
.section-text p:has(br:only-child),
.job-feature-text p:empty,
.job-feature-text p:has(br:only-child),
.network-text p:empty,
.network-text p:has(br:only-child),
.testimonials-hero-intro p:empty,
.testimonials-hero-intro p:has(br:only-child) {
    display: none !important;
}

/* Empêcher le style de box pour les paragraphes dans les zones riches */
.affiliate-content p,
.hero-content p,
.cta-card-content p,
.support-item-content p,
.section-text p,
.job-feature-text p,
.network-text p {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* ==========================================================================
   FRONT-OFFICE - Page: Contact
   ========================================================================== */

.contact-reasons-grid {
    grid-template-columns: repeat(4, 1fr) !important;
}

#reasons .avantage-box p {
    text-align: left !important;
}

.reason-block-image {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reason-block-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.step-block-image {
    width: auto;
    height: auto;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-block-image img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.contact-cta-banner {
    margin-top: 80px;
}

.contact-hero {
    position: relative;
    min-height: 500px;
    margin: 0;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.contact-hero-bg img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.contact-hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 60px;
    padding-bottom: 60px;
    min-height: 500px;
    box-sizing: border-box;
    gap: 40px;
}

.contact-hero-text {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 612px;
    flex-shrink: 0;
}

.contact-hero-title {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 50px;
    line-height: 55px;
    color: #ffffff;
    margin: 0;
}

.contact-hero-subtitle {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.contact-hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-hero-bullets li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-hero-bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
}

.contact-hero-intro {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-hero-intro p {
    margin: 0 0 16px 0;
}

.contact-hero-intro p:last-child {
    margin-bottom: 0;
}

.contact-hero-intro ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.contact-hero-intro ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
}

.contact-hero-intro ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
}

.contact-form-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 32px 28px 28px;
    width: 440px;
    flex-shrink: 0;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 24px;
}

.contact-form-title {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 28px;
    color: #333;
    margin: 0 0 4px 0;
}

.contact-form-subtitle {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #666;
    margin: 0;
}

.contact-form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-form-group {
    flex: 1;
    position: relative;
}

.contact-form-group.full-width {
    flex: none;
    width: 100%;
}

.contact-form-label {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #444;
    margin-bottom: 6px;
    padding-left: 2px;
}

.contact-form-input {
    width: 100%;
    height: 44px;
    border-radius: 8px;
    border: 1.5px solid #e0e0e0;
    padding: 0 14px;
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    color: #333;
    background-color: #fafafa;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.contact-form-input:hover {
    border-color: #ccc;
}

.contact-form-input:focus {
    outline: none;
    border-color: var(--affiliate-primary);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(39, 71, 152, 0.1);
}

.contact-form-input::placeholder {
    color: #aaa;
}

.contact-form-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' 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 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.contact-form-select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23274798' 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");
}

.contact-form-textarea {
    width: 100%;
    height: 80px;
    border-radius: 8px;
    border: 1.5px solid #e0e0e0;
    padding: 12px 14px;
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    color: #333;
    background-color: #fafafa;
    resize: none;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.contact-form-textarea:hover {
    border-color: #ccc;
}

.contact-form-textarea:focus {
    outline: none;
    border-color: var(--affiliate-primary);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(39, 71, 152, 0.1);
}

.contact-form-textarea::placeholder {
    color: #aaa;
}

.contact-form-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 16px 0 20px;
}

.contact-form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    padding: 8px 10px;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.contact-form-checkbox:hover {
    background-color: #f5f5f5;
}

.contact-form-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 1px;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
}

.contact-form-checkbox input[type="checkbox"]:hover {
    border-color: var(--affiliate-primary);
}

.contact-form-checkbox input[type="checkbox"]:checked {
    background-color: var(--affiliate-primary);
    border-color: var(--affiliate-primary);
}

.contact-form-checkbox input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.contact-form-checkbox span {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    line-height: 18px;
    color: #555;
    cursor: pointer;
}

.contact-form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 48px;
    margin: 0;
    background: var(--affiliate-primary);
    border: none;
    border-radius: 10px;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(39, 71, 152, 0.3);
}

.contact-form-submit:hover {
    background: var(--affiliate-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 71, 152, 0.4);
}

.contact-form-submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(39, 71, 152, 0.3);
}

.contact-form-submit i {
    font-size: 18px;
    transition: transform 0.3s;
}

.contact-form-submit:hover i {
    transform: translateX(3px);
}

.contact-form-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
}

.contact-form-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    color: #888;
}

.contact-form-badge i {
    font-size: 14px;
    color: #999;
}

.contact-form-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    line-height: 1.4;
}

.contact-form-alert i {
    font-size: 18px;
    flex-shrink: 0;
}

.contact-form-alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.contact-form-alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Contact - Responsive */
@media (max-width: 1200px) {
    .contact-reasons-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .contact-hero-content {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-hero-text {
        max-width: 100%;
        text-align: center;
        padding-top: 0;
    }
    
    .contact-form-card {
        width: 100%;
        max-width: 500px;
    }
    
    .contact-form-footer {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px 16px;
    }
    
    .contact-form-badge {
        position: relative;
    }
    
    .contact-form-badge:not(:last-child)::after {
        content: "•";
        margin-left: 16px;
        color: #ccc;
    }
}

@media (max-width: 768px) {
    .contact-reasons-grid {
        gap: 16px !important;
    }
    
    .contact-cta-banner {
        margin-top: 40px;
    }
    
    .contact-hero {
        min-height: auto;
    }
    
    .contact-hero-content {
        flex-direction: column;
        padding: 40px 24px !important;
        min-height: auto;
        gap: 30px;
    }
    
    .contact-hero-text {
        max-width: 100%;
        gap: 20px;
        text-align: left;
    }
    
    .contact-hero-title {
        font-size: 32px;
        line-height: 38px;
    }
    
    .contact-hero-subtitle {
        font-size: 16px;
        line-height: 24px;
    }
    
    .contact-form-card {
        width: 100%;
        max-width: 100%;
    }
    
    .contact-form-row {
        flex-direction: column;
        gap: 14px;
    }
    
    .contact-form-checkboxes {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .contact-reasons-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================================================
   FRONT-OFFICE - Base Styles (from base.html.twig)
   ========================================================================== */

:root {
    --affiliate-primary: #274798;
    --affiliate-dark: #1a3266;
    --affiliate-light: #f5f7fa;
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
}

body.affiliate-page {
    margin: 0;
    padding: 0;
    font-family: 'Jost', sans-serif;
}

body.affiliate-page .container {
    padding-left: 16px;
    padding-right: 16px;
}

.font-jost { font-family: 'Jost', sans-serif; }
.font-helvetica { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; }

/* --- Override main site #faq styles that bleed into affiliate pages --- */

body.affiliate-page #faq .faq-box {
    position: relative;
    z-index: auto;
    padding: 60px 0;
    background: linear-gradient(135deg, #091b3a 0%, #0f2a5c 100%);
    border-radius: 24px;
}

body.affiliate-page #faq .faq-box:before,
body.affiliate-page #faq .faq-box:after {
    content: none;
}

body.affiliate-page #faq .faq-box .faq-title {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 34px;
    line-height: 40px;
    color: #fff;
    letter-spacing: normal;
    position: static;
    width: auto;
    display: block;
    text-align: center;
    margin: 0 0 10px 0;
}

body.affiliate-page #faq .faq-box .faq-title:after {
    content: none;
}

body.affiliate-page .faq-area {
    border-radius: 12px;
    padding: 20px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

body.affiliate-page .faq-area details {
    border-bottom: 1px solid #e5e7eb;
}

body.affiliate-page .faq-area details:last-child {
    border-bottom: none;
}

body.affiliate-page .faq-area summary {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #1D1D1B;
    letter-spacing: normal;
    padding: 24px 30px 24px 0;
    border-top: none;
    cursor: pointer;
    list-style: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
}

body.affiliate-page .faq-area summary::-webkit-details-marker {
    display: none;
}

body.affiliate-page .faq-area summary:after {
    content: "+";
    font-family: 'Jost', sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: #1D1D1B;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    background: none;
    background-image: none;
}

body.affiliate-page .faq-area details[open] summary:after {
    content: "−";
    background-image: none;
}

body.affiliate-page .faq-area summary h3 {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    margin: 0;
    color: inherit;
}

body.affiliate-page .faq-area .content {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #444;
    margin-bottom: 24px;
}

body.affiliate-page .faq-area .content p {
    margin: 0 0 10px 0;
}

body.affiliate-page .faq-area .content p:last-child {
    margin-bottom: 0;
}

/* --- End override --- */

.affiliate-nav-top {
    background-color: #000;
    padding: 10px 0;
    text-align: center;
}

.affiliate-nav-main {
    padding: 20px 0;
}

.affiliate-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.affiliate-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    background-color: #274798;
    color: #fff;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
}

.affiliate-nav-menu {
    background-color: #fff;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.affiliate-nav-menu ul {
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.affiliate-nav-menu ul li a {
    display: block;
    padding: 24px 0;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #253d4e;
    text-decoration: none;
    transition: color 0.3s;
}

.affiliate-nav-menu ul li a:hover,
.affiliate-nav-menu ul li a.active {
    color: var(--affiliate-primary);
}

.btn-affiliate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 17px;
    background-color: var(--affiliate-primary);
    color: #fff;
    border: 2px solid var(--affiliate-primary);
    border-radius: 30px;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-affiliate:hover {
    background-color: var(--affiliate-dark);
    border-color: var(--affiliate-dark);
    color: #fff;
}

.btn-affiliate-outline {
    background-color: #fff;
    color: var(--affiliate-primary);
    border: 1px solid var(--affiliate-primary);
    padding: 10px 28px;
    border-radius: 25.5px;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-affiliate-outline:hover {
    background-color: var(--affiliate-primary);
    color: #fff;
}

.btn-affiliate-white {
    background-color: var(--affiliate-primary);
    color: #fff;
    border-radius: 25.5px;
    padding: 10px 28px;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-affiliate-white:hover {
    background-color: var(--affiliate-dark);
    color: #fff;
}

.affiliate-hero {
    position: relative;
    min-height: 790px;
    background-color: var(--affiliate-primary);
    overflow: hidden;
}

.affiliate-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 14px solid var(--affiliate-primary);
}

.affiliate-hero-content {
    position: relative;
    z-index: 10;
    padding: 60px 0;
}

.affiliate-section {
    padding: 80px 0;
}

.affiliate-blocs-section {
    padding: 60px 0;
    background-color: #fff;
}

.affiliate-blocs-section + .affiliate-blocs-section {
    padding-top: 0;
}

.blocs-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    justify-content: center;
    align-items: center;
}

.bloc-item {
    display: flex;
    flex-direction: row;
    gap: 32px;
    max-width: 1200px;
    width: 100%;
    align-items: stretch;
}

.bloc-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    order: 1;
}

.bloc-content .bloc-conclusion {
    margin-top: auto;
}

.bloc-image-wrapper {
    flex: 0 0 45%;
    max-width: 500px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    order: 2;
}

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

.bloc-image-wrapper:hover .bloc-image {
    transform: scale(1.02);
}

.bloc-title {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 34px;
    color: #000;
    margin: 0;
}

.bloc-text {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #000;
}

.bloc-text p {
    margin: 0 0 15px 0;
}

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

.bloc-text .list-intro {
    margin: 0;
    line-height: 45px;
}

.bloc-list-intro {
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    color: #000;
    margin: 0;
}

.bloc-list-intro p {
    margin: 0;
}

.bloc-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bloc-list-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.bloc-cta-link {
    display: inline-block;
    margin-top: 20px;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--affiliate-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.bloc-cta-link:hover {
    color: var(--affiliate-dark);
    text-decoration: underline;
}

.bloc-item-reverse .bloc-content {
    order: 2;
}

.bloc-item-reverse .bloc-image-wrapper {
    order: 1;
}

.bloc-bullet {
    width: 8px;
    height: 8px;
    min-width: 8px;
    background-color: #274798;
    border-radius: 50%;
    margin-top: 13px;
}

.bloc-list-item p {
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    line-height: 35px;
    color: #000;
    margin: 0;
    flex: 1;
}

.bloc-list-item p strong {
    font-weight: 500;
}

.bloc-conclusion {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #666;
    margin: 0;
}

.reasons-section {
    padding: 80px 0;
    background-color: #fff;
}

.reasons-title {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 34px;
    color: #000;
    text-align: center;
    margin-bottom: 50px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.reason-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.reason-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.reason-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reason-number {
    position: absolute;
    bottom: -37px;
    left: 50%;
    transform: translateX(-50%);
    width: 75px;
    height: 75px;
    background-color: var(--affiliate-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #fff;
    border: 4px solid #fff;
}

.reason-content {
    padding-top: 50px;
}

.reason-title {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 34px;
    color: #000;
    margin-bottom: 10px;
}

.reason-description {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #000;
}

.affiliate-pillars-section {
    background: linear-gradient(90deg, #0f2a5c 0%, #1a3a7a 50%, var(--affiliate-primary) 100%);
    padding: 60px 0 80px;
}

.affiliate-pillars-title {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 34px;
    color: #fff;
    text-align: left;
    margin-bottom: 12px;
}

.affiliate-pillars-description {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: rgba(255, 255, 255, 0.85);
    text-align: left;
    max-width: none;
    margin: 0 0 40px 0;
}

.affiliate-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.affiliate-pillar {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.affiliate-pillar-icon {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.affiliate-pillar-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.affiliate-pillar-icon i {
    font-size: 32px;
    color: #fff;
}

.affiliate-pillar-icon-text {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 36px;
    color: #fff;
}

.affiliate-pillar-title {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 28px;
    color: #fff;
    margin: 0 0 16px 0;
}

.affiliate-pillar-text {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.9);
}

.affiliate-cta-banner {
    background-color: var(--affiliate-primary);
    width: 100%;
}

.affiliate-cta-banner-centered {
    padding: 14px 0;
    background: linear-gradient(90deg, #0f2a5c 0%, #1a3a7a 50%, var(--affiliate-primary) 100%);
}

.affiliate-cta-banner-centered .affiliate-cta-banner-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.affiliate-cta-banner-centered .affiliate-cta-banner-content {
    display: flex;
    flex-direction: row;
    gap: 12px;
    text-align: left;
    align-items: baseline;
    max-width: none;
    padding: 0;
}

.affiliate-cta-banner-centered .affiliate-cta-banner-content h3 {
    font-size: 20px;
    line-height: 24px;
    margin: 0;
    font-weight: 700;
}

.affiliate-cta-banner-centered .affiliate-cta-banner-content p {
    font-size: 16px;
    margin: 0;
    opacity: 1;
}

.affiliate-cta-banner-centered .affiliate-cta-banner-content p::before {
    content: "—";
    margin-right: 8px;
}

.affiliate-cta-banner-centered .btn-cta-white {
    padding: 10px 24px;
    font-size: 14px;
    white-space: nowrap;
    flex-shrink: 0;
}

.affiliate-cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.affiliate-cta-banner-content {
    flex: 0 0 auto;
    max-width: 610px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 60px 0;
    text-align: left;
}

.affiliate-cta-banner h3 {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 34px;
    line-height: 30px;
    color: #fff;
    margin: 0;
}

.affiliate-cta-banner p {
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    color: #fff;
    line-height: 1.67;
    margin: 0;
}

.affiliate-cta-banner .btn-cta-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background-color: #fff;
    color: var(--affiliate-primary);
    border-radius: 25.5px;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    text-decoration: none;
    transition: all 0.3s;
    width: fit-content;
}

.affiliate-cta-banner .btn-cta-white:hover {
    background-color: #f0f0f0;
}

.affiliate-cta-banner-image {
    flex: 0 0 auto;
    width: 638px;
    height: 320px;
    overflow: hidden;
}

.affiliate-cta-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.affiliate-title {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 30px;
    color: #000;
    line-height: 1.13;
    margin-bottom: 20px;
}

.affiliate-text {
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    color: #000;
    line-height: 1.67;
}

.affiliate-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.affiliate-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 10px;
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    line-height: 1.9;
}

.affiliate-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 18px;
    height: 18px;
    background-color: var(--affiliate-primary);
    border-radius: 50%;
}

.affiliate-grid-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.affiliate-grid-images .grid-item {
    position: relative;
    height: 330px;
    overflow: hidden;
    border-radius: 8px;
}

.affiliate-grid-images .grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.affiliate-grid-images .grid-item-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    text-align: center;
}

.affiliate-why-join-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.affiliate-why-join-title {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 34px;
    color: #1D1D1B;
    text-align: center;
    margin-bottom: 50px;
}

.affiliate-why-join-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.affiliate-why-join-grid--cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.affiliate-why-join-grid .avantage-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background-color: #fff;
}

.affiliate-why-join-grid .avantage-box.v2:before {
    display: none;
}

.affiliate-why-join-grid .avantage-box .icon {
    margin: 0 auto 15px auto;
    background: transparent;
    color: var(--affiliate-primary);
    font-size: 36px;
    width: auto;
    height: auto;
    box-shadow: none;
    border-radius: 0;
    line-height: 1;
}

.affiliate-why-join-grid .avantage-box .icon img {
    max-width: 40px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.affiliate-why-join-grid .avantage-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
}

.affiliate-why-join-grid .avantage-box p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    text-align: center;
}

#reasons .avantage-box p {
    text-align: left !important;
}

.affiliate-footer-cta {
    background: linear-gradient(135deg, var(--affiliate-primary) 0%, var(--affiliate-dark) 100%);
    padding: 80px 0;
}

.affiliate-footer {
    background-color: #1a1a2e;
    color: #fff;
    padding: 0;
}

.affiliate-footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box;
    overflow: visible;
}

.affiliate-footer-selectors {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 100;
}

.affiliate-footer-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    z-index: 101;
    overflow: visible;
}

.affiliate-footer-selector:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.affiliate-footer-selector i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.affiliate-footer-selector span {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
}

.affiliate-footer-selector .flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
}

.affiliate-footer-selector .flag-icon {
    font-size: 18px;
    line-height: 1;
}

.affiliate-footer-selector select {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.affiliate-footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.affiliate-footer-brand {
    max-width: 320px;
}

.affiliate-footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.affiliate-footer-logo-text {
    font-family: 'Jost', sans-serif;
    font-size: 28px;
    font-weight: 700;
    display: block;
    margin-bottom: 16px;
}

.affiliate-footer-tagline {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 24px;
}

.affiliate-footer-links h4,
.affiliate-footer-contact h4 {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 20px 0;
    padding: 0;
    color: #fff;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.affiliate-footer-links {
    text-align: left;
}

.affiliate-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.affiliate-footer-links ul li {
    margin-bottom: 12px;
}

.affiliate-footer-links ul li a {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.affiliate-footer-links ul li a:hover {
    color: #fff;
}

.affiliate-footer-contact {
    text-align: left;
}

.affiliate-footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.affiliate-footer-contact-item i {
    font-size: 18px;
    color: #fff;
}

.affiliate-footer-contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.affiliate-footer-contact-item a:hover {
    color: #fff;
}

.affiliate-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.affiliate-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.affiliate-social-icons a:hover {
    background-color: var(--affiliate-primary);
}

.affiliate-footer-bottom {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.affiliate-footer-legal {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.affiliate-footer-legal a {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.affiliate-footer-legal a:hover {
    color: #fff;
}

.affiliate-footer-bottom p {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.affiliate-footer-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
    margin-bottom: 8px;
}

.affiliate-footer-back-link:hover {
    color: #fff;
}

.affiliate-main {
    margin: 0;
    padding: 0;
}

.affiliate-home-hero {
    position: relative;
    min-height: 500px;
    margin: 0;
}

.affiliate-home-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: visible;
}

.affiliate-home-hero-bg img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.affiliate-home-hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: flex-start;
    padding-top: 60px;
    padding-bottom: 60px;
    min-height: 500px;
    box-sizing: border-box;
}

.affiliate-home-hero-text {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 732px;
    flex-shrink: 0;
}

.affiliate-home-hero-title {
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 50px;
    line-height: 55px;
    color: #ffffff;
    margin: 0;
}

.affiliate-home-hero-subtitle {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    max-width: 612px;
}

.affiliate-home-hero-intro {
    font-size: 20px;
    line-height: 28px;
    margin: 0 0 16px 0;
}

.affiliate-home-hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.affiliate-home-hero-bullets li {
    font-size: 18px;
    line-height: 26px;
    color: #ffffff;
    position: relative;
    padding-left: 20px;
}

.affiliate-home-hero-bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffffff;
    font-size: 20px;
}

.affiliate-home-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 26px 11px 26px;
    background-color: #274798;
    border-radius: 25.5px;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
    box-sizing: border-box;
    width: fit-content;
    transition: background-color 0.3s;
}

.affiliate-home-hero-cta:hover {
    background-color: var(--affiliate-dark);
}

.affiliate-home-hero-logo {
    flex-shrink: 0;
    overflow: visible;
}

.affiliate-home-hero-logo img {
    height: 44px;
    width: auto;
    display: block;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    display: block;
    width: 22px;
    height: 3px;
    background-color: #253d4e;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle .bar:nth-child(1) {
    margin-bottom: 4px;
}

.mobile-menu-toggle .bar:nth-child(3) {
    margin-top: 4px;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background-color: #fff;
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #ececec;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #253d4e;
    padding: 4px;
}

.mobile-menu-nav {
    padding: 0;
}

.mobile-menu-nav a {
    display: block;
    padding: 18px 20px;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #253d4e;
    text-decoration: none;
    border-bottom: 1px solid #ececec;
    transition: background-color 0.2s, color 0.2s;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.active {
    background-color: var(--affiliate-light);
    color: var(--affiliate-primary);
}

.mobile-menu-cta {
    padding: 20px;
    border-top: 1px solid #ececec;
}

.mobile-menu-cta a {
    display: block;
    text-align: center;
    width: 100%;
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid #ececec;
}

.mobile-menu-footer a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    color: #666;
    text-decoration: none;
}

.mobile-menu-footer a:hover {
    color: var(--affiliate-primary);
}

/* Base - Responsive */
@media (max-width: 1200px) {
    .affiliate-why-join-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blocs-container {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .affiliate-cta-banner-centered .affiliate-cta-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .affiliate-cta-banner-centered .affiliate-cta-banner-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 4px;
    }
    
    .affiliate-cta-banner-centered .affiliate-cta-banner-content p::before {
        display: none;
    }
    
    .affiliate-page .container,
    .affiliate-page .container.mx-auto,
    .affiliate-page [class*="container"] {
        padding-left: 24px !important;
        padding-right: 24px !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .contact-hero-content,
    .affiliate-home-hero-content {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
    
    #faq {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
    
    #faq .faq-box {
        padding: 50px 0;
    }
    
    #faq .faq-box .faq-title {
        font-size: 26px;
        line-height: 32px;
    }
    
    #faq .faq-area {
        width: 100%;
        padding: 15px 20px;
        margin-top: 30px;
    }
    
    #faq .faq-area summary {
        font-size: 19px;
        line-height: 24px;
        padding: 20px 0;
    }
    
    #faq .faq-area .content {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 20px;
    }
    
    .affiliate-why-join-section {
        padding: 40px 0;
    }
    
    .affiliate-pillars-section {
        padding: 40px 0;
    }
    
    .blocs-container {
        gap: 40px;
    }
    
    .affiliate-cta-banner-centered {
        padding: 30px 0;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .mobile-menu-overlay {
        display: block !important;
        pointer-events: none;
    }
    
    .mobile-menu-overlay.active {
        pointer-events: auto;
    }
    
    nav.affiliate-nav-menu {
        display: none !important;
    }
    
    .desktop-cta {
        display: none !important;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .affiliate-hero {
        min-height: auto;
        padding: 40px 0;
    }
    
    .affiliate-home-hero {
        min-height: auto;
    }
    
    .affiliate-home-hero-content {
        flex-direction: column;
        padding-top: 40px;
        padding-bottom: 40px;
        min-height: auto;
        gap: 20px;
    }
    
    .affiliate-home-hero-text {
        max-width: 100%;
        gap: 20px;
    }
    
    .affiliate-home-hero-title {
        font-size: 32px;
        line-height: 38px;
    }
    
    .affiliate-home-hero-subtitle {
        max-width: 100%;
    }
    
    .affiliate-home-hero-intro {
        font-size: 16px;
        line-height: 24px;
    }
    
    .affiliate-home-hero-bullets li {
        font-size: 16px;
        line-height: 24px;
    }
    
    .affiliate-home-hero-logo {
        display: none;
    }
    
    .affiliate-grid-images {
        grid-template-columns: 1fr;
    }
    
    .affiliate-section {
        padding: 40px 0;
    }
    
    .affiliate-cta-banner-inner {
        flex-direction: column;
    }
    
    .affiliate-cta-banner-content {
        max-width: 100%;
        padding: 40px 0;
        text-align: left;
    }
    
    .affiliate-cta-banner-image {
        width: 100%;
        height: 250px;
    }
    
    .affiliate-cta-banner h3 {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .affiliate-cta-banner p {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .affiliate-cta-banner .btn-cta-white {
        font-size: 15px;
        padding: 10px 20px;
    }
    
    .affiliate-footer-cta {
        padding: 40px 0;
    }
    
    .affiliate-footer-wrapper {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
    
    .affiliate-footer-selectors {
        flex-direction: row;
        gap: 12px;
        padding: 20px 0;
    }
    
    .affiliate-footer-selector {
        padding: 8px 12px;
    }
    
    .affiliate-footer-selector span {
        font-size: 13px;
    }
    
    .affiliate-footer-top {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
        padding-top: 40px !important;
        padding-bottom: 40px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .affiliate-footer-bottom {
        padding: 16px 0 !important;
    }
    
    .affiliate-footer-brand,
    .affiliate-footer-links,
    .affiliate-footer-contact {
        max-width: 100% !important;
        text-align: left !important;
        width: 100% !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
    }
    
    .affiliate-footer-links h4,
    .affiliate-footer-contact h4 {
        margin-bottom: 16px !important;
    }
    
    .affiliate-footer-links ul {
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
    }
    
    .affiliate-footer-links ul li {
        padding-left: 0 !important;
        margin-left: 0 !important;
    }
    
    .affiliate-footer-legal {
        gap: 16px !important;
        padding: 0 !important;
    }
    
    .affiliate-social-icons {
        justify-content: flex-start !important;
    }
    
    .affiliate-why-join-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .affiliate-why-join-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .affiliate-pillars-grid {
        gap: 16px;
    }
    
    .affiliate-why-join-grid .avantage-box {
        padding: 20px 15px;
    }
    
    .affiliate-why-join-grid .avantage-box h3 {
        font-size: 18px;
    }
    
    .affiliate-why-join-grid .avantage-box p {
        font-size: 14px;
    }
    
    .reasons-section {
        padding: 50px 0;
    }
    
    .reasons-title {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 30px;
    }
    
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .affiliate-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .affiliate-pillars-title {
        font-size: 24px;
        line-height: 30px;
    }
    
    .reason-image-wrapper {
        height: 180px;
    }
    
    .reason-number {
        width: 60px;
        height: 60px;
        font-size: 26px;
        bottom: -30px;
    }
    
    .reason-content {
        padding-top: 40px;
    }
    
    .reason-title {
        font-size: 18px;
        line-height: 26px;
    }
    
    .reason-description {
        font-size: 16px;
        line-height: 26px;
    }
    
    .affiliate-title {
        font-size: 24px;
    }
    
    .grid.grid-cols-1.lg\:grid-cols-2 {
        gap: 30px;
    }
    
    .affiliate-blocs-section {
        padding: 40px 0;
    }
    
    .bloc-item {
        flex-direction: column;
        gap: 20px;
    }
    
    .bloc-content {
        order: 2;
    }
    
    .bloc-image-wrapper {
        order: 1;
        flex: none;
        width: 100%;
        max-width: 100%;
        height: 220px;
    }
    
    .bloc-title {
        font-size: 22px;
        line-height: 28px;
    }
    
    .bloc-text {
        font-size: 15px;
        line-height: 24px;
    }
    
    .bloc-list-item p {
        font-size: 16px;
        line-height: 28px;
    }
    
    .bloc-bullet {
        width: 6px;
        height: 6px;
        min-width: 6px;
        margin-top: 11px;
    }
    
    .bloc-conclusion {
        font-size: 14px;
        line-height: 22px;
    }
}

@media (max-width: 480px) {
    .affiliate-page .container,
    .affiliate-page .container.mx-auto,
    .affiliate-page [class*="container"] {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    
    .contact-hero-content,
    .affiliate-home-hero-content {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    
    .affiliate-nav-top {
        padding: 8px 0;
    }
    
    .affiliate-nav-top a {
        font-size: 12px;
    }
    
    .affiliate-nav-main {
        padding: 12px 0;
    }
    
    .affiliate-home-hero-title {
        font-size: 26px;
        line-height: 32px;
    }
    
    .affiliate-home-hero-intro {
        font-size: 15px;
        line-height: 22px;
    }
    
    .affiliate-home-hero-bullets li {
        font-size: 15px;
        line-height: 22px;
    }
    
    .affiliate-home-hero-cta {
        font-size: 16px;
        padding: 10px 20px;
    }
    
    .affiliate-why-join-grid {
        grid-template-columns: 1fr;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .affiliate-pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .affiliate-why-join-title {
        font-size: 22px;
    }
    
    #faq .faq-box .faq-title {
        font-size: 22px;
        line-height: 28px;
    }
    
    #faq .faq-area summary {
        font-size: 16px;
        line-height: 22px;
        padding: 16px 0;
    }
    
    #faq .faq-area .content {
        font-size: 15px;
        line-height: 24px;
    }
    
    .affiliate-pillars-title {
        font-size: 22px;
        line-height: 28px;
    }
    
    .affiliate-footer-wrapper {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    
    .affiliate-footer-top {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
        padding-top: 30px !important;
        padding-bottom: 30px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .affiliate-footer-bottom {
        padding: 16px 0 !important;
    }
    
    .affiliate-footer-brand,
    .affiliate-footer-links,
    .affiliate-footer-contact {
        text-align: left !important;
        width: 100% !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
    }
    
    .affiliate-footer-links h4,
    .affiliate-footer-contact h4 {
        text-align: left !important;
        margin-bottom: 12px !important;
    }
    
    .affiliate-footer-links ul {
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
    }
    
    .affiliate-footer-links ul li {
        margin-bottom: 8px !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
    }
    
    .affiliate-social-icons {
        justify-content: flex-start !important;
    }
    
    .affiliate-footer-legal {
        flex-wrap: wrap !important;
        gap: 12px !important;
    }
}

/* ==========================================================================
   FRONT-OFFICE - Page: Network
   ========================================================================== */

.network-hero {
    position: relative;
    min-height: 500px;
    margin: 0;
    overflow: hidden;
}

.network-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.network-hero-bg img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.network-hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: flex-start;
    padding-top: 60px;
    padding-bottom: 60px;
    min-height: 500px;
    box-sizing: border-box;
}

.network-hero-text {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 612px;
    flex-shrink: 0;
}

.network-hero-title {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 50px;
    line-height: 55px;
    color: #ffffff;
    margin: 0;
}

.network-hero-subtitle {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #ffffff;
    margin: 0;
}

.network-hero-subtitle p {
    margin: 0 0 16px 0;
}

.network-hero-subtitle p:last-child {
    margin-bottom: 0;
}

.network-hero-intro {
    font-weight: 500;
    font-size: 20px;
}

.network-hero-bullets {
    list-style: none;
    padding: 0;
    margin: 8px 0 16px 0;
}

.network-hero-bullets li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 8px;
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: #ffffff;
}

.network-hero-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 12px;
    background-color: #ffffff;
    border-radius: 50%;
}

.network-evolve-section {
    padding: 60px 0;
    background-color: #fff;
}

.network-evolve-block {
    display: flex;
    gap: 0;
    align-items: stretch;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.network-evolve-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
}

.network-evolve-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 380px;
}

.network-evolve-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.network-evolve-title {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 36px;
    color: #000;
    margin: 0 0 16px 0;
}

.network-evolve-text {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #555;
    margin: 0 0 20px 0;
}

.network-evolve-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.network-evolve-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    color: #333;
}

.network-evolve-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    background-color: var(--affiliate-primary);
    border-radius: 50%;
}

.network-evolve-list li:last-child {
    margin-bottom: 0;
}

.network-reasons-section {
    background: linear-gradient(90deg, #0f2a5c 0%, #1a3a7a 50%, var(--affiliate-primary) 100%);
    padding: 50px 0;
}

.network-reasons-header {
    margin-bottom: 40px;
}

.network-reasons-title {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 42px;
    color: #fff;
    text-align: left;
    margin: 0 0 12px 0;
}

.network-reasons-subtitle {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.network-reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.network-reason-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.network-reason-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.network-reason-icon i {
    font-size: 40px;
    color: #fff;
}

.network-reason-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.network-reason-title {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #fff;
    margin: 0 0 12px 0;
}

.network-reason-text {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.network-spacer {
    height: 60px;
    background-color: #fff;
}

/* Network - Responsive */
@media (max-width: 1200px) {
    .network-evolve-content {
        padding: 30px;
    }
    
    .network-evolve-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .network-reasons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .network-hero {
        min-height: auto;
    }
    
    .network-reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .network-hero-content {
        flex-direction: column;
        padding-top: 40px;
        padding-bottom: 40px;
        min-height: auto;
        gap: 20px;
    }
    
    .network-hero-text {
        max-width: 100%;
        gap: 20px;
    }
    
    .network-hero-title {
        font-size: 32px;
        line-height: 38px;
    }
    
    .network-hero-subtitle {
        font-size: 16px;
        line-height: 26px;
    }
    
    .network-hero-intro {
        font-size: 17px;
    }
    
    .network-hero-bullets li {
        font-size: 16px;
        line-height: 24px;
        padding-left: 24px;
    }
    
    .network-hero-bullets li::before {
        width: 10px;
        height: 10px;
        top: 7px;
    }
    
    .network-evolve-section {
        padding: 40px 0;
    }
    
    .network-evolve-block {
        flex-direction: column;
    }
    
    .network-evolve-image {
        flex: none;
    }
    
    .network-evolve-image img {
        min-height: 200px;
        height: 200px;
    }
    
    .network-evolve-content {
        padding: 24px 20px;
    }
    
    .network-evolve-title {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 12px;
    }
    
    .network-evolve-text {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 16px;
    }
    
    .network-evolve-list li {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 6px;
    }
    
    .network-reasons-section {
        padding: 40px 0;
    }
    
    .network-reasons-header {
        margin-bottom: 24px;
    }
    
    .network-reasons-title {
        font-size: 26px;
        line-height: 32px;
    }
    
    .network-reasons-subtitle {
        font-size: 16px;
        line-height: 24px;
    }
    
    .network-reason-card {
        padding: 20px 16px;
    }
    
    .network-reason-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }
    
    .network-reason-icon i {
        font-size: 32px;
    }
    
    .network-reason-title {
        font-size: 14px;
        line-height: 20px;
    }
    
    .network-reason-text {
        font-size: 13px;
        line-height: 20px;
    }
    
    .network-spacer {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .network-hero-title {
        font-size: 26px;
        line-height: 32px;
    }
}

/* ==========================================================================
   FRONT-OFFICE - Page: Support
   ========================================================================== */

.support-hero {
    position: relative;
    min-height: 500px;
    margin: 0;
    overflow: hidden;
}

.support-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.support-hero-bg img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.support-hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: flex-start;
    padding-top: 60px;
    padding-bottom: 60px;
    min-height: 500px;
    box-sizing: border-box;
}

.support-hero-text {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 612px;
    flex-shrink: 0;
}

.support-hero-title {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 50px;
    line-height: 55px;
    color: #ffffff;
    margin: 0;
}

.support-hero-subtitle {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #ffffff;
    margin: 0;
}

.support-hero-subtitle p {
    margin: 0 0 16px 0;
}

.support-hero-subtitle p:last-child {
    margin-bottom: 0;
}

.support-hero-subtitle strong {
    font-weight: 600;
}

.support-block-section {
    padding: 80px 0;
    background-color: #fff;
}

.support-block-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.support-block-grid:last-child {
    margin-bottom: 0;
}

.support-block-grid.reverse {
    direction: rtl;
}

.support-block-grid.reverse > * {
    direction: ltr;
}

.support-block-image {
    width: 100%;
    height: 379px;
    overflow: hidden;
    border-radius: 8px;
}

.support-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.support-block-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.support-block-title {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 34px;
    color: #000;
    margin: 0;
}

.support-block-text {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #000;
}

.support-block-text p {
    margin: 0 0 16px 0;
}

.support-block-text p:last-child {
    margin-bottom: 0;
}

.support-block-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.support-block-list-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.support-block-bullet {
    width: 8px;
    height: 8px;
    min-width: 8px;
    background-color: var(--affiliate-primary);
    border-radius: 50%;
    margin-top: 13px;
}

.support-block-list-item p {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 35px;
    color: #000;
    margin: 0;
}

.support-block-list-item p strong {
    font-weight: 600;
}

.support-pillars-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.support-pillars-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px;
}

.support-pillars-grid .avantage-box {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 30px;
    box-sizing: border-box;
}

.support-pillars-grid .avantage-box .icon {
    margin: 0 auto 15px auto;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.support-pillars-grid .avantage-box .icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.support-pillars-grid .avantage-box h3 {
    text-align: center;
    flex-shrink: 0;
    margin-bottom: 12px;
}

.support-pillars-grid .avantage-box p {
    text-align: left;
    font-family: 'Jost', sans-serif;
    flex: 1;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: #666;
    margin-top: auto;
}

.support-final-cta-section {
    position: relative;
    padding: 80px 0;
}

.support-final-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--affiliate-primary) 0%, #1a3266 100%);
    z-index: 0;
}

.support-final-cta-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.support-final-cta-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.support-final-cta-title {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 34px;
    color: #fff;
    margin: 0;
}

.support-final-cta-desc {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #fff;
}

.support-final-cta-desc p {
    margin: 0 0 16px 0;
}

.support-final-cta-desc p:last-child {
    margin-bottom: 0;
}

.support-final-cta-image {
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: 8px;
}

.support-final-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Support - Responsive */
@media (max-width: 1200px) {
    .support-block-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .support-block-grid.reverse {
        direction: ltr;
    }
    
    .support-block-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .support-hero {
        min-height: auto;
    }
    
    .support-hero-content {
        padding-top: 40px;
        padding-bottom: 40px;
        min-height: auto;
    }
    
    .support-hero-text {
        max-width: 100%;
        gap: 20px;
    }
    
    .support-hero-title {
        font-size: 32px;
        line-height: 38px;
    }
    
    .support-hero-subtitle {
        font-size: 16px;
        line-height: 26px;
    }
    
    .support-block-section {
        padding: 40px 0;
    }
    
    .support-block-grid {
        gap: 24px;
        margin-bottom: 40px;
    }
    
    .support-block-title {
        font-size: 24px;
        line-height: 30px;
    }
    
    .support-block-text {
        font-size: 16px;
        line-height: 26px;
    }
    
    .support-block-list-item p {
        font-size: 16px;
        line-height: 28px;
    }
    
    .support-block-image {
        height: 250px;
    }
    
    .support-pillars-section {
        padding: 40px 0;
    }
    
    .support-pillars-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }
    
    .support-final-cta-section {
        padding: 40px 0;
    }
    
    .support-final-cta-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .support-final-cta-title {
        font-size: 24px;
        line-height: 30px;
    }
    
    .support-final-cta-desc {
        font-size: 16px;
        line-height: 26px;
    }
    
    .support-final-cta-image {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .support-hero-title {
        font-size: 26px;
        line-height: 32px;
    }
    
    .support-hero-subtitle {
        font-size: 14px;
        line-height: 22px;
    }
    
    .support-block-image {
        height: 200px;
    }
}

/* ==========================================================================
   FRONT-OFFICE - Page: Job
   ========================================================================== */

.job-hero {
    position: relative;
    min-height: 500px;
    margin: 0;
    overflow: hidden;
}

.job-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.job-hero-bg img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.job-hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: flex-start;
    padding-top: 60px;
    padding-bottom: 60px;
    min-height: 500px;
    box-sizing: border-box;
}

.job-hero-text {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 612px;
    flex-shrink: 0;
}

.job-hero-title {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 50px;
    line-height: 55px;
    color: #ffffff;
    margin: 0;
}

.job-hero-subtitle {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #ffffff;
    margin: 0;
}

.job-hero-subtitle p {
    margin: 0 0 16px 0;
}

.job-hero-subtitle p:last-child {
    margin-bottom: 0;
}

.job-hero-subtitle strong {
    font-weight: 600;
}

.job-blocs-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.job-blocs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.job-bloc-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    text-align: left;
}

.job-bloc-card .icon {
    color: var(--affiliate-primary);
    font-size: 40px;
    margin-bottom: 16px;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.job-bloc-card .icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.job-bloc-card h3 {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #000;
    margin: 0 0 12px 0;
    text-align: center;
}

.job-bloc-card .bloc-content {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #555;
    margin: 0;
}

.job-bloc-card .bloc-content p {
    margin: 0 0 12px 0;
}

.job-bloc-card .bloc-content p:last-child {
    margin-bottom: 0;
}

.job-bloc-card .bloc-content ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0;
}

.job-bloc-card .bloc-content ul li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 6px;
    font-size: 13px;
    line-height: 20px;
}

.job-bloc-card .bloc-content ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    background-color: var(--affiliate-primary);
    border-radius: 50%;
}

.job-bloc-card .bloc-intro {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #555;
    margin: 0 0 12px 0;
}

.job-bloc-card .bloc-list-intro {
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    color: #000;
    margin: 0 0 8px 0;
}

.job-bloc-card .bloc-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0;
}

.job-bloc-card .bloc-list-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.job-bloc-card .bloc-bullet {
    width: 6px;
    height: 6px;
    min-width: 6px;
    background-color: var(--affiliate-primary);
    border-radius: 50%;
    margin-top: 8px;
}

.job-bloc-card .bloc-list-item p {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    line-height: 20px;
    color: #000;
    margin: 0;
}

.job-profiles-section {
    background: linear-gradient(90deg, #0f2a5c 0%, #1a3a7a 50%, var(--affiliate-primary) 100%);
    padding: 40px 0;
}

.job-profiles-header {
    margin-bottom: 40px;
}

.job-profiles-title {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 42px;
    color: #fff;
    text-align: left;
    margin: 0 0 8px 0;
}

.job-profiles-intro {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
    margin: 0;
}

.job-profiles-intro p {
    margin: 0 0 8px 0;
}

.job-profiles-intro p:last-child {
    margin-bottom: 0;
}

.job-profiles-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.job-profile-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.job-profile-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
}

.job-profile-icon img {
    width: 36px;
    height: 36px;
    filter: brightness(0) invert(1);
    image-rendering: -webkit-optimize-contrast;
}

.job-profile-icon img.no-filter {
    filter: none;
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.job-profile-text {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #fff;
    text-align: center;
    margin: 0;
}

.job-transform-section {
    padding: 80px 0;
    background-color: #fff;
}

.job-transform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.job-transform-image {
    width: 100%;
    height: 379px;
    overflow: hidden;
    border-radius: 8px;
}

.job-transform-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.job-transform-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.job-transform-title {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 34px;
    color: #000;
    margin: 0;
}

.job-transform-text {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #000;
}

.job-transform-text p {
    margin: 0 0 16px 0;
}

.job-transform-text p:last-child {
    margin-bottom: 0;
}

.job-transform-text ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 0 0;
}

.job-transform-text ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 18px;
    line-height: 35px;
}

.job-transform-text ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 8px;
    height: 8px;
    background-color: var(--affiliate-primary);
    border-radius: 50%;
}

.job-transform-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.job-transform-list-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.job-transform-bullet {
    width: 8px;
    height: 8px;
    min-width: 8px;
    background-color: var(--affiliate-primary);
    border-radius: 50%;
    margin-top: 13px;
}

.job-transform-list-item p {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 35px;
    color: #000;
    margin: 0;
}

/* Job - Responsive */
@media (max-width: 1200px) {
    .job-blocs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .job-hero {
        min-height: auto;
    }
    
    .job-hero-content {
        flex-direction: column;
        padding-top: 40px;
        padding-bottom: 40px;
        min-height: auto;
        gap: 20px;
    }
    
    .job-hero-text {
        max-width: 100%;
        gap: 20px;
    }
    
    .job-hero-title {
        font-size: 32px;
        line-height: 38px;
    }
    
    .job-hero-subtitle {
        font-size: 16px;
        line-height: 26px;
    }
    
    .job-blocs-section {
        padding: 40px 0;
    }
    
    .job-blocs-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .job-bloc-card {
        padding: 24px 20px;
    }
    
    .job-bloc-card h3 {
        font-size: 16px;
        line-height: 22px;
    }
    
    .job-profiles-section {
        padding: 40px 0;
    }
    
    .job-profiles-header {
        margin-bottom: 24px;
    }
    
    .job-profiles-title {
        font-size: 26px;
        line-height: 32px;
    }
    
    .job-profiles-intro {
        font-size: 16px;
        line-height: 24px;
    }
    
    .job-profiles-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    
    .job-profile-item {
        padding: 16px 12px;
        width: calc(50% - 8px);
        max-width: 180px;
    }
    
    .job-profile-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }
    
    .job-profile-icon img {
        width: 40px;
        height: 40px;
    }
    
    .job-profile-text {
        font-size: 14px;
        line-height: 18px;
    }
    
    .job-transform-section {
        padding: 40px 0;
    }
    
    .job-transform-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .job-transform-image {
        height: 250px;
    }
    
    .job-transform-title {
        font-size: 24px;
        line-height: 30px;
    }
    
    .job-transform-text {
        font-size: 16px;
        line-height: 26px;
    }
}

@media (max-width: 480px) {
    .job-hero-title {
        font-size: 26px;
        line-height: 32px;
    }
    
    .job-profiles-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .job-profile-item {
        width: calc(50% - 8px);
        max-width: 160px;
    }
}

/* ==========================================================================
   FRONT-OFFICE - Page: Who (Qui sommes-nous)
   ========================================================================== */

.who-adn-section {
    background: linear-gradient(90deg, #0f2a5c 0%, #1a3a7a 50%, var(--affiliate-primary) 100%);
    padding: 40px 0;
}

.who-adn-header {
    margin-bottom: 40px;
}

.who-adn-title {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 42px;
    color: #fff;
    text-align: left;
    margin: 0 0 8px 0;
}

.who-adn-subtitle {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
    margin: 0;
}

.who-adn-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.who-adn-pillar {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.who-adn-icon {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    margin: 0 auto 24px auto;
}

.who-adn-icon img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

.who-adn-icon img.no-filter {
    filter: none;
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.who-adn-pillar-title {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 28px;
    color: #fff;
    margin: 0 0 16px 0;
    text-align: center;
}

.who-adn-pillar-text {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.who-network-block {
    display: flex;
    gap: 0;
    align-items: stretch;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.who-network-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
}

.who-network-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 380px;
}

.who-network-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.who-network-title {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 36px;
    color: #000;
    margin: 0 0 16px 0;
}

.who-network-text {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #555;
    margin: 0 0 20px 0;
}

.who-network-list {
    margin: 0 0 24px 0;
    padding: 0;
    list-style: none;
}

.who-network-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    color: #333;
}

.who-network-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    background-color: var(--affiliate-primary);
    border-radius: 50%;
}

.who-network-list li:last-child {
    margin-bottom: 0;
}

/* Who - Responsive */
@media (max-width: 1200px) {
    .who-adn-pillars {
        gap: 30px;
    }
    
    .who-network-content {
        padding: 30px;
    }
    
    .who-network-title {
        font-size: 24px;
        line-height: 32px;
    }
}

@media (max-width: 768px) {
    .who-adn-section {
        padding: 40px 0;
    }
    
    .who-adn-header {
        margin-bottom: 24px;
    }
    
    .who-adn-title {
        font-size: 26px;
        line-height: 32px;
    }
    
    .who-adn-subtitle {
        font-size: 16px;
    }
    
    .who-adn-pillars {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .who-adn-pillar {
        padding: 16px;
    }
    
    .who-network-block {
        flex-direction: column;
    }
    
    .who-network-image {
        flex: none;
    }
    
    .who-network-image img {
        min-height: 200px;
        height: 200px;
    }
    
    .who-network-content {
        padding: 24px 20px;
    }
    
    .who-network-title {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 12px;
    }
    
    .who-network-text {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 16px;
    }
    
    .who-network-list {
        margin-bottom: 20px;
    }
    
    .who-network-list li {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 6px;
    }
    
    .who-adn-icon {
        width: auto;
        height: auto;
        margin-bottom: 16px;
    }
    
    .who-adn-icon img {
        width: 36px;
        height: 36px;
    }
    
    .who-adn-icon img.no-filter {
        width: 50px;
        height: 50px;
    }
    
    .who-adn-pillar-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .who-adn-pillar-text {
        font-size: 15px;
        line-height: 24px;
    }
}

/* Mobile Menu Toggle Button (inline style fallback) */
@media (max-width: 768px) {
    #mobileMenuToggle {
        display: flex !important;
    }
}


.affiliate-header .dropdown-fs {
    position: relative;
}

.affiliate-header .dropdown-fs .dropdown-toggle {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    color: #374151;
    font-weight: 500;
    padding: 12px 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
}

.affiliate-header .dropdown-fs .dropdown-toggle::after,
.affiliate-header .dropdown-fs .dropdown-toggle::before {
    display: none !important;
}

.affiliate-header .dropdown-fs .dropdown-toggle:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.affiliate-header .dropdown-fs .dropdown-toggle:focus {
    outline: none;
    border-color: #9ca3af;
    box-shadow: 0 0 0 3px rgba(156, 163, 175, 0.1);
}

.affiliate-header .dropdown-fs .dropdown-menu {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 8px;
    margin-top: 8px;
    min-width: 180px;
    z-index: 50;
}

.affiliate-header .dropdown-fs .dropdown-item {
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #374151;
    text-decoration: none;
    margin: 2px 0;
}

.affiliate-header .dropdown-fs .dropdown-item:hover {
    background-color: #f9fafb;
    color: #111827;
}

.affiliate-header .dropdown-fs .dropdown-item.active {
    background-color: #f3f4f6;
    color: #111827;
    font-weight: 600;
}

/* ================================================
   DROPDOWN COUNTRY SELECTOR - FOOTER
   ================================================ */

.affiliate-country-selector {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.affiliate-country-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.affiliate-country-btn:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.affiliate-country-menu {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    min-width: 200px;
    z-index: 1000;
    padding: 8px 0;
    overflow: hidden;
}

.affiliate-country-menu.show {
    display: block;
}

.affiliate-country-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: #253d4e;
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    transition: background-color 0.2s;
}

.affiliate-country-item span {
    margin-left: 10px;
}

.affiliate-country-item:hover {
    background-color: #f5f7fa;
}

.affiliate-country-item.active {
    background-color: #274798;
    color: #fff;
}

/* ================================================
   NEWS SECTION - HOME PAGE
   ================================================ */

.affiliate-news-section {
    padding: 80px 0;
    background-color: #fff;
}

.affiliate-news-header {
    text-align: left;
    margin-bottom: 40px;
}

.affiliate-news-label {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #274798;
    text-transform: capitalize;
    margin-bottom: 8px;
}

.affiliate-news-title {
    font-family: 'Jost', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.3;
}

.affiliate-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.affiliate-news-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.affiliate-news-card:hover {
    transform: none;
}

.affiliate-news-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 16px;
}

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

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

.affiliate-news-card-content {
    padding: 20px 0;
}

.affiliate-news-card-title {
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.affiliate-news-card-date {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    color: #9ca3af;
    margin: 0 0 12px 0;
}

.affiliate-news-card-excerpt {
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0 0 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.affiliate-news-card-link {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #274798;
    text-decoration: none;
    transition: color 0.2s ease;
}

.affiliate-news-card-link:hover {
    color: #1a3470;
    text-decoration: underline;
}

.affiliate-news-cta {
    text-align: center;
}

.affiliate-news-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background-color: #1a1a2e;
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.affiliate-news-btn:hover {
    background-color: #274798;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .affiliate-news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .affiliate-news-section {
        padding: 60px 0;
    }
    
    .affiliate-news-title {
        font-size: 26px;
    }
    
    .affiliate-news-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .affiliate-news-card-image {
        height: 180px;
    }
}

.contact-steps-section {
    background: #f8f9fa;
    padding: 60px 0 80px;
}

.contact-steps-title {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 34px;
    color: #1D1D1B;
    margin: 0 0 12px 0;
    text-align: left;
}

.contact-steps-description {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #666;
    margin: 0 0 40px 0;
    text-align: left;
}

.contact-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-step-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
}

.contact-step-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-step-icon i {
    font-size: 40px;
    color: #274798;
}

.contact-step-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.contact-step-title {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #1D1D1B;
    margin: 0 0 12px 0;
}

.contact-step-text {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #666;
    margin: 0;
}

@media (max-width: 1024px) {
    .contact-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-steps-section {
        padding: 40px 0;
    }
    
    .contact-steps-title {
        font-size: 24px;
    }
    
    .contact-steps-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .contact-steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .contact-step-card {
        padding: 24px 20px;
    }
}

/* ==========================================================================
   FRONT-OFFICE - Page: Software (Logiciels)
   ========================================================================== */

.software-page { background: #fff; }

.software-page .affiliate-home-hero { min-height: 420px; }
.software-page .affiliate-home-hero-content { min-height: 420px; padding: 50px 0; }
.software-page .affiliate-home-hero-title { margin-bottom: 16px; }
.software-page .affiliate-home-hero-subtitle { margin-bottom: 0; }
.software-page .affiliate-home-hero-intro { margin-bottom: 0; }

.software-page-body { padding: 48px 0; background: #fff; border-top: 1px solid #eee; }
.software-page-body-inner { font-family: 'Jost', sans-serif; font-size: 17px; line-height: 1.65; color: #333; max-width: 900px; margin: 0 auto; }
.software-page-body-inner p { margin: 0 0 1em; }
.software-page-body-inner p:last-child { margin-bottom: 0; }
.software-page-body-inner h2, .software-page-body-inner h3 { font-family: 'Jost', sans-serif; color: #000; margin: 1.25em 0 0.5em; }
.software-page-body-inner h2:first-child, .software-page-body-inner h3:first-child { margin-top: 0; }
.software-page-body-inner ul, .software-page-body-inner ol { margin: 0 0 1em; padding-left: 1.25em; }

.software-hero-badges { display: flex; gap: 10px; margin-top: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.software-hero-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); border-radius: 50px; font-family: 'Jost', sans-serif; font-size: 13px; color: #fff; }
.software-hero-badge i { color: #fff; }

.software-advantages-section { padding: 60px 0; background: #f8f9fa; }
.software-advantages-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.software-advantage-card { background: #fff; border-radius: 12px; padding: 28px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); border: 1px solid #eee; }
.software-advantage-icon { width: 50px; height: 50px; background: linear-gradient(135deg, #0f2a5c, #1a3a7a); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.software-advantage-icon i { font-size: 24px; color: #fff; }
.software-advantage-icon img { width: 30px; height: 30px; object-fit: contain; filter: brightness(0) invert(1); }
.software-advantage-card h3 { font-family: 'Jost', sans-serif; font-weight: 700; font-size: 20px; color: #000; margin: 0 0 12px; text-align: center; }
.software-advantage-card > p, .software-advantage-card .content { font-family: 'Jost', sans-serif; font-size: 15px; line-height: 1.6; color: #555; margin: 0 0 16px; }
.software-advantage-card ul { margin: 0; padding-left: 20px; }
.software-advantage-card li { font-family: 'Jost', sans-serif; font-size: 14px; line-height: 1.8; color: #333; }

.software-features-section { padding: 60px 0; background: #f8f9fa; }
.software-features-title { font-family: 'Jost', sans-serif; font-weight: 700; font-size: 30px; line-height: 34px; color: #000; text-align: center; margin: 0 0 12px; }
.software-features-subtitle { font-family: 'Jost', sans-serif; font-size: 18px; line-height: 30px; color: #000; text-align: center; max-width: 700px; margin: 0 auto 40px; }
.software-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.software-feature-card { background: #fff; border-radius: 16px; padding: 28px 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); border: 1px solid #eee; }
.software-feature-icon { width: 50px; height: 50px; background: linear-gradient(135deg, #0f2a5c, #1a3a7a); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.software-feature-icon i { font-size: 24px; color: #fff; }
.software-feature-icon img { width: 30px; height: 30px; object-fit: contain; filter: brightness(0) invert(1); }
.software-feature-card h3 { font-family: 'Jost', sans-serif; font-weight: 700; font-size: 20px; color: #000; margin: 0 0 12px; text-align: center; }
.software-feature-card p, .software-feature-card .content { font-family: 'Jost', sans-serif; font-size: 16px; line-height: 26px; color: #000; margin: 0 0 10px; }
.software-feature-card p:last-child, .software-feature-card .content:last-child { margin-bottom: 0; }

.software-conclusion-section { padding: 60px 0; background: #f8f9fa; }
.software-conclusion { text-align: center; max-width: 800px; margin: 0 auto; }
.software-conclusion h2 { font-family: 'Jost', sans-serif; font-weight: 700; font-size: 30px; line-height: 34px; color: #000; margin: 0 0 20px; }
.software-conclusion p { font-family: 'Jost', sans-serif; font-size: 18px; line-height: 30px; color: #000; margin: 0; }

/* Software - Responsive */
@media (max-width: 1024px) {
    .software-advantages-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .software-features-grid { grid-template-columns: 1fr; }
    .software-features-title { font-size: 24px; }
    .software-hero-badges { justify-content: center; }
    .software-page .affiliate-home-hero-content { padding: 40px 16px; min-height: auto; }
    .software-page .affiliate-home-hero-title { font-size: 28px; line-height: 1.3; }
}


