/* ===================================
   MANDAT 2025 - STYLES SPÉCIFIQUES
   =================================== */

/* Container global avec marges */
.page-mandat .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 3rem);
}

/* Hero Mandat */
body.page-mandat .hero {
    min-height: clamp(420px, 55vh, 520px);
    padding-bottom: clamp(3rem, 6vw, 5rem);
}

body.page-mandat .hero::after {
    background: linear-gradient(140deg, rgba(3, 7, 18, 0.88), rgba(3, 7, 18, 0.5) 50%, transparent 75%);
}

body.page-mandat .hero-media img {
    opacity: 0.45;
    filter: saturate(1.15) brightness(1.1);
}

/* Section headers styling */
.section-header {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-header h2 {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.75rem;
    line-height: 1.2;
}

.section-header p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* ===================================
   LEADERSHIP SECTION
   =================================== */

.leadership-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: linear-gradient(180deg, rgba(7, 13, 32, 0.4), rgba(3, 7, 18, 0.6)),
        radial-gradient(circle at 20% 30%, rgba(0, 245, 202, 0.08), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(120, 93, 255, 0.08), transparent 50%);
}

.leader-card {
    display: grid;
    grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 3rem);
    align-items: start;
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--stroke-soft);
    padding: clamp(1.75rem, 3.5vw, 2.5rem);
    box-shadow: var(--shadow-card);
    transition: transform 380ms ease, box-shadow 380ms ease;
}

.leader-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.3);
}

.leader-card:last-child {
    margin-bottom: 0;
}

.leader-visual {
    position: relative;
}

.leader-image {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    width: 100%;
}

.leader-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
}

.leader-card--president .leader-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 245, 202, 0.15), transparent 60%);
    pointer-events: none;
}

.leader-card--vicepresident .leader-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(120, 93, 255, 0.15), transparent 60%);
    pointer-events: none;
}

.leader-info {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.leader-role {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
}

.leader-card--vicepresident .leader-role {
    color: var(--accent-secondary);
}

.leader-info h3 {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
}

.leader-quote {
    margin: 0.875rem 0;
    padding: 1.125rem 1.5rem;
    background: rgba(0, 245, 202, 0.05);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.leader-card--vicepresident .leader-quote {
    background: rgba(120, 93, 255, 0.05);
    border-left-color: var(--accent-secondary);
}

.leader-quote p {
    font-style: italic;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.65;
    font-size: 0.9375rem;
}

.leader-description {
    color: var(--text-secondary);
    line-height: 1.65;
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.leader-achievements {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.leader-achievements li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.65;
    font-size: 0.9375rem;
}

.leader-achievements li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
}

.leader-achievements li strong {
    color: var(--accent);
}

/* ===================================
   BUREAU SECTION
   =================================== */

.bureau-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--bg-primary);
}

.bureau-photo {
    margin: 0 0 clamp(2.5rem, 5vw, 3.5rem);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.bureau-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    max-width: 1100px;
    margin: 0 auto;
}

.bureau-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--stroke-soft);
    padding: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
    transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}

.bureau-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.25);
    border-color: var(--accent);
}

.bureau-icon {
    font-size: 2.25rem;
    margin-bottom: 0.875rem;
}

.bureau-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.bureau-role {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 0.875rem;
    display: block;
}

.bureau-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   PÔLES DÉTAILLÉS
   =================================== */

.poles-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--bg-primary);
}

.pole-detail {
    display: grid;
    grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 3rem);
    align-items: start;
    margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.pole-detail:last-of-type {
    margin-bottom: 0;
}

.pole-detail--reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 400px);
}

.pole-detail--reverse .pole-detail-visual {
    order: 2;
}

.pole-detail-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
    transition: transform 400ms ease, box-shadow 400ms ease;
    max-width: 100%;
    display: flex;
    flex-direction: column;
}

.pole-detail-visual:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.35);
}

.pole-detail-visual img {
    width: 100%;
    height: auto;
    display: block;
}

/* Encadré des membres sous la photo */
.pole-members-visual {
    background: linear-gradient(to bottom, rgba(3, 7, 18, 0.9), rgba(3, 7, 18, 0.95));
    border-top: 2px solid var(--accent);
    padding: 1.25rem 1.5rem;
}

.pole-detail:nth-of-type(2) .pole-members-visual {
    border-top-color: #ff6b6b;
}

