/* ==========================================
   SIMA GROUPE - Stylesheet Principal
   Design Corporate Violet — Glassmorphism
   Police : DM Sans
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&display=swap');

:root {
    --primary:        #6400E6;
    --primary-dark:   #5000BB;
    --primary-deeper: #1E005A;
    --primary-light:  #8B33FF;
    --primary-pale:   #F3EEFF;
    --primary-muted:  rgba(100, 0, 230, 0.10);

    --accent-gold:       #C9A84C;
    --accent-gold-light: rgba(201, 168, 76, 0.15);

    --bg-white:      #ffffff;
    --bg-gray-light: #F6F4FB;
    --bg-gray:       #EDEAF5;
    --bg-dark:       #0A0418;

    --text-dark:  #0B0420;
    --text-gray:  #3D3560;
    --text-light: #6B5F90;
    --text-muted: #A09ABE;
    --text-white: #ffffff;

    --border-light:  #E5E0F3;
    --border-gray:   #D0C8E8;
    --border-glass:  rgba(255, 255, 255, 0.25);
    --border-violet: rgba(100, 0, 230, 0.18);

    --glass-bg:      rgba(255, 255, 255, 0.65);
    --glass-bg-dark: rgba(10, 4, 24, 0.55);
    --glass-blur:    blur(18px);
    --glass-border:  1px solid rgba(255, 255, 255, 0.3);
    --glass-shadow:  0 8px 32px rgba(100, 0, 230, 0.10);

    --shadow-sm:     0 1px 3px rgba(11, 4, 32, 0.06);
    --shadow-md:     0 4px 16px rgba(11, 4, 32, 0.08);
    --shadow-lg:     0 10px 30px rgba(11, 4, 32, 0.12);
    --shadow-xl:     0 20px 50px rgba(11, 4, 32, 0.16);
    --shadow-violet: 0 8px 24px rgba(100, 0, 230, 0.28);

    --font-main: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --spacing-xs:  8px;
    --spacing-sm:  16px;
    --spacing-md:  24px;
    --spacing-lg:  40px;
    --spacing-xl:  60px;
    --spacing-2xl: 80px;

    --radius-sm:   8px;
    --radius-md:   14px;
    --radius-lg:   20px;
    --radius-xl:   28px;
    --radius-pill: 50px;

    --transition-fast:   0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow:   0.5s ease;
}

/* === RESET === */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-main);
    background: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 80px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: var(--glass-border);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    flex-shrink: 0;
}

.logo-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 17px; font-weight: 800; color: white;
    box-shadow: var(--shadow-violet);
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
    white-space: nowrap;
}

.navbar-link:hover { color: var(--primary); }
.navbar-link.active { color: var(--primary); font-weight: 600; }

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 0; height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: width var(--transition-normal);
}
.navbar-link:hover::after,
.navbar-link.active::after { width: 100%; }

/* ==========================================
   DROPDOWN BANQUE
   ========================================== */
.nav-item-dropdown { position: relative; }

.dropdown-trigger {
    display: flex !important;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

/* Pas de soulignement sur le trigger */
.dropdown-trigger::after { display: none !important; }

.dropdown-arrow {
    font-size: 10px;
    color: var(--text-muted);
    transition: transform var(--transition-normal), color var(--transition-normal);
    pointer-events: none;
}

.nav-item-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
    color: var(--primary);
}

/* Panel dropdown */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 22px);
    left: 50%;
    transform: translateX(-50%);
    width: 580px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    box-shadow: 0 24px 64px rgba(10, 4, 24, 0.16), 0 4px 16px rgba(10, 4, 24, 0.06);
    padding: 16px;
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    z-index: 2000;
    min-width: 660px;
}

/* Flèche pointant vers le nav */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -7px; left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 13px; height: 13px;
    background: white;
    border-left: 1px solid var(--border-light);
    border-top: 1px solid var(--border-light);
    border-radius: 2px;
}

.nav-item-dropdown.open .dropdown-menu {
    display: grid;
}

/* Colonnes */
.dropdown-col {
    display: flex;
    flex-direction: column;
    padding: 6px 8px;
    border-right: 1px solid var(--border-light);
}
.dropdown-col:last-child { border-right: none; }

/* Titre catégorie cliquable */
.dropdown-cat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    padding: 8px 6px;
    border-radius: 8px;
    margin-bottom: 2px;
    transition: all 0.18s ease;
    white-space: nowrap;
}
.dropdown-cat i {
    color: var(--primary);
    font-size: 12px;
    width: 14px;
    flex-shrink: 0;
}
.dropdown-cat:hover {
    color: var(--primary);
    background: var(--primary-pale);
}

