/* ═══════════════════════════════════════════════════════════
   EQUITABLE INVESTMENTS® — style.css  [REFONTE COMPLÈTE]
   Polices : Playfair Display (titres) + DM Sans (corps)
   Palette : Navy #0B1F3A · Slate #1E3A5F · Gold #C9A84C
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── VARIABLES ── */
:root {
    --navy:         #0B1F3A;
    --navy-mid:     #1E3A5F;
    --navy-light:   #2C5282;
    --slate:        #4A6FA5;
    --slate-light:  #EBF2FF;
    --slate-pale:   #F4F7FC;

    --gold:         #C9A84C;
    --gold-light:   #E2C07A;
    --gold-pale:    #FDF6E3;

    --text:         #0E1C2E;
    --text-2:       #344155;
    --text-3:       #6B7A95;
    --border:       #DDE4EF;

    --bg:           #FFFFFF;
    --bg-2:         #F8FAFD;
    --bg-3:         #EFF3FA;

    --success:      #059669;
    --danger:       #DC2626;

    --shadow-sm:    0 2px 8px rgba(11,31,58,0.07);
    --shadow:       0 4px 24px rgba(11,31,58,0.10);
    --shadow-lg:    0 12px 48px rgba(11,31,58,0.14);
    --shadow-xl:    0 20px 64px rgba(11,31,58,0.18);

    --radius-sm:    8px;
    --radius-md:    16px;
    --radius-lg:    24px;
    --radius-xl:    32px;
    --radius-pill:  100px;

    --nav-h:        72px;
    --font-title:   'Playfair Display', Georgia, serif;
    --font-body:    'DM Sans', system-ui, sans-serif;
    --transition:   0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    max-width: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ── SCROLL ANIMATIONS ── */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }

/* ── UTILITAIRES ── */
.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 14px;
    background: var(--gold-pale);
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(201,168,76,0.3);
}

.section-title {
    font-family: var(--font-title);
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.01em;
    color: var(--text);
}

.section-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--navy-mid);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-3);
    line-height: 1.78;
    font-weight: 400;
    margin-top: 16px;
    max-width: 580px;
}

/* ── BOUTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    padding: 13px 30px;
    border: none;
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 4px 16px rgba(11,31,58,0.3);
}
.btn-primary:hover {
    background: var(--navy-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(11,31,58,0.38);
}

.btn-gold {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}
.btn-gold:hover {
    background: #b8962a;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201,168,76,0.45);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid rgba(11,31,58,0.35);
}
.btn-outline:hover {
    background: var(--slate-pale);
    border-color: var(--navy);
}

.btn-white {
    background: #fff;
    color: var(--navy);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.btn-outline-white {
    background: transparent;
    color: rgba(255,255,255,0.88);
    border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline-white:hover {
    border-color: rgba(255,255,255,0.75);
    color: #fff;
    background: rgba(255,255,255,0.08);
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.nav-wrapper {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 900;
    width: calc(100% - 48px);
    max-width: 1120px;
    transition: top var(--transition);
}
.nav-wrapper.scrolled { top: 8px; }

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(11,31,58,0.1);
    border-radius: var(--radius-pill);
    padding: 10px 14px 10px 26px;
    box-shadow: 0 4px 32px rgba(11,31,58,0.1);
    transition: box-shadow var(--transition);
}
.navbar:hover { box-shadow: 0 6px 40px rgba(11,31,58,0.15); }

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    font-family: var(--font-title);
    font-size: 19px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.01em;
    transition: opacity var(--transition);
}
.nav-logo:hover { opacity: 0.8; }
.nav-logo span { color: var(--gold); }
.nav-logo-img { height: 50px; width: auto; max-width: 130px; object-fit: contain; display: block; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center;
}
.nav-item { position: relative; }

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-2);
    padding: 7px 13px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: all var(--transition);
    white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
    color: var(--navy);
    background: var(--slate-pale);
}

.dropdown-arrow { transition: transform var(--transition); flex-shrink: 0; opacity: 0.45; }
.nav-item:hover .dropdown-arrow { transform: rotate(180deg); }

.dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 8px;
    min-width: 230px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-8px);
    transition: all 0.2s ease;
    z-index: 100;
}
.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown li a {
    display: block;
    padding: 9px 14px;
    font-size: 13px;
    color: var(--text-2);
    border-radius: var(--radius-sm);
    transition: all 0.15s;
    font-weight: 400;
}
.dropdown li a:hover { background: var(--slate-pale); color: var(--navy); }

.nav-actions { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }

.btn-ghost-nav {
    font-size: 13px;
    font-weight: 500;
    color: var(--navy);
    background: transparent;
    border: 1px solid rgba(11,31,58,0.25);
    border-radius: var(--radius-pill);
    padding: 7px 18px;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
}
.btn-ghost-nav:hover { background: var(--slate-pale); border-color: var(--navy); }

.btn-nav-primary {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: var(--navy);
    border: none;
    border-radius: var(--radius-pill);
    padding: 8px 22px;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}
.btn-nav-primary:hover { background: var(--navy-mid); transform: translateY(-1px); }

.nav-mobile-cta { display: none !important; }
.drawer, .drawer-overlay { display: none; }

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    padding: 6px;
    cursor: pointer;
}
.nav-burger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-spacer { height: calc(var(--nav-h) + 18px); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #060D1A;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 9s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        rgba(6,13,26,0.88) 0%,
        rgba(6,13,26,0.60) 50%,
        rgba(11,31,58,0.30) 100%
    );
}

/* Particules décoratives */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}
.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
}
.hero-particles::before {
    width: 600px; height: 600px;
    top: -100px; right: -100px;
    animation: floatOrb 12s ease-in-out infinite;
}
.hero-particles::after {
    width: 400px; height: 400px;
    bottom: 50px; left: 10%;
    animation: floatOrb 16s ease-in-out infinite reverse;
}
@keyframes floatOrb {
    0%, 100% { transform: translateY(0) scale(1); }
    50%       { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 130px 28px 90px;
}
.hero-inner { max-width: 1160px; margin: 0 auto; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.35);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-pill);
    padding: 6px 18px;
    margin-bottom: 30px;
    font-size: 11px;
    color: var(--gold-light);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.hero-badge .badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: badgePulse 2s infinite;
    flex-shrink: 0;
}
@keyframes badgePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
    font-family: var(--font-title);
    font-size: clamp(38px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 26px;
    max-width: 780px;
}
.hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold-light);
}
.hero-title strong { font-weight: 700; color: #fff; }

.hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.68);
    line-height: 1.78;
    font-weight: 400;
    max-width: 520px;
    margin-bottom: 48px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}
