.partners-template {
    margin: 0;
    padding: 0;
}

.partners-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
}

.hero-bg-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(10, 36, 78, 0.95) 0%,
        rgba(10, 36, 78, 0.85) 20%,
        rgba(10, 36, 78, 0.6) 40%,
        rgba(10, 36, 78, 0.3) 60%,
        rgba(10, 36, 78, 0.1) 80%,
        transparent 100%
    );
    z-index: 2;
}

/* Contenu du hero */
.hero-content-wrapper {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 80px;
}

.hero-content {
    max-width: 600px;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-small-title {
    font-size: 1rem;
    font-weight: 400;
    font-family: 'MomoTrustSans', sans-serif;
    margin: 0;
    color: var(--color-white);
}

.hero-main-title {
    font-size: 4rem;
    font-weight: 700;
    font-family: 'MomoTrustSans', sans-serif;
    margin: 0;
    color: var(--color-white);
    line-height: 1.2;
}

.hero-sub-title {
    font-size: 1.2rem;
    font-weight: 400;
    font-family: 'MomoTrustSans', sans-serif;
    margin: 0;
    color: var(--color-white);
}

.hero-description {
    font-size: 1.1rem;
    font-weight: 300;
    font-family: 'MomoTrustSans', sans-serif;
    margin: 0;
    color: var(--color-white);
    line-height: 1.6;
}

.hero-cta {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--color-secondary);
    color: var(--color-white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'MomoTrustSans', sans-serif;
    border-radius: 48px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    align-self: flex-start;
    margin-top: 20px;
}

.hero-cta:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ===========================================
   CTA SECTION FULL WIDTH
   =========================================== */
.cta-section-full {
    width: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    padding: 80px 40px;
    margin-top: 60px;
}

.cta-full-content {
    max-width: 1366px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-full-title {
    font-size: 2.5rem;
    font-weight: 600;
    font-family: 'MomoTrustSans', sans-serif;
    color: white;
    flex: 1;
    margin: 0;
    line-height: 1.3;
}

.cta-full-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: white;
    color: var(--color-primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'MomoTrustSans', sans-serif;
    border-radius: 48px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.cta-full-button:hover {
    background-color: var(--color-secondary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1024px) {
    .hero-content-wrapper {
        padding: 0 40px;
    }
    
    .hero-main-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .partners-template .site-header {
        padding: 12px 0;
    }
    
    .partners-hero-section {
        height: 80vh;
    }
    
    .hero-overlay-gradient {
        background: linear-gradient(
            to bottom,
            rgba(10, 36, 78, 0.85) 0%,
            rgba(10, 36, 78, 0.7) 50%,
            rgba(10, 36, 78, 0.4) 100%
        );
    }
    
    .hero-content-wrapper {
        padding: 0 24px;
        align-items: flex-end;
        padding-bottom: 60px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .page-overlay-container {
        margin-top: -60px;
        border-top-left-radius: 40px;
        border-top-right-radius: 40px;
        padding-top: 60px;
    }
    
    .cta-section-full {
        padding: 60px 24px;
    }
    
    .cta-full-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .cta-full-title {
        font-size: 1.8rem;
    }
    
    .cta-full-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        width: 100%;
        text-align: center;
    }
    
    .cta-full-title {
        font-size: 1.5rem;
    }
}