/* ============================================
   LANDING.CSS - VERSION FINALE CORRIGÉE ✅
   AlphaVault AI - Landing Page Responsive
   ✅ CORRECTIONS APPLIQUÉES :
   1-4. Corrections mobiles précédentes
   5. Footer mobile : uniquement Features + Company en 2 colonnes
   6. Solutions : "Built for Everyone" centré + cartes centrées (PC + Mobile)
   7. Pricing : "Simple, Transparent Pricing" centré (PC + Mobile)
   ============================================ */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   🎨 POLICES - SATOSHI EXCLUSIVE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

body.landing-page,
.landing-page * {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

/* Exception Font Awesome */
body.landing-page i[class*="fa-"],
body.landing-page .fa,
body.landing-page .fas,
body.landing-page .far,
body.landing-page .fab,
.landing-page i[class*="fa-"],
.landing-page .fa,
.landing-page .fas,
.landing-page .far,
.landing-page .fab {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
    font-style: normal !important;
    font-weight: 900 !important;
}

body.landing-page .fab,
.landing-page .fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   🎯 VARIABLES (SANS 3D)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

:root {
    /* Animations simples */
    --anim-fast: 0.2s;
    --anim-medium: 0.3s;
    --anim-slow: 0.4s;
    
    /* Ombres simples */
    --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-intense: 0 12px 32px rgba(37, 99, 235, 0.2);
}

body.dark-mode {
    --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   🧹 RESET & BASE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   🧭 NAVIGATION - GLASSMORPHISM (SANS 3D)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all var(--anim-medium);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

body.dark-mode .landing-nav {
    background: rgba(15, 23, 42, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.landing-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

body.dark-mode .landing-nav.scrolled {
    background: rgba(15, 23, 42, 0.95);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   🏷 BRAND LOGO
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform var(--anim-fast);
}

.nav-brand:hover {
    transform: translateY(-2px);
}

.brand-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary, #1e293b);
    letter-spacing: -0.02em;
}

.brand-text strong {
    font-weight: 900;
    background: linear-gradient(135deg, #2563eb 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-logo svg {
    width: 32px;
    height: 32px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   📍 NAV MENU - DESKTOP
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary, #64748b);
    text-decoration: none;
    transition: all var(--anim-fast);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #2563eb 0%, #8b5cf6 100%);
    transition: width var(--anim-medium);
}

.nav-link:hover {
    color: #2563eb;
}

.nav-link:hover::after {
    width: 100%;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   🎯 NAV CTA BUTTONS - DESKTOP
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-text {
    background: transparent;
    border: none;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary, #64748b);
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all var(--anim-fast);
}

.btn-text:hover {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
}

.btn-primary-nav {
    background: linear-gradient(135deg, #2563eb 0%, #8b5cf6 100%);
    color: white;
    border: none;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--anim-medium);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-primary-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   🍔 MOBILE MENU BUTTON
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10001;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary, #1e293b);
    border-radius: 2px;
    transition: all var(--anim-medium);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   👤 USER PROFILE MENU - DESKTOP
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.user-profile-menu {
    position: relative;
}

.user-profile-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: var(--background-primary, #ffffff);
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--anim-medium);
}

.user-profile-button:hover {
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.user-avatar-wrapper {
    position: relative;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #2563eb;
}

.user-status-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: #10b981;
    border: 2px solid white;
    border-radius: 50%;
}

.user-info-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.user-display-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary, #1e293b);
}

.user-plan-badge {
    font-size: 0.75rem;
    font-weight: 500;
    color: #2563eb;
    padding: 0.125rem 0.5rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 6px;
}

.user-dropdown-icon {
    font-size: 0.75rem;
    color: var(--text-secondary, #64748b);
    transition: transform var(--anim-medium);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   📋 USER DROPDOWN MENU - DESKTOP
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    min-width: 320px;
    background: var(--background-primary, #ffffff);
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 16px;
    box-shadow: var(--shadow-card-hover);
    padding: 0.5rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transform-origin: top right;
    transition: all var(--anim-medium);
}

.user-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

body.dark-mode .user-dropdown-menu {
    background: var(--background-secondary, #1e293b);
    border-color: rgba(255, 255, 255, 0.1);
}

.dropdown-header {
    padding: 1.5rem 1rem 1rem 1rem;
    margin: -0.5rem -0.5rem 0.5rem -0.5rem;
    
    /* ✅ Dégradé avec effet de verre */
    background: linear-gradient(135deg, 
        rgba(96, 165, 250, 0.8) 0%, 
        rgba(167, 139, 250, 0.8) 100%
    );
    
    /* ✅ Effet glassmorphism */
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    
    border-radius: 16px 16px 0 0;
    border: none;
    
    /* ✅ Bordure lumineuse en haut */
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 8px 24px rgba(96, 165, 250, 0.2);
}

.dropdown-user-card img {
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.dropdown-plan-info {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

body.dark-mode .dropdown-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.dropdown-user-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.dropdown-user-card img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #2563eb;
}

.dropdown-user-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary, #1e293b);
    margin: 0 0 0.25rem 0;
}

body.dark-mode .dropdown-user-text h4 {
    color: #f1f5f9;
}

.dropdown-user-text p {
    font-size: 0.875rem;
    color: var(--text-secondary, #64748b);
    margin: 0;
}

/* .dropdown-plan-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #2563eb;
} */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   👤 DROPDOWN PLAN INFO - STYLE AMÉLIORÉ
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.dropdown-plan-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    
    /* ✅ Dégradé bleu clair → violet clair */
    background: linear-gradient(135deg, 
        rgba(147, 197, 253, 0.2) 0%,    /* Bleu clair (#93c5fd) */
        rgba(196, 181, 253, 0.2) 100%   /* Violet clair (#c4b5fd) */
    );
    
    /* ✅ Bordure subtile */
    border: 1px solid rgba(147, 197, 253, 0.3);
    
    /* ✅ Coins arrondis */
    border-radius: 12px;
    
    /* Texte */
    font-size: 0.875rem;
    font-weight: 600;
    color: #3b82f6; /* Bleu légèrement plus clair */
    
    /* Transition */
    transition: all 0.3s ease;
    
    /* Ombre subtile */
    box-shadow: 0 2px 8px rgba(147, 197, 253, 0.1);
}

/* ✅ Effet hover */
.dropdown-plan-info:hover {
    background: linear-gradient(135deg, 
        rgba(147, 197, 253, 0.3) 0%, 
        rgba(196, 181, 253, 0.3) 100%
    );
    border-color: rgba(147, 197, 253, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(147, 197, 253, 0.2);
}

/* ✅ Icône dans le badge */
.dropdown-plan-info i {
    color: #60a5fa; /* Bleu clair */
    font-size: 1rem;
}

/* ✅ Dark mode */
body.dark-mode .dropdown-plan-info {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.15) 0%, 
        rgba(139, 92, 246, 0.15) 100%
    );
    border-color: rgba(59, 130, 246, 0.3);
    color: #93c5fd;
}

body.dark-mode .dropdown-plan-info:hover {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.25) 0%, 
        rgba(139, 92, 246, 0.25) 100%
    );
    border-color: rgba(59, 130, 246, 0.5);
}

.dropdown-divider {
    height: 1px;
    background: var(--border-color, #e2e8f0);
    margin: 0.5rem 0;
}

body.dark-mode .dropdown-divider {
    background: rgba(255, 255, 255, 0.1);
}

.dropdown-section {
    padding: 0.25rem 0;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-primary, #1e293b);
    transition: all var(--anim-fast);
    cursor: pointer;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    font-family: inherit;
    font-size: 0.9375rem;
}

body.dark-mode .dropdown-link {
    color: #f1f5f9;
}

.dropdown-link:hover {
    background: rgba(37, 99, 235, 0.1);
}

.dropdown-link-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(37, 99, 235, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    flex-shrink: 0;
}

.dropdown-link:hover .dropdown-link-icon {
    background: #2563eb;
    color: white;
}

.dropdown-link-text {
    flex: 1;
}

.dropdown-link-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary, #1e293b);
    margin-bottom: 0.125rem;
    display: block;
}

body.dark-mode .dropdown-link-title {
    color: #f1f5f9;
}

.dropdown-link-desc {
    font-size: 0.8125rem;
    color: var(--text-secondary, #64748b);
    display: block;
}

.dropdown-link-danger {
    color: #ef4444;
}

.dropdown-link-danger .dropdown-link-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.dropdown-link-danger:hover .dropdown-link-icon {
    background: #ef4444;
    color: white;
}

.dropdown-link-danger .dropdown-link-title {
    color: #ef4444;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   🎯 HERO SECTION (SANS 3D)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
    background: linear-gradient(180deg, var(--background-primary, #ffffff) 0%, var(--background-secondary, #f8fafc) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #2563eb 0%, #8b5cf6 100%);
    top: -300px;
    right: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    bottom: -200px;
    left: -150px;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(40px, -40px); }
    50% { transform: translate(-30px, 30px); }
    75% { transform: translate(20px, -20px); }
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(var(--border-color, #e2e8f0) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-color, #e2e8f0) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.announcement-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--background-primary, #ffffff);
    border: 1px solid var(--border-color, #e2e8f0);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary, #64748b);
    margin-bottom: 2rem;
    cursor: pointer;
    transition: all var(--anim-medium);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.announcement-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
    border-color: #2563eb;
}

.badge-icon {
    font-size: 1rem;
}

.badge-text {
    font-size: 0.875rem;
}

.hero-headline {
    font-size: clamp(2.5rem, 6vw, 3.75rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-primary, #1e293b);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.gradient-text-hero {
    background: linear-gradient(135deg, #2563eb 0%, #8b5cf6 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-subheadline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: var(--text-secondary, #64748b);
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #2563eb 0%, #8b5cf6 100%);
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--anim-medium);
    box-shadow: var(--shadow-intense);
}

.btn-hero-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.4);
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color, #e2e8f0);
}

.proof-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.proof-number {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2563eb 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.proof-label {
    font-size: 0.875rem;
    color: var(--text-secondary, #64748b);
}

.proof-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color, #e2e8f0);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   📊 DASHBOARD MOCKUP (SANS 3D)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.hero-visual {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.dashboard-mockup {
    background: var(--background-primary, #ffffff);
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    border: 1px solid var(--border-color, #e2e8f0);
    transition: all var(--anim-slow);
}

.dashboard-mockup:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

.browser-chrome {
    background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color, #e2e8f0);
}

.chrome-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.chrome-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary, #64748b);
}

.chrome-actions {
    color: var(--text-secondary, #64748b);
}

.mockup-content {
    padding: 1.5rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.mockup-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-card {
    background: var(--background-primary, #ffffff);
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 12px;
    padding: 1rem;
    transition: all var(--anim-medium);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.stat-card.stat-primary {
    background: linear-gradient(135deg, #2563eb 0%, #8b5cf6 100%);
    color: white;
    border: none;
}

.stat-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    color: inherit;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: inherit;
}

.stat-change {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.stat-change.positive {
    color: #10b981;
}

.stat-badge {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 6px;
}

.stat-badge.moderate {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.mockup-chart-area {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.chart-header-stock {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.stock-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stock-symbol {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary, #1e293b);
}

.stock-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary, #1e293b);
}

.stock-change {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.stock-change.positive {
    color: #10b981;
}

.stock-timeframes {
    display: flex;
    gap: 0.5rem;
}

.tf-btn {
    padding: 0.375rem 0.75rem;
    background: transparent;
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary, #64748b);
    cursor: pointer;
    transition: all var(--anim-fast);
}

.tf-btn:hover,
.tf-btn.active {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.chart-canvas-wrapper {
    height: 200px;
    position: relative;
}

.mockup-insights {
    background: rgba(37, 99, 235, 0.05);
    border-radius: 12px;
    padding: 1rem;
}

.insight-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary, #1e293b);
    margin-bottom: 0.75rem;
}

.insight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.875rem;
    color: var(--text-secondary, #64748b);
}

.insight-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.insight-icon.success {
    background: #10b981;
    color: white;
}

.insight-icon.warning {
    background: #f59e0b;
    color: white;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ✨ SECTIONS COMMUNES (SANS 3D)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.features-section,
.solutions-section,
.tools-section,
.pricing-section,
.alphy-ai-section,
.demo-interactive,
.tech-infra-lux,
.cta-final {
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.features-section {
    background: linear-gradient(180deg, var(--background-primary, #ffffff) 0%, var(--background-secondary, #f8fafc) 100%);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--text-primary, #1e293b);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary, #64748b);
    line-height: 1.7;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ✅ CORRECTION 6: SOLUTIONS SECTION - CENTRAGE (PC + MOBILE)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ✅ Titre "Built for Everyone" centré */
.solutions-section .section-header {
    text-align: center !important;
}

.solutions-section .section-tag,
.solutions-section .section-title,
.solutions-section .section-description {
    text-align: center !important;
}

/* ✅ CORRECTION 7: PRICING SECTION - CENTRAGE (PC + MOBILE) */

/* ✅ Titre "Simple, Transparent Pricing" centré */
.pricing-section .section-header {
    text-align: center !important;
}

.pricing-section .section-tag,
.pricing-section .section-title,
.pricing-section .section-description {
    text-align: center !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   📦 CARDS GÉNÉRIQUES (SANS 3D)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.features-grid,
.solutions-grid,
.tools-grid-advanced {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card,
.solution-card,
.tool-card-advanced {
    background: var(--background-primary, #ffffff);
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 24px;
    padding: 2rem;
    transition: all var(--anim-slow);
    position: relative;
}

.feature-card::before,
.solution-card::before,
.tool-card-advanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2563eb 0%, #8b5cf6 100%);
    opacity: 0;
    transition: opacity var(--anim-fast);
    border-radius: 24px 24px 0 0;
}

.feature-card:hover,
.solution-card:hover,
.tool-card-advanced:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: #2563eb;
}

.feature-card:hover::before,
.solution-card:hover::before,
.tool-card-advanced:hover::before {
    opacity: 1;
}

.feature-icon,
.solution-icon-wrapper .solution-icon,
.tool-icon-advanced {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all var(--anim-medium);
}

.feature-card:hover .feature-icon,
.tool-card-advanced:hover .tool-icon-advanced {
    background: linear-gradient(135deg, #2563eb 0%, #8b5cf6 100%);
    color: white;
}

/* ✅ CORRECTION 6: Solutions - Icônes centrées */
.solution-icon-wrapper {
    display: flex;
    justify-content: center;
}

.solution-icon-wrapper .solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb 0%, #8b5cf6 100%);
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow-intense);
}

.feature-title,
.solution-card h3,
.tool-card-advanced h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary, #1e293b);
}

/* ✅ CORRECTION 6: Solutions - Titres et descriptions centrés */
.solution-card {
    text-align: center !important;
}

.solution-card h3,
.solution-card p {
    text-align: center !important;
}

.feature-description,
.solution-card p,
.tool-card-advanced p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary, #64748b);
    margin-bottom: 1.5rem;
}

.feature-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.feature-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--text-secondary, #64748b);
}

.feature-benefits i {
    color: #10b981;
    font-size: 1rem;
}

.feature-link,
.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
    transition: all var(--anim-fast);
}

.feature-link:hover i,
.solution-link:hover i {
    transform: translateX(4px);
}

.feature-highlight {
    background: linear-gradient(135deg, #2563eb 0%, #8b5cf6 100%);
    color: white;
    border: none;
}

.feature-highlight .feature-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.feature-highlight .feature-title,
.feature-highlight .feature-description,
.feature-highlight .feature-benefits li,
.feature-highlight .feature-link {
    color: white;
}

.feature-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   💰 PRICING SECTION (SANS 3D)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.pricing-section {
    background: var(--background-primary, #ffffff);
}

.pricing-grid-three {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-card {
    background: var(--background-primary, #ffffff);
    border: 2px solid var(--border-color, #e2e8f0);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all var(--anim-slow);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: #2563eb;
}

.pricing-card.featured {
    border-color: #2563eb;
    box-shadow: var(--shadow-card);
}

.pricing-card.platinum {
    border-color: #FFD700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 165, 0, 0.05) 100%);
}

.popular-badge,
.platinum-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    z-index: 10;
}

.popular-badge {
    background: linear-gradient(135deg, #2563eb 0%, #8b5cf6 100%);
    color: white;
    box-shadow: var(--shadow-intense);
}

.platinum-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.pricing-header {
    position: relative;
    padding-top: 30px;
    margin-bottom: 2rem;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary, #1e293b);
    margin: 0 0 0.5rem 0;
}

.pricing-header p {
    font-size: 1rem;
    color: var(--text-secondary, #64748b);
    margin: 0;
}

.pricing-header.centered {
    text-align: center;
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-primary, #1e293b);
    vertical-align: top;
}

.amount {
    font-size: 3.75rem;
    font-weight: 800;
    color: var(--text-primary, #1e293b);
    line-height: 1;
}

.period {
    font-size: 1.125rem;
    color: var(--text-secondary, #64748b);
    margin-left: 0.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--text-secondary, #64748b);
    min-height: 44px;
}

.pricing-features li.disabled {
    color: var(--text-tertiary, #94a3b8);
    opacity: 0.5;
}

.pricing-features i {
    font-size: 1.125rem;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.pricing-features .fa-check {
    color: #10b981;
}

.pricing-features .fa-times {
    color: #cbd5e1;
}

.pricing-section-divider {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    margin: 16px 0 8px 0;
    border-bottom: 2px solid rgba(37, 99, 235, 0.2);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2563eb;
    width: 100%;
}

.pricing-section-divider.disabled {
    color: #94a3b8;
    border-bottom-color: rgba(148, 163, 184, 0.2);
}

.pricing-section-divider i {
    font-size: 1rem;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.pricing-cta-wrapper {
    margin-top: auto;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-pricing {
    width: 100%;
    background: var(--background-primary, #ffffff);
    color: #2563eb;
    border: 2px solid #2563eb;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--anim-medium);
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-pricing:hover {
    background: rgba(37, 99, 235, 0.05);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.btn-pricing.featured {
    background: linear-gradient(135deg, #2563eb 0%, #8b5cf6 100%);
    color: white;
    border: none;
    box-shadow: var(--shadow-intense);
}

.btn-pricing.featured:hover {
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.4);
}

.btn-pricing.platinum {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    font-weight: 700;
    border: none;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.btn-pricing.platinum:hover {
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.5);
}

.pricing-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-secondary, #64748b);
    margin: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   🤖 ALPHY AI SECTION (SANS 3D)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.alphy-ai-section {
    background: linear-gradient(180deg, var(--background-primary, #ffffff) 0%, var(--background-secondary, #f8fafc) 100%);
}

.alphy-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.alphy-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary, #1e293b);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #2563eb 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.alphy-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary, #64748b);
    margin-bottom: 2.5rem;
}

.alphy-capabilities {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.capability-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--background-primary, #ffffff);
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 12px;
    transition: all var(--anim-fast);
}

.capability-item:hover {
    border-color: #2563eb;
    box-shadow: var(--shadow-card);
}

.capability-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2563eb 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.capability-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary, #1e293b);
    margin-bottom: 0.25rem;
}

.capability-text p {
    font-size: 0.875rem;
    color: var(--text-secondary, #64748b);
    margin: 0;
}

.btn-alphy-cta {
    background: linear-gradient(135deg, #2563eb 0%, #8b5cf6 100%);
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--anim-medium);
    box-shadow: var(--shadow-intense);
}

.btn-alphy-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.4);
}

.alphy-chat-container {
    background: var(--background-primary, #ffffff);
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    height: 600px;
    display: flex;
    flex-direction: column;
}

.chat-header {
    background: linear-gradient(135deg, #2563eb 0%, #8b5cf6 100%);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chat-avatar {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #2563eb;
}

.chat-header-text h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.status-online {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
}

.chat-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.message {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    animation: messageSlideIn 0.4s ease-out;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
}

.message-content {
    max-width: 80%;
    background: var(--background-primary, #ffffff);
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

.message-content p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-primary, #1e293b);
}

.user-message {
    flex-direction: row-reverse;
}

.user-message .message-content {
    background: linear-gradient(135deg, #2563eb 0%, #8b5cf6 100%);
    border: none;
    color: white;
}

.user-message .message-content p {
    color: white;
}

.ipo-suggestion {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ipo-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.ipo-symbol {
    font-weight: 700;
}

.ipo-score {
    font-size: 0.875rem;
}

.typing-indicator {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #64748b;
    animation: typing 1.4s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

.chat-input-area {
    padding: 1rem 1.5rem;
    background: var(--background-primary, #ffffff);
    border-top: 1px solid var(--border-color, #e2e8f0);
    display: flex;
    gap: 1rem;
}

.chat-input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 12px;
    font-size: 0.9375rem;
    color: var(--text-primary, #1e293b);
    outline: none;
    transition: all var(--anim-fast);
}

.chat-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.chat-send-btn {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563eb 0%, #8b5cf6 100%);
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--anim-fast);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.chat-send-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   🏗 TECHNOLOGY SECTION (SANS 3D)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.tech-infra-lux {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.tech-container.centered {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.tech-section-label {
    display: inline-block;
    padding: 8px 20px;
    margin-bottom: 12px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #2563eb;
    background: rgba(37, 99, 235, 0.12);
    border-radius: 30px;
    text-transform: uppercase;
    border: 1px solid rgba(37, 99, 235, 0.22);
}

.tech-title {
    font-size: 2.6rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.tech-subtitle {
    font-size: 1.15rem;
    color: #475569;
    max-width: 740px;
    margin: 0 auto 50px auto;
    line-height: 1.7;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.tech-card {
    width: 100%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid var(--border-color, #e2e8f0);
    transition: all var(--anim-slow);
    box-shadow: var(--shadow-card);
    position: relative;
}

.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: #2563eb;
}

.tech-logo,
.centered-logo {
    display: block;
    margin: 0 auto 24px auto;
    width: 80px;
    height: 80px;
    transition: all var(--anim-medium);
}

.tech-card:hover .tech-logo,
.tech-card:hover .centered-logo {
    transform: scale(1.1);
}

.tech-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-primary, #1e293b);
    letter-spacing: -0.01em;
}

.tech-card:hover .tech-card-title {
    color: #2563eb;
}

.tech-card-text {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.7;
}

.tech-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-points li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    font-size: 0.95rem;
    text-align: left;
    color: #1e293b;
    line-height: 1.6;
}

.tech-points li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 900;
    font-size: 1.2rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   🎨 DEMO SECTION (SANS 3D)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.demo-interactive {
    background: var(--text-primary, #1e293b);
    color: white;
}

.demo-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.demo-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: white !important;
}

.highlight-gradient {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.demo-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.demo-stats-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.demo-stat {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.demo-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #60a5fa;
}

.demo-stat-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: white;
}

.demo-stat-content p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.btn-demo-cta {
    background: white;
    color: #2563eb;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 1.125rem 2.5rem;
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--anim-medium);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.btn-demo-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.search-interface {
    background: var(--background-primary, #ffffff);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color, #e2e8f0);
}

.search-box-wrapper {
    padding: 1.5rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 1px solid var(--border-color, #e2e8f0);
}

.search-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--background-primary, #ffffff);
    border: 2px solid var(--border-color, #e2e8f0);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    transition: all var(--anim-medium);
}

.search-box:focus-within {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    color: var(--text-primary, #1e293b);
    background: transparent;
}

.search-results {
    padding: 1.5rem;
    background: var(--background-primary, #ffffff);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary, #64748b);
}

.results-time {
    color: #10b981;
}

.company-result-card {
    background: var(--background-primary, #ffffff);
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    transition: all var(--anim-medium);
    cursor: pointer;
}

.company-result-card:hover {
    border-color: #2563eb;
    box-shadow: var(--shadow-card);
}

.company-result-card.highlight {
    border-color: #2563eb;
    background: rgba(37, 99, 235, 0.02);
}

.company-result-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.company-avatar {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563eb 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.company-details {
    flex: 1;
}

.company-details h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary, #1e293b);
    margin-bottom: 0.25rem;
}

.company-details p {
    font-size: 0.875rem;
    color: var(--text-secondary, #64748b);
    margin: 0;
}

.relevancy-score {
    text-align: center;
}

.score-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.25rem;
}

.score-value {
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
}

.score-label {
    font-size: 0.75rem;
    color: var(--text-secondary, #64748b);
}

.company-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.metric-item {
    text-align: center;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-secondary, #64748b);
    margin-bottom: 0.25rem;
    display: block;
}

.metric-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary, #1e293b);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   📊 MARKET TICKER - ✅ ANIMATION CORRIGÉE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.market-ticker {
    background: var(--background-primary, #ffffff);
    border-top: 1px solid var(--border-color, #e2e8f0);
    border-bottom: 1px solid var(--border-color, #e2e8f0);
    padding: 1rem 0;
    overflow: hidden;
    position: relative;
    width: 100%; /* ✅ AJOUTÉ */
}

.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative; /* ✅ AJOUTÉ */
}

.ticker-content {
    display: flex;
    gap: 3rem;
    animation: tickerScroll 40s linear infinite;
    white-space: nowrap;
    will-change: transform; /* ✅ AJOUTÉ pour performance */
}

/* ✅ ANIMATION CORRIGÉE */
@keyframes tickerScroll {
    0% { 
        transform: translateX(0);
    }
    100% { 
        transform: translateX(-50%);
    }
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 12px;
    transition: all var(--anim-fast);
    border: 1px solid var(--border-color, #e2e8f0);
    flex-shrink: 0; /* ✅ AJOUTÉ */
}

.ticker-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
    border-color: #2563eb;
}

.ticker-symbol {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-primary, #1e293b);
    min-width: 50px;
}

.ticker-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary, #1e293b);
}

.ticker-change {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.25rem 0.625rem;
    border-radius: 6px;
}

.ticker-change.positive {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.ticker-change.positive::before {
    content: '▲ ';
}

.ticker-change.negative {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.ticker-change.negative::before {
    content: '▼ ';
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   📱 TICKER MOBILE - ✅ OPTIMISATION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (max-width: 768px) {
    .ticker-content {
        animation: tickerScroll 30s linear infinite; /* ✅ Plus rapide sur mobile */
    }
    
    .ticker-item {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
        gap: 0.75rem;
    }
    
    .ticker-symbol {
        min-width: 40px;
        font-size: 0.75rem;
    }
    
    .ticker-price {
        font-size: 0.875rem;
    }
    
    .ticker-change {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   🚀 CTA FINAL (SANS 3D)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.cta-final {
    background: linear-gradient(135deg, #2563eb 0%, #8b5cf6 100%);
}

.cta-content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.cta-content {
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: white;
    color: #2563eb;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 1.125rem 2.5rem;
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--anim-medium);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.cta-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   🦶 FOOTER (SANS 3D)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.landing-footer {
    background: var(--text-primary, #1e293b);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
}

.footer-brand-col {
    max-width: 300px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand .brand-text {
    color: white;
}

.footer-description {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--anim-fast);
    text-decoration: none;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #2563eb 0%, #8b5cf6 100%);
    color: white;
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--anim-fast);
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--anim-fast);
}

.footer-bottom-links a:hover {
    color: white;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ✅ CORRECTIONS GLOBALES - MOBILE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}

.nav-menu-mobile-cta {
    display: none !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   📱 RESPONSIVE - MOBILE (768px et moins)
   ✅ TOUTES LES CORRECTIONS APPLIQUÉES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (max-width: 768px) {
    
    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       🍔 NAVIGATION MOBILE - ✅ SANS ESPACE
       ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    
    /* ✅ CORRECTION : Hauteur exacte du header */
    .landing-nav {
        z-index: 10002 !important;
        height: 64px !important; /* ✅ AJOUTÉ */
    }
    
    .nav-container {
        padding: 0.875rem 1rem;
        height: 64px; /* ✅ AJOUTÉ */
    }
    
    .mobile-menu-btn {
        display: flex;
        position: relative;
        z-index: 10003 !important;
    }
    
    #navCtaLoggedOut,
    #navCtaLoggedIn {
        display: none !important;
    }
    
    /* ✅ CORRECTION : top et height ajustés */
    .nav-menu {
        position: fixed;
        top: 64px !important; /* ✅ CHANGÉ de 65px à 64px */
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 100vw;
        height: calc(100vh - 64px) !important; /* ✅ CHANGÉ de 65px à 64px */
        background: #ffffff !important;
        padding: 1.5rem 1rem 180px 1rem;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 10001 !important;
        overflow-y: auto;
        overflow-x: hidden;
        border-right: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    }
    
    body.dark-mode .nav-menu {
        background: #1e293b !important;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu .nav-link {
        display: block;
        width: 100%;
        max-width: 100%;
        padding: 1.25rem 1rem;
        font-size: 1.125rem;
        font-weight: 500;
        color: #1e293b !important;
        background: transparent;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        transition: all 0.2s ease;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        position: relative;
        z-index: 1;
    }
    
    body.dark-mode .nav-menu .nav-link {
        color: #f8fafc !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .nav-menu .nav-link:first-child {
        border-top: 1px solid rgba(0, 0, 0, 0.06);
    }
    
    body.dark-mode .nav-menu .nav-link:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .nav-menu .nav-link:hover {
        background: rgba(37, 99, 235, 0.08);
        color: #2563eb !important;
        padding-left: 1.5rem;
    }
    
    .nav-menu .nav-link::after {
        display: none;
    }
    
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 10000 !important;
        animation: fadeIn 0.3s ease;
        pointer-events: auto;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        max-width: 100vw;
        height: 100vh;
    }
    
    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       ✅ SECTION CTA MOBILE EN BAS
       ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    
    .nav-menu-mobile-cta {
        display: none !important;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100vw;
        background: #ffffff !important;
        padding: 1.25rem 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        flex-direction: column;
        gap: 0.875rem;
        z-index: 10002 !important;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(100%);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    body.dark-mode .nav-menu-mobile-cta {
        background: #1e293b !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    body.menu-open .nav-menu-mobile-cta {
        display: flex !important;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .mobile-dashboard-btn {
        width: 100% !important;
        max-width: 100% !important;
        justify-content: center !important;
        padding: 1.125rem 1.5rem !important;
        font-size: 1.0625rem !important;
        font-weight: 700 !important;
        display: flex !important;
        align-items: center !important;
        gap: 0.75rem !important;
        background: linear-gradient(135deg, #2563eb 0%, #8b5cf6 100%) !important;
        color: white !important;
        border: none !important;
        border-radius: 12px !important;
        box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4) !important;
        transition: all 0.3s ease !important;
        cursor: pointer !important;
    }
    
    .mobile-dashboard-btn:active {
        transform: scale(0.97) !important;
    }
    
    .mobile-dashboard-btn i {
        font-size: 1.125rem !important;
    }
    
    .nav-menu-mobile-cta .btn-text,
    .nav-menu-mobile-cta .btn-primary-nav {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       👤 USER DROPDOWN - BOTTOM SHEET
       ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    
    .user-dropdown-menu {
        position: fixed !important;
        top: auto !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100vw !important;
        min-width: auto !important;
        max-height: 85vh !important;
        margin: 0 !important;
        background: #ffffff !important;
        border-radius: 20px 20px 0 0 !important;
        border: none !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        transform: translateY(100%) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        display: none !important;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.4s ease,
                    visibility 0.4s ease !important;
        z-index: 10005 !important;
        box-shadow: 
            0 -10px 40px rgba(0, 0, 0, 0.3),
            0 -5px 20px rgba(0, 0, 0, 0.2) !important;
        transform-origin: center bottom !important;
    }
    
    body.dark-mode .user-dropdown-menu {
        background: #1e293b !important;
    }
    
    .user-dropdown-menu.active {
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        display: block !important;
    }
    
    .user-dropdown-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0);
        z-index: -1;
        transition: background 0.3s ease;
        pointer-events: none;
        opacity: 0;
        visibility: hidden;
    }
    
    .user-dropdown-menu.active::before {
        background: rgba(0, 0, 0, 0.6) !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
    
    .user-dropdown-menu::after {
        content: '' !important;
        position: absolute !important;
        top: 12px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 40px !important;
        height: 4px !important;
        background: rgba(0, 0, 0, 0.2) !important;
        border-radius: 9999px !important;
        z-index: 10 !important;
        display: block !important;
    }
    
    body.dark-mode .user-dropdown-menu::after {
        background: rgba(255, 255, 255, 0.3) !important;
    }
    
    .dropdown-header {
        padding: 2rem 1rem 1rem !important;
        position: relative;
        z-index: 1;
    }
    
    .dropdown-link {
        padding: 1rem 0.75rem !important;
        min-height: 64px !important;
        position: relative;
        z-index: 1;
    }
    
    .dropdown-link-icon {
        width: 44px !important;
        height: 44px !important;
    }
    
    body.menu-open .user-dropdown-menu.active {
        z-index: 10006 !important;
    }
    
    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       📊 HERO SECTION - BADGE DESCENDU
       ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    
    .hero {
        padding: 5rem 1rem 3rem;
        min-height: auto;
        max-width: 100vw;
        overflow: hidden;
    }
    
    .announcement-badge {
        margin-top: 2.5rem !important;
        margin-bottom: 2rem !important;
    }
    
    .hero-visual,
    .dashboard-mockup {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        max-width: 100%;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .btn-hero-primary {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }
    
    .social-proof {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding-top: 1.5rem;
        max-width: 100%;
    }
    
    .proof-divider {
        display: none;
    }
    
    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       🤖 ALPHY AI - TEXTES CENTRÉS
       ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    
    .alphy-ai-section {
        padding: 4rem 1rem !important;
    }
    
    .alphy-wrapper {
        grid-template-columns: 1fr !important;
    }
    
    .capability-item {
        flex-direction: column;
        text-align: center !important;
        padding: 1.75rem 1.5rem !important;
        align-items: center !important;
    }
    
    .capability-icon {
        margin: 0 auto 1rem auto !important;
    }
    
    .capability-text {
        text-align: center !important;
    }
    
    .capability-text h4 {
        text-align: center !important;
        margin-bottom: 0.5rem !important;
    }
    
    .capability-text p {
        text-align: center !important;
        line-height: 1.7 !important;
    }
    
    .alphy-chat-container {
        height: 500px;
    }
    
    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       🔧 QUANTITATIVE TOOLS - PLUS DE DÉTAILS
       ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    
    .tools-section {
        padding: 4rem 1rem !important;
    }
    
    .tool-card-advanced {
        flex: 0 0 85vw !important;
        min-width: 85vw !important;
        max-width: 85vw !important;
        min-height: 500px !important;
        padding: 2.5rem 1.75rem !important;
    }
    
    .tool-card-advanced p {
        margin-bottom: 2.5rem !important;
        line-height: 1.8 !important;
        font-size: 1.0625rem !important;
    }
    
    .tool-card-advanced h4 {
        margin-bottom: 1.25rem !important;
        font-size: 1.625rem !important;
    }
    
    .tool-icon-advanced {
        width: 64px !important;
        height: 64px !important;
        font-size: 1.75rem !important;
        margin-bottom: 1.75rem !important;
    }
    
    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       🚀 CTA FINAL - BOUTON RÉDUIT ET CENTRÉ
       ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    
    .cta-final {
        padding: 4rem 1rem !important;
        text-align: center !important;
    }
    
    .cta-content-wrapper {
        text-align: center !important;
    }
    
    .cta-content {
        text-align: center !important;
    }
    
    .cta-title {
        text-align: center !important;
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 1.5rem !important;
    }
    
    .cta-subtitle {
        text-align: center !important;
        margin-bottom: 2.5rem !important;
        line-height: 1.8 !important;
    }
    
    .cta-buttons {
        width: 100% !important;
        justify-content: center !important;
        align-items: center !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
    }
    
    .btn-cta-primary {
        width: auto !important;
        max-width: 280px !important;
        padding: 0.875rem 1.75rem !important;
        font-size: 0.9375rem !important;
        margin: 0 auto !important;
    }
    
    .cta-note {
        text-align: center !important;
        margin-top: 1rem !important;
    }
    
    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       ✨ SLIDERS HORIZONTAUX MOBILE
       ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    
    .features-grid,
    .solutions-grid,
    .tools-grid-advanced {
        display: flex !important;
        flex-direction: row !important;
        gap: 1rem !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 0.5rem 1rem 1.5rem 1rem !important;
        margin: 0 -1rem !important;
        max-width: 100vw !important;
        cursor: grab;
    }
    
    .features-grid:active,
    .tools-grid-advanced:active,
    .solutions-grid:active {
        cursor: grabbing;
    }
    
    .features-grid::-webkit-scrollbar,
    .tools-grid-advanced::-webkit-scrollbar,
    .solutions-grid::-webkit-scrollbar {
        display: none;
    }
    
    .features-grid,
    .tools-grid-advanced,
    .solutions-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    .feature-card,
    .solution-card {
        flex: 0 0 85vw !important;
        min-width: 85vw !important;
        max-width: 85vw !important;
        scroll-snap-align: center !important;
        margin: 0 !important;
        padding: 2rem 1.5rem !important;
        height: auto !important;
        min-height: 420px !important;
    }
    
    .feature-card:first-child,
    .tool-card-advanced:first-child,
    .solution-card:first-child {
        margin-left: 0.5rem !important;
    }
    
    .feature-card:last-child,
    .tool-card-advanced:last-child,
    .solution-card:last-child {
        margin-right: 0.5rem !important;
    }
    
    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       💰 PRICING SECTION
       ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    
    .pricing-section,
    body.logged-in .pricing-section,
    body.user-authenticated .pricing-section,
    body[data-user-logged="true"] .pricing-section {
        padding: 4rem 0 !important;
        max-width: 100vw !important;
        width: 100vw !important;
        overflow-x: hidden !important;
        overflow-y: visible !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
    }
    
    .pricing-grid-three,
    body.logged-in .pricing-grid-three,
    body.user-authenticated .pricing-grid-three,
    body[data-user-logged="true"] .pricing-grid-three {
        display: flex !important;
        flex-direction: row !important;
        gap: 1rem !important;
        overflow-x: auto !important;
        overflow-y: visible !important;
        scroll-snap-type: x mandatory !important;
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 1rem 1rem 2rem 1rem !important;
        margin: 0 -1rem !important;
        max-width: 100vw !important;
        width: 100vw !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        cursor: grab;
    }
    
    .pricing-grid-three:active,
    body.logged-in .pricing-grid-three:active,
    body.user-authenticated .pricing-grid-three:active {
        cursor: grabbing;
    }
    
    .pricing-grid-three::-webkit-scrollbar,
    body.logged-in .pricing-grid-three::-webkit-scrollbar,
    body.user-authenticated .pricing-grid-three::-webkit-scrollbar {
        display: none !important;
    }
    
    .pricing-grid-three,
    body.logged-in .pricing-grid-three,
    body.user-authenticated .pricing-grid-three {
        -ms-overflow-style: none !important;
        scrollbar-width: none !important;
    }
    
    .pricing-card,
    body.logged-in .pricing-card,
    body.user-authenticated .pricing-card,
    body[data-user-logged="true"] .pricing-card,
    .pricing-grid-three .pricing-card {
        flex: 0 0 85vw !important;
        min-width: 85vw !important;
        max-width: 85vw !important;
        scroll-snap-align: center !important;
        margin: 0 !important;
        padding: 2.5rem 1.5rem !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .pricing-card:first-child,
    body.logged-in .pricing-card:first-child,
    body.user-authenticated .pricing-card:first-child {
        margin-left: 0.5rem !important;
    }
    
    .pricing-card:last-child,
    body.logged-in .pricing-card:last-child,
    body.user-authenticated .pricing-card:last-child {
        margin-right: 0.5rem !important;
    }
    
    .pricing-header,
    body.logged-in .pricing-header,
    body.user-authenticated .pricing-header,
    .pricing-card .pricing-header {
        padding-top: 30px !important;
        margin-bottom: 2rem !important;
    }
    
    .pricing-price,
    body.logged-in .pricing-price,
    body.user-authenticated .pricing-price,
    .pricing-card .pricing-price {
        margin-bottom: 2rem !important;
    }
    
    .pricing-price .amount,
    body.logged-in .pricing-price .amount,
    body.user-authenticated .pricing-price .amount {
        font-size: 3rem !important;
    }
    
    .pricing-features,
    body.logged-in .pricing-features,
    body.user-authenticated .pricing-features,
    body[data-user-logged="true"] .pricing-features,
    .pricing-card .pricing-features {
        margin: 0 0 2rem 0 !important;
        padding: 0 !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        overflow-y: visible !important;
        flex-grow: 1 !important;
    }
    
    .pricing-features li,
    body.logged-in .pricing-features li,
    body.user-authenticated .pricing-features li,
    .pricing-card .pricing-features li {
        padding: 0.75rem 0 !important;
        min-height: 44px !important;
        font-size: 0.9375rem !important;
        line-height: 1.6 !important;
    }
    
    .pricing-cta-wrapper,
    body.logged-in .pricing-cta-wrapper,
    body.user-authenticated .pricing-cta-wrapper,
    .pricing-card .pricing-cta-wrapper {
        margin-top: auto !important;
        padding-top: 1.5rem !important;
        flex-shrink: 0 !important;
    }
    
    .btn-pricing,
    body.logged-in .btn-pricing,
    body.user-authenticated .btn-pricing {
        min-height: 56px !important;
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
    }

    /* ✅ Réduire l'espace APRÈS les cartes pricing */
    .pricing-grid-three,
    body.logged-in .pricing-grid-three,
    body.user-authenticated .pricing-grid-three {
        margin-bottom: 1.5rem !important;
        padding-bottom: 1rem !important;
    }
    
    /* ✅ Réduire l'espace du tableau comparatif (si présent) */
    .pricing-comparison-table,
    .comparison-table,
    .features-comparison,
    .pricing-features-table {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }
    
    /* ✅ Réduire le padding de la section pricing */
    .pricing-section,
    body.logged-in .pricing-section,
    body.user-authenticated .pricing-section {
        padding-bottom: 2rem !important; /* Au lieu de 4rem */
    }
    
    /* ✅ Réduire l'espace du CTA "Ready to transform" */
    .cta-final {
        padding-top: 2rem !important; /* Au lieu de 4rem */
        margin-top: 0 !important;
    }
    
    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       🎨 DEMO SECTION
       ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    
    .demo-interactive {
        padding: 4rem 1rem !important;
    }
    
    .demo-wrapper {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }
    
    .demo-title {
        font-size: clamp(1.5rem, 6vw, 2rem) !important;
        margin-bottom: 1.5rem !important;
        color: white !important;
    }
    
    .demo-description {
        margin-bottom: 2rem !important;
        line-height: 1.8 !important;
    }
    
    .search-interface {
        max-width: 100% !important;
        overflow: hidden !important;
    }
    
    .search-box-wrapper {
        padding: 1rem !important;
    }
    
    .search-box {
        padding: 0.875rem 1rem !important;
    }
    
    .search-box input {
        font-size: 0.9375rem !important;
    }
    
    .search-results {
        padding: 1rem !important;
        display: block !important;
    }
    
    .company-result-card:nth-child(n+2) {
        display: none !important;
    }
    
    .company-result-card:first-child {
        display: flex !important;
        flex-direction: column !important;
        padding: 1rem !important;
    }
    
    .company-result-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.75rem !important;
    }
    
    .company-metrics {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
        margin-top: 1rem !important;
    }
    
    .metric-item {
        padding: 0.75rem !important;
        background: rgba(37, 99, 235, 0.05) !important;
        border-radius: 8px !important;
    }
    
    .metric-label {
        font-size: 0.6875rem !important;
        margin-bottom: 0.375rem !important;
    }
    
    .metric-value {
        font-size: 0.875rem !important;
    }
    
    .demo-stats-grid {
        gap: 1.25rem !important;
    }
    
    .demo-stat {
        padding: 1rem !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 12px !important;
    }
    
    .demo-stat-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }
    
    .demo-stat-content h4 {
        font-size: 1rem !important;
    }
    
    .demo-stat-content p {
        font-size: 0.8125rem !important;
    }
    
    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
    ✅ CORRECTION 5: FOOTER MOBILE - VERSION CORRIGÉE
    Logo + Réseaux sociaux EN HAUT
    Product | Company en 2 colonnes EN BAS
    Masquer uniquement "Tools"
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

    @media (max-width: 768px) {
        
        /* ✅ Footer en 2 colonnes */
        .footer-grid {
            display: grid !important;
            grid-template-columns: 1fr 1fr !important;
            gap: 2rem !important;
            align-items: start !important;
        }
        
        /* ✅ Brand Col (Logo + Description + Réseaux sociaux) - PLEINE LARGEUR */
        .footer-brand-col {
            grid-column: 1 / -1 !important; /* Prend toute la largeur */
            display: block !important;
            max-width: 100% !important;
            text-align: center !important;
            margin: 0 auto 2rem auto !important;
        }
        
        /* ✅ Logo centré */
        .footer-brand {
            justify-content: center !important;
            margin-bottom: 1rem !important;
        }
        
        /* ✅ Description centrée */
        .footer-description {
            text-align: center !important;
            max-width: 100% !important;
        }
        
        /* ✅ Réseaux sociaux centrés */
        .footer-social {
            justify-content: center !important;
        }
        
        /* ✅ Masquer uniquement la section Tools (3e colonne) */
        .footer-col:nth-child(3) {
            display: none !important;
        }
        
        /* ✅ Afficher Product et Company */
        .footer-col:nth-child(2), /* Product */
        .footer-col:nth-child(4) { /* Company */
            display: block !important;
        }
        
        /* ✅ Titres des colonnes centrés */
        .footer-col h4 {
            text-align: center !important;
            margin-bottom: 1.25rem !important;
        }
        
        /* ✅ Liens centrés */
        .footer-col ul {
            text-align: center !important;
        }
        
        .footer-col ul li {
            margin-bottom: 1rem !important;
        }
        
        .footer-col ul li a {
            font-size: 0.9375rem !important;
        }
        
        /* ✅ Footer Bottom */
        .footer-bottom {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
        }
        
        /* ✅ Masquer uniquement les liens Privacy/Terms/Security */
        .footer-bottom-links {
            display: none !important;
        }
    }
    
    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       ✅ INDICATEURS & AUTRES SECTIONS
       ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    
    .features-section::after,
    .tools-section::after,
    .pricing-section::after,
    .solutions-section::after {
        content: '';
        display: block;
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, 
            rgba(37, 99, 235, 0.3) 0%, 
            rgba(37, 99, 235, 0.8) 50%, 
            rgba(37, 99, 235, 0.3) 100%);
        margin: 1.5rem auto 0 auto;
        border-radius: 2px;
        position: relative;
    }
    
    .features-grid,
    .tools-grid-advanced,
    .pricing-grid-three,
    .solutions-grid {
        position: relative;
    }
    
    .features-grid::before,
    .tools-grid-advanced::before,
    .pricing-grid-three::before,
    .solutions-grid::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 40px;
        height: 100%;
        background: linear-gradient(270deg, 
            var(--background-primary, #ffffff) 0%, 
            rgba(255, 255, 255, 0) 100%);
        pointer-events: none;
        z-index: 2;
    }
    
    body.dark-mode .features-grid::before,
    body.dark-mode .tools-grid-advanced::before,
    body.dark-mode .pricing-grid-three::before,
    body.dark-mode .solutions-grid::before {
        background: linear-gradient(270deg, 
            var(--background-secondary, #1e293b) 0%, 
            rgba(30, 41, 59, 0) 100%);
    }
    
    .section-header::after {
        content: '← Swipe for more →';
        display: block;
        font-size: 0.8125rem;
        color: #64748b;
        margin-top: 0.75rem;
        font-weight: 500;
        letter-spacing: 0.02em;
    }
    
    .demo-interactive .section-header::after {
        color: rgba(255, 255, 255, 0.7) !important;
    }
    
    .features-section,
    .solutions-section {
        padding: 4rem 1rem !important;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .feature-benefits li,
    .pricing-features li {
        padding: 0.875rem 0 !important;
        min-height: 48px !important;
        font-size: 0.9375rem !important;
        line-height: 1.6 !important;
    }
    
    .feature-description {
        margin-bottom: 2rem !important;
        line-height: 1.7 !important;
    }
    
    .ticker-item {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }
    
    .ticker-symbol {
        min-width: 40px;
        font-size: 0.75rem;
    }
    
    .ticker-price {
        font-size: 0.875rem;
    }
    
    .ticker-change {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
    }
    
    .tech-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 0 0.5rem;
    }
    
    .tech-card {
        padding: 2rem 1.5rem !important;
    }
    
    .tech-points li {
        margin-bottom: 14px !important;
        line-height: 1.7 !important;
    }
    
    .container,
    .container-fluid,
    .nav-container,
    .hero-container,
    .section-header {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .mockup-stats-row {
        grid-template-columns: 1fr !important;
    }
    
    .announcement-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-headline {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        margin-bottom: 2rem !important;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 1rem !important;
    }
    
    .section-description {
        margin-bottom: 2rem !important;
        font-size: 1.0625rem !important;
        line-height: 1.8 !important;
    }
    
    .stat-card {
        padding: 1.125rem !important;
        min-height: 120px !important;
    }
    
    .stat-value {
        font-size: 1.75rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .tech-title {
        font-size: 2rem;
        margin-bottom: 1.5rem !important;
    }
    
    .tech-subtitle {
        font-size: 1.0625rem !important;
        margin-bottom: 3rem !important;
        line-height: 1.8 !important;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   📱 MASQUER TEXTE SWIPE SUR DESKTOP
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (min-width: 769px) {
    .section-header::after {
        display: none !important;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   📱 RESPONSIVE - TRÈS PETITS ÉCRANS (480px)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (max-width: 480px) {
    .nav-container {
        padding: 0.75rem 0.75rem;
    }
    
    .hero {
        padding: 4rem 0.75rem 2rem;
    }
    
    .announcement-badge {
        margin-top: 3rem !important;
    }
    
    .features-section,
    .solutions-section,
    .tools-section,
    .pricing-section,
    .alphy-ai-section,
    .demo-interactive,
    .tech-infra-lux,
    .cta-final {
        padding: 3rem 0.75rem !important;
    }
    
    .feature-card,
    .solution-card,
    .pricing-card,
    .tech-card {
        padding: 1.5rem 1.125rem !important;
        flex: 0 0 90vw !important;
        min-width: 90vw !important;
        max-width: 90vw !important;
    }
    
    .tool-card-advanced {
        flex: 0 0 90vw !important;
        min-width: 90vw !important;
        max-width: 90vw !important;
        min-height: 520px !important;
        padding: 2.5rem 1.5rem !important;
    }
    
    .hero-headline {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn-cta-primary {
        max-width: 240px !important;
        padding: 0.75rem 1.5rem !important;
        font-size: 0.875rem !important;
    }
    
    .company-metrics {
        grid-template-columns: 1fr !important;
    }
    
    .ticker-item {
        padding: 0.4rem 0.75rem;
        gap: 0.75rem;
    }
    
    .ticker-symbol {
        min-width: 35px;
        font-size: 0.7rem;
    }
    
    .ticker-price {
        font-size: 0.8rem;
    }
    
    .ticker-change {
        font-size: 0.7rem;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ♿ ACCESSIBILITY
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

*:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ✅ FIN DU FICHIER CSS - VERSION FINALE
   TOUTES LES CORRECTIONS APPLIQUÉES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */