/* =====================================================================
   Serveur International — Style institutionnel
   Palette : Bleu nuit + Or
   ===================================================================== */

:root {
    --navy-900: #0a1429;
    --navy-800: #0f1f3d;
    --navy-700: #162a4e;
    --navy-600: #1e3661;
    --navy-100: #e8edf5;
    --gold-700: #8a6f25;
    --gold-600: #a88634;
    --gold-500: #c8a04a;
    --gold-400: #d8b86a;
    --gold-300: #e8d29a;
    --gold-100: #f9f1d8;
    --ivory: #fbf9f3;
    --white: #ffffff;
    --gray-50: #f7f8fa;
    --gray-100: #eef0f4;
    --gray-200: #dee2ea;
    --gray-300: #c5cbd6;
    --gray-500: #7b8395;
    --gray-700: #475066;
    --gray-900: #1a2236;
    --danger: #b53234;
    --success: #1f7a44;
    --warning: #c98a1a;

    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 14px;
    --shadow-sm: 0 1px 3px rgba(10,20,41,0.08);
    --shadow: 0 4px 14px rgba(10,20,41,0.10);
    --shadow-lg: 0 14px 40px rgba(10,20,41,0.18);

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Tahoma, sans-serif;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --transition: all 0.25s ease;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-700); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-600); }
button { font-family: inherit; cursor: pointer; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============ Typography ============ */
h1, h2, h3, h4, h5 {
    font-family: var(--font-serif);
    color: var(--navy-900);
    line-height: 1.25;
    margin: 0 0 1rem;
    font-weight: 600;
}
.h-eyebrow {
    display: inline-block;
    color: var(--gold-600);
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.78rem;
    margin-bottom: 0.6rem;
}
.h-divider {
    width: 56px;
    height: 3px;
    background: var(--gold-500);
    margin: 1rem 0 1.5rem;
}
.h-divider.center { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.text-muted { color: var(--gray-500); }

/* ============ Buttons ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.6rem;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
    text-transform: uppercase;
}
.btn-sm { padding: 0.55rem 1rem; font-size: 0.82rem; }
.btn-lg { padding: 1.1rem 2.2rem; font-size: 1rem; }
.btn-gold { background: var(--gold-600); color: var(--white); }
.btn-gold:hover { background: var(--gold-700); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-navy { background: var(--navy-800); color: var(--white); }
.btn-navy:hover { background: var(--navy-900); color: var(--white); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--navy-800); border-color: var(--navy-800); }
.btn-outline:hover { background: var(--navy-800); color: var(--white); }
.btn-outline-gold { background: transparent; color: var(--gold-600); border-color: var(--gold-500); }
.btn-outline-gold:hover { background: var(--gold-500); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-outline-light:hover { background: var(--white); color: var(--navy-900); }
.btn-block { width: 100%; }

/* ============ Top bar ============ */
.topbar {
    background: var(--navy-900);
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(200,160,74,0.25);
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
}
.topbar-left span, .topbar-right span { margin-right: 1.4rem; }
.topbar-left i, .topbar-right i { color: var(--gold-500); margin-right: 0.4rem; }
.topbar-badge { color: var(--gold-400); font-weight: 500; }
@media (max-width: 768px) {
    .d-none-mobile { display: none; }
    .topbar-inner { font-size: 0.72rem; padding: 6px 16px; }
}

/* ============ Header ============ */
.site-header {
    background: var(--navy-800);
    border-bottom: 3px solid var(--gold-500);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}
.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
}
.site-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--white);
    text-decoration: none;
}
.site-brand-logo {
    height: 48px;
    width: auto;
    background: var(--white);
    border-radius: 4px;
    padding: 4px;
}
.site-brand-logo-full { height: 56px; width: auto; }
.site-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.brand-name {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--white);
    letter-spacing: 0.04em;
}
.brand-name-alt {
    font-size: 0.7rem;
    color: var(--gold-400);
    letter-spacing: 0.32em;
    margin-top: 4px;
}