.pole-detail:nth-of-type(3) .pole-members-visual {
    border-top-color: var(--accent-secondary);
}

.pole-members-visual h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.875rem;
    text-align: center;
}

.pole-members-visual .members-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    justify-content: center;
}

.pole-members-visual .members-tags span {
    display: inline-block;
    font-size: 0.8125rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 245, 202, 0.15);
    border: 1px solid rgba(0, 245, 202, 0.3);
    border-radius: 2rem;
    color: var(--accent);
    transition: all 280ms ease;
    font-weight: 500;
}

.pole-detail:nth-of-type(2) .pole-members-visual .members-tags span {
    background: rgba(255, 107, 107, 0.15);
    border-color: rgba(255, 107, 107, 0.3);
    color: #ff6b6b;
}

.pole-detail:nth-of-type(3) .pole-members-visual .members-tags span {
    background: rgba(120, 93, 255, 0.15);
    border-color: rgba(120, 93, 255, 0.3);
    color: var(--accent-secondary);
}

.pole-members-visual .members-tags span:hover {
    transform: translateY(-2px);
    background: var(--accent);
    color: var(--bg-primary);
}

.pole-detail:nth-of-type(2) .pole-members-visual .members-tags span:hover {
    background: #ff6b6b;
}

.pole-detail:nth-of-type(3) .pole-members-visual .members-tags span:hover {
    background: var(--accent-secondary);
}

.pole-detail-content {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.pole-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    padding: 0.5rem 1rem;
    background: rgba(0, 245, 202, 0.1);
    border-radius: 2rem;
    width: fit-content;
}

.pole-detail:nth-of-type(2) .pole-badge {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.pole-detail:nth-of-type(3) .pole-badge {
    color: var(--accent-secondary);
    background: rgba(120, 93, 255, 0.1);
}

.pole-detail-content h3 {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
}

.pole-lead-name {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.pole-lead-name strong {
    color: var(--accent);
    font-weight: 600;
}

.pole-detail-content > p {
    color: var(--text-secondary);
    line-height: 1.65;
    font-size: 0.9375rem;
}

.pole-detail-content ul {
    list-style: none;
    padding: 0;
    margin: 0.875rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pole-detail-content ul li {
    position: relative;
    padding-left: 1.75rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9375rem;
}

.pole-detail-content ul li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.pole-detail-content ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: 600;
    font-size: 1.125rem;
}

.pole-detail:nth-of-type(2) ul li::before {
    color: #ff6b6b;
}

.pole-detail:nth-of-type(3) ul li::before {
    color: var(--accent-secondary);
}

.pole-members-list {
    margin-top: 1.125rem;
    padding: 1.25rem 1.5rem;
    background: rgba(0, 245, 202, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 245, 202, 0.1);
}

/* ===================================
   FUTURS PÔLES 2026
   =================================== */

.future-poles-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: linear-gradient(180deg, rgba(3, 7, 18, 0.6), rgba(7, 13, 32, 0.4)),
        radial-gradient(circle at 30% 50%, rgba(0, 245, 202, 0.08), transparent 60%),
        radial-gradient(circle at 70% 50%, rgba(120, 93, 255, 0.08), transparent 60%);
}

.future-poles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.future-pole-card {
    background: var(--bg-card);
    border: 1px solid var(--stroke-soft);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 4vw, 2.5rem);
    transition: all 400ms ease;
    position: relative;
    overflow: hidden;
}

.future-pole-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    transform: scaleX(0);
    transition: transform 400ms ease;
}

.future-pole-card:hover::before {
    transform: scaleX(1);
}

.future-pole-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.4);
    border-color: var(--accent);
}

.future-pole-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.future-pole-card:nth-child(1) .future-pole-icon {
    animation-delay: 0s;
}

.future-pole-card:nth-child(2) .future-pole-icon {
    animation-delay: 0.5s;
}

.future-pole-card:nth-child(3) .future-pole-icon {
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.future-pole-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.5rem 1rem;
    background: rgba(0, 245, 202, 0.1);
    border: 1px solid rgba(0, 245, 202, 0.2);
    border-radius: 2rem;
    color: var(--accent);
    margin-bottom: 1.25rem;
    animation: pulse-badge 2s ease infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 245, 202, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(0, 245, 202, 0);
    }
}

