/* ============================================
   ALL WELCOME - GLOBAL STYLES
   ============================================ */

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

img, video, svg {
    max-width: 100%;
    height: auto;
}

:root {
    /* Couleurs */
    --navy: #1A2A6C;
    --royal: #1E4DB7;
    --blue: #3B82F6;
    --mist: #DBEAFE;
    --pale: #EFF6FF;
    --white: #ffffff;
    --ink: #0F172A;
    --slate: #334155;
    --silver: #94A3B8;

    /* Typographie — familles */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;

    /* Typographie — tailles */
    --text-xs:   11px;
    --text-sm:   13px;
    --text-base: 15px;
    --text-md:   17px;
    --text-lg:   20px;
    --text-xl:   28px;
    --text-2xl:  36px;
    --text-3xl:  48px;
    --text-4xl:  64px;

    /* Typographie — hauteur de ligne */
    --leading-tight:  1.1;
    --leading-snug:   1.3;
    --leading-normal: 1.6;
    --leading-loose:  1.8;

    /* Typographie — espacement display */
    --tracking-display: -0.02em;
    --tracking-tight:   -0.01em;
    --tracking-wide:    0.08em;
    --tracking-widest:  0.15em;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    background: #0F172A;
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* ============================================
   JUSTIFY GLOBAL — corps de texte
   Règle de base (spécificité 0,0,1) :
   les règles plus spécifiques déjà en place
   (centre, gauche) l'écrasent naturellement.
   ============================================ */
p {
    text-align: justify !important;
}

/* ============================================
   NAVIGATION
   ============================================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 60px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(26, 42, 108, 0.08);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    width: 50px;
}

.nav-logo-text strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: #1A2A6C;
}

.nav-logo-text span {
    font-size: 8.5px;
    color: #94A3B8;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #1E4DB7;
}

.nav-cta {
    background: #1A2A6C !important;
    color: white !important;
    padding: 10px 22px !important;
    border-radius: 50px !important;
    font-size: 13px !important;
}

.nav-cta:hover {
    background: #1E4DB7 !important;
}

/* ============================================
   HERO SECTION (PAGE D'ACCUEIL)
   ============================================ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 120px 60px 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, #DBEAFE 0%, rgba(219, 234, 254, 0) 70%);
    right: -150px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
}

.hero-dots {
    position: absolute;
    bottom: 80px;
    left: 60px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    opacity: .1;
}

.hero-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #1A2A6C;
    display: block;
}

.hero-left {
    position: relative;
    z-index: 1;
    animation: fadeUp 0.8s 0.2s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #DBEAFE;
    color: #1E4DB7;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.hero-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1E4DB7;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 64px;
    line-height: 1.1;
    color: #1A2A6C;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: var(--tracking-display);
}

.hero-title em {
    font-style: italic;
    color: #1E4DB7;
}

.hero-sub {
    font-size: 17px;
    font-weight: 300;
    color: #334155;
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 44px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #1A2A6C;
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 8px 24px rgba(26, 42, 108, 0.25);
}

.btn-primary:hover {
    background: #1E4DB7;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(26, 42, 108, 0.3);
}

.btn-ghost {
    color: #1A2A6C;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
}

.btn-ghost:hover {
    gap: 14px;
}

.btn-ghost::after {
    content: '→';
    font-size: 18px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 52px;
    padding-top: 36px;
    border-top: 1px solid rgba(26, 42, 108, 0.1);
}

.stat-num {
    font-size: 34px;
    font-weight: 900;
    color: #1A2A6C;
    line-height: 1;
}

.stat-num span {
    font-size: 20px;
    color: #1E4DB7;
}

.stat-label {
    font-size: 11px;
    color: #94A3B8;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

.hero-right {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeUp 0.8s 0.4s ease both;
}

.hero-img-wrap {
    position: relative;
    width: 460px;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-circle {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #1A2A6C, #1E4DB7);
    opacity: .06;
}

.hero-ring {
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    border: 1.5px solid rgba(26, 42, 108, 0.1);
}

.hero-logo-big {
    width: 300px;
    position: relative;
    z-index: 1;
}

/* ============================================
   BAND SECTION
   ============================================ */
.band {
    background: #1A2A6C;
    padding: 22px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.band-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.band-item::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #3B82F6;
    flex-shrink: 0;
}

/* ============================================
   MISSION SECTION
   ============================================ */
.mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    padding: 120px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.mission-visual {
    position: relative;
    background: #1A2A6C;
    border-radius: 24px;
    padding: 52px 40px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    overflow: hidden;
}

.mission-visual::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.mission-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 23px;
    color: white;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.mission-quote::before {
    content: '"';
    display: block;
    font-size: 68px;
    color: #3B82F6;
    line-height: 0.7;
    margin-bottom: 18px;
    font-family: var(--font-display);
}

.mission-attr {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.38);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.mission-logo-sm {
    width: 72px;
    filter: brightness(0) invert(1);
    opacity: .55;
    position: relative;
    z-index: 1;
}

.section-tag {
    display: inline-block;
    background: #EFF6FF;
    color: #1E4DB7;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.mission-content h2 {
    font-family: var(--font-display);
    font-size: 40px;
    color: #1A2A6C;
    line-height: 1.15;
    margin-bottom: 20px;
}

.mission-content p {
    font-size: 15px;
    color: #334155;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 14px;
}

/* ============================================
   CARDS SECTION
   ============================================ */
.cards-section {
    background: #EFF6FF;
    padding: 100px 60px;
}

.cards-section .inner {
    max-width: 1400px;
    margin: 0 auto;
}

.cards-header {
    text-align: center;
    margin-bottom: 52px;
}

.cards-header h2 {
    font-family: var(--font-display);
    font-size: 40px;
    color: #1A2A6C;
    margin-bottom: 12px;
}

.cards-header p {
    font-size: 16px;
    color: #334155;
    font-weight: 300;
}

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

.card {
    background: white;
    border-radius: 20px;
    padding: 34px 28px;
    border: 1px solid rgba(26, 42, 108, 0.06);
    transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(26, 42, 108, 0.12);
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: #EFF6FF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 22px;
}

.card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1A2A6C;
    margin-bottom: 10px;
}