/* Dropdown menus */
.has-dropdown { position: relative; }
.nav-arrow { font-size: 0.65rem; margin-left: 0.3rem; transition: transform 0.25s ease; }
.has-dropdown:hover .nav-arrow { transform: rotate(180deg); }
.dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 280px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(10,20,41,0.18);
    padding: 0.6rem 0;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    border-top: 3px solid var(--gold-500);
    z-index: 100;
}
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border: 7px solid transparent;
    border-bottom-color: var(--gold-500);
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown-menu li { margin: 0; }
.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 1.2rem;
    color: var(--gray-900);
    text-decoration: none;
    transition: var(--transition);
    border-left: 3px solid transparent;
}
.dropdown-menu a:hover { background: var(--ivory); border-left-color: var(--gold-500); color: var(--navy-900); }
.dropdown-menu a i {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: var(--navy-100);
    color: var(--navy-800);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}
.dropdown-menu a:hover i { background: var(--gold-500); color: var(--white); }
.dropdown-menu a span { display: flex; flex-direction: column; }
.dropdown-menu a strong { color: var(--navy-900); font-weight: 600; font-size: 0.92rem; }
.dropdown-menu a small { color: var(--gray-500); font-size: 0.78rem; margin-top: 2px; }
@media (max-width: 992px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255,255,255,0.04);
        box-shadow: none;
        border-top: 1px solid rgba(255,255,255,0.08);
        border-radius: 0;
        padding: 0.3rem 0;
        margin-top: 0;
        display: none;
    }
    .dropdown-menu::before { display: none; }
    .has-dropdown.open .dropdown-menu { display: block; }
    .dropdown-menu a { color: rgba(255,255,255,0.85); padding: 0.6rem 1rem 0.6rem 2rem; }
    .dropdown-menu a:hover { background: rgba(200,160,74,0.1); color: var(--white); }
    .dropdown-menu a strong { color: rgba(255,255,255,0.95); }
    .dropdown-menu a small { color: rgba(255,255,255,0.55); }
    .dropdown-menu a i { background: rgba(200,160,74,0.15); color: var(--gold-400); width: 28px; height: 28px; font-size: 0.85rem; }
    .has-dropdown.open .nav-arrow { transform: rotate(180deg); }
}
.main-nav { display: flex; align-items: center; }
.nav-close { display: none; }
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.nav-link {
    color: rgba(255,255,255,0.85);
    padding: 0.6rem 1rem;
    font-weight: 500;
    font-size: 0.95rem;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold-400); border-bottom-color: var(--gold-500); }
.nav-cta { margin-left: 1rem; }
.nav-cta .btn { padding: 0.6rem 1.3rem; font-size: 0.82rem; }
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--gold-400);
    transition: var(--transition);
}

@media (max-width: 992px) {
    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 290px;
        background: var(--navy-900);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 28px 30px;
        transition: right 0.3s ease;
        box-shadow: -8px 0 30px rgba(0,0,0,0.3);
    }
    .main-nav.open { right: 0; }
    .nav-close {
        display: block;
        position: absolute;
        top: 18px;
        right: 18px;
        background: transparent;
        border: none;
        color: var(--gold-400);
        font-size: 1.4rem;
    }
    .nav-list { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
    .nav-list li { width: 100%; }
    .nav-link {
        padding: 0.95rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        display: block;
    }
    .nav-cta { margin: 1.2rem 0 0; width: 100%; }
    .nav-cta .btn { width: 100%; padding: 0.9rem 1.3rem; }
    .brand-name { font-size: 1.15rem; }
    .brand-name-alt { font-size: 0.62rem; letter-spacing: 0.24em; }
    .site-brand-logo { height: 40px; }
}

/* ============ Hero ============ */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
    color: var(--white);
    padding: 110px 0 90px;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1920&q=70') center/cover;
    opacity: 0.10;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--ivory), transparent);
    pointer-events: none;
}
.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.hero-eyebrow {
    color: var(--gold-400);
    letter-spacing: 0.3em;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    color: var(--white);
    margin-bottom: 1.2rem;
    font-weight: 600;
}
.hero-title span { color: var(--gold-400); }
.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    max-width: 720px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}
.hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}
.hero-badge {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(200,160,74,0.35);
    color: var(--white);
    padding: 0.55rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    backdrop-filter: blur(8px);
}
.hero-badge i { color: var(--gold-400); margin-right: 0.4rem; }
.hero-actions { display: flex; justify-content: center; gap: 1rem; margin-top: 2.4rem; flex-wrap: wrap; }
.hero.hero-sm { padding: 70px 0 60px; }

