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

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

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

html {
    scroll-behavior: smooth;
}

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

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

/* ============================================
   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: 'Playfair Display', serif;
    font-size: 64px;
    line-height: 1.05;
    color: #1A2A6C;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.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: 1200px;
    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: 'Playfair Display', serif;
    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: Georgia, serif;
}

.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: 'Playfair Display', serif;
    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: 1200px;
    margin: 0 auto;
}

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

.cards-header h2 {
    font-family: 'Playfair Display', serif;
    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: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.engagement h2 {
    font-family: 'Playfair Display', serif;
    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: 'Playfair Display', serif;
    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: 'Playfair Display', serif;
    font-size: 62px;
    line-height: 1.05;
    color: #1A2A6C;
    max-width: 700px;
    margin-bottom: 24px;
    font-weight: 700;
}

.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: 1200px;
    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: 'Playfair Display', serif;
    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: 'Playfair Display', serif;
    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: 1200px;
    margin: 0 auto;
}

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

.values-header h2 {
    font-family: 'Playfair Display', serif;
    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: 1200px;
    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: 1200px;
    margin: 0 auto;
    padding: 80px 60px;
}

.team h2 {
    font-family: 'Playfair Display', serif;
    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: 1200px;
    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: 'Playfair Display', serif;
    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: 'Playfair Display', serif;
    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: 1200px;
    margin: 0 auto;
}

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

.benefits-header h2 {
    font-family: 'Playfair Display', serif;
    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: 1200px;
    margin: 0 auto;
    padding: 80px 60px;
}

.process h2 {
    font-family: 'Playfair Display', serif;
    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: 1200px;
    margin: 0 auto;
}

.testimonials h2 {
    font-family: 'Playfair Display', serif;
    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: 'Playfair Display', serif;
    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: 1200px;
    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: 'Playfair Display', serif;
    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: 'Outfit', sans-serif;
    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;
    }
}