/* Sous-items */
.dropdown-sub {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: var(--text-gray);
    text-decoration: none;
    padding: 5px 6px 5px 26px;
    border-radius: 6px;
    transition: all 0.15s ease;
    white-space: nowrap;
    position: relative;
}
.dropdown-sub::before {
    content: '';
    position: absolute;
    left: 12px; top: 50%;
    transform: translateY(-50%);
    width: 4px; height: 4px;
    background: var(--text-muted);
    border-radius: 50%;
    transition: background 0.15s ease;
}
.dropdown-sub:hover {
    color: var(--primary);
    background: var(--primary-pale);
}
.dropdown-sub:hover::before { background: var(--primary); }

/* ==========================================
   BOUTONS NAVBAR CTA
   ========================================== */
.navbar-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-open-account {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    text-decoration: none;
    font-size: 13px; font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-violet);
    white-space: nowrap;
}
.btn-open-account:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(100, 0, 230, 0.38);
}

.btn-client-space {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 20px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    color: var(--text-gray);
    text-decoration: none;
    font-size: 13px; font-weight: 600;
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    white-space: nowrap;
}
.btn-client-space:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-pale);
}

/* Mobile toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    flex-shrink: 0;
}
.mobile-menu-toggle span {
    width: 25px; height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all var(--transition-normal);
    display: block;
}

/* ==========================================
   MOBILE NAV PANEL
   ========================================== */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 4, 24, 0.55);
    z-index: 998;
    backdrop-filter: blur(3px);
}
.mobile-nav-overlay.open { display: block; }

.mobile-nav-panel {
    position: fixed;
    top: 0; right: -100%;
    width: 85%; max-width: 340px;
    height: 100vh;
    background: white;
    z-index: 999;
    padding: 28px 20px;
    overflow-y: auto;
    transition: right 0.3s ease;
    box-shadow: -8px 0 32px rgba(10, 4, 24, 0.16);
}
.mobile-nav-panel.open { right: 0; }

.mobile-nav-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-light);
}

.mobile-nav-close {
    background: none; border: none;
    font-size: 20px; color: var(--text-gray);
    cursor: pointer; padding: 4px;
}

.mobile-nav-links {
    list-style: none;
    display: flex; flex-direction: column;
    gap: 2px; margin: 0; padding: 0;
}
.mobile-nav-links > li > a {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px; font-weight: 600;
    transition: all 0.15s ease;
}
.mobile-nav-links > li > a:hover {
    background: var(--primary-pale);
    color: var(--primary);
}

.mobile-nav-section-title {
    font-size: 11px; font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 14px 14px 6px;
}

.mobile-dropdown-section { padding: 0 4px; }

.mobile-dropdown-cat {
    font-size: 13px; font-weight: 700;
    color: var(--text-dark);
    padding: 10px 14px 4px;
}

.mobile-dropdown-sub {
    display: block;
    font-size: 13px;
    color: var(--text-gray);
    text-decoration: none;
    padding: 7px 14px 7px 28px;
    border-radius: 8px;
    transition: all 0.15s ease;
    position: relative;
}
.mobile-dropdown-sub::before {
    content: '';
    position: absolute;
    left: 16px; top: 50%;
    transform: translateY(-50%);
    width: 4px; height: 4px;
    background: var(--text-muted);
    border-radius: 50%;
}
.mobile-dropdown-sub:hover {
    color: var(--primary);
    background: var(--primary-pale);
}

.mobile-nav-cta {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
    display: flex; flex-direction: column;
    gap: 10px;
}
.mobile-nav-cta .btn-open-account,
.mobile-nav-cta .btn-client-space {
    justify-content: center;
    width: 100%;
}

/* ==========================================
   HERO
   ========================================== */
.hero-section {
    min-height: 90vh;
    display: flex; align-items: center;
    padding: 140px 40px 80px;
    background:
        radial-gradient(ellipse 60% 50% at 80% 40%, rgba(100,0,230,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 10% 70%, rgba(139,51,255,0.05) 0%, transparent 60%),
        var(--bg-white);
}

.hero-container {
    max-width: 1400px; margin: 0 auto; width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px; align-items: center;
}

.hero-content { animation: fadeInUp 0.8s ease-out; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 18px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: var(--radius-pill);
    font-size: 13px; color: var(--primary); font-weight: 600;
    margin-bottom: 28px;
    box-shadow: var(--glass-shadow);
}
.hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 58px; font-weight: 800;
    line-height: 1.12; margin-bottom: 25px;
    letter-spacing: -2px; color: var(--text-dark);
}
.hero-title .highlight { color: var(--primary); }