/* ============ Section ============ */
.section {
    padding: 80px 0;
    background: var(--white);
}
.section-ivory { background: var(--ivory); }
.section-navy { background: var(--navy-900); color: rgba(255,255,255,0.92); }
.section-navy h1, .section-navy h2, .section-navy h3, .section-navy h4 { color: var(--white); }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-header h2 { font-size: 2.3rem; }
.section-header p { color: var(--gray-700); font-size: 1.08rem; }
.section-navy .section-header p { color: rgba(255,255,255,0.75); }

/* ============ Grids ============ */
.grid { display: grid; gap: 1.6rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 992px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ============ Cards ============ */
.card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--gold-300); }
.card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    background: var(--navy-800);
    color: var(--gold-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.3rem;
}
.card-icon.gold { background: var(--gold-600); color: var(--white); }
.card-title { font-size: 1.35rem; margin-bottom: 0.7rem; }
.card-body { color: var(--gray-700); line-height: 1.7; }
.card ul { padding-left: 0; list-style: none; margin: 1rem 0 0; }
.card ul li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.55rem;
    color: var(--gray-700);
}
.card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gold-500);
    position: absolute;
    left: 0;
    top: 2px;
}

/* ============ Feature card with number ============ */
.step-card {
    text-align: center;
    padding: 2.2rem 1.6rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    position: relative;
    transition: var(--transition);
}
.step-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.step-number {
    width: 50px;
    height: 50px;
    background: var(--navy-800);
    color: var(--gold-400);
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 2px solid var(--gold-500);
}
.step-card h4 { font-size: 1.25rem; margin: 0.8rem 0 0.6rem; }
.step-card p { color: var(--gray-700); margin: 0; }

/* ============ Stats ============ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.stat {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(200,160,74,0.18);
    border-radius: var(--radius);
}
.stat-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-400);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label { color: rgba(255,255,255,0.75); font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.1em; }
@media (max-width: 768px) {
    .stats { grid-template-columns: repeat(2, 1fr); }
    .stat-number { font-size: 2.2rem; }
}

/* ============ Verify Hero & Card ============ */
.verify-page {
    min-height: calc(100vh - 200px);
    padding: 60px 0 80px;
    background: linear-gradient(180deg, var(--ivory) 0%, var(--white) 100%);
}
.verify-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: var(--navy-800);
    color: var(--gold-400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    box-shadow: 0 12px 30px rgba(10,20,41,0.18);
}
.verify-title {
    text-align: center;
    font-size: 2.4rem;
    color: var(--navy-900);
    margin-bottom: 0.5rem;
}
.verify-subtitle {
    text-align: center;
    color: var(--gray-700);
    margin-bottom: 3rem;
    font-size: 1.05rem;
}
.verify-card {
    max-width: 820px;
    margin: 0 auto;
    background: var(--white);
    padding: 2.6rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--gold-500);
}
.verify-label {
    display: block;
    font-weight: 600;
    color: var(--navy-800);
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
}
.verify-input, .form-control {
    width: 100%;
    padding: 0.95rem 1.1rem;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    color: var(--gray-900);
    background: var(--white);
    transition: var(--transition);
}
.verify-input { font-size: 1.15rem; letter-spacing: 0.05em; }
.verify-input:focus, .form-control:focus { outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(200,160,74,0.15); }
.form-select { appearance: none; padding-right: 2.5rem; background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath fill='%23475066' d='M7 10l5 5 5-5z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/16px 16px var(--white); }

.progress-bar { display: none; margin-top: 1.4rem; height: 8px; background: var(--gray-100); border-radius: 40px; overflow: hidden; }
.progress-bar .bar { height: 100%; width: 0; background: linear-gradient(90deg, var(--gold-500), var(--gold-400)); transition: width 0.1s linear; }
.progress-text { display: none; text-align: center; font-size: 0.85rem; color: var(--gray-500); margin-top: 0.6rem; }

.result-block { display: none; max-width: 900px; margin: 2rem auto 0; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); border-top: 4px solid var(--gold-500); padding: 2.5rem; }
.result-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--gray-200); }
.result-header h3 { margin: 0; font-size: 1.5rem; color: var(--navy-900); }
.result-section { margin-bottom: 1.8rem; }
.result-section-title { color: var(--gold-700); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; padding-bottom: 0.4rem; margin-bottom: 1rem; border-bottom: 2px solid var(--gold-500); }
.result-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
@media (max-width: 640px) { .result-grid { grid-template-columns: 1fr; } }
.result-item { background: var(--gray-50); padding: 0.85rem 1rem; border-radius: var(--radius-sm); border-left: 3px solid var(--gold-500); }
.result-item .label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-500); font-weight: 600; }
.result-item .value { font-size: 1.02rem; color: var(--navy-900); margin-top: 0.2rem; font-weight: 500; word-break: break-word; }
.result-images { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.result-images img { width: 100%; border-radius: var(--radius-sm); border: 1px solid var(--gray-200); }
.badge { display: inline-block; padding: 0.3rem 0.7rem; border-radius: 30px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.badge-success { background: rgba(31,122,68,0.12); color: var(--success); }
.badge-danger { background: rgba(181,50,52,0.12); color: var(--danger); }
.badge-warning { background: rgba(201,138,26,0.12); color: var(--warning); }

.error-block { display: none; max-width: 820px; margin: 2rem auto 0; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 2rem; text-align: center; border-top: 4px solid var(--danger); }
.error-block .icon-large { font-size: 3rem; color: var(--danger); margin-bottom: 1rem; }

.how-to {
    max-width: 820px;
    margin: 3rem auto 0;
    background: var(--navy-100);
    padding: 2rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--gold-500);
}
.how-to h4 { color: var(--navy-900); margin: 0 0 1rem; font-size: 1.2rem; }
.how-to ul { list-style: none; padding: 0; margin: 0; }
.how-to ul li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 0.7rem 0;
    border-bottom: 1px dashed rgba(10,20,41,0.08);
    color: var(--gray-700);
}
.how-to ul li:last-child { border-bottom: none; }
.how-to .step-num {
    width: 28px;
    height: 28px;
    background: var(--gold-600);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 0.85rem;
}