.future-pole-card:nth-child(2) .future-pole-badge {
    background: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.future-pole-card:nth-child(3) .future-pole-badge {
    background: rgba(120, 93, 255, 0.1);
    border-color: rgba(120, 93, 255, 0.2);
    color: var(--accent-secondary);
}

.future-pole-card h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.75rem;
    line-height: 1.3;
}

.future-pole-mission {
    font-size: 0.9375rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-align: center;
    padding: 0.75rem 1rem;
    background: rgba(0, 245, 202, 0.05);
    border-radius: var(--radius-sm);
}

.future-pole-card:nth-child(2) .future-pole-mission {
    color: #ffc107;
    background: rgba(255, 193, 7, 0.05);
}

.future-pole-card:nth-child(3) .future-pole-mission {
    color: var(--accent-secondary);
    background: rgba(120, 93, 255, 0.05);
}

.future-pole-tasks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.future-pole-tasks li {
    position: relative;
    padding-left: 1.75rem;
    color: var(--text-secondary);
    line-height: 1.65;
    font-size: 0.9375rem;
}

.future-pole-tasks li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.future-pole-card:nth-child(1) .future-pole-tasks li {
    color: var(--text-secondary);
}

.future-pole-card:nth-child(1) .future-pole-tasks li::before {
    color: var(--accent);
}

.future-pole-card:nth-child(2) .future-pole-tasks li::before {
    color: #ffc107;
}

.future-pole-card:nth-child(3) .future-pole-tasks li::before {
    color: var(--accent-secondary);
}

.future-poles-cta {
    text-align: center;
    padding: clamp(2rem, 4vw, 2.5rem);
    background: linear-gradient(135deg, rgba(0, 245, 202, 0.08), rgba(120, 93, 255, 0.08));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 245, 202, 0.2);
}

.future-poles-cta p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 900px;
    margin: 0 auto;
}

.future-poles-cta p strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ===================================
   TEAM PHOTO SECTION
   =================================== */

.team-photo-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: linear-gradient(180deg, rgba(7, 13, 32, 0.4), rgba(3, 7, 18, 0.6));
}

.team-photo-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
    max-width: 1100px;
    margin: 0 auto;
}

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

/* ===================================
   ORGANIGRAMME ANIMÉ
   =================================== */

.organigramme-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: linear-gradient(180deg, rgba(3, 7, 18, 0.6), rgba(7, 13, 32, 0.4)),
        radial-gradient(circle at 50% 0%, rgba(0, 245, 202, 0.1), transparent 60%);
}

.organigramme-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
    padding: 2rem 1rem;
    min-width: 800px;
    overflow-x: auto;
}

.org-level {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.75rem;
    width: 100%;
}

.org-node {
    background: var(--bg-card);
    border: 2px solid var(--stroke-soft);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    min-width: 200px;
    text-align: center;
    transition: all 420ms cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: nodeAppear 600ms cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
    position: relative;
}

.org-node:hover {
    transform: scale(1.08) translateY(-8px);
    box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.4);
    border-color: var(--accent);
    z-index: 10;
}

.org-president {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(0, 245, 202, 0.08), var(--bg-card));
    box-shadow: 0 8px 24px -5px rgba(0, 245, 202, 0.2);
}

.org-vicepresident {
    border-color: var(--accent-secondary);
    background: linear-gradient(135deg, rgba(120, 93, 255, 0.08), var(--bg-card));
    box-shadow: 0 8px 24px -5px rgba(120, 93, 255, 0.2);
}

.org-respo-entrep {
    border-color: #ffc107;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.08), var(--bg-card));
}

.node-role {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.org-vicepresident .node-role {
    color: var(--accent-secondary);
}

.org-respo-entrep .node-role {
    color: #ffc107;
}

.node-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Connecteurs animés */
.org-connector {
    width: 2px;
    height: 36px;
    background: linear-gradient(180deg, var(--accent), var(--accent-secondary));
    margin: 0 auto;
    animation: connectorGrow 800ms ease backwards;
    position: relative;
}

.org-connector::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
    animation: pulse 2s ease infinite;
}

.org-connector-1 {
    animation-delay: 200ms;
}

.org-connector-2 {
    animation-delay: 400ms;
}

.org-connector-3 {
    animation-delay: 600ms;
    height: 50px;
    background: linear-gradient(180deg, var(--accent-secondary), transparent);
}

/* Pôles dans l'organigramme */
.org-level-4 {
    gap: 1.5rem;
}