.hero-description {
    font-size: 19px; color: var(--text-gray);
    margin-bottom: 40px; line-height: 1.75;
    max-width: 560px; font-weight: 400;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 50px; }

.btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white; text-decoration: none;
    font-size: 15px; font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-violet);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(100,0,230,0.40);
}

.btn-secondary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 32px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    color: var(--text-gray); text-decoration: none;
    font-size: 15px; font-weight: 600;
    border: var(--glass-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-pale);
    transform: translateY(-2px);
}

.hero-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.stat-item { text-align: left; }
.stat-number {
    font-size: 34px; font-weight: 800;
    color: var(--primary); margin-bottom: 4px; letter-spacing: -1.5px;
}
.stat-label { font-size: 13px; color: var(--text-light); font-weight: 500; }

.hero-visual { position: relative; animation: fadeInRight 0.8s ease-out; }
.hero-image-wrapper {
    position: relative; border-radius: var(--radius-xl);
    overflow: hidden; box-shadow: var(--shadow-xl);
}

/* ==========================================
   SECTIONS GÉNÉRALES
   ========================================== */
.section { padding: 100px 40px; }
.section-alt { background: var(--bg-gray-light); }

.section-container { max-width: 1400px; margin: 0 auto; }

.section-header {
    text-align: center; margin-bottom: 70px;
    max-width: 800px; margin-left: auto; margin-right: auto;
}

.section-badge {
    display: inline-block;
    padding: 7px 18px;
    background: var(--primary-muted);
    border-radius: var(--radius-pill);
    font-size: 12px; color: var(--primary); font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase; letter-spacing: 1px;
}

.section-title {
    font-size: 46px; font-weight: 800;
    margin-bottom: 18px; letter-spacing: -1.5px;
    color: var(--text-dark);
}

.section-description {
    font-size: 18px; color: var(--text-gray);
    line-height: 1.8; font-weight: 400;
}

/* ==========================================
   ABOUT
   ========================================== */
.about-content {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.about-text h3 { font-size: 30px; font-weight: 700; margin-bottom: 18px; color: var(--text-dark); }
.about-text p  { font-size: 17px; color: var(--text-gray); line-height: 1.8; margin-bottom: 18px; }

.about-features { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 36px; }
.about-feature  { display: flex; align-items: flex-start; gap: 14px; }

.about-feature-icon {
    width: 48px; height: 48px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 20px; flex-shrink: 0;
    box-shadow: var(--glass-shadow);
    transition: all var(--transition-normal);
}
.about-feature:hover .about-feature-icon {
    background: var(--primary); color: white;
    border-color: transparent; box-shadow: var(--shadow-violet);
}
.about-feature-text h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; color: var(--text-dark); }
.about-feature-text p  { font-size: 13px; color: var(--text-light); line-height: 1.6; margin: 0; }
.about-visual { position: relative; }
.about-image  { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* ==========================================
   FAQ
   ========================================== */
.faq-container { max-width: 900px; margin: 0 auto; }

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: var(--radius-lg);
    margin-bottom: 16px; overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}
.faq-item:hover { border-color: var(--border-violet); box-shadow: var(--glass-shadow); }

.faq-question {
    padding: 24px 28px;
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer;
    transition: background var(--transition-fast);
}
.faq-question:hover { background: var(--primary-pale); }
.faq-question h3 { font-size: 17px; font-weight: 600; color: var(--text-dark); margin: 0; }

.faq-icon {
    width: 30px; height: 30px;
    background: var(--primary-muted);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 17px;
    transition: all var(--transition-normal); flex-shrink: 0;
}
.faq-item.active .faq-icon { background: var(--primary); color: white; transform: rotate(180deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--transition-slow); }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer-content { padding: 0 28px 24px; color: var(--text-gray); line-height: 1.8; font-size: 15px; }

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--bg-gray-light);
    border-top: 1px solid var(--border-light);
    padding: 80px 40px 30px;
}
.footer-container { max-width: 1400px; margin: 0 auto; }

.footer-main {
    display: grid; grid-template-columns: 1.5fr 2fr;
    gap: 80px; margin-bottom: 60px;
}
.footer-brand { max-width: 400px; }
.footer-logo {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 18px;
    font-size: 22px; font-weight: 700; color: var(--text-dark);
}
.footer-tagline { color: var(--text-gray); font-size: 14px; line-height: 1.75; margin-bottom: 28px; }
.footer-social  { display: flex; gap: 12px; }