/* ============ Form ============ */
.form-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
.form-row.cols-2 { grid-template-columns: repeat(2, 1fr); }
.form-row.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 640px) { .form-row.cols-2, .form-row.cols-3 { grid-template-columns: 1fr; } }
.form-group label { display: block; font-weight: 600; color: var(--navy-800); margin-bottom: 0.4rem; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.04em; }
textarea.form-control { resize: vertical; min-height: 130px; font-family: inherit; }
.form-help { color: var(--gray-500); font-size: 0.82rem; margin-top: 0.3rem; }

/* ============ Alerts ============ */
.alert { padding: 1rem 1.2rem; border-radius: var(--radius-sm); margin-bottom: 1.2rem; border-left: 4px solid; }
.alert-success { background: rgba(31,122,68,0.08); border-color: var(--success); color: var(--success); }
.alert-danger { background: rgba(181,50,52,0.08); border-color: var(--danger); color: var(--danger); }
.alert-info { background: var(--navy-100); border-color: var(--navy-700); color: var(--navy-800); }

/* ============ Partners ============ */
.partners {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: center;
    padding: 2.4rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.partners img {
    max-height: 70px;
    margin: 0 auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}
.partners img:hover { filter: grayscale(0); opacity: 1; transform: scale(1.05); }
@media (max-width: 768px) { .partners { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; padding: 1.6rem; } }

/* ============ CTA Banner ============ */
.cta-banner {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    color: var(--white);
    padding: 60px 40px;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-300), var(--gold-500));
}
.cta-banner h2 { color: var(--white); font-size: 2.2rem; }
.cta-banner p { font-size: 1.1rem; color: rgba(255,255,255,0.85); max-width: 640px; margin: 0 auto 2rem; }