.card p {
    font-size: 13px;
    color: #334155;
    line-height: 1.7;
    font-weight: 300;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    font-size: 13px;
    font-weight: 700;
    color: #1E4DB7;
    text-decoration: none;
    transition: gap 0.2s;
}

.card-link:hover {
    gap: 10px;
}

/* ============================================
   ENGAGEMENT SECTION
   ============================================ */
.engagement {
    padding: 100px 60px;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.engagement h2 {
    font-family: var(--font-display);
    font-size: 40px;
    color: #1A2A6C;
    margin-bottom: 20px;
    line-height: 1.15;
}

.engagement > div > p {
    font-size: 15px;
    color: #334155;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 32px;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.step-num {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #1A2A6C;
    color: white;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1A2A6C;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 13px;
    color: #334155;
    font-weight: 300;
    line-height: 1.6;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    margin: 0 60px 100px;
    background: linear-gradient(135deg, #1A2A6C 0%, #1E4DB7 100%);
    border-radius: 28px;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.cta-text h2 {
    font-family: var(--font-display);
    font-size: 38px;
    color: white;
    margin-bottom: 12px;
}

.cta-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    max-width: 460px;
}

.btn-white {
    background: white;
    color: #1A2A6C;
    padding: 17px 38px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: #0F172A;
    padding: 60px 60px 36px;
}

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

.footer-brand img {
    width: 68px;
    margin-bottom: 14px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.38);
    font-weight: 300;
    line-height: 1.7;
    max-width: 230px;
}

.footer-col h4 {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.32);
    text-decoration: none;
    margin-bottom: 9px;
    font-weight: 300;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: rgba(255, 255, 255, 0.75);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.18);
    letter-spacing: 1px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 100px 30px 60px;
    }
    
    .hero-right {
        display: none;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .mission,
    .engagement {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    nav {
        padding: 16px 30px;
    }
    
    .band {
        padding: 22px 30px;
        gap: 30px;
    }
    
    .cta-banner {
        margin: 0 30px 60px;
        padding: 40px 30px;
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PAGE MISSION - STYLES
   ============================================ */

/* Page Hero */
.page-hero {
    padding: 160px 60px 100px;
    background: linear-gradient(160deg, #EFF6FF 0%, #fff 60%);
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    right: -120px;
    top: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, #DBEAFE, transparent 70%);
}

.breadcrumb {
    font-size: 12px;
    color: #94A3B8;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.breadcrumb a {
    color: #1E4DB7;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb span {
    margin: 0 8px;
}

.page-tag {
    display: inline-block;
    background: #DBEAFE;
    color: #1E4DB7;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.page-title {
    font-family: var(--font-display);
    font-size: 62px;
    line-height: 1.1;
    color: #1A2A6C;
    max-width: 700px;
    margin-bottom: 24px;
    font-weight: 600;
    letter-spacing: var(--tracking-display);
}

.page-title em {
    font-style: italic;
    color: #1E4DB7;
}

.page-intro {
    font-size: 18px;
    font-weight: 300;
    color: #334155;
    max-width: 580px;
    line-height: 1.8;
}

/* Content */
.content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 80px;
}

.content h2 {
    font-family: var(--font-display);
    font-size: 36px;
    color: #1A2A6C;
    margin-bottom: 20px;
    line-height: 1.2;
}

.content p {
    font-size: 15px;
    color: #334155;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 16px;
}

.highlight-box {
    background: #1A2A6C;
    border-radius: 20px;
    padding: 40px;
    color: white;
}

.highlight-box h3 {
    font-family: var(--font-display);
    font-size: 26px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.highlight-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
    line-height: 1.8;
}

/* Values */
.values {
    background: #EFF6FF;
    padding: 80px 60px;
}

.values .inner {
    max-width: 1400px;
    margin: 0 auto;
}

.values-header {
    text-align: center;
    margin-bottom: 52px;
}

.values-header h2 {
    font-family: var(--font-display);
    font-size: 40px;
    color: #1A2A6C;
    margin-bottom: 12px;
}

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

.value-card {
    background: white;
    border-radius: 20px;
    padding: 36px 30px;
    border-top: 4px solid #1A2A6C;
}

.value-icon {
    font-size: 32px;
    margin-bottom: 18px;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1A2A6C;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: #334155;
    line-height: 1.7;
    font-weight: 300;
}

/* Numbers */
.numbers {
    background: #1A2A6C;
    padding: 80px 60px;
}

.numbers .inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.num-big {
    font-size: 52px;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.num-big span {
    font-size: 32px;
    color: #3B82F6;
}

.num-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
    font-weight: 600;
}

/* Team */
.team {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
}

.team h2 {
    font-family: var(--font-display);
    font-size: 40px;
    color: #1A2A6C;
    margin-bottom: 14px;
    text-align: center;
}

.team-sub {
    text-align: center;
    font-size: 16px;
    color: #94A3B8;
    font-weight: 300;
    margin-bottom: 52px;
}

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

.team-card {
    background: #EFF6FF;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
}

.team-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1A2A6C, #1E4DB7);
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.team-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1A2A6C;
    margin-bottom: 4px;
}

.team-card p {
    font-size: 12px;
    color: #94A3B8;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.team-card span {
    font-size: 13px;
    color: #334155;
    font-weight: 300;
    display: block;
    margin-top: 10px;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .two-col,
    .values-grid,
    .team-grid,
    .numbers .inner {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 42px;
    }
}

/* ============================================
   PAGE ACTIONS - STYLES
   ============================================ */

/* ACTIONS NAV */
.actions-nav {
    background: #1A2A6C;
    padding: 0 60px;
    display: flex;
    gap: 0;
}

.actions-nav a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    padding: 18px 28px;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
    letter-spacing: 0.5px;
}

.actions-nav a:hover,
.actions-nav a.active {
    color: white;
    border-bottom-color: #3B82F6;
}

/* SERVICE SECTIONS */
.service {
    padding: 100px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.service + .service {
    border-top: 1px solid #F1F5F9;
}

.service-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-inner.reverse {
    direction: rtl;
}

.service-inner.reverse > * {
    direction: ltr;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #EFF6FF;
    border-radius: 50px;
    padding: 8px 18px;
    margin-bottom: 20px;
}

.service-badge span {
    font-size: 20px;
}

.service-badge p {
    font-size: 11px;
    font-weight: 700;
    color: #1E4DB7;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.service h2 {
    font-family: var(--font-display);
    font-size: 38px;
    color: #1A2A6C;
    margin-bottom: 18px;
    line-height: 1.2;
}

.service p {
    font-size: 15px;
    color: #334155;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 14px;
}

.service-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

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

.service-step-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1E4DB7;
    flex-shrink: 0;
    margin-top: 6px;
}

.service-step p {
    font-size: 14px;
    color: #334155;
    font-weight: 400;
    line-height: 1.6;
}

.btn-navy {
    background: #1A2A6C;
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-top: 24px;
    transition: all 0.2s;
}

.btn-navy:hover {
    background: #1E4DB7;
    transform: translateY(-2px);
}

/* SERVICE VISUAL CARDS */
.service-visual {
    background: #EFF6FF;
    border-radius: 24px;
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.visual-stat {
    background: white;
    border-radius: 14px;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.visual-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #1A2A6C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.visual-stat-num {
    font-size: 26px;
    font-weight: 900;
    color: #1A2A6C;
}

.visual-stat-label {
    font-size: 12px;
    color: #94A3B8;
    font-weight: 500;
}

/* CONCILIATION VISUAL */
.conciliation-visual {
    background: #1A2A6C;
    border-radius: 24px;
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
}

.conciliation-visual::before {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.conc-step {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 14px;
    border-left: 3px solid #3B82F6;
}

.conc-step h4 {
    font-size: 13px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.conc-step p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
}

.conc-result {
    background: rgba(59, 130, 246, 0.2);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(59, 130, 246, 0.4);
}

.conc-result span {
    font-size: 34px;
    font-weight: 900;
    color: white;
    display: block;
}

.conc-result p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px;
}

/* FORMATIONS */
.formations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 52px;
}

.formation-card {
    background: #EFF6FF;
    border-radius: 18px;
    padding: 32px 26px;
    border-top: 3px solid #1A2A6C;
}

.formation-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1A2A6C;
    margin-bottom: 10px;
}