.social-link {
    width: 38px; height: 38px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-gray); text-decoration: none;
    transition: all var(--transition-normal); box-shadow: var(--shadow-sm);
}
.social-link:hover {
    background: var(--primary); border-color: var(--primary);
    color: white; transform: translateY(-3px); box-shadow: var(--shadow-violet);
}

.footer-links { display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; }
.footer-column h4 {
    color: var(--text-dark); font-size: 14px; font-weight: 700;
    margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.8px;
}
.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 10px; }
.footer-column ul li a { color: var(--text-gray); text-decoration: none; font-size: 14px; transition: color var(--transition-fast); }
.footer-column ul li a:hover { color: var(--primary); }

.footer-contact {
    display: flex; justify-content: center; gap: 50px; flex-wrap: wrap;
    padding: 36px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 28px;
}
.contact-item { display: flex; align-items: center; gap: 10px; color: var(--text-gray); font-size: 14px; }
.contact-item i { color: var(--primary); font-size: 17px; }
.contact-item a { color: var(--text-gray); text-decoration: none; transition: color var(--transition-fast); }
.contact-item a:hover { color: var(--primary); }

.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 20px; color: var(--text-light); font-size: 13px;
}
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal a { color: var(--text-light); text-decoration: none; transition: color var(--transition-fast); }
.footer-legal a:hover { color: var(--primary); }

/* ==========================================
   BENTO GRID
   ========================================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 18px; margin-top: 60px;
}
.bento-item {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    display: flex; flex-direction: column; justify-content: space-between;
    overflow: hidden; position: relative;
}
.bento-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); border-color: var(--border-violet); }

.bento-item.large  { grid-column: span 2; grid-row: span 2; }
.bento-item.medium { grid-column: span 2; }
.bento-item.tall   { grid-row: span 2; }
.bento-item.wide   { grid-column: span 2; }

.bento-icon {
    width: 56px; height: 56px;
    background: var(--primary-muted);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: var(--primary);
    margin-bottom: 18px;
    transition: all var(--transition-normal);
}
.bento-item:hover .bento-icon {
    background: var(--primary); color: white;
    transform: scale(1.1) rotate(4deg); box-shadow: var(--shadow-violet);
}
.bento-content h3 { font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; letter-spacing: -0.5px; }
.bento-content p  { font-size: 14px; color: var(--text-gray); line-height: 1.7; }
.bento-number {
    position: absolute; top: 18px; right: 18px;
    font-size: 44px; font-weight: 800;
    color: var(--primary); opacity: 0.06; letter-spacing: -2px;
}

.bento-item.accent {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-color: transparent;
}
.bento-item.accent .bento-icon { background: rgba(255,255,255,0.18); color: white; }
.bento-item.accent h3,
.bento-item.accent p { color: white; }
.bento-item.accent .bento-number { color: white; opacity: 0.08; }
.bento-item.accent:hover .bento-icon { background: white; color: var(--primary); box-shadow: var(--shadow-md); }

/* ==========================================
   ESPACE CLIENT PREVIEW
   ========================================== */