/* ============ Legal Pages ============ */
.legal-content {
    max-width: 880px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--gold-500);
}
.legal-content h2 { font-size: 1.7rem; margin-top: 2rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--gray-200); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 1.2rem; color: var(--navy-700); margin-top: 1.4rem; }
.legal-content p { color: var(--gray-700); line-height: 1.8; }
.legal-content ul { color: var(--gray-700); line-height: 1.9; padding-left: 1.2rem; }
.legal-content ul li::marker { color: var(--gold-500); }
.legal-meta { color: var(--gray-500); font-size: 0.88rem; margin-bottom: 2rem; padding: 0.5rem 0.9rem; background: var(--gray-50); border-left: 3px solid var(--gold-500); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
@media (max-width: 768px) { .legal-content { padding: 1.8rem; } }

/* ============ Contact ============ */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2.4rem; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { background: var(--white); padding: 2rem; border-radius: var(--radius); box-shadow: var(--shadow-sm); border-top: 3px solid var(--gold-500); margin-bottom: 1.4rem; }
.contact-info-item { display: flex; align-items: center; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--gray-100); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item .icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy-100);
    color: var(--gold-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.contact-info-item strong { display: block; color: var(--navy-900); margin-bottom: 0.2rem; }
.contact-info-item span, .contact-info-item a { color: var(--gray-700); font-size: 0.92rem; }

/* ============ Footer ============ */
.site-footer {
    background: var(--navy-900);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
    border-top: 4px solid var(--gold-500);
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1.4fr; gap: 2.5rem; padding-bottom: 40px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { height: 50px; background: var(--white); padding: 6px; border-radius: 4px; margin-bottom: 1rem; }
.footer-tagline { font-size: 0.92rem; line-height: 1.65; margin-bottom: 1.4rem; color: rgba(255,255,255,0.7); }
.footer-title {
    color: var(--gold-400);
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.2rem;
    font-weight: 600;
    font-family: var(--font-sans);
}
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li, .footer-contact li { margin-bottom: 0.7rem; font-size: 0.92rem; }
.footer-links a { color: rgba(255,255,255,0.7); }
.footer-links a:hover { color: var(--gold-400); padding-left: 5px; }
.footer-contact li { display: flex; gap: 0.7rem; align-items: flex-start; }
.footer-contact li i { color: var(--gold-400); margin-top: 4px; width: 14px; }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--gold-400); }
.social-icons { display: flex; gap: 0.6rem; }
.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(200,160,74,0.25);
}
.social-icons a:hover { background: var(--gold-600); color: var(--white); border-color: var(--gold-600); transform: translateY(-2px); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.84rem;
    color: rgba(255,255,255,0.55);
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom strong { color: var(--gold-400); font-weight: 500; }
@media (max-width: 640px) { .footer-bottom { flex-direction: column; text-align: center; } }

/* ============ WhatsApp widget ============ */
.wa-widget { position: fixed; bottom: 24px; right: 24px; z-index: 9999; }
.wa-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    font-size: 1.9rem;
    border: none;
    box-shadow: 0 6px 20px rgba(37,211,102,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.wa-toggle:hover { transform: scale(1.08); }
.wa-panel {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0,0,0,0.2);
    display: none;
    animation: fadeUp 0.25s ease;
}
.wa-panel.open { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.wa-header { background: linear-gradient(135deg, #25d366, #128c7e); color: var(--white); padding: 1.2rem; position: relative; }
.wa-header-content { display: flex; align-items: center; gap: 0.8rem; }
.wa-avatar { width: 44px; height: 44px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #25d366; font-size: 1.4rem; }
.wa-header strong { display: block; font-size: 1.05rem; }
.wa-header small { font-size: 0.8rem; opacity: 0.85; }
.wa-close { position: absolute; top: 12px; right: 12px; background: transparent; border: none; color: var(--white); font-size: 1.1rem; }
.wa-body { padding: 1.4rem; background: var(--gray-50); }
.wa-body p { font-size: 0.92rem; color: var(--gray-700); margin: 0 0 1rem; }
.wa-action { display: flex; align-items: center; gap: 0.8rem; padding: 0.9rem; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-sm); color: var(--gray-900); text-decoration: none; transition: var(--transition); }
.wa-action:hover { background: var(--ivory); color: var(--gray-900); border-color: #25d366; }
.wa-icon { width: 38px; height: 38px; border-radius: 50%; background: #25d366; color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.wa-action strong { display: block; font-size: 0.95rem; }
.wa-action small { display: block; color: var(--gray-500); font-size: 0.8rem; }

/* ============ Cookie banner ============ */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--navy-900); color: var(--white); padding: 14px 0; border-top: 3px solid var(--gold-500); z-index: 9998; box-shadow: 0 -8px 30px rgba(0,0,0,0.3); }
.cookie-banner-inner { display: flex; justify-content: space-between; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.cookie-banner p { margin: 0; font-size: 0.92rem; }
.cookie-banner a { color: var(--gold-400); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.5rem; }
@media (max-width: 640px) { .cookie-banner-inner { flex-direction: column; text-align: center; } }

/* ============ Service Hero ============ */
.page-hero {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
    color: var(--white);
    padding: 80px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1920&q=70') center/cover;
    opacity: 0.07;
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.6rem; }
.page-hero p { color: rgba(255,255,255,0.78); font-size: 1.08rem; max-width: 700px; margin: 0 auto; }
.page-hero .h-divider { background: var(--gold-500); margin: 1rem auto 1.5rem; }
.breadcrumb { display: inline-flex; gap: 0.5rem; margin-top: 1.5rem; font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.breadcrumb a { color: var(--gold-400); }
.breadcrumb span.sep { color: rgba(255,255,255,0.4); }

/* ============ Home enregistrement ============ */
.register-section { background: var(--ivory); padding: 80px 0; }
.register-card {
    max-width: 980px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
}
@media (max-width: 900px) { .register-card { grid-template-columns: 1fr; } }
.register-card-image {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%) center/cover;
    color: var(--white);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}
.register-card-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=800&q=70') center/cover;
    opacity: 0.20;
}
.register-card-image > * { position: relative; z-index: 2; }
.register-card-image i { font-size: 3rem; color: var(--gold-400); margin-bottom: 1rem; }
.register-card-image h3 { color: var(--white); font-size: 1.6rem; margin-bottom: 0.6rem; }
.register-card-image p { color: rgba(255,255,255,0.8); }
.register-card-form { padding: 3rem 2.4rem; }
.register-card-form h3 { font-size: 1.5rem; margin-bottom: 1.4rem; }

/* ============ Utilities ============ */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.4rem; }
.mt-2 { margin-top: 0.8rem; }
.mt-3 { margin-top: 1.2rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 0.8rem; }
.mb-3 { margin-bottom: 1.2rem; }
.mb-4 { margin-bottom: 2rem; }
.py-4 { padding: 2rem 0; }
.text-gold { color: var(--gold-600); }
.text-navy { color: var(--navy-800); }
.fw-bold { font-weight: 700; }

/* Animations */
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeIn 0.5s ease both; }

/* ============================================================
   POLISH UI v3 — Nouveaux composants
   ============================================================ */

/* Header */
.site-brand { gap: 0; }
@media (max-width: 540px) { .site-brand-logo-full { height: 44px; } }

/* Hero enrichi */
.hero { padding: 90px 0 110px; }
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .hero-illu { display: none; }
}
.hero-grid .hero-text { text-align: left; }
@media (max-width: 900px) {
    .hero-grid .hero-text { text-align: center; }
    .hero-grid .hero-actions, .hero-grid .hero-badges { justify-content: center; }
}
.hero-illu { display: flex; justify-content: center; align-items: center; animation: floatY 6s ease-in-out infinite; }
.hero-illu img { max-width: 100%; height: auto; filter: drop-shadow(0 20px 50px rgba(0,0,0,0.35)); }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.hero-trustline {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.6rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.65);
    font-size: 0.82rem;
    flex-wrap: wrap;
}
.hero-trustline strong { color: var(--gold-400); }