.formation-card p {
    font-size: 13px;
    color: #334155;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 16px;
}

.formation-tag {
    display: inline-block;
    background: #DBEAFE;
    color: #1E4DB7;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 20px;
}

/* CTA */
.cta-section {
    background: #1A2A6C;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: 42px;
    color: white;
    margin-bottom: 16px;
    position: relative;
}

.cta-section p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
    margin-bottom: 36px;
    position: relative;
}

.btn-white {
    background: white;
    color: #1A2A6C;
    padding: 16px 38px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .service-inner,
    .formations-grid {
        grid-template-columns: 1fr;
    }
    
    .actions-nav {
        flex-wrap: wrap;
        padding: 0 30px;
    }
    
    .service {
        padding: 60px 30px;
    }
}

/* ============================================
   PAGE COMMERÇANTS - STYLES
   ============================================ */

/* LABEL VISUAL */
.label-preview {
    background: #1A2A6C;
    border-radius: 24px;
    padding: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.label-preview::before {
    content: '';
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.label-logo {
    width: 140px;
    filter: brightness(0) invert(1);
}

.label-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 16px 24px;
    text-align: center;
    width: 100%;
}

.label-badge h4 {
    color: white;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.label-badge p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.label-stars {
    color: #FFD23F;
    font-size: 20px;
    letter-spacing: 4px;
}

/* BENEFITS */
.benefits {
    background: #EFF6FF;
    padding: 80px 60px;
}

.benefits .inner {
    max-width: 1400px;
    margin: 0 auto;
}

.benefits-header {
    text-align: center;
    margin-bottom: 48px;
}

.benefits-header h2 {
    font-family: var(--font-display);
    font-size: 38px;
    color: #1A2A6C;
    margin-bottom: 12px;
}

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

.benefit-card {
    background: white;
    border-radius: 18px;
    padding: 32px;
    transition: transform 0.2s;
}

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

.benefit-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1A2A6C;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 13px;
    color: #334155;
    font-weight: 300;
    line-height: 1.7;
}

/* PROCESSUS */
.process {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
}

.process h2 {
    font-family: var(--font-display);
    font-size: 38px;
    color: #1A2A6C;
    text-align: center;
    margin-bottom: 52px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, #1A2A6C, #3B82F6);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 16px;
}

.process-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #1A2A6C;
    color: white;
    font-size: 24px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 4px solid white;
    box-shadow: 0 4px 16px rgba(26, 42, 108, 0.3);
}

.process-step h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1A2A6C;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 13px;
    color: #334155;
    font-weight: 300;
    line-height: 1.5;
}

/* TESTIMONIALS */
.testimonials {
    background: #1A2A6C;
    padding: 80px 60px;
}