.hero-ctas .btn { font-size: 15px; padding: 14px 36px; }

/* Trust badges sous le hero */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 52px;
    flex-wrap: wrap;
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    font-weight: 400;
}
.hero-trust-item svg {
    width: 14px; height: 14px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    flex-shrink: 0;
}
.hero-trust-sep {
    width: 1px; height: 18px;
    background: rgba(255,255,255,0.15);
}

.hero-scroll {
    position: absolute;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.35);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: var(--font-body);
}
.scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollLine 2.2s ease infinite;
}
@keyframes scrollLine {
    0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
    100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ══════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════ */
.stats-bar {
    background: var(--navy);
    padding: 0;
    overflow: hidden;
}
.stats-bar-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    justify-content: space-around;
    align-items: stretch;
}
.stat-item {
    text-align: center;
    padding: 36px 20px;
    flex: 1;
    position: relative;
    transition: background var(--transition);
}
.stat-item::after {
    content: '';
    position: absolute;
    right: 0; top: 25%; bottom: 25%;
    width: 1px;
    background: rgba(255,255,255,0.1);
}
.stat-item:last-child::after { display: none; }
.stat-item:hover { background: rgba(255,255,255,0.04); }

.stat-num {
    font-family: var(--font-title);
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 7px;
}
.stat-num em {
    font-style: normal;
    font-size: 24px;
    color: var(--gold-light);
}
.stat-lbl {
    font-size: 11.5px;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* ══════════════════════════════════════════
   PROFILS
══════════════════════════════════════════ */
.profils-section {
    padding: 110px 0;
    background: var(--bg);
}
.profils-section > .container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.profils-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 56px;
}
.profil-card {
    position: relative;
    height: 440px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: block;
    cursor: pointer;
    background: var(--navy);
}
.profil-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #0B2240;
    transition: transform 0.6s ease;
    z-index: 0;
}
.profil-card:nth-child(1) .profil-bg { background-color: #0B2240; }
.profil-card:nth-child(2) .profil-bg { background-color: #1a1a0d; }
.profil-card:nth-child(3) .profil-bg { background-color: #0d2030; }
.profil-card:nth-child(4) .profil-bg { background-color: #1a0d1a; }
.profil-card:hover .profil-bg { transform: scale(1.07); }
.profil-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to top, rgba(6,13,26,0.94) 0%, rgba(6,13,26,0.45) 50%, rgba(6,13,26,0.05) 100%);
    transition: background 0.4s ease;
}
.profil-card:hover .profil-overlay {
    background: linear-gradient(to top, rgba(11,31,58,0.95) 0%, rgba(11,31,58,0.55) 55%, rgba(6,13,26,0.05) 100%);
}
.profil-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 28px 24px;
    z-index: 2;
}
.profil-icon {
    width: 46px; height: 46px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.35);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 12px;
    transition: background 0.3s;
}
.profil-card:hover .profil-icon { background: rgba(201,168,76,0.28); }
.profil-icon svg { stroke: var(--gold-light); fill: none; stroke-width: 1.5; stroke-linecap: round; width: 22px; height: 22px; }
.profil-content h3 { font-family: var(--font-title); font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 7px; line-height: 1.15; }
.profil-content p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; font-weight: 400; margin-bottom: 14px; }
.profil-cta {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11.5px; font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 0.07em; text-transform: uppercase;
    opacity: 0; transform: translateY(6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.profil-card:hover .profil-cta { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
.services-section { padding: 110px 0; background: var(--bg-2); }
.services-section .container { max-width: 1160px; }
.services-header { margin-bottom: 60px; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.svc-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden;
}
.svc-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: transparent; }

.svc-icon {
    width: 50px; height: 50px;
    border-radius: 14px;
    background: var(--slate-pale);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
    transition: background var(--transition), border-color var(--transition);
}
.svc-card:hover .svc-icon { background: var(--navy); border-color: var(--navy); }
.svc-icon svg { width: 22px; height: 22px; stroke: var(--navy); fill: none; stroke-width: 1.5; stroke-linecap: round; transition: stroke var(--transition); }
.svc-card:hover .svc-icon svg { stroke: #fff; }
.svc-card h3 { font-family: var(--font-title); font-size: 21px; font-weight: 700; margin-bottom: 10px; color: var(--text); line-height: 1.2; }
.svc-card p { font-size: 14px; color: var(--text-3); line-height: 1.75; font-weight: 400; }

/* ══════════════════════════════════════════
   OFFRES
══════════════════════════════════════════ */
.offres-section { background: var(--bg); padding: 110px 0; }
.offres-section .container { max-width: 1160px; }
.offres-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}
.offre-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: box-shadow var(--transition), transform var(--transition);
    position: relative;
    overflow: hidden;
}
.offre-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.offre-card.featured { background: var(--navy); border-color: var(--navy); }
.offre-card.featured .offre-tag { background: rgba(201,168,76,0.2); color: var(--gold-light); border-color: rgba(201,168,76,0.3); }
.offre-card.featured h3,
.offre-card.featured p { color: #fff; }
.offre-card.featured p { color: rgba(255,255,255,0.65); }
.offre-card.featured .offre-btn { background: var(--gold); color: #fff; }
.offre-card.featured .offre-btn:hover { background: var(--gold-light); }

.offre-tag {
    display: inline-block;
    background: var(--gold-pale);
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.3);
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 4px 14px; border-radius: var(--radius-pill);
    margin-bottom: 22px;
}
.offre-card h3 { font-family: var(--font-title); font-size: 24px; font-weight: 700; margin-bottom: 12px; color: var(--text); line-height: 1.2; }
.offre-card p { font-size: 14px; color: var(--text-3); line-height: 1.75; margin-bottom: 28px; }
.offre-btn {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 600;
    color: var(--navy); background: var(--slate-pale);
    border: none; border-radius: var(--radius-pill);
    padding: 10px 22px; transition: all var(--transition); cursor: pointer; text-decoration: none;
}
.offre-btn:hover { background: var(--navy); color: #fff; }

/* ══════════════════════════════════════════
   SECTION CARTES BANCAIRES
══════════════════════════════════════════ */
.cartes-section { padding: 110px 0; background: var(--bg-2); }
.cartes-section .container { max-width: 1160px; }
.cartes-header { margin-bottom: 60px; }

.cartes-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
}
.carte-showcase-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
    position: relative;
}
.carte-showcase-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-6px); }