/* Ornement section */
.section-ornament {
    display: block;
    margin: 0 auto 1.2rem;
    height: 18px;
    width: 200px;
    opacity: 0.9;
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy-800);
    color: var(--gold-400);
    border: 2px solid var(--gold-500);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-500); color: var(--white); transform: translateY(-3px); }

/* Accordion FAQ */
.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.faq-cat-btn {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    color: var(--gray-700);
    padding: 0.55rem 1.2rem;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.faq-cat-btn:hover { border-color: var(--gold-500); color: var(--navy-800); }
.faq-cat-btn.active { background: var(--navy-800); border-color: var(--navy-800); color: var(--white); }

.accordion { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.8rem; }
.accordion-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.accordion-item:hover { box-shadow: var(--shadow); border-color: var(--gold-300); }
.accordion-item.open { border-color: var(--gold-500); box-shadow: var(--shadow); }
.accordion-trigger {
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    padding: 1.1rem 1.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--navy-900);
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}
.accordion-trigger:hover { color: var(--gold-600); }
.accordion-trigger .icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--navy-100);
    color: var(--navy-800);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}
.accordion-item.open .icon { background: var(--gold-500); color: var(--white); transform: rotate(45deg); }
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.accordion-item.open .accordion-content { max-height: 800px; }
.accordion-body { padding: 0 1.4rem 1.3rem; color: var(--gray-700); line-height: 1.75; border-top: 1px solid var(--gray-100); padding-top: 1rem; }
.accordion-body p { margin: 0 0 0.6rem; }
.accordion-body a { color: var(--gold-600); font-weight: 600; }

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
    align-items: stretch;
}
@media (max-width: 992px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }
.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 2.2rem 1.8rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.pricing-card.featured {
    border-top: 4px solid var(--gold-500);
    background: linear-gradient(180deg, var(--white), var(--ivory) 50%, var(--white));
    transform: scale(1.03);
    box-shadow: var(--shadow);
}
.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-600);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.pricing-name {
    font-size: 1.3rem;
    color: var(--navy-900);
    margin-bottom: 0.5rem;
    font-family: var(--font-serif);
    font-weight: 700;
}
.pricing-desc { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 1.5rem; }
.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
    margin: 1rem 0 0.5rem;
}
.pricing-price .amount {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--navy-900);
    line-height: 1;
}
.pricing-price .currency { font-size: 1.5rem; color: var(--gold-600); font-weight: 600; }
.pricing-period { color: var(--gray-500); font-size: 0.88rem; margin-bottom: 1.6rem; }
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
    text-align: left;
    flex: 1;
}
.pricing-features li {
    padding: 0.55rem 0 0.55rem 1.8rem;
    position: relative;
    color: var(--gray-700);
    border-bottom: 1px dashed var(--gray-100);
    font-size: 0.93rem;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gold-500);
    position: absolute;
    left: 0;
    top: 0.6rem;
}
.pricing-features li.disabled { color: var(--gray-300); }
.pricing-features li.disabled::before { content: '\f068'; color: var(--gray-300); }

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
}
@media (max-width: 992px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 2rem 1.8rem 1.8rem;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-top: 24px;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--gold-300); }
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -22px;
    left: 24px;
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--gold-500);
    line-height: 1;
    background: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    border: 2px solid var(--gold-500);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 18px;
    box-sizing: border-box;
}
.testimonial-stars { color: var(--gold-500); margin: 0.4rem 0 0.8rem; font-size: 0.95rem; }
.testimonial-text { color: var(--gray-700); font-size: 0.96rem; line-height: 1.7; flex: 1; font-style: italic; }
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.3rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--gray-100);
}
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--gold-300); }
.testimonial-info strong { display: block; color: var(--navy-900); font-size: 0.95rem; }
.testimonial-info small { color: var(--gray-500); font-size: 0.82rem; }