.testimonials .inner {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials h2 {
    font-family: var(--font-display);
    font-size: 38px;
    color: white;
    text-align: center;
    margin-bottom: 48px;
}

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

.testi-card {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testi-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 20px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3B82F6, #1E4DB7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.testi-name {
    font-size: 13px;
    font-weight: 700;
    color: white;
}

.testi-role {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

/* CTA FORM */
.cta-form {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
}

.cta-form-inner {
    background: #EFF6FF;
    border-radius: 28px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-form h2 {
    font-family: var(--font-display);
    font-size: 38px;
    color: #1A2A6C;
    margin-bottom: 16px;
}

.cta-form p {
    font-size: 15px;
    color: #334155;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 8px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #1A2A6C;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #DBEAFE;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    color: #334155;
    background: white;
    outline: none;
    transition: border 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #1E4DB7;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-submit {
    background: #1A2A6C;
    color: white;
    padding: 15px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-top: 8px;
    transition: background 0.2s;
}

.form-submit:hover {
    background: #1E4DB7;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .page-hero,
    .benefits-grid,
    .process-steps,
    .testi-grid,
    .cta-form-inner {
        grid-template-columns: 1fr;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .label-preview {
        margin-top: 40px;
    }
}

/* ============================================
   PAGE CONTACT - STYLES
   ============================================ */

.contact-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
}

/* INFO */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.info-card {
    background: #EFF6FF;
    border-radius: 18px;
    padding: 28px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: #1A2A6C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1A2A6C;
    margin-bottom: 5px;
}

.info-card p {
    font-size: 13px;
    color: #334155;
    font-weight: 300;
    line-height: 1.6;
}

.info-card a {
    color: #1E4DB7;
    text-decoration: none;
    font-weight: 600;
}

.social-row {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #1A2A6C;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.2s;
}

.social-btn:hover {
    background: #1E4DB7;
}

/* FORM */
.contact-form-card {
    background: #EFF6FF;
    border-radius: 24px;
    padding: 44px;
}

.contact-form-card h3 {
    font-family: var(--font-display);
    font-size: 28px;
    color: #1A2A6C;
    margin-bottom: 6px;
}

.contact-form-card p.sub {
    font-size: 14px;
    color: #94A3B8;
    font-weight: 300;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #1A2A6C;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #DBEAFE;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    color: #334155;
    background: white;
    outline: none;
    transition: border 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1E4DB7;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-submit {
    background: #1A2A6C;
    color: white;
    padding: 15px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-top: 8px;
    transition: background 0.2s;
}

.form-submit:hover {
    background: #1E4DB7;
}

/* FAQ */
.faq {
    background: #1A2A6C;
    padding: 80px 60px;
}

.faq .inner {
    max-width: 900px;
    margin: 0 auto;
}

.faq h2 {
    font-family: var(--font-display);
    font-size: 36px;
    color: white;
    margin-bottom: 40px;
    text-align: center;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
}

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

.faq-q {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-q::after {
    content: '↓';
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

.faq-a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
    line-height: 1.8;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .contact-main {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 30px;
    }
    
    .page-title {
        font-size: 42px;
    }
}


/* ============================================
   DASHBOARD ESPACE MEMBRE - SANS SIDEBAR
   ============================================ */

.dashboard-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Status Card */
.status-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #E2E8F0;
    border-left: 4px solid #3B82F6;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.status-card.certified {
    border-left-color: #10B981;
}

.status-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: #EFF6FF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.status-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1A2A6C;
    margin-bottom: 10px;
}

.status-info p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-primary {
    background: #1A2A6C;
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: #1E4DB7;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #E2E8F0;
}

.stat-value {
    font-size: 36px;
    font-weight: 900;
    color: #1A2A6C;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.stat-progress {
    margin-top: 12px;
}

.progress-bar {
    height: 6px;
    background: #EFF6FF;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1A2A6C, #1E4DB7);
    border-radius: 3px;
}

.stat-date {
    font-size: 12px;
    color: #94A3B8;
    margin-top: 8px;
}

.stat-link {
    color: #1E4DB7;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

/* Evaluations Table */
.evaluations-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #E2E8F0;
}

.evaluations-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1A2A6C;
    margin-bottom: 20px;
}

.evaluations-card table {
    width: 100%;
    border-collapse: collapse;
}

.evaluations-card th {
    text-align: left;
    padding: 12px 16px;
    font-size: 12px;
    color: #64748B;
    text-transform: uppercase;
    border-bottom: 2px solid #E2E8F0;
}

.evaluations-card td {
    padding: 16px;
    font-size: 14px;
    color: #334155;
    border-bottom: 1px solid #F1F5F9;
}

.status-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-badge.pending { background: #FEF3C7; color: #92400E; }
.status-badge.completed { background: #D1FAE5; color: #065F46; }
.status-badge.reviewed { background: #DBEAFE; color: #1E40AF; }

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.action-card {
    background: white;
    border-radius: 14px;
    padding: 24px;
    border: 1px solid #E2E8F0;
    text-decoration: none;
    display: flex;
    gap: 16px;
    align-items: center;
    transition: all 0.2s;
}

.action-card:hover {
    border-color: #1E4DB7;
    transform: translateY(-2px);
}

.action-icon {
    font-size: 28px;
}

.action-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1A2A6C;
    margin-bottom: 4px;
}

.action-info p {
    font-size: 12px;
    color: #64748B;
}

/* Responsive */
@media (max-width: 1024px) {
    .stats-grid,
    .quick-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .status-card {
        flex-direction: column;
    }
}




/* ============================================
   AUTH PAGES (LOGIN/REGISTER) - STYLES
   ============================================ */

.auth-container {
    max-width: 480px;
    margin: 0 auto;
    padding: 60px 30px;
}

.auth-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 8px 32px rgba(26, 42, 108, 0.08);
}

.auth-card h2 {
    font-family: var(--font-display);
    font-size: 28px;
    color: #1A2A6C;
    margin-bottom: 8px;
    text-align: center;
}

.auth-sub {
    text-align: center;
    color: #64748B;
    font-size: 14px;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #1A2A6C;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #DBEAFE;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    color: #334155;
    background: white;
    outline: none;
    transition: border 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1E4DB7;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #64748B;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
}

.forgot-link {
    font-size: 13px;
    color: #1E4DB7;
    text-decoration: none;
    font-weight: 500;
}

.forgot-link:hover {
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    background: #1A2A6C;
    color: white;
    padding: 15px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.form-submit:hover {
    background: #1E4DB7;
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #E2E8F0;
}

.auth-footer p {
    font-size: 14px;
    color: #64748B;
}

.auth-footer a {
    color: #1E4DB7;
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .auth-card {
        padding: 32px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}



/* NAV - AUTHENTICATED USER */
.nav-user {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #EFF6FF;
    border-radius: 50px;
    text-decoration: none;
}

.nav-user:hover {
    background: #DBEAFE;
}

.nav-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #1A2A6C;
    color: white;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-user span:last-child {
    font-size: 13px;
    font-weight: 600;
    color: #1A2A6C;
}

.nav-logout {
    font-size: 13px;
    font-weight: 600;
    color: #EF4444;
    text-decoration: none;
    padding: 8px 14px;
}

.nav-logout:hover {
    background: #FEF2F2;
    border-radius: 50px;
}

.nav-login {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    padding: 10px 20px;
}

.nav-login:hover {
    color: #1E4DB7;
}

/* DASHBOARD */
.dashboard-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 140px 30px 60px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.status-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #E2E8F0;
    border-left: 4px solid #3B82F6;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.status-card.certified {
    border-left-color: #10B981;
}

.status-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #EFF6FF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.status-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1A2A6C;
    margin-bottom: 8px;
}

.status-info p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 16px;
}

.btn-primary {
    background: #1A2A6C;
    color: white;
    padding: 11px 22px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: #1E4DB7;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.action-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #E2E8F0;
    text-decoration: none;
    display: flex;
    gap: 12px;
    align-items: center;
    transition: all 0.2s;
}

.action-card:hover {
    border-color: #1E4DB7;
    transform: translateY(-2px);
}

.action-icon {
    font-size: 24px;
}

.action-info h4 {
    font-size: 13px;
    font-weight: 600;
    color: #1A2A6C;
    margin-bottom: 2px;
}

.action-info p {
    font-size: 11px;
    color: #64748B;
}

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

.stat-card {
    background: white;
    border-radius: 14px;
    padding: 24px;
    border: 1px solid #E2E8F0;
}

.stat-value {
    font-size: 32px;
    font-weight: 900;
    color: #1A2A6C;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.stat-progress {
    margin-top: 12px;
}

.progress-bar {
    height: 5px;
    background: #EFF6FF;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1A2A6C, #1E4DB7);
    border-radius: 3px;
}

.stat-date {
    font-size: 11px;
    color: #94A3B8;
    margin-top: 8px;
}

.stat-link {
    color: #1E4DB7;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.evaluations-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #E2E8F0;
}

.evaluations-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1A2A6C;
    margin-bottom: 16px;
}

.evaluations-card table {
    width: 100%;
    border-collapse: collapse;
}

.evaluations-card th {
    text-align: left;
    padding: 12px 16px;
    font-size: 11px;
    color: #64748B;
    text-transform: uppercase;
    border-bottom: 2px solid #E2E8F0;
}

.evaluations-card td {
    padding: 14px 16px;
    font-size: 13px;
    color: #334155;
    border-bottom: 1px solid #F1F5F9;
}

.status-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.status-badge.pending { background: #FEF3C7; color: #92400E; }
.status-badge.completed { background: #D1FAE5; color: #065F46; }
.status-badge.reviewed { background: #DBEAFE; color: #1E40AF; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .quick-actions,
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .status-card {
        flex-direction: column;
    }
}



/* CERTIFICATIONS PAGE */
.page-header {
    margin-bottom: 32px;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: 28px;
    color: #1A2A6C;
    margin-bottom: 8px;
}

.page-header p {
    color: #64748B;
    font-size: 14px;
}

.evaluations-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.evaluation-item {
    background: white;
    border-radius: 14px;
    padding: 24px;
    border: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.evaluation-info {
    display: flex;
    gap: 24px;
    align-items: center;
}

.evaluation-date {
    font-size: 14px;
    color: #334155;
}

.evaluation-score {
    font-size: 20px;
    font-weight: 700;
    color: #1A2A6C;
}

.evaluation-status {
    flex: 1;
}

.evaluation-actions {
    flex-shrink: 0;
}

.btn-view {
    color: #1E4DB7;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.btn-view:hover {
    text-decoration: underline;
}

.empty-state {
    background: white;
    border-radius: 16px;
    padding: 60px 40px;
    border: 1px solid #E2E8F0;
    text-align: center;
}

.empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.empty-state h3 {
    font-size: 18px;
    color: #1A2A6C;
    margin-bottom: 8px;
}

.empty-state p {
    color: #64748B;
    font-size: 14px;
    margin-bottom: 24px;
}

.back-link {
    margin-top: 32px;
}

.back-link a {
    color: #64748B;
    text-decoration: none;
    font-size: 14px;
}

.back-link a:hover {
    color: #1A2A6C;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .evaluation-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .evaluation-info {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .evaluation-actions {
        width: 100%;
    }
}



/* PROFILE PAGE */
.profile-form {
    background: white;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #E2E8F0;
}

.form-section {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #E2E8F0;
}

.form-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.form-section h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1A2A6C;
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #E2E8F0;
    border-radius: 10px;
    font-size: 14px;
    color: #334155;
    background: white;
    outline: none;
    transition: border 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1E4DB7;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #334155;
    font-weight: 500;
    text-transform: none;
    letter-spacing: normal;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.btn-primary {
    background: #1A2A6C;
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: #1E4DB7;
}

.btn-secondary {
    background: #F1F5F9;
    color: #334155;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: #E2E8F0;
}

.alert {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}

.alert-success {
    background: #D1FAE5;
    color: #065F46;
    border-left: 4px solid #10B981;
}

.alert-error {
    background: #FEE2E2;
    color: #991B1B;
    border-left: 4px solid #EF4444;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
}





/* CERTIFICATION PAGES */
.certification-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 140px 30px 60px;
}

.certification-header {
    text-align: center;
    margin-bottom: 40px;
}

.certification-header h1 {
    font-family: var(--font-display);
    font-size: 32px;
    color: #1A2A6C;
    margin-bottom: 12px;
}

.certification-header p {
    color: #64748B;
    font-size: 15px;
}

.certification-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.step {
    background: white;
    border-radius: 14px;
    padding: 24px;
    border: 1px solid #E2E8F0;
    text-align: center;
}

.step-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.step h3 {
    font-size: 16px;
    color: #1A2A6C;
    margin-bottom: 8px;
}

.step p {
    font-size: 13px;
    color: #64748B;
}

.certification-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 32px;
}

.evaluation-form {
    background: white;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #E2E8F0;
}

.questions-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.question-card {
    padding: 24px;
    background: #F8FAFC;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
}

.question-number {
    font-size: 12px;
    font-weight: 700;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.question-text {
    font-size: 16px;
    font-weight: 600;
    color: #1A2A6C;
    margin-bottom: 20px;
}

.answers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.answer-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: white;
    border: 1.5px solid #E2E8F0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.answer-option:hover {
    border-color: #1E4DB7;
    background: #EFF6FF;
}

.answer-option input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #1A2A6C;
}