.org-pole {
    background: var(--bg-card);
    border: 2px solid var(--stroke-soft);
    border-radius: var(--radius-md);
    padding: 1.125rem 1.5rem;
    min-width: 220px;
    transition: all 400ms ease;
    animation: poleSlideUp 700ms cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.org-pole:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.4);
}

.org-pole-entreprises {
    border-color: #ffc107;
    animation-delay: 700ms;
}

.org-pole-entreprises:hover {
    border-color: #ffc107;
    box-shadow: 0 20px 50px -15px rgba(255, 193, 7, 0.3);
}

.org-pole-logistique {
    border-color: #ff6b6b;
    animation-delay: 850ms;
}

.org-pole-logistique:hover {
    border-color: #ff6b6b;
    box-shadow: 0 20px 50px -15px rgba(255, 107, 107, 0.3);
}

.org-pole-communication {
    border-color: var(--accent-secondary);
    animation-delay: 1000ms;
}

.org-pole-communication:hover {
    border-color: var(--accent-secondary);
    box-shadow: 0 20px 50px -15px rgba(120, 93, 255, 0.3);
}

.pole-header {
    margin-bottom: 0.875rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--stroke-soft);
}

.pole-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem;
}

.pole-lead {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
}

.org-pole-logistique .pole-lead {
    color: #ff6b6b;
}

.org-pole-communication .pole-lead {
    color: var(--accent-secondary);
}

.pole-members {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pole-member {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    padding: 0.4rem 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
    transition: all 250ms ease;
}

.pole-member:hover {
    background: rgba(0, 245, 202, 0.08);
    color: var(--text-primary);
    transform: translateX(4px);
}

/* Animations */
@keyframes nodeAppear {
    0% {
        opacity: 0;
        transform: scale(0.7) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes connectorGrow {
    0% {
        height: 0;
        opacity: 0;
    }
    100% {
        height: 36px;
        opacity: 1;
    }
}

@keyframes poleSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.3);
    }
}

/* Animation delays pour les niveaux */
.org-level-1 .org-node {
    animation-delay: 100ms;
}

.org-level-2 .org-node {
    animation-delay: 400ms;
}

.org-level-3 .org-node:nth-child(1) {
    animation-delay: 650ms;
}

.org-level-3 .org-node:nth-child(2) {
    animation-delay: 750ms;
}

.org-level-3 .org-node:nth-child(3) {
    animation-delay: 850ms;
}

/* ===================================
   PASSATION SECTION
   =================================== */

.passation-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--bg-primary);
}

.passation-content {
    max-width: 1000px;
    margin: 0 auto;
}

.passation-content h2 {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--text-primary);
}

.passation-intro {
    font-size: 1.0625rem;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.65;
}

.passation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.passation-card {
    background: var(--bg-card);
    border: 1px solid var(--stroke-soft);
    border-radius: var(--radius-md);
    padding: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
    transition: transform 350ms ease, box-shadow 350ms ease;
}

.passation-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.25);
}

.passation-icon {
    font-size: 2.75rem;
    margin-bottom: 1.125rem;
}

.passation-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.875rem;
    line-height: 1.3;
}

.passation-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 0.9375rem;
}

.passation-cta {
    text-align: center;
    padding: clamp(1.75rem, 3.5vw, 2.5rem);
    background: rgba(0, 245, 202, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 245, 202, 0.15);
}

.passation-cta p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 750px;
    margin: 0 auto 1.5rem;
}

.passation-cta p strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 1024px) {
    .leader-card,
    .pole-detail,
    .pole-detail--reverse {
        grid-template-columns: 1fr;
    }

    .pole-detail--reverse .pole-detail-visual {
        order: 0;
    }

    .leader-image {
        max-width: 100%;
        margin: 0 auto;
    }

    .pole-detail-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .future-poles-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .page-mandat .container {
        padding: 0 1.25rem;
    }

    .org-level-3,
    .org-level-4 {
        flex-direction: column;
        gap: 1.5rem;
    }

    .org-pole {
        width: 100%;
        max-width: 320px;
    }

    .bureau-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .passation-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .leader-card,
    .pole-detail {
        padding: clamp(1.25rem, 2.5vw, 1.5rem);
    }

    .leader-image {
        max-width: 100%;
    }

    .organigramme-wrapper {
        padding: 1.5rem 0.75rem;
    }

    .organigramme-section {
        display: none;
    }
}