/* Blog / News */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
}
@media (max-width: 992px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .news-grid { grid-template-columns: 1fr; } }
.news-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}
.news-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--gold-300); color: inherit; }
.news-image {
    position: relative;
    aspect-ratio: 5 / 3;
    background: var(--navy-800);
    overflow: hidden;
}
.news-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.news-card:hover .news-image img { transform: scale(1.05); }
.news-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold-600);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.news-body { padding: 1.5rem 1.5rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.news-meta { color: var(--gray-500); font-size: 0.82rem; margin-bottom: 0.7rem; display: flex; gap: 1rem; }
.news-meta i { color: var(--gold-500); margin-right: 0.3rem; }
.news-title {
    font-size: 1.2rem;
    color: var(--navy-900);
    margin-bottom: 0.6rem;
    line-height: 1.35;
    font-weight: 700;
    font-family: var(--font-serif);
}
.news-excerpt { color: var(--gray-700); font-size: 0.92rem; line-height: 1.6; flex: 1; }
.news-readmore {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--gold-600);
    font-weight: 600;
    margin-top: 1rem;
    font-size: 0.92rem;
}
.news-card:hover .news-readmore { color: var(--gold-700); gap: 0.7rem; }

/* Article single */
.article-page { background: var(--ivory); padding: 60px 0 80px; }
.article-container { max-width: 820px; margin: 0 auto; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.article-hero { aspect-ratio: 16 / 7; background: var(--navy-800); }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-body { padding: 2.5rem; }
.article-meta { color: var(--gray-500); font-size: 0.85rem; margin-bottom: 0.6rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.article-meta i { color: var(--gold-500); margin-right: 0.3rem; }
.article-body h1 { font-size: 2.2rem; margin-bottom: 1rem; color: var(--navy-900); }
.article-body h2 { font-size: 1.5rem; margin-top: 2rem; }
.article-body p { color: var(--gray-700); line-height: 1.8; margin: 0 0 1rem; font-size: 1.02rem; }
.article-body blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.4rem;
    background: var(--ivory);
    border-left: 4px solid var(--gold-500);
    font-style: italic;
    color: var(--navy-800);
}

/* Newsletter footer */
.footer-newsletter { margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-newsletter p { margin: 0 0 0.6rem; color: rgba(255,255,255,0.85); font-size: 0.88rem; }
.footer-newsletter-input { display: flex; }
.footer-newsletter-input input {
    flex: 1;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    color: var(--white);
    padding: 0.6rem 0.9rem;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    font-size: 0.88rem;
    outline: none;
    font-family: inherit;
    min-width: 0;
}
.footer-newsletter-input input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter-input input:focus { border-color: var(--gold-500); }
.footer-newsletter-input button {
    background: var(--gold-600);
    color: var(--white);
    border: none;
    padding: 0 1rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    cursor: pointer;
    transition: var(--transition);
}
.footer-newsletter-input button:hover { background: var(--gold-700); }

.footer-bottom { gap: 1.2rem; }
.footer-bottom-right { display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.footer-bottom-right span { color: rgba(255,255,255,0.7); font-size: 0.82rem; }
.footer-bottom-right i { color: var(--gold-400); margin-right: 0.3rem; }
.footer-logo { background: transparent; padding: 0; height: 56px; }

/* Section enrichies */
.feature-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    align-items: center;
}
@media (max-width: 900px) { .feature-row { grid-template-columns: 1fr; } }
.feature-img { display: flex; justify-content: center; }
.feature-img img { max-width: 100%; height: auto; filter: drop-shadow(0 12px 30px rgba(10,20,41,0.15)); }
.feature-text h2 { font-size: 2.2rem; }
.feature-text ul { list-style: none; padding: 0; margin: 1.2rem 0 0; }
.feature-text ul li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    color: var(--gray-700);
}
.feature-text ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gold-500);
    position: absolute;
    left: 0;
    top: 0.6rem;
}