.answer-text {
    font-size: 14px;
    color: #334155;
}

.form-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.result-card,
.detail-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #E2E8F0;
    text-align: center;
}

.result-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.score-display,
.detail-score {
    margin: 20px 0;
}

.score-number {
    font-size: 48px;
    font-weight: 900;
    color: #1A2A6C;
}

.score-max {
    font-size: 24px;
    color: #94A3B8;
}

.score-percentage {
    font-size: 32px;
    font-weight: 700;
    color: #3B82F6;
    margin-bottom: 20px;
}

.result-message {
    margin-bottom: 32px;
}

.result-message p {
    font-size: 15px;
    color: #64748B;
}

.result-actions,
.detail-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.detail-header {
    margin-bottom: 24px;
}

.detail-date {
    color: #94A3B8;
    font-size: 14px;
}

.detail-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
    padding: 20px;
    background: #F8FAFC;
    border-radius: 10px;
}

.info-item {
    text-align: left;
}

.info-label {
    display: block;
    font-size: 12px;
    color: #94A3B8;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.info-value {
    font-size: 14px;
    color: #1A2A6C;
    font-weight: 600;
}

.btn-primary {
    background: #1A2A6C;
    color: white;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: #1E4DB7;
}

.btn-secondary {
    background: #F1F5F9;
    color: #334155;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: #E2E8F0;
}