.client-space-preview {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 60px; box-shadow: var(--shadow-lg);
    position: relative; overflow: hidden;
}
.client-space-preview::before {
    content: '';
    position: absolute; top: -40%; right: -8%;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(100,0,230,0.07) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none;
}
.preview-content { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.preview-text h2  { font-size: 40px; font-weight: 800; margin-bottom: 18px; color: var(--text-dark); letter-spacing: -1.5px; }
.preview-text p   { font-size: 17px; color: var(--text-gray); line-height: 1.8; margin-bottom: 28px; }

.preview-features { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-bottom: 28px; }
.preview-feature  { display: flex; align-items: center; gap: 10px; }
.preview-feature i    { color: var(--primary); font-size: 18px; }
.preview-feature span { font-size: 14px; color: var(--text-dark); font-weight: 600; }

.preview-mockup { position: relative; z-index: 1; }
.mockup-browser {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(10,4,24,0.14);
    overflow: hidden;
}
.browser-header {
    background: var(--bg-gray-light);
    padding: 12px 18px;
    display: flex; align-items: center; gap: 7px;
    border-bottom: 1px solid var(--border-light);
}
.browser-dot { width: 11px; height: 11px; border-radius: 50%; }
.browser-dot.red    { background: #ff5f56; }
.browser-dot.yellow { background: #ffbd2e; }
.browser-dot.green  { background: #27c93f; }
.browser-content {
    padding: 28px; min-height: 400px;
    background: radial-gradient(ellipse 50% 40% at 80% 20%, rgba(100,0,230,0.04) 0%, transparent 60%), var(--bg-white);
}

.dashboard-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: var(--radius-md);
    padding: 18px; margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    display: flex; justify-content: space-between; align-items: center;
    transition: all var(--transition-fast);
}
.dashboard-card:hover { box-shadow: var(--glass-shadow); transform: translateX(4px); border-color: var(--border-violet); }
.card-info h4    { font-size: 13px; color: var(--text-light); margin-bottom: 4px; font-weight: 500; }
.card-amount     { font-size: 22px; font-weight: 700; color: var(--text-dark); letter-spacing: -0.8px; }
.card-trend      { color: var(--primary); font-size: 13px; font-weight: 600; }
.card-trend.up::before { content: '↗ '; }

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp   { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInRight{ from { opacity:0; transform:translateX(30px); } to { opacity:1; transform:translateX(0); } }
@keyframes fadeInLeft { from { opacity:0; transform:translateX(-30px);} to { opacity:1; transform:translateX(0); } }
@keyframes pulse { 0%,100%{ opacity:1; transform:scale(1); } 50%{ opacity:0.5; transform:scale(0.8); } }

/* ==========================================
   RESPONSIVE
   ========================================== */

/* --- Tablette large --- */
@media (max-width: 1200px) {
    .navbar-menu { gap: 20px; }
    .bento-grid {
        grid-template-columns: repeat(2,1fr);
        grid-template-rows: auto;
    }
    .bento-item.large { grid-column: span 2; grid-row: span 1; min-height: 220px; }
    .bento-item.tall  { grid-column: span 1; grid-row: span 1; }
    .bento-item.medium,
    .bento-item.wide  { grid-column: span 2; }
    .dropdown-menu { min-width: 580px; width: auto; }
}

/* --- Tablette --- */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; gap: 60px; }
    .hero-title { font-size: 46px; }
    .about-content { grid-template-columns: 1fr; gap: 50px; }
    .footer-main   { grid-template-columns: 1fr; gap: 50px; }
    .footer-links  { grid-template-columns: repeat(2,1fr); }
    .preview-content { grid-template-columns: 1fr; }
}

/* --- Mobile --- */
@media (max-width: 768px) {
    /* Cacher menu desktop */
    .navbar-menu { display: none !important; }
    .navbar-cta  { display: none !important; }
    .mobile-menu-toggle { display: flex; }
    .navbar-container { padding: 0 20px; }

    /* Hero */
    .hero-section { padding: 120px 20px 60px; }
    .hero-title { font-size: 32px; letter-spacing: -1px; }
    .hero-description { font-size: 16px; }
    .hero-cta { flex-direction: column; width: 100%; }
    .btn-primary,
    .btn-secondary { width: 100%; justify-content: center; }
    .hero-stats { grid-template-columns: 1fr; gap: 18px; }

    /* Sections */
    .section { padding: 60px 20px; }
    .section-title { font-size: 28px; letter-spacing: -0.8px; }
    .section-description { font-size: 16px; }

    /* About */
    .about-features { grid-template-columns: 1fr; }

    /* Bento — empilement vertical */
    .bento-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        margin-top: 32px !important;
    }
    .bento-item {
        width: 100% !important;
        grid-column: unset !important;
        grid-row: unset !important;
        min-height: auto !important;
        padding: 24px 20px !important;
    }
    .bento-item.large { min-height: 200px !important; }
    .bento-content h3 { font-size: 16px !important; }
    .bento-content p  { font-size: 13px !important; }
    .bento-icon { width: 44px !important; height: 44px !important; font-size: 18px !important; margin-bottom: 12px !important; }
    .bento-number { font-size: 34px !important; }

    /* Preview */
    .preview-features { grid-template-columns: 1fr; }
    .browser-content  { padding: 18px; min-height: 260px; }
    .client-space-preview { padding: 28px 18px; }

    /* Footer */
    .footer { padding: 60px 20px 24px; }
    .footer-main { gap: 40px; }
    .footer-links { grid-template-columns: repeat(2,1fr); gap: 28px; }
    .footer-contact { gap: 24px; padding: 24px 0; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-legal  { justify-content: center; }
}

/* --- Très petit mobile --- */
@media (max-width: 400px) {
    .hero-title { font-size: 27px; }
    .footer-links { grid-template-columns: 1fr; }
}