.carte-showcase-card.carte-featured {
    border: 2px solid var(--gold);
}
.carte-popular-badge {
    position: absolute; top: 18px; right: 18px;
    background: var(--gold); color: #fff;
    font-size: 10px; font-weight: 700;
    padding: 4px 12px; border-radius: var(--radius-pill);
    letter-spacing: 0.06em; z-index: 3;
}

/* Visuel carte physique */
.carte-visual-wrap {
    height: 170px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}
.carte-basic-bg  { background: linear-gradient(135deg, #1a2a4a 0%, var(--navy) 100%); }
.carte-std-bg    { background: linear-gradient(135deg, #0f2740 0%, var(--navy-mid) 100%); }
.carte-premium-bg { background: linear-gradient(135deg, #2a1800 0%, #8B6914 100%); }

.carte-visual-inner { width: 100%; position: relative; z-index: 2; }
.carte-chip {
    width: 34px; height: 26px;
    background: rgba(201,168,76,0.6);
    border-radius: 5px;
    margin-bottom: 18px;
    position: relative;
    overflow: hidden;
}
.carte-chip::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60%; height: 60%;
    border: 1px solid rgba(201,168,76,0.8);
    border-radius: 2px;
}
.carte-number { font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 0.15em; margin-bottom: 7px; font-family: monospace; }
.carte-label-row { display: flex; justify-content: space-between; align-items: center; }
.carte-label { font-size: 13px; color: rgba(255,255,255,0.9); font-weight: 600; letter-spacing: 0.05em; font-family: var(--font-body); }
.carte-network {
    width: 40px; height: 26px;
    display: flex; align-items: center; justify-content: center;
}
.carte-network-circles {
    display: flex;
}
.carte-network-circles span {
    width: 18px; height: 18px;
    border-radius: 50%;
    display: block;
}
.carte-network-circles span:first-child { background: rgba(255,255,255,0.6); margin-right: -7px; }
.carte-network-circles span:last-child  { background: rgba(201,168,76,0.6); }

/* Déco lumineuse sur la carte */
.carte-visual-wrap::after {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.carte-body { padding: 26px 28px; }
.carte-body-tag {
    display: inline-block;
    font-size: 11px; font-weight: 700;
    color: var(--navy); background: var(--slate-pale);
    padding: 3px 12px; border-radius: var(--radius-pill);
    text-transform: uppercase; letter-spacing: 0.07em;
    margin-bottom: 12px;
}
.carte-showcase-card.carte-featured .carte-body-tag { background: var(--gold-pale); color: #8B6914; }
.carte-body h3 { font-family: var(--font-title); font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.carte-price { font-family: var(--font-title); font-size: 28px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.carte-price span { font-size: 14px; font-weight: 400; font-family: var(--font-body); color: var(--text-3); }
.carte-body > p { font-size: 13.5px; color: var(--text-3); line-height: 1.65; margin-bottom: 18px; }
.carte-features-list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.carte-features-list li {
    display: flex; align-items: center; gap: 9px;
    font-size: 13px; color: var(--text-2);
}
.feat-ok { color: var(--success); flex-shrink: 0; font-weight: 700; }
.feat-off { color: var(--text-3); flex-shrink: 0; opacity: 0.5; }

/* ══════════════════════════════════════════
   POURQUOI NOUS
══════════════════════════════════════════ */
.why-section { padding: 110px 0; background: var(--bg); }
.why-section .container { max-width: 1160px; }
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
    margin-top: 60px;
}

/* Visuel gauche */
.why-visual { position: relative; }
.why-img-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 340px;
    margin-bottom: 20px;
}
.why-img {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--navy);
    transition: transform 0.6s ease;
}
.why-img-wrap:hover .why-img { transform: scale(1.04); }
.why-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(11,31,58,0.5) 0%, rgba(11,31,58,0.1) 100%);
}
.why-float-badge {
    position: absolute;
    bottom: 22px; right: 22px;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 14px 20px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    border: 1px solid var(--border);
}
.wfb-val { font-family: var(--font-title); font-size: 30px; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.wfb-val span { font-size: 16px; }
.wfb-lbl { font-size: 11px; color: var(--text-3); font-weight: 500; white-space: nowrap; }

.why-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.kpi {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.kpi:hover { border-color: var(--navy); box-shadow: var(--shadow-sm); }
.kpi-lbl { font-size: 11px; color: var(--text-3); margin-bottom: 4px; font-weight: 500; }
.kpi-val { font-family: var(--font-title); font-size: 24px; font-weight: 700; color: var(--text); }
.kpi-val em { font-style: normal; font-size: 14px; color: var(--gold); }

/* Points forts droite */
.why-points { display: flex; flex-direction: column; gap: 30px; }
.why-point { display: flex; gap: 20px; align-items: flex-start; }
.why-point-icon {
    width: 50px; height: 50px;
    background: var(--slate-pale);
    border: 1px solid var(--border);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background var(--transition), border-color var(--transition);
}
.why-point:hover .why-point-icon { background: var(--navy); border-color: var(--navy); }
.why-point-icon svg { width: 20px; height: 20px; stroke: var(--navy); fill: none; stroke-width: 1.5; stroke-linecap: round; transition: stroke var(--transition); }
.why-point:hover .why-point-icon svg { stroke: #fff; }
.why-point h4 { font-family: var(--font-title); font-size: 19px; font-weight: 700; margin-bottom: 7px; color: var(--text); }
.why-point p { font-size: 14px; color: var(--text-3); line-height: 1.72; }

/* ══════════════════════════════════════════
   ESPACE CLIENT MOCKUP
══════════════════════════════════════════ */
.espace-client-section { padding: 110px 0; background: var(--bg-2); }
.espace-client-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

/* Texte */
.ec-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px; font-weight: 600;
    color: var(--gold);
    background: var(--gold-pale);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: var(--radius-pill);
    padding: 5px 16px;
    margin-bottom: 18px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.ec-title {
    font-family: var(--font-title);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.18;
    color: var(--text);
    margin: 0 0 16px;
}
.ec-title em { font-style: italic; font-weight: 400; color: var(--navy-mid); }
.ec-subtitle { font-family: var(--font-body); font-size: 15px; color: var(--text-3); line-height: 1.78; margin: 0 0 28px; }

.ec-features { list-style: none; margin: 0 0 32px; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.ec-features li { display: flex; align-items: center; gap: 12px; }
.ec-check {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(11,31,58,0.08);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.ec-features li span { font-size: 14px; color: var(--text-2); }

.ec-devices { display: flex; gap: 8px; flex-wrap: wrap; }
.ec-device {
    display: flex; align-items: center; gap: 7px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 7px 14px;
    font-size: 12px; font-weight: 500;
    color: var(--text-2);
    transition: border-color var(--transition);
}
.ec-device:hover { border-color: var(--navy); }

/* Mockup phone */
.ec-mockup-col { display: flex; justify-content: center; align-items: center; }
.ec-phone-tilt {
    transform: rotate(-7deg) perspective(1200px) rotateY(5deg);
    transform-origin: center center;
}
.ec-phone {
    width: 210px;
    background: #0a1520;
    border-radius: 34px;
    border: 5px solid #162030;
    overflow: hidden;
    font-family: var(--font-body);
    box-shadow: 0 40px 80px rgba(11,31,58,0.35);
}
.ec-ph-notch { height: 12px; background: #0a1520; display: flex; justify-content: center; align-items: flex-end; padding-bottom: 3px; }
.ec-ph-notch-bar { width: 52px; height: 4px; background: #1c2e42; border-radius: 4px; }
.ec-ph-screen { background: #0d1c2e; padding: 14px 14px 10px; }

.ec-ph-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.ec-ph-user { display: flex; align-items: center; gap: 7px; }
.ec-ph-avatar {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 700; color: #fff; letter-spacing: -0.5px;
}
.ec-ph-greeting { font-size: 9px; color: rgba(255,255,255,0.4); line-height: 1.1; }
.ec-ph-name { font-size: 11px; color: #fff; font-weight: 600; line-height: 1.2; }
.ec-ph-bell {
    position: relative;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    display: flex; align-items: center; justify-content: center;
}
.ec-ph-bell-dot {
    position: absolute; top: 1px; right: 1px;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #e85d4a;
    border: 1.5px solid #0d1c2e;
}
.ec-ph-balance {
    background: var(--navy);
    border-radius: 14px;
    padding: 13px 14px;
    margin-bottom: 12px;
    border: 1px solid rgba(201,168,76,0.2);
}
.ec-ph-balance-label { font-size: 10px; color: rgba(255,255,255,0.55); margin-bottom: 3px; }
.ec-ph-balance-amount { font-size: 26px; font-weight: 700; color: #fff; letter-spacing: -1px; line-height: 1; font-family: var(--font-title); }
.ec-ph-balance-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; }
.ec-ph-iban { font-size: 9px; color: rgba(255,255,255,0.4); }
.ec-ph-var {
    font-size: 9px;
    background: rgba(201,168,76,0.2);
    padding: 2px 7px; border-radius: 6px;
    color: var(--gold-light); font-weight: 500;
}
.ec-ph-actions { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; margin-bottom: 12px; }
.ec-ph-action { background: rgba(255,255,255,0.05); border-radius: 10px; padding: 8px 4px; text-align: center; }
.ec-ph-action-icon {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(201,168,76,0.15);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 4px;
}
.ec-ph-action-label { font-size: 9px; color: rgba(255,255,255,0.55); }
.ec-ph-block { background: rgba(255,255,255,0.04); border-radius: 10px; padding: 10px 11px; margin-bottom: 8px; }
.ec-ph-block:last-of-type { margin-bottom: 0; }
.ec-ph-block-title { font-size: 9px; font-weight: 600; color: rgba(255,255,255,0.3); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.ec-ph-tx { display: flex; justify-content: space-between; align-items: center; padding: 5px 0; border-bottom: 0.5px solid rgba(255,255,255,0.05); }
.ec-ph-tx:last-child { border-bottom: none; }
.ec-ph-tx-left { display: flex; align-items: center; gap: 8px; }
.ec-ph-tx-icon { width: 26px; height: 26px; border-radius: 8px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; }
.ec-ph-tx-icon.gold { background: rgba(201,168,76,0.15); }
.ec-ph-tx-name { font-size: 11px; color: #fff; font-weight: 500; line-height: 1.2; }
.ec-ph-tx-date { font-size: 9px; color: rgba(255,255,255,0.35); }
.ec-ph-tx-amount { font-size: 11px; font-weight: 600; }
.ec-ph-tx-amount.debit  { color: #e85d4a; }
.ec-ph-tx-amount.credit { color: var(--gold-light); }
.ec-ph-notif { display: flex; align-items: flex-start; gap: 8px; }
.ec-ph-notif-icon { width: 26px; height: 26px; border-radius: 8px; background: rgba(201,168,76,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ec-ph-notif-text { font-size: 11px; color: rgba(255,255,255,0.78); line-height: 1.45; }
.ec-ph-notif-text strong { color: var(--gold-light); }
.ec-ph-nav { display: grid; grid-template-columns: repeat(4, 1fr); background: #0a1520; padding: 8px 10px 6px; border-top: 0.5px solid rgba(255,255,255,0.05); }
.ec-ph-nav-item { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.ec-ph-nav-label { font-size: 8px; font-weight: 500; }
.ec-ph-homebar { height: 10px; background: #0a1520; display: flex; justify-content: center; align-items: center; }
.ec-ph-homebar-bar { width: 48px; height: 3px; background: #1c2e42; border-radius: 3px; }

/* ══════════════════════════════════════════
   SECTION CHIFFRES / IMPACT
══════════════════════════════════════════ */
.impact-section {
    padding: 110px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.impact-section::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.impact-section .section-tag { color: var(--gold-light); background: rgba(201,168,76,0.12); border-color: rgba(201,168,76,0.3); }
.impact-section .section-title { color: #fff; }
.impact-section .section-title em { color: var(--gold-light); }
.impact-section .section-subtitle { color: rgba(255,255,255,0.55); }

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}
.impact-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    transition: background var(--transition), border-color var(--transition);
}
.impact-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(201,168,76,0.3); }
.impact-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.3);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.impact-icon svg { width: 22px; height: 22px; stroke: var(--gold-light); fill: none; stroke-width: 1.5; stroke-linecap: round; }
.impact-num {
    font-family: var(--font-title);
    font-size: 44px; font-weight: 700;
    color: #fff; line-height: 1;
    margin-bottom: 6px;
}
.impact-num em { font-style: normal; font-size: 26px; color: var(--gold-light); }
.impact-lbl { font-size: 13px; color: rgba(255,255,255,0.45); font-weight: 400; }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-section { padding: 110px 0; background: var(--bg-2); }
.faq-section .container { max-width: 1160px; }
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 90px;
    align-items: start;
    margin-top: 56px;
}
.faq-text-col .section-subtitle { max-width: 100%; }
.faq-cta-row { margin-top: 32px; }

.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color var(--transition);
}
.faq-question:hover { color: var(--navy); }
.faq-question.open { color: var(--navy); }

.faq-chevron {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--bg-3);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background var(--transition), transform var(--transition);
}
.faq-question.open .faq-chevron { background: var(--navy); transform: rotate(180deg); }
.faq-chevron svg { stroke: var(--text-3); transition: stroke var(--transition); }
.faq-question.open .faq-chevron svg { stroke: #fff; }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer.open { max-height: 400px; padding-bottom: 18px; }
.faq-answer p { font-size: 14px; color: var(--text-3); line-height: 1.78; }

/* ══════════════════════════════════════════
   TÉMOIGNAGES
══════════════════════════════════════════ */
.temoignages-section { background: var(--bg); padding: 110px 0; }
.temoignages-section .container { max-width: 1160px; }
.temoignages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}
.temoignage-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: box-shadow var(--transition), transform var(--transition);
    position: relative;
}
.temoignage-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
/* Guillemet décoratif */
.temoignage-card::before {
    content: '"';
    position: absolute;
    top: 18px; right: 24px;
    font-family: var(--font-title);
    font-size: 80px;
    color: var(--slate-pale);
    line-height: 1;
    pointer-events: none;
}
.temoignage-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.star { width: 14px; height: 14px; background: var(--gold); clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%); }
.temoignage-text { font-size: 15px; color: var(--text-2); line-height: 1.78; font-style: italic; font-family: var(--font-title); font-weight: 400; margin-bottom: 24px; }
.temoignage-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--slate-pale);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-title); font-size: 16px; font-weight: 700; color: var(--navy);
    flex-shrink: 0;
    border: 2px solid var(--border);
}
.author-name { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.author-role { font-size: 12px; color: var(--text-3); font-weight: 400; }

/* ══════════════════════════════════════════
   PARTENAIRES
══════════════════════════════════════════ */
.partners-section {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg);
}
.partners-section .container { max-width: 1160px; }
.partners-label {
    text-align: center;
    font-size: 11px;
    color: var(--text-3);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 32px;
    font-weight: 500;
}
.partners-row { display: flex; gap: 44px; align-items: center; justify-content: center; flex-wrap: wrap; }
.partner-name {
    font-family: var(--font-title);
    font-size: 16px; font-weight: 700;
    color: var(--text-3); opacity: 0.4;
    transition: opacity var(--transition), color var(--transition);
    cursor: default; letter-spacing: 0.02em;
}
.partner-name:hover { opacity: 1; color: var(--navy); }

/* ══════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════ */
.cta-band-section { padding: 90px 0; background: var(--bg-2); }
.cta-band-section .container { max-width: 1160px; }
.cta-band {
    background: var(--navy);
    border-radius: var(--radius-xl);
    padding: 72px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
    overflow: hidden;
}
/* Déco fond */
.cta-band::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.cta-band::after {
    content: '';
    position: absolute;
    bottom: -80px; left: 40%;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    pointer-events: none;
}
.cta-band-text h2 { font-family: var(--font-title); font-size: clamp(24px, 3vw, 38px); font-weight: 700; color: #fff; margin-bottom: 10px; line-height: 1.15; }
.cta-band-text h2 em { font-style: italic; font-weight: 400; color: var(--gold-light); }
.cta-band-text p { font-size: 15px; color: rgba(255,255,255,0.55); font-weight: 400; }
.cta-band-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer { background: #060D1A; }
.footer-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 80px 28px 52px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 44px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
    font-family: var(--font-title);
    font-size: 20px; font-weight: 700;
    color: #fff;
    display: inline-flex; align-items: center;
    margin-bottom: 14px;
    text-decoration: none;
    transition: opacity var(--transition);
}
.footer-logo:hover { opacity: 0.8; }
.footer-logo span { color: var(--gold-light); }
.footer-logo-img { height: 36px; width: auto; max-width: 150px; object-fit: contain; display: block; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.32); line-height: 1.78; font-weight: 400; max-width: 260px; margin-bottom: 22px; }
.footer-contact-quick { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-quick a { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color var(--transition); }
.footer-contact-quick a:hover { color: var(--gold-light); }
.footer-contact-quick a svg { stroke: currentColor; flex-shrink: 0; }
.footer-col-title { font-size: 10.5px; font-weight: 600; color: rgba(255,255,255,0.35); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.42); text-decoration: none; font-weight: 400; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { background: #040A14; }
.footer-bottom-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.22); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.22); text-decoration: none; transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.5); }
.footer-address { font-size: 11px; color: rgba(255,255,255,0.18); }

/* ══════════════════════════════════════════
   PAGES INTÉRIEURES
══════════════════════════════════════════ */
.page-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #060D1A 0%, #0B1F3A 100%);
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: center;
}
.page-hero--sm { min-height: 200px; padding: 120px 0 60px; }
.page-hero-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,0.1) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(11,31,58,0.3) 0%, transparent 55%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.page-breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color var(--transition); }
.page-breadcrumb a:hover { color: var(--gold-light); }
.page-breadcrumb span { color: rgba(255,255,255,0.22); }
.page-hero-title { font-family: var(--font-title); font-size: clamp(30px, 5vw, 50px); font-weight: 700; color: #fff; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 14px; }
.page-hero-title em { font-style: italic; color: var(--gold-light); }
.page-hero-desc { font-size: 16px; color: rgba(255,255,255,0.55); font-weight: 400; max-width: 520px; line-height: 1.75; }

.inner-section { padding: 80px 0; }
.inner-section .container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.bg-light-section { background: var(--bg-2); }
.text-center-section { text-align: center; margin-bottom: 56px; }
.text-center-section .section-tag { justify-content: center; }
.inner-cta-section { padding: 0 0 80px; }
.inner-cta-section .container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

.two-col-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

/* ── Formulaires ── */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 500; color: var(--text-2); }
.form-group input, .form-group select, .form-group textarea {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--text);
    background: #fff;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(11,31,58,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-hint { display: block; font-size: 11px; color: var(--text-3); margin-top: 2px; }

.alert { display: flex; align-items: flex-start; gap: 16px; padding: 18px 22px; border-radius: var(--radius-md); margin-bottom: 32px; font-size: 14px; line-height: 1.6; }
.alert svg { flex-shrink: 0; margin-top: 2px; }
.alert strong { display: block; font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.alert p { margin: 0; }
.alert-success { background: #EFF9F5; border: 1px solid rgba(5,150,105,0.25); color: #047857; }
.alert-success svg { stroke: #047857; }
.alert-error { background: #FEF2F2; border: 1px solid rgba(220,38,38,0.25); color: #B91C1C; }
.alert-error svg { stroke: #B91C1C; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .profils-grid  { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .offres-grid   { grid-template-columns: repeat(2, 1fr); }
    .impact-grid   { grid-template-columns: repeat(2, 1fr); }
    .cartes-showcase { grid-template-columns: 1fr; max-width: 440px; margin: 56px auto 0; }
    .why-grid      { grid-template-columns: 1fr; }
    .temoignages-grid { grid-template-columns: repeat(2, 1fr); }
    .faq-layout    { grid-template-columns: 1fr; gap: 48px; }
    .footer-inner  { grid-template-columns: 1fr 1fr 1fr; gap: 28px; padding: 60px 20px 40px; }
    .cta-band      { padding: 56px 48px; }
    .espace-client-inner { grid-template-columns: 1fr; gap: 56px; }
    .ec-mockup-col { order: -1; }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .nav-burger { display: flex; }
    .nav-wrapper { width: calc(100% - 28px); }

    .drawer-overlay { display: block; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 890; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
    .drawer-overlay.active { opacity: 1; pointer-events: auto; }
    .drawer {
        display: flex; position: fixed;
        top: 0; right: 0; bottom: 0;
        width: 290px; max-width: 88vw;
        background: #fff;
        z-index: 900;
        flex-direction: column;
        transform: translateX(100%);
        transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
        box-shadow: -4px 0 24px rgba(0,0,0,0.12);
    }
    .drawer.open { transform: translateX(0); }
    .drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--border); flex-shrink: 0; }
    .drawer-brand { font-family: var(--font-title); font-size: 16px; font-weight: 700; color: var(--text); text-decoration: none; }
    .drawer-brand span { color: var(--gold); }
    .drawer-close-btn { width: 32px; height: 32px; border-radius: 50%; background: var(--slate-pale); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
    .drawer-close-btn:hover { background: var(--border); }
    .drawer-close-btn svg { stroke: var(--navy); }
    .drawer-nav { flex: 1; overflow-y: auto; display: flex; flex-direction: column; padding: 8px 0; }
    .drawer-link { display: block; padding: 14px 20px; font-size: 15px; font-weight: 500; color: var(--text); text-decoration: none; border-bottom: 1px solid var(--border); transition: color var(--transition), background var(--transition); }
    .drawer-link:hover, .drawer-link.active { color: var(--navy); background: var(--slate-pale); }
    .drawer-group { border-bottom: 1px solid var(--border); }
    .drawer-group-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; font-size: 15px; font-weight: 500; color: var(--text); background: transparent; border: none; cursor: pointer; font-family: var(--font-body); text-align: left; transition: color var(--transition); }
    .drawer-group-btn:hover { color: var(--navy); }
    .drawer-arrow { stroke: currentColor; flex-shrink: 0; transition: transform 0.22s ease; }
    .drawer-group.open .drawer-arrow { transform: rotate(180deg); }
    .drawer-group.open .drawer-group-btn { color: var(--navy); }
    .drawer-sub { display: none; flex-direction: column; background: var(--bg-2); padding: 4px 0 8px; }
    .drawer-group.open .drawer-sub { display: flex; }
    .drawer-sub a { display: block; padding: 9px 20px 9px 32px; font-size: 13px; color: var(--text-3); text-decoration: none; transition: color var(--transition), background var(--transition); }
    .drawer-sub a:hover { color: var(--navy); background: var(--slate-pale); }
    .drawer-cta { display: flex; flex-direction: column; gap: 10px; padding: 16px 20px; border-top: 2px solid var(--border); flex-shrink: 0; }
    .drawer-cta .btn-ghost-nav, .drawer-cta .btn-nav-primary { width: 100%; display: flex; align-items: center; justify-content: center; padding: 12px; font-size: 14px; border-radius: var(--radius-pill); }

    .profils-grid  { grid-template-columns: repeat(2, 1fr); }
    .profil-card   { height: 320px; }
    .services-grid { grid-template-columns: 1fr; }
    .offres-grid   { grid-template-columns: 1fr; }
    .impact-grid   { grid-template-columns: 1fr 1fr; }
    .temoignages-grid { grid-template-columns: 1fr; }
    .cta-band { flex-direction: column; text-align: center; padding: 44px 28px; gap: 24px; }
    .cta-band-actions { justify-content: center; flex-wrap: wrap; }
    .footer-inner  { grid-template-columns: 1fr !important; gap: 28px !important; padding: 44px 20px 32px !important; }
    .footer-bottom-inner { flex-direction: column; text-align: center; gap: 10px; }
    .hero-content  { padding: 110px 20px 78px; }
    .hero-trust    { gap: 16px; }
    .hero-trust-sep { display: none; }
    .stats-bar-inner { flex-wrap: wrap; }
    .stat-item { min-width: 40%; padding: 28px 12px; }
    .two-col-grid  { grid-template-columns: 1fr; gap: 48px; }
    .page-hero     { padding: 120px 20px 60px; }
}

@media (max-width: 480px) {
    .hero-ctas     { flex-direction: column; }
    .hero-ctas .btn { width: 100%; justify-content: center; }
    .footer-legal  { flex-direction: column; gap: 8px; }
    .profils-grid  { grid-template-columns: 1fr; }
    .profil-card   { height: 300px; }
    .impact-grid   { grid-template-columns: 1fr; }
    .cta-band-actions { flex-direction: column; }
    .cta-band-actions .btn { width: 100%; justify-content: center; }
    .cartes-showcase { max-width: 100%; }
}

/* ── Connexion ── */
.login-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1000px; margin: 0 auto; }
.login-features { list-style: none; display: flex; flex-direction: column; gap: 20px; margin: 32px 0 36px; }
.login-features li { display: flex; align-items: flex-start; gap: 14px; }
.login-feat-icon { width: 40px; height: 40px; background: var(--slate-pale); border: 1px solid var(--border); border-radius: 11px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.login-feat-icon svg { width: 18px; height: 18px; stroke: var(--navy); fill: none; stroke-width: 1.5; stroke-linecap: round; }
.login-features li strong { display: block; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.login-features li p { font-size: 13px; color: var(--text-3); margin: 0; }
.login-new-account { display: flex; align-items: center; gap: 16px; padding-top: 28px; border-top: 1px solid var(--border); }
.login-new-account p { font-size: 14px; color: var(--text-3); margin: 0; }
.login-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); }
.login-card h3 { font-family: var(--font-title); font-size: 26px; font-weight: 700; color: var(--text); margin-bottom: 28px; }
.login-form { display: flex; flex-direction: column; gap: 18px; }
.input-icon-wrap { position: relative; }
.input-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; stroke: var(--text-3); fill: none; stroke-width: 1.5; stroke-linecap: round; pointer-events: none; }
.input-icon-wrap input { width: 100%; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 44px 12px 40px; font-size: 14px; font-family: var(--font-body); color: var(--text); background: #fff; transition: border-color var(--transition), box-shadow var(--transition); outline: none; }
.input-icon-wrap input:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(11,31,58,0.1); }
.toggle-password { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; padding: 4px; display: flex; align-items: center; }
.toggle-password svg { width: 16px; height: 16px; stroke: var(--text-3); fill: none; stroke-width: 1.5; stroke-linecap: round; transition: stroke var(--transition); }
.toggle-password:hover svg { stroke: var(--navy); }
.login-security { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 20px; font-size: 12px; color: var(--text-3); }
.login-security svg { width: 13px; height: 13px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; flex-shrink: 0; }

@media (max-width: 768px) {
    .login-wrap { grid-template-columns: 1fr; gap: 40px; }
    .login-card { padding: 28px 22px; }
}

/* ── Inscription ── */
.inscription-wrap { max-width: 860px; margin: 0 auto; }
.type-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 720px; margin: 0 auto 48px; }
.type-card { background: #fff; border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; text-align: left; cursor: pointer; transition: all var(--transition); font-family: var(--font-body); }
.type-card:hover { border-color: var(--navy); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.type-card.selected { border-color: var(--navy); background: var(--slate-pale); box-shadow: 0 0 0 4px rgba(11,31,58,0.08); }
.type-icon { width: 52px; height: 52px; background: var(--slate-pale); border: 1px solid var(--border); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; transition: background var(--transition); }
.type-card.selected .type-icon { background: var(--navy); }
.type-card.selected .type-icon svg { stroke: #fff; }
.type-icon svg { width: 24px; height: 24px; stroke: var(--navy); fill: none; stroke-width: 1.5; stroke-linecap: round; }
.type-card h3 { font-family: var(--font-title); font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.type-card p { font-size: 14px; color: var(--text-3); line-height: 1.65; margin-bottom: 14px; }
.type-badge { display: inline-block; font-size: 11px; font-weight: 600; color: var(--navy); background: var(--slate-pale); padding: 4px 12px; border-radius: var(--radius-pill); }
.inscription-form { margin-top: 8px; }
.form-section { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 36px; margin-bottom: 20px; }
.form-section-last { background: var(--bg-2); }
.form-section-title { display: flex; align-items: center; gap: 12px; font-family: var(--font-title); font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.form-section-num { width: 28px; height: 28px; background: var(--navy); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-optional { font-size: 12px; color: var(--text-3); }
.btn-submit { width: 100%; justify-content: center; padding: 15px 32px; font-size: 15px; margin-top: 8px; }
.form-check { flex-direction: row; align-items: flex-start; gap: 10px; }
.form-check input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--navy); flex-shrink: 0; }
.form-check label { font-size: 13px; color: var(--text-3); line-height: 1.5; }
.form-check a { color: var(--navy); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

@media (max-width: 768px) {
    .type-grid { grid-template-columns: 1fr; }
    .form-grid-2, .form-grid-3, .form-row { grid-template-columns: 1fr; }
    .form-section { padding: 24px 20px; }
}

/* ── Confirmation ── */
.confirmation-page { min-height: 80vh; display: flex; align-items: center; padding: 80px 28px; background: var(--bg-2); }
.confirmation-box { max-width: 680px; margin: 0 auto; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 56px 48px; text-align: center; box-shadow: var(--shadow-xl); }
.confirmation-icon { width: 80px; height: 80px; background: var(--slate-pale); border: 2px solid rgba(11,31,58,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 28px; }
.confirmation-icon svg { stroke: var(--navy); }
.confirmation-box h1 { font-family: var(--font-title); font-size: clamp(28px, 4vw, 44px); font-weight: 400; color: var(--text); margin-bottom: 16px; line-height: 1.15; }
.confirmation-box h1 em { font-style: italic; color: var(--navy-mid); }
.confirmation-lead { font-size: 16px; color: var(--text-2); line-height: 1.75; margin-bottom: 24px; }
.confirmation-info { background: var(--slate-pale); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px 24px; margin-bottom: 36px; text-align: left; }
.confirmation-info p { font-size: 14px; color: var(--text-2); line-height: 1.75; margin-bottom: 8px; }
.confirmation-info p:last-child { margin-bottom: 0; }
.confirmation-steps { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.conf-step { display: flex; flex-direction: column; align-items: center; gap: 10px; max-width: 140px; }
.conf-step-num { width: 36px; height: 36px; background: var(--navy); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; }
.conf-step-text { font-size: 12.5px; color: var(--text-3); line-height: 1.5; text-align: center; }
.conf-step-arrow svg { stroke: var(--border); }
.confirmation-actions { display: flex; gap: 14px; justify-content: center; margin-bottom: 28px; flex-wrap: wrap; }
.confirmation-contact { font-size: 13px; color: var(--text-3); }
.confirmation-contact a { color: var(--navy); text-decoration: none; font-weight: 500; }
.confirmation-contact a:hover { text-decoration: underline; }

/* ── Auth ── */
.auth-box { max-width: 480px; margin: 0 auto; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 44px 40px; box-shadow: var(--shadow-lg); text-align: center; }
.auth-icon { width: 64px; height: 64px; background: var(--slate-pale); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.auth-icon svg { width: 28px; height: 28px; stroke: var(--navy); fill: none; stroke-width: 1.5; stroke-linecap: round; }
.auth-box h3 { font-family: var(--font-title); font-size: 24px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.auth-desc { font-size: 14px; color: var(--text-3); line-height: 1.75; margin-bottom: 28px; }
.auth-form { display: flex; flex-direction: column; gap: 18px; text-align: left; }
.pwd-strength { display: flex; align-items: center; gap: 10px; margin-top: -8px; }
.pwd-strength-bar { flex: 1; height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }
.pwd-strength-fill { height: 100%; border-radius: 2px; transition: width 0.3s ease, background 0.3s ease; width: 0%; }
.pwd-strength span { font-size: 12px; font-weight: 600; white-space: nowrap; min-width: 70px; }

/* Anti scroll horizontal */
html, body { overflow-x: hidden; max-width: 100%; }