.back-link {
    text-align: center;
    margin-top: 24px;
}

.back-link a {
    color: #64748B;
    text-decoration: none;
    font-size: 14px;
}

.back-link a:hover {
    color: #1A2A6C;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .certification-steps,
    .certification-actions,
    .result-actions,
    .detail-actions,
    .answers-grid {
        grid-template-columns: 1fr;
    }
    
    .certification-container {
        padding: 100px 20px 40px;
    }
}





/* CERTIFICATIONS PAGE */
.empty-state {
    background: white;
    border-radius: 16px;
    padding: 60px 40px;
    border: 1px solid #E2E8F0;
    text-align: center;
}

.empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.empty-state h3 {
    font-size: 18px;
    color: #1A2A6C;
    margin-bottom: 8px;
}

.empty-state p {
    color: #64748B;
    font-size: 14px;
    margin-bottom: 24px;
}

.empty-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn-primary {
    background: #1A2A6C;
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: #1E4DB7;
}

.btn-secondary {
    background: #F1F5F9;
    color: #334155;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: #E2E8F0;
}

.evaluations-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.evaluation-item {
    background: white;
    border-radius: 14px;
    padding: 24px;
    border: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.evaluation-info {
    display: flex;
    gap: 24px;
    align-items: center;
}

.evaluation-date {
    font-size: 14px;
    color: #334155;
}

.evaluation-score {
    font-size: 18px;
    font-weight: 700;
    color: #1A2A6C;
}

.btn-view {
    color: #1E4DB7;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.btn-view:hover {
    text-decoration: underline;
}


/* CERTIFICATION - SINGLE QUESTION */
.certification-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 140px 30px 60px;
}

.certification-header {
    text-align: center;
    margin-bottom: 32px;
}

.certification-header h1 {
    font-family: var(--font-display);
    font-size: 28px;
    color: #1A2A6C;
    margin-bottom: 8px;
}

.certification-header p {
    color: #64748B;
    font-size: 14px;
}

/* PROGRESS BAR - FIXED */
.progress-container {
    margin-bottom: 40px;
}

.progress-track {
    height: 20px;
    background: #E2E8F0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1A2A6C 0%, #1E4DB7 50%, #3B82F6 100%);
    border-radius: 10px;
    transition: width 0.5s ease-in-out;
    width: 0%;
    display: block;
}

.progress-text {
    font-size: 15px;
    font-weight: 700;
    color: #1A2A6C;
    text-align: center;
    margin-top: 12px;
    padding: 10px 20px;
    background: #EFF6FF;
    border-radius: 10px;
    display: block;
}

/* FORM */
.evaluation-form {
    background: white;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 12px rgba(26, 42, 108, 0.08);
}

.question-card {
    margin-bottom: 24px;
}

.question-number {
    font-size: 12px;
    font-weight: 700;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.question-text {
    font-size: 18px;
    font-weight: 600;
    color: #1A2A6C;
    margin-bottom: 24px;
    line-height: 1.5;
}

.answers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.answer-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    background: white;
    border: 1.5px solid #E2E8F0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.answer-option:hover {
    border-color: #1E4DB7;
    background: #EFF6FF;
}

.answer-option input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: #1A2A6C;
    flex-shrink: 0;
}

.answer-text {
    font-size: 15px;
    color: #334155;
    flex: 1;
}

.answer-option input[type="radio"]:checked + .answer-text {
    font-weight: 600;
    color: #1A2A6C;
}

.form-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 32px;
}

.btn-primary {
    background: #1A2A6C;
    color: white;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: #1E4DB7;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #F1F5F9;
    color: #334155;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: #E2E8F0;
}

.back-link {
    text-align: center;
    margin-top: 24px;
}

.back-link a {
    color: #64748B;
    text-decoration: none;
    font-size: 14px;
}

.back-link a:hover {
    color: #1A2A6C;
}