/* Counter avec animation pulsée */
.live-pulse {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(31,122,68,0.12);
    color: var(--success);
    padding: 0.35rem 0.85rem;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 600;
}
.live-pulse::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(31,122,68,0.6); }
    50% { box-shadow: 0 0 0 6px rgba(31,122,68,0); }
}

/* Step illustration */
.process-illu { display: block; max-width: 100%; height: auto; margin: 0 auto; }

/* Custom SVG icon */
.svg-icon-lg { width: 70px; height: 70px; margin-bottom: 1.2rem; }
.svg-icon-md { width: 48px; height: 48px; }

/* Polish */
.section { padding: 90px 0; }
.section-header { margin-bottom: 3.5rem; }
.h-divider-fancy {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: center;
    margin: 1rem 0 1.5rem;
}
.h-divider-fancy::before, .h-divider-fancy::after {
    content: '';
    height: 1px;
    background: var(--gold-500);
    flex: 1;
    max-width: 60px;
    opacity: 0.6;
}
.h-divider-fancy i { color: var(--gold-500); font-size: 0.85rem; }

/* Page wrapper amélioré */
.page-hero h1 i { color: var(--gold-400); margin-right: 0.4rem; }

/* Cards full-width */
.card-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    padding: 1.4rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    transition: var(--transition);
}
.card-feature:hover { box-shadow: var(--shadow); border-color: var(--gold-300); transform: translateY(-2px); }
.card-feature .icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    background: var(--navy-800);
    color: var(--gold-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.card-feature h4 { margin: 0 0 0.3rem; font-size: 1.05rem; color: var(--navy-900); font-family: var(--font-sans); font-weight: 600; }
.card-feature p { margin: 0; color: var(--gray-700); font-size: 0.92rem; line-height: 1.6; }