/* Responsive */
@media (max-width: 768px) {
    .certification-container {
        padding: 100px 20px 40px;
    }
    
    .progress-track {
        height: 16px;
    }
    
    .progress-text {
        font-size: 13px;
    }
}



/* LE CERCLE - RESPONSIVE */
@media (max-width: 1024px) {
    .filters-section form {
        grid-template-columns: 1fr !important;
    }
    
    .members-section div[style*="grid-template-columns: repeat(3"] {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .page-hero,
    .filters-section,
    .members-section,
    .cta-section {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    .page-title {
        font-size: 32px !important;
    }
    
    .cta-section div[style*="flex"] {
        flex-direction: column !important;
    }
}
/* ============================================
   BLOG / OBSERVATOIRE - STYLES
   ============================================ */

.blog-section {
    padding: 80px 60px;
    background: #F8FAFC;
}

.blog-section .inner {
    max-width: 1400px;
    margin: 0 auto;
}

/* Filters */
.blog-filters {
    margin-bottom: 48px;
}

.filter-form {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    background: white;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
}

.filter-form select,
.filter-form input {
    padding: 12px 16px;
    border: 1.5px solid #E2E8F0;
    border-radius: 10px;
    font-size: 14px;
    color: #334155;
    background: white;
    outline: none;
    transition: border 0.2s;
    min-width: 200px;
}

.filter-form select:focus,
.filter-form input:focus {
    border-color: #1E4DB7;
}

.filter-form input {
    flex: 1;
}

.filter-form button {
    padding: 12px 24px;
    background: #1A2A6C;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.filter-form button:hover {
    background: #1E4DB7;
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

/* Article Card */
.article-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    border-color: #1E4DB7;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26, 42, 108, 0.1);
}

.article-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    overflow: hidden;
}

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

.article-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
}

.article-category-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #1A2A6C;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.article-meta {
    display: flex;
    gap: 12px;
}

.article-date {
    font-size: 12px;
    color: #94A3B8;
}

.article-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: #1A2A6C;
    line-height: 1.4;
    margin: 0;
}

.article-excerpt {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.article-link {
    color: #1E4DB7;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: gap 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.article-link:hover {
    gap: 10px;
}

/* No Articles */
.no-articles {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 40px;
    background: white;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
}

.empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.no-articles h3 {
    font-size: 20px;
    color: #1A2A6C;
    margin-bottom: 8px;
}

.no-articles p {
    color: #64748B;
    margin-bottom: 24px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid #E2E8F0;
}

.pagination-link {
    padding: 12px 24px;
    background: white;
    border: 1.5px solid #E2E8F0;
    border-radius: 10px;
    color: #1A2A6C;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.pagination-link:hover {
    border-color: #1E4DB7;
    background: #EFF6FF;
}

.pagination-info {
    padding: 12px 24px;
    background: #1A2A6C;
    color: white;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1A2A6C, #1E4DB7);
    padding: 80px 60px;
    text-align: center;
}

.cta-section .inner {
    max-width: 600px;
    margin: 0 auto;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: 32px;
    color: white;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    line-height: 1.7;
}

.btn-white {
    background: white;
    color: #1A2A6C;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-white:hover {
    background: #EFF6FF;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-section,
    .cta-section {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-form {
        flex-direction: column;
    }
    
    .filter-form select,
    .filter-form input,
    .filter-form button {
        width: 100%;
    }
    
    .blog-section,
    .cta-section {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
}
/* ============================================
   BLOG ARTICLE DETAIL - STYLES
   ============================================ */

/* Article Container */
article.py-16 {
    padding: 80px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Header */
header.mb-8 {
    margin-bottom: 48px;
}

header.mb-8 h1 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 600;
    color: #1A2A6C;
    line-height: 1.2;
    margin-bottom: 24px;
}

/* Back Link */
header.mb-8 a {
    color: #1E4DB7;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
}

header.mb-8 a:hover {
    color: #1A2A6C;
}

/* Category Badge */
span.px-3.py-1.bg-blue-100 {
    background: #DBEAFE;
    color: #1E4DB7;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Meta Info */
span.text-gray-500.text-sm {
    font-size: 13px;
    color: #64748B;
}

/* Author */
header.mb-8 .flex.items-center.gap-3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

header.mb-8 .w-10.h-10.bg-blue-600 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1A2A6C;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

header.mb-8 p.font-medium {
    font-size: 14px;
    font-weight: 600;
    color: #1A2A6C;
}

header.mb-8 p.text-sm.text-gray-500 {
    font-size: 12px;
    color: #94A3B8;
}

/* Featured Image */
figure.mb-8 {
    margin-bottom: 40px;
}

figure.mb-8 img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(26, 42, 108, 0.15);
}

/* Content */
div.prose {
    font-size: 16px;
    line-height: 1.8;
    color: #334155;
    max-width: 800px;
}

div.prose p {
    margin-bottom: 20px;
}

div.prose h2 {
    font-family: var(--font-display);
    font-size: 28px;
    color: #1A2A6C;
    margin: 40px 0 20px;
}

div.prose h3 {
    font-size: 22px;
    color: #1A2A6C;
    margin: 32px 0 16px;
}

/* Share Buttons */
div.border-t.border-b {
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
    padding: 32px 0;
    margin: 48px 0;
}

div.border-t.border-b h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1A2A6C;
    margin-bottom: 20px;
}

div.border-t.border-b .flex {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

div.border-t.border-b a {
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

div.border-t.border-b a:hover {
    transform: translateY(-2px);
}

/* Facebook */
div.border-t.border-b a.bg-blue-600 {
    background: #1A2A6C;
    color: white;
}

div.border-t.border-b a.bg-blue-600:hover {
    background: #1E4DB7;
}

/* Twitter */
div.border-t.border-b a.bg-sky-500 {
    background: #0EA5E9;
    color: white;
}

div.border-t.border-b a.bg-sky-500:hover {
    background: #0284C7;
}

/* LinkedIn */
div.border-t.border-b a.bg-blue-700 {
    background: #1E4DB7;
    color: white;
}

div.border-t.border-b a.bg-blue-700:hover {
    background: #1A2A6C;
}

/* Related Articles */
div.mt-12 h3 {
    font-family: var(--font-display);
    font-size: 28px;
    color: #1A2A6C;
    margin-bottom: 32px;
}

div.grid.grid-cols-1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

div.grid.grid-cols-1 a {
    text-decoration: none;
}

div.bg-white.rounded-lg {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    transition: all 0.2s;
}

div.bg-white.rounded-lg:hover {
    border-color: #1E4DB7;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26, 42, 108, 0.1);
}

div.bg-white.rounded-lg img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

div.bg-white.rounded-lg .p-4 {
    padding: 20px;
}

div.bg-white.rounded-lg h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1A2A6C;
    margin-bottom: 8px;
}

div.bg-white.rounded-lg p.text-sm {
    font-size: 12px;
    color: #94A3B8;
}

/* Newsletter Section */
section.py-16.bg-gray-50 {
    background: #F8FAFC;
    padding: 80px 60px;
}

section.py-16.bg-gray-50 .max-w-2xl {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

section.py-16.bg-gray-50 h2 {
    font-family: var(--font-display);
    font-size: 32px;
    color: #1A2A6C;
    margin-bottom: 12px;
}

section.py-16.bg-gray-50 p.text-gray-600 {
    font-size: 15px;
    color: #64748B;
    margin-bottom: 32px;
}

section.py-16.bg-gray-50 form {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

section.py-16.bg-gray-50 input[type="email"] {
    padding: 14px 20px;
    border: 1.5px solid #DBEAFE;
    border-radius: 10px;
    font-size: 14px;
    min-width: 300px;
    outline: none;
    transition: border 0.2s;
}

section.py-16.bg-gray-50 input[type="email"]:focus {
    border-color: #1E4DB7;
}

section.py-16.bg-gray-50 button {
    padding: 14px 32px;
    background: #1A2A6C;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

section.py-16.bg-gray-50 button:hover {
    background: #1E4DB7;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    article.py-16 {
        padding: 60px 30px;
    }
    
    header.mb-8 h1 {
        font-size: 36px;
    }
    
    div.grid.grid-cols-1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    article.py-16 {
        padding: 40px 20px;
    }
    
    header.mb-8 h1 {
        font-size: 28px;
    }
    
    div.grid.grid-cols-1 {
        grid-template-columns: 1fr;
    }
    
    section.py-16.bg-gray-50 form {
        flex-direction: column;
        align-items: center;
    }
    
    section.py-16.bg-gray-50 input[type="email"] {
        width: 100%;
        max-width: 400px;
    }
}





/* ============================================
   NAVIGATION & RESPONSIVE SYSTEM
   ============================================ */

/* Top Utility Bar - Ultra-fine */
.top-utility {
    background: #1A2A6C;
    height: 30px;
    display: flex;
    align-items: center;
    color: white;
    font-size: 11px;
    font-weight: 500;
    padding: 0 clamp(24px, 4vw, 60px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.top-utility-content { 
    width: 100%; 
    max-width: 1400px; 
    margin: 0 auto; 
    display: flex; 
    justify-content: space-between; 
}

.top-u-left a, .top-u-right a { 
    color: white; 
    text-decoration: none; 
    margin-right: 15px; 
    opacity: 0.8; 
}

.top-u-left a:hover, .top-u-right a:hover { opacity: 1; }

.ifpi { opacity: 0.5; font-style: italic; }

/* Navbar - Compact & Inter Font */
nav {
    position: fixed;
    top: 30px;
    left: 0;
    right: 0;
    height: 70px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(24px, 4vw, 60px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-links { 
    display: flex; 
    align-items: center; 
    gap: 25px; 
}

.nav-links a { 
    font-family: var(--font-body); 
    font-size: 14px; 
    color: #334155; 
    text-decoration: none; 
    font-weight: 500; 
}

/* User Menu Styling - Visible and Professional */
.user-pill {
    display: flex;
    align-items: center;
    background: #f1f5f9;
    padding: 5px 15px;
    border-radius: 50px;
    gap: 10px;
    border: 1px solid #e2e8f0;
    white-space: nowrap;
}

.user-dashboard-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
}

.user-avatar {
    width: 24px;
    height: 24px;
    background: #1A2A6C;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
}

.user-name {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #1A2A6C !important;
}

.logout-icon {
    color: #ef4444;
    font-size: 14px;
    padding-left: 8px;
    border-left: 1px solid #cbd5e1;
    display: flex;
    align-items: center;
}

/* Dropdowns - Logic and Look */
.nav-drop { position: relative; }

.nav-sub {
    display: none;
    position: absolute;
    top: 100%; 
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 12px 0;
    z-index: 1000;
    border: 1px solid #f1f5f9;
}

.nav-drop:hover .nav-sub { display: block; }

.nav-sub a {
    display: block;
    padding: 10px 20px;
    font-size: 13px !important;
    color: #475569 !important;
    font-weight: 400 !important;
}

.nav-sub a:hover {
    background: #f8fafc;
    color: #1E4DB7 !important;
}

/* Mobile Button Animation */
.mobile-btn {
    display: none;
    width: 25px;
    height: 18px;
    cursor: pointer;
    position: relative;
}

.mobile-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #1A2A6C;
    position: absolute;
    transition: .3s;
}

.mobile-btn span:nth-child(2) { top: 8px; }
.mobile-btn span:nth-child(3) { top: 16px; }

.mobile-btn.open span:nth-child(1) { transform: rotate(45deg); top: 8px; }
.mobile-btn.open span:nth-child(2) { opacity: 0; }
.mobile-btn.open span:nth-child(3) { transform: rotate(-45deg); top: 8px; }

@media (max-width: 1100px) {
    .top-utility { display: none; }
    nav { top: 0; padding: 0 20px; }
    .mobile-btn { display: block; }
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    .nav-links.active { display: flex; }
    .nav-sub { 
        position: static; 
        display: block; 
        box-shadow: none; 
        padding-left: 20px; 
        border: none;
    }
}