* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #0066CC;
            --primary-dark: #0052A3;
            --primary-light: #00A67E;
            --secondary: #10B981;
            --accent: #F59E0B;
            --danger: #EF4444;
            --text-primary: #111827;
            --text-secondary: #6B7280;
            --text-tertiary: #9CA3AF;
            --bg-primary: #FFFFFF;
            --bg-secondary: #F9FAFB;
            --bg-tertiary: #F3F4F6;
            --border: #E5E7EB;
            --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
            --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
            --radius: 12px;
            --radius-lg: 16px;
        }

        body {
            background: linear-gradient(135deg, #0a1220 0%, #0f1729 50%, #0a0a14 100%);
            min-height: 100vh;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            color: #ffffff;
            overflow-x: hidden;
            font-size: 15px;
            line-height: 1.6;
        }

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

        /* Header Navigation */
        .header-nav {
            background: rgba(15, 20, 35, 0.75);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            border-bottom: 1px solid rgba(59, 130, 246, 0.15);
            padding: 10px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
            min-height: 60px;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Logo Symbol */
        .logo-symbol {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            border-radius: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow:
                0 1px 3px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(59, 130, 246, 0.1);
            position: relative;
            overflow: visible;
        }

        .logo-container:hover .logo-symbol {
            transform: translateY(-2px);
            box-shadow:
                0 4px 12px rgba(59, 130, 246, 0.15),
                0 0 0 1px rgba(59, 130, 246, 0.2);
        }

        .logo-icon-static {
            font-size: 18px;
            --fa-primary-color: #3b82f6;
            --fa-secondary-color: #93c5fd;
            --fa-primary-opacity: 1;
            --fa-secondary-opacity: 0.5;
            position: relative;
            z-index: 2;
        }

        .logo-messages {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .message-icon {
            position: absolute;
            left: -25px;
            top: 50%;
            font-size: 11px;
            opacity: 0;
            --fa-primary-color: #60a5fa;
            --fa-secondary-color: #93c5fd;
            --fa-primary-opacity: 0.9;
            --fa-secondary-opacity: 0.4;
            animation: gentleSlide 4s ease-in-out infinite;
        }

        .star-icon {
            position: absolute;
            left: -25px;
            top: 50%;
            font-size: 10px;
            opacity: 0;
            --fa-primary-color: #fbbf24;
            --fa-secondary-color: #fde047;
            --fa-primary-opacity: 1;
            --fa-secondary-opacity: 0.5;
            animation: gentleSlide 4s ease-in-out infinite;
            filter: drop-shadow(0 1px 2px rgba(251, 191, 36, 0.3));
        }

        .message-icon:nth-child(1) {
            animation-delay: 0s;
            top: 45%;
        }

        .message-icon:nth-child(2) {
            animation-delay: 1.3s;
            top: 50%;
        }

        .star-icon:nth-child(3) {
            animation-delay: 0.6s;
            top: 55%;
            font-size: 9px;
        }

        .message-icon:nth-child(4) {
            animation-delay: 2s;
            top: 48%;
            font-size: 10px;
        }

        .star-icon:nth-child(5) {
            animation-delay: 2.8s;
            top: 52%;
            font-size: 11px;
        }

        .message-icon:nth-child(6) {
            animation-delay: 3.4s;
            top: 50%;
            font-size: 12px;
        }

        @keyframes gentleSlide {
            0% {
                left: -25px;
                transform: translateY(-50%) scale(0.7);
                opacity: 0;
            }
            10% {
                opacity: 0.6;
                transform: translateY(-50%) scale(0.9);
            }
            25% {
                opacity: 0.8;
                transform: translateY(-50%) scale(1);
            }
            70% {
                left: 20px;
                opacity: 0.4;
            }
            100% {
                left: 20px;
                transform: translateY(-50%) scale(0.7);
                opacity: 0;
            }
        }

        .logo-container:hover .message-icon,
        .logo-container:hover .star-icon {
            animation-duration: 2.5s;
        }

        .activity-pulse {
            position: absolute;
            bottom: -2px;
            right: -2px;
            width: 10px;
            height: 10px;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            border-radius: 50%;
            border: 2px solid #ffffff;
            box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
            z-index: 3;
            animation: activityPulse 2s ease-in-out infinite;
        }

        @keyframes activityPulse {
            0%, 100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.15);
                opacity: 0.8;
            }
        }

        .logo-content {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .logo-text {
            font-family: 'Montserrat', sans-serif;
            font-size: 19px;
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1;
            color: #ffffff;
        }

        .logo-slogan {
            font-size: 10px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.65);
            letter-spacing: 0.03em;
            line-height: 1;
        }

        .nav-actions {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .nav-btn {
            padding: 11px 20px;
            border-radius: 13px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            border: none;
            white-space: nowrap;
        }

        /* CTA Ultra Premium */
        .nav-btn-cta {
            position: relative;
            background: linear-gradient(135deg, #f97316 0%, #fb923c 50%, #fbbf24 100%);
            color: #ffffff;
            border: none;
            padding: 9px 20px;
            font-weight: 700;
            font-size: 14px;
            overflow: hidden;
            box-shadow:
                0 8px 32px rgba(249, 115, 22, 0.6),
                0 0 60px rgba(251, 146, 60, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        .nav-btn-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                transparent 30%,
                rgba(255, 255, 255, 0.3) 50%,
                transparent 70%
            );
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% {
                transform: translateX(-100%) translateY(-100%) rotate(45deg);
            }
            100% {
                transform: translateX(100%) translateY(100%) rotate(45deg);
            }
        }

        .nav-btn-cta::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1));
            opacity: 0;
            transition: opacity 0.3s;
        }

        .nav-btn-cta:hover::after {
            opacity: 1;
        }

        .nav-btn-cta:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow:
                0 12px 48px rgba(249, 115, 22, 0.8),
                0 0 100px rgba(251, 146, 60, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
        }

        .cta-content {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .cta-icon {
            font-size: 18px;
            animation: float 2s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-3px);
            }
        }

        .cta-text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            line-height: 1;
        }

        .cta-main {
            font-size: 14px;
            font-weight: 700;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        .cta-sub {
            font-size: 10px;
            font-weight: 500;
            opacity: 0.9;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        .nav-btn i {
            font-size: 15px;
        }

        /* Breadcrumb */
        .breadcrumb-wrapper {
            padding: 12px 50px !important;
            background: transparent !important;
            margin: 0 !important;
            border: none !important;
        }

        .breadcrumb,
        nav.breadcrumb {
            color: rgba(255, 255, 255, 0.5) !important;
            font-size: 14px !important;
            display: flex !important;
            align-items: center !important;
            gap: 8px !important;
            background: transparent !important;
            padding: 0 !important;
            margin: 0 !important;
            border: none !important;
        }

        .breadcrumb a,
        nav.breadcrumb a {
            color: rgba(255, 255, 255, 0.5) !important;
            text-decoration: none !important;
            transition: all 0.3s !important;
            display: flex !important;
            align-items: center !important;
            gap: 6px !important;
            background: transparent !important;
            padding: 0 !important;
            border: none !important;
        }

        .breadcrumb a:hover,
        nav.breadcrumb a:hover {
            color: #3b82f6 !important;
        }

        .breadcrumb span,
        nav.breadcrumb span {
            color: rgba(255, 255, 255, 0.5) !important;
            background: transparent !important;
            padding: 0 !important;
            border: none !important;
        }

        .breadcrumb i,
        nav.breadcrumb i {
            color: inherit !important;
            background: transparent !important;
        }

        .breadcrumb-separator {
            color: rgba(255, 255, 255, 0.3) !important;
            margin: 0 4px !important;
        }

        .breadcrumb-current,
        .breadcrumb span:last-child {
            color: #ffffff !important;
            font-weight: 500 !important;
        }

        /* Main Container */
        .main-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 5px 50px 40px;
        }

        /* Hero Card */
        .hero-card {
            background: rgba(15, 20, 35, 0.85);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            border-radius: 40px;
            padding: 60px 55px;
            position: relative;
            overflow: visible;
            margin-bottom: 25px;
        }

        /* Border glow effect */
        .hero-card::before {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 40px;
            padding: 3px;
            background: linear-gradient(
                135deg,
                #3b82f6 0%,
                #2563eb 25%,
                rgba(59, 130, 246, 0.3) 50%,
                rgba(6, 182, 212, 0.3) 75%,
                #06b6d4 100%
            );
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            z-index: -1;
        }

        /* Outer glow */
        .hero-card::after {
            content: '';
            position: absolute;
            inset: -20px;
            border-radius: 50px;
            background: radial-gradient(
                ellipse 120% 100% at 0% 0%,
                rgba(59, 130, 246, 0.4) 0%,
                transparent 40%
            ),
            radial-gradient(
                ellipse 80% 80% at 100% 100%,
                rgba(6, 182, 212, 0.3) 0%,
                transparent 50%
            );
            z-index: -2;
            filter: blur(25px);
            pointer-events: none;
        }

        /* Hero Content */
        .hero-header {
            display: flex;
            align-items: flex-start;
            gap: 28px;
            margin-bottom: 32px;
        }

        .hero-icon {
            width: 90px;
            height: 90px;
            background: rgba(20, 28, 45, 0.8);
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(59, 130, 246, 0.3);
            box-shadow:
                0 8px 32px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
            flex-shrink: 0;
        }

        .hero-icon i {
            font-size: 48px;
            --fa-primary-color: #60a5fa;
            --fa-secondary-color: #06b6d4;
            --fa-primary-opacity: 0.9;
            --fa-secondary-opacity: 0.7;
            filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.5));
        }

        .hero-text {
            flex: 1;
        }

        .hero-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 52px;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.02em;
        }

        .hero-subtitle {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.5;
            font-weight: 400;
            margin-bottom: 28px;
        }

        /* Badges Section */
        .hero-badges {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 36px;
        }

        .badge {
            padding: 10px 18px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 600;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: default;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .badge:hover {
            transform: translateY(-2px);
        }

        .badge-icon {
            font-size: 16px;
        }

        .badge-blue {
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.5) 0%, rgba(59, 130, 246, 0.15) 100%);
            color: #ffffff;
            border: 1px solid rgba(59, 130, 246, 0.5);
            box-shadow: 0 4px 16px rgba(59, 130, 246, 0.2);
        }

        .badge-blue .badge-icon {
            color: #60a5fa;
        }

        .badge-teal {
            background: linear-gradient(135deg, rgba(13, 148, 136, 0.5) 0%, rgba(20, 184, 166, 0.15) 100%);
            color: #ffffff;
            border: 1px solid rgba(20, 184, 166, 0.5);
            box-shadow: 0 4px 16px rgba(20, 184, 166, 0.2);
        }

        .badge-teal .badge-icon {
            color: #5eead4;
        }

        /* Search Box */
        .search-section {
            margin-top: 36px;
        }

        .search-box-new {
            background: rgba(20, 28, 45, 0.6);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 100px;
            padding: 8px 8px 8px 32px;
            display: flex;
            align-items: center;
            gap: 16px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow:
                0 4px 20px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.03);
        }

        .search-box-new:focus-within {
            border-color: rgba(59, 130, 246, 0.6);
            box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
            background: rgba(20, 28, 45, 0.8);
        }

        .search-input-new {
            flex: 1;
            background: transparent;
            border: none;
            color: #ffffff;
            font-size: 17px;
            outline: none;
            font-weight: 400;
        }

        .search-input-new::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .search-btn-new {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            border: none;
            color: #ffffff;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 20px;
            box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4);
        }

        .search-btn-new:hover {
            transform: scale(1.08);
            box-shadow: 0 6px 24px rgba(59, 130, 246, 0.6);
        }

        .search-btn-new:active {
            transform: scale(0.95);
        }

        /* Quick Nav - Carrousel Mobile Optimisé */
        .quick-nav {
            background: var(--bg-primary);
            border-bottom: 2px solid var(--border);
            padding: 12px 0;
            position: sticky;
            top: 57px;
            z-index: 999;
            box-shadow: var(--shadow-md);
        }

        .quick-nav-title {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-secondary);
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 0 16px;
        }

        .nav-pills-wrapper {
            position: relative;
            overflow: hidden;
            padding: 0 48px;
        }

        .nav-pills {
            display: flex;
            gap: 8px;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 4px 16px 12px 16px;
        }

        .nav-pills::-webkit-scrollbar {
            display: none;
        }

        .nav-pill {
            background: var(--bg-secondary);
            color: var(--text-primary);
            padding: 10px 18px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            cursor: pointer;
            white-space: nowrap;
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .nav-pill i {
            font-size: 14px;
        }

        .nav-pill:hover {
            background: var(--primary-light);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 102, 204, 0.2);
        }

        .nav-pill.active {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            border-color: var(--primary-dark);
            box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
        }

        .nav-pill-count {
            display: inline-block;
            background: rgba(255, 255, 255, 0.25);
            padding: 2px 8px;
            border-radius: 50px;
            font-size: 11px;
            margin-left: 4px;
            font-weight: 700;
        }

        /* Scroll Indicators */
        .scroll-indicator {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
            z-index: 10;
            opacity: 0;
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .scroll-indicator.visible {
            opacity: 1;
            pointer-events: auto;
        }

        .scroll-indicator:hover {
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 16px rgba(0, 102, 204, 0.4);
        }

        .scroll-indicator.left {
            left: 4px;
        }

        .scroll-indicator.right {
            right: 4px;
        }

        @media (max-width: 768px) {
            .nav-pills-wrapper {
                padding: 0;
            }

            .nav-pill {
                padding: 8px 14px;
                font-size: 13px;
            }

            .nav-pill-count {
                font-size: 10px;
                padding: 2px 6px;
            }

            .scroll-indicator {
                width: 32px;
                height: 32px;
                font-size: 14px;
            }
        }

        /* Search */
        .search-box {
            background: var(--bg-primary);
            padding: 16px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            margin-bottom: 20px;
        }

        .search-input-wrapper {
            position: relative;
        }

        .search-input {
            width: 100%;
            padding: 12px 40px 12px 16px;
            border: 2px solid var(--border);
            border-radius: var(--radius);
            font-size: 15px;
            transition: all 0.2s;
            font-family: inherit;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
        }

        .search-icon {
            position: absolute;
            right: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-tertiary);
        }

        /* Subcategory Section */
        .subcategory-section {
            background: var(--bg-primary);
            border-radius: var(--radius-lg);
            padding: 20px;
            margin-bottom: 16px;
            box-shadow: var(--shadow-md);
            scroll-margin-top: 140px;
        }

        .subcategory-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--bg-tertiary);
            cursor: pointer;
            user-select: none;
            transition: background 0.2s;
            margin: -20px -20px 16px -20px;
            padding: 20px 20px 12px 20px;
            border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        }

        .subcategory-header:hover {
            background: var(--bg-secondary);
        }

        .subcategory-title-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1;
        }

        .subcategory-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
        }

        .subcategory-count {
            font-size: 12px;
            color: var(--text-secondary);
            background: var(--bg-tertiary);
            padding: 4px 10px;
            border-radius: 50px;
            font-weight: 600;
        }

        .expand-icon {
            color: var(--text-tertiary);
            transition: transform 0.3s;
            font-size: 18px;
        }

        .expand-icon.open {
            transform: rotate(180deg);
        }

        .subcategory-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .subcategory-content.open {
            max-height: 10000px;
        }

        /* Top Recs - NOUVEAU DESIGN */
        .top-recs {
            background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
            border-radius: var(--radius);
            padding: 16px;
            margin-bottom: 20px;
            border: 1px solid #C7D2FE;
            position: relative;
            overflow: hidden;
        }

        .top-recs::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
        }

        .top-recs-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 14px;
        }

        .ai-badge {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            padding: 6px 12px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 2px 4px rgba(0, 102, 204, 0.3);
        }

        .top-recs-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--primary-dark);
        }

        .recs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 12px;
        }

        /* Rec Card - NOUVEAU DESIGN */
        .rec-card {
            background: white;
            padding: 16px;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .rec-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--primary);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .rec-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-light);
        }

        .rec-card:hover::before {
            transform: scaleY(1);
        }

        .rec-header {
            display: flex;
            align-items: start;
            gap: 10px;
            margin-bottom: 10px;
        }

        .rec-rank {
            display: flex;
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            border-radius: 8px;
            font-weight: 700;
            font-size: 14px;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 2px 4px rgba(0, 102, 204, 0.3);
        }

        .rec-info {
            flex: 1;
        }

        .rec-name {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 4px;
            line-height: 1.3;
        }

        .rec-type {
            font-size: 12px;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 8px;
        }

        /* Context Tags - NOUVEAU */
        .rec-context {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 10px;
        }

        .context-tag {
            background: linear-gradient(135deg, #FEF3C7, #FDE68A);
            color: #92400E;
            padding: 4px 10px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .rec-stats {
            display: flex;
            gap: 12px;
            font-size: 12px;
            color: var(--text-secondary);
            padding-top: 10px;
            border-top: 1px solid var(--bg-tertiary);
        }

        .rec-stat {
            display: flex;
            align-items: center;
            gap: 4px;
            font-weight: 500;
        }

        .rec-stat i {
            color: var(--primary-light);
        }

        /* Question Card - NOUVEAU DESIGN */
        .question-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 18px;
            margin-bottom: 14px;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
        }

        .question-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
        }

        .question-header {
            display: flex;
            justify-content: space-between;
            align-items: start;
            gap: 12px;
            margin-bottom: 12px;
        }

        .question-text {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            line-height: 1.5;
            flex: 1;
        }

        .question-likes {
            display: flex;
            align-items: center;
            gap: 5px;
            background: linear-gradient(135deg, #FEE2E2, #FECACA);
            color: #991B1B;
            padding: 6px 12px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            flex-shrink: 0;
        }

        .question-meta {
            display: flex;
            gap: 12px;
            font-size: 13px;
            color: var(--text-secondary);
            margin-bottom: 14px;
            flex-wrap: wrap;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .meta-item i {
            color: var(--primary-light);
        }

        /* ═══════════════════════════════════════════════════════════════
           SECTION RÉSUMÉ IA - V2 ULTRA-MODERNE
           Design: Glassmorphism + Airbnb + Notion + Interactive
        
           Stats explained:
           - "X avis" = Nombre total de réponses pour cette question
           - "X lieux" = Nombre de recommandations uniques extraites par l'IA
           - "X utiles" = Somme des likes sur tous les commentaires
        ═══════════════════════════════════════════════════════════════ */
        
        .question-summary {
            position: relative;
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: 20px;
            padding: 0;
            margin-bottom: 32px;
            box-shadow:
                0 1px 3px rgba(0, 0, 0, 0.04),
                0 4px 16px rgba(0, 102, 204, 0.04);
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        /* Barre de couleur animée au hover */
        .question-summary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg,
                #667eea 0%,
                #764ba2 25%,
                #f093fb 50%,
                #4facfe 75%,
                #00f2fe 100%);
            background-size: 200% 100%;
            animation: gradientShift 8s ease infinite;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
        
        .question-summary:hover {
            border-color: rgba(102, 126, 234, 0.2);
            box-shadow:
                0 4px 20px rgba(102, 126, 234, 0.08),
                0 12px 40px rgba(102, 126, 234, 0.12);
            transform: translateY(-4px);
        }
        
        .question-summary:hover::before {
            opacity: 1;
        }
        
        /* ═══════════════════════════════════════════════════════════════
           HEADER - Design épuré avec icône flottante
        ═══════════════════════════════════════════════════════════════ */
        
        .summary-header {
            background: linear-gradient(135deg,
                rgba(102, 126, 234, 0.03) 0%,
                rgba(118, 75, 162, 0.03) 100%);
            padding: 24px 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        }
        
        .summary-title {
            display: flex;
            align-items: center;
            gap: 12px;
            flex: 1;
        }
        
        /* Icône avec effet de flottement */
        .summary-title i {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 14px;
            color: white;
            font-size: 20px;
            box-shadow: 0 4px 14px rgba(102, 126, 234, 0.3);
            animation: floatIcon 3s ease-in-out infinite;
        }
        
        @keyframes floatIcon {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-4px); }
        }
        
        .summary-title span {
            font-size: 17px;
            font-weight: 700;
            color: #111827;
        }
        
        /* ═══════════════════════════════════════════════════════════════
           BADGE SENTIMENT - Ultra-moderne avec shimmer effect
        ═══════════════════════════════════════════════════════════════ */
        
        .sentiment-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
            transition: all 0.3s ease;
            cursor: default;
            position: relative;
            overflow: hidden;
        }
        
        .sentiment-badge::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg,
                transparent,
                rgba(255, 255, 255, 0.3),
                transparent);
            transform: translateX(-100%);
        }
        
        .sentiment-badge:hover::before {
            animation: shimmer 1.5s ease;
        }
        
        @keyframes shimmer {
            to { transform: translateX(100%); }
        }
        
        .sentiment-badge.positive {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
        }
        
        .sentiment-badge.neutral {
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            color: white;
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
        }
        
        .sentiment-badge.mixed {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            color: white;
            box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
        }
        
        /* ═══════════════════════════════════════════════════════════════
           CONTENU - Texte avec guillemet décoratif
        ═══════════════════════════════════════════════════════════════ */
        
        .summary-content {
            padding: 28px;
        }
        
        .summary-text {
            color: #374151;
            line-height: 1.8;
            font-size: 15.5px;
            font-weight: 400;
            margin-bottom: 24px;
            position: relative;
            padding-left: 16px;
        }
        
        .summary-text::before {
            content: '"';
            position: absolute;
            left: 0;
            top: -8px;
            font-size: 48px;
            font-family: Georgia, serif;
            color: rgba(102, 126, 234, 0.12);
            font-weight: 700;
        }
        
        .summary-text strong {
            color: #667eea;
            font-weight: 600;
            background: linear-gradient(135deg,
                rgba(102, 126, 234, 0.1) 0%,
                rgba(118, 75, 162, 0.1) 100%);
            padding: 2px 6px;
            border-radius: 4px;
        }
        
        /* ═══════════════════════════════════════════════════════════════
           POINTS CLÉS - Design carte interactive
        ═══════════════════════════════════════════════════════════════ */
        
        .summary-highlights {
            background: linear-gradient(135deg,
                rgba(102, 126, 234, 0.03) 0%,
                rgba(118, 75, 162, 0.03) 100%);
            border: 1px solid rgba(102, 126, 234, 0.1);
            border-radius: 16px;
            padding: 20px 24px;
            margin-bottom: 20px;
        }
        
        .summary-highlights-title {
            font-size: 12px;
            font-weight: 700;
            color: #667eea;
            margin-bottom: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .summary-highlights-title::before {
            content: '';
            width: 3px;
            height: 14px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 2px;
        }
        
        .highlight-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 12px;
            font-size: 14.5px;
            color: #374151;
            transition: all 0.2s ease;
            padding: 8px;
            border-radius: 8px;
        }
        
        .highlight-item:hover {
            background: rgba(102, 126, 234, 0.04);
            transform: translateX(4px);
        }
        
        .highlight-item:last-child {
            margin-bottom: 0;
        }
        
        .highlight-item i {
            color: #667eea;
            margin-top: 2px;
            font-size: 14px;
            min-width: 16px;
        }
        
        /* ═══════════════════════════════════════════════════════════════
           STATS - Grid responsive avec cartes interactives + tooltips
        ═══════════════════════════════════════════════════════════════ */
        
        .summary-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 16px;
            padding-top: 20px;
            border-top: 1px solid rgba(0, 0, 0, 0.06);
        }
        
        .stat-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 16px;
            background: linear-gradient(135deg,
                rgba(102, 126, 234, 0.04) 0%,
                rgba(118, 75, 162, 0.04) 100%);
            border-radius: 12px;
            border: 1px solid rgba(102, 126, 234, 0.08);
            transition: all 0.3s ease;
            cursor: help;
            position: relative;
        }
        
        .stat-item:hover {
            background: linear-gradient(135deg,
                rgba(102, 126, 234, 0.08) 0%,
                rgba(118, 75, 162, 0.08) 100%);
            border-color: rgba(102, 126, 234, 0.2);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
        }
        
        .stat-item i {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 10px;
            font-size: 16px;
            box-shadow: 0 2px 8px rgba(102, 126, 234, 0.25);
        }
        
        .stat-item span {
            display: flex;
            flex-direction: column;
            gap: 2px;
            flex: 1;
        }
        
        .stat-item .stat-value {
            font-size: 16px;
            font-weight: 700;
            color: #111827;
        }
        
        .stat-item .stat-label {
            font-size: 11px;
            font-weight: 600;
            color: #9CA3AF;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        /* Tooltip explicatif au hover */
        .stat-item::after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(-8px);
            background: #1f2937;
            color: white;
            padding: 8px 12px;
            border-radius: 8px;
            font-size: 12px;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            z-index: 10;
        }
        
        .stat-item::before {
            content: '';
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(-2px);
            width: 0;
            height: 0;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-top: 6px solid #1f2937;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
            z-index: 10;
        }
        
        .stat-item:hover::after,
        .stat-item:hover::before {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }
        
        /* ═══════════════════════════════════════════════════════════════
           FOOTER - Badge "Powered by AI" discret
        ═══════════════════════════════════════════════════════════════ */
        
        .summary-powered {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            font-size: 11px;
            color: #9CA3AF;
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid rgba(0, 0, 0, 0.04);
        }
        
        .summary-powered i {
            font-size: 12px;
            color: #667eea;
            animation: sparkle 2s ease-in-out infinite;
        }
        
        @keyframes sparkle {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.7; transform: scale(1.1); }
        }
        
        /* ═══════════════════════════════════════════════════════════════
           RESPONSIVE - Mobile optimisations
        ═══════════════════════════════════════════════════════════════ */
        
        @media (max-width: 768px) {
            .question-summary {
                border-radius: 16px;
                margin-bottom: 24px;
            }
        
            .summary-header {
                padding: 20px;
                flex-direction: column;
                align-items: flex-start;
            }
        
            .summary-content {
                padding: 20px;
            }
        
            .summary-stats {
                grid-template-columns: 1fr;
                gap: 12px;
            }
        
            .summary-text::before {
                font-size: 36px;
            }
        
            .stat-item::after {
                white-space: normal;
                max-width: 200px;
                text-align: center;
            }
        }
        

        /* Responses Toggle */
        .responses-toggle {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px;
            border-top: 1px solid var(--border);
            cursor: pointer;
            user-select: none;
            transition: all 0.2s;
            border-radius: 0 0 var(--radius) var(--radius);
            margin: 14px -18px -18px -18px;
        }

        .responses-toggle:hover {
            background: var(--bg-secondary);
        }

        .responses-count {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            color: var(--primary);
            font-size: 14px;
        }

        .responses-count i {
            font-size: 16px;
        }

        .toggle-icon {
            color: var(--text-tertiary);
            transition: transform 0.3s;
            font-size: 14px;
        }

        .toggle-icon.open {
            transform: rotate(180deg);
        }

        .responses-list {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            margin-top: 14px;
        }

        .responses-list.open {
            max-height: 5000px;
        }

        /* Response Item - NOUVEAU DESIGN */
        .response-item {
            background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
            padding: 14px;
            margin-bottom: 10px;
            border-radius: var(--radius);
            border-left: 4px solid var(--secondary);
            font-size: 14px;
            box-shadow: var(--shadow);
            transition: all 0.2s;
        }

        .response-item:hover {
            transform: translateX(4px);
            box-shadow: var(--shadow-md);
        }

        .response-item:last-child {
            margin-bottom: 0;
        }

        .response-text {
            color: var(--text-primary);
            line-height: 1.7;
            margin-bottom: 10px;
        }

        .response-meta {
            display: flex;
            gap: 14px;
            font-size: 12px;
            color: var(--text-secondary);
            padding-top: 10px;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }

        .response-meta span {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .response-meta i {
            color: var(--secondary);
        }

        /* Footer */
        .footer {
            background: var(--bg-primary);
            border-top: 1px solid var(--border);
            padding: 24px 0;
            margin-top: 40px;
        }

        .footer-notice {
            background: var(--bg-secondary);
            border-radius: var(--radius);
            padding: 14px;
            margin-bottom: 12px;
            text-align: center;
            border: 1px solid var(--border);
        }

        .footer-notice p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .footer-text {
            text-align: center;
            font-size: 12px;
            color: var(--text-tertiary);
        }

        /* Scroll to top */
        .scroll-top {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 102, 204, 0.4);
            transition: all 0.3s;
            z-index: 1000;
        }

        .scroll-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0, 102, 204, 0.5);
        }

        .scroll-top.show {
            display: flex;
        }

        /* Mobile */
        @media (max-width: 768px) {
            .container {
                padding: 0 12px;
            }

            .hero {
                padding: 32px 0 20px;
            }

            .hero h1 {
                font-size: 24px;
            }

            .quick-nav {
                top: 53px;
                padding: 12px 0;
            }

            .nav-pills {
                gap: 6px;
            }

            .nav-pill {
                padding: 6px 12px;
                font-size: 13px;
            }

            .subcategory-section {
                padding: 14px;
                scroll-margin-top: 120px;
            }

            .subcategory-header {
                margin: -14px -14px 14px -14px;
                padding: 14px 14px 10px 14px;
            }

            .subcategory-title {
                font-size: 18px;
            }

            .question-card {
                padding: 14px;
            }

            .responses-toggle {
                margin: 14px -14px -14px -14px;
            }

            .recs-grid {
                grid-template-columns: 1fr;
            }
        }

        .no-results {
            text-align: center;
            padding: 40px 20px;
            display: none;
        }

        .no-results.show {
            display: block;
        }
    
        /* Boutons d'interaction V6 */
        .question-actions {
            display: flex;
            gap: 10px;
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid var(--border);
        }

        .action-btn {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 9px 16px;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-secondary);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .action-btn:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: translateY(-1px);
            box-shadow: 0 4px 10px rgba(0, 102, 204, 0.25);
        }

        .action-btn i {
            font-size: 14px;
            transition: transform 0.2s;
        }

        .action-btn:hover i {
            transform: scale(1.1);
        }

        .action-btn.liked {
            background: linear-gradient(135deg, #FEE2E2, #FECACA);
            color: #991B1B;
            border-color: #FCA5A5;
        }

        .action-btn.liked:hover {
            background: linear-gradient(135deg, #FCA5A5, #F87171);
            color: white;
        }

        .like-count {
            font-weight: 700;
        }

        /* Formulaire de réponse */
        .reply-form {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            margin-top: 16px;
        }

        .reply-form.open {
            max-height: 500px;
        }

        .reply-form-inner {
            background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
            border-radius: var(--radius);
            padding: 20px;
            border: 2px solid var(--border);
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        .form-group {
            margin-bottom: 14px;
        }

        .form-label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .form-input {
            width: 100%;
            padding: 11px 14px;
            border: 2px solid var(--border);
            border-radius: 8px;
            font-size: 14px;
            font-family: inherit;
            transition: all 0.2s;
            background: white;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
        }

        .form-textarea {
            min-height: 110px;
            resize: vertical;
            line-height: 1.6;
        }

        .form-note {
            font-size: 12px;
            color: var(--text-secondary);
            font-style: italic;
            margin-top: 8px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .form-note i {
            color: var(--primary);
        }

        .form-actions {
            display: flex;
            gap: 10px;
            margin-top: 16px;
        }

        .btn-submit {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            border: none;
            padding: 11px 24px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 102, 204, 0.35);
        }

        .btn-submit:active {
            transform: translateY(0);
        }

        .btn-cancel {
            background: white;
            color: var(--text-secondary);
            border: 2px solid var(--border);
            padding: 11px 24px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .btn-cancel:hover {
            background: var(--bg-secondary);
            border-color: var(--text-secondary);
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-15px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .reply-form.open .reply-form-inner {
            animation: slideDown 0.3s ease;
        }
    

/* === Améliorations Menu Sticky === */
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary);
}

.cta-bonplan {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: white !important;
    padding: 8px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
    white-space: nowrap;
}

.cta-bonplan:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

/* Breadcrumb séparé */
.breadcrumb-wrapper {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .nav-menu {
        width: 100%;
        justify-content: space-between;
    }

    .cta-bonplan {
        font-size: 12px;
        padding: 6px 12px;
    }
}
    
        /* ═══════════════════════════════════════════════════════════════
           V3 ENHANCEMENTS - Jauge de confiance + Badges + Liste
        ═══════════════════════════════════════════════════════════════ */
        
        /* Header V3 avec jauge */
        .summary-header-v3 {
            background: linear-gradient(135deg,
                rgba(102, 126, 234, 0.03) 0%,
                rgba(118, 75, 162, 0.03) 100%);
            padding: 24px 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        }
        
        .summary-title-v3 {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 18px;
            font-weight: 600;
            color: #1f2937;
            margin: 0;
        }
        
        .summary-title-v3 i {
            color: #10b981;
            font-size: 22px;
        }
        
        /* Jauge de confiance circulaire */
        .confidence-gauge {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
        }
        
        .confidence-circle {
            width: 60px;
            height: 60px;
        }
        
        .circular-chart {
            display: block;
            max-width: 100%;
            max-height: 100%;
        }
        
        .circle-bg {
            fill: none;
            stroke: #e5e7eb;
            stroke-width: 3;
        }
        
        .circle {
            fill: none;
            stroke-width: 3;
            stroke-linecap: round;
            animation: progress 1s ease-out forwards;
        }
        
        @keyframes progress {
            0% {
                stroke-dasharray: 0 100;
            }
        }
        
        .circular-chart .percentage {
            fill: #1f2937;
            font-size: 0.5em;
            font-weight: 700;
            text-anchor: middle;
        }
        
        .confidence-label {
            font-size: 11px;
            font-weight: 600;
            color: #6b7280;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        /* Content V3 */
        .summary-content-v3 {
            padding: 24px 28px;
        }
        
        .summary-text-v3 {
            font-size: 15px;
            line-height: 1.7;
            color: #374151;
            margin: 0 0 20px 0;
            font-weight: 400;
        }
        
        /* Liste de recommandations avec badges */
        .recommendations-list {
            list-style: none;
            padding: 0;
            margin: 0 0 24px 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .recommendation-item {
            display: flex;
            flex-direction: column;
            gap: 8px;
            padding: 16px;
            background: linear-gradient(135deg,
                rgba(102, 126, 234, 0.04) 0%,
                rgba(118, 75, 162, 0.04) 100%);
            border-radius: 12px;
            border-left: 3px solid #667eea;
            transition: all 0.3s ease;
        }
        
        .recommendation-item:hover {
            background: linear-gradient(135deg,
                rgba(102, 126, 234, 0.08) 0%,
                rgba(118, 75, 162, 0.08) 100%);
            transform: translateX(4px);
            box-shadow: 0 2px 8px rgba(102, 126, 234, 0.1);
        }
        
        .rec-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .rec-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 10px;
            background: white;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 600;
            white-space: nowrap;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
        }
        
        .rec-badge i {
            font-size: 14px;
        }
        
        .rec-name {
            font-size: 16px;
            font-weight: 700;
            color: #1f2937;
            margin: 4px 0;
        }
        
        .rec-strength {
            font-size: 13px;
            color: #6b7280;
            font-style: italic;
            line-height: 1.4;
        }
        
        /* Mobile responsive V3 */
        @media (max-width: 768px) {
            .summary-header-v3 {
                padding: 20px;
                flex-direction: column;
                align-items: flex-start;
            }
        
            .confidence-gauge {
                align-self: flex-end;
            }
        
            .summary-content-v3 {
                padding: 20px;
            }
        
            .summary-title-v3 {
                font-size: 16px;
            }
        
            .recommendation-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
        
            .rec-badge {
                font-size: 12px;
                padding: 3px 8px;
            }
        
            .rec-name {
                font-size: 14px;
            }
        }
        
    
        /* ═══════════════════════════════════════════════════════════════
           V3 ENHANCEMENTS - Jauge de confiance + Badges + Liste
        ═══════════════════════════════════════════════════════════════ */
        
        /* Header V3 avec jauge */
        .summary-header-v3 {
            background: linear-gradient(135deg,
                rgba(102, 126, 234, 0.03) 0%,
                rgba(118, 75, 162, 0.03) 100%);
            padding: 24px 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        }
        
        .summary-title-v3 {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 18px;
            font-weight: 600;
            color: #1f2937;
            margin: 0;
        }
        
        .summary-title-v3 i {
            color: #10b981;
            font-size: 22px;
        }
        
        /* Jauge de confiance circulaire */
        .confidence-gauge {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
        }
        
        .confidence-circle {
            width: 70px;
            height: 70px;
        }
        
        .circular-chart {
            display: block;
            width: 100%;
            height: 100%;
        }
        
        .circle-bg {
            fill: none;
            stroke: #e5e7eb;
            stroke-width: 3.5;
        }
        
        .circle {
            fill: none;
            stroke-width: 3.5;
            stroke-linecap: round;
            animation: progress 1s ease-out forwards;
        }
        
        @keyframes progress {
            0% {
                stroke-dasharray: 0 100;
            }
        }
        
        .circular-chart .percentage {
            fill: #1f2937;
            font-size: 9px;
            font-weight: 700;
            text-anchor: middle;
            dominant-baseline: middle;
        }
        
        .confidence-label {
            font-size: 11px;
            font-weight: 600;
            color: #6b7280;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        /* Content V3 */
        .summary-content-v3 {
            padding: 24px 28px;
        }
        
        .summary-text-v3 {
            font-size: 15px;
            line-height: 1.7;
            color: #374151;
            margin: 0 0 20px 0;
            font-weight: 400;
        }
        
        /* Liste de recommandations avec badges */
        .recommendations-list {
            list-style: none;
            padding: 0;
            margin: 0 0 24px 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .recommendation-item {
            display: flex;
            flex-direction: column;
            gap: 8px;
            padding: 16px;
            background: linear-gradient(135deg,
                rgba(102, 126, 234, 0.04) 0%,
                rgba(118, 75, 162, 0.04) 100%);
            border-radius: 12px;
            border-left: 3px solid #667eea;
            transition: all 0.3s ease;
        }
        
        .recommendation-item:hover {
            background: linear-gradient(135deg,
                rgba(102, 126, 234, 0.08) 0%,
                rgba(118, 75, 162, 0.08) 100%);
            transform: translateX(4px);
            box-shadow: 0 2px 8px rgba(102, 126, 234, 0.1);
        }
        
        .rec-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .rec-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 10px;
            background: white;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 600;
            white-space: nowrap;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
        }
        
        .rec-badge i {
            font-size: 14px;
        }
        
        .rec-name {
            font-size: 16px;
            font-weight: 700;
            color: #1f2937;
            margin: 4px 0;
        }
        
        .rec-strength {
            font-size: 13px;
            color: #6b7280;
            font-style: italic;
            line-height: 1.4;
        }
        
        /* Mobile responsive V3 */
        @media (max-width: 768px) {
            .summary-header-v3 {
                padding: 20px;
                flex-direction: column;
                align-items: flex-start;
            }
        
            .confidence-gauge {
                align-self: flex-end;
            }
        
            .summary-content-v3 {
                padding: 20px;
            }
        
            .summary-title-v3 {
                font-size: 16px;
            }
        
            .recommendation-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
        
            .rec-badge {
                font-size: 12px;
                padding: 3px 8px;
            }
        
            .rec-name {
                font-size: 14px;
            }
        }

        /* Responsive Mobile */
        @media (max-width: 768px) {
            .header-nav {
                padding: 12px 16px;
                min-height: 52px;
                top: 0 !important;
                position: sticky !important;
                transform: none !important;
                margin-top: 0 !important;
            }

            /* Désactiver les transforms sur mobile pour éviter les bugs sticky */
            .logo-container:hover .logo-symbol {
                transform: none;
            }

            .breadcrumb-wrapper {
                padding: 8px 16px !important;
            }

            .main-container {
                padding: 5px 16px 20px;
            }

            .logo-container {
                gap: 10px;
            }

            .logo-symbol {
                width: 34px;
                height: 34px;
            }

            .logo-icon-static {
                font-size: 17px;
            }

            .logo-text {
                font-size: 16px;
            }

            .logo-slogan {
                font-size: 8px;
            }

            .nav-actions {
                gap: 8px;
            }

            .nav-btn {
                padding: 7px 12px;
                font-size: 12px;
                gap: 6px;
            }

            .nav-btn i {
                font-size: 12px;
            }

            .nav-btn-cta {
                padding: 7px 14px;
            }

            .cta-icon {
                font-size: 16px;
            }

            .cta-main {
                font-size: 13px;
            }

            .cta-sub {
                font-size: 10px;
            }

            .breadcrumb-wrapper {
                padding: 12px 16px;
            }

            .breadcrumb {
                font-size: 12px;
            }

            .breadcrumb i {
                font-size: 11px;
            }

            .main-container {
                padding: 20px 16px;
            }

            .hero-card {
                padding: 24px 20px;
                border-radius: 24px;
            }

            .hero-card::before {
                border-radius: 24px;
            }

            .hero-header {
                flex-direction: column;
                align-items: center;
                gap: 16px;
                margin-bottom: 20px;
            }

            .hero-icon {
                width: 60px;
                height: 60px;
                border-radius: 16px;
            }

            .hero-icon i {
                font-size: 32px;
            }

            .hero-text {
                width: 100%;
                text-align: center;
            }

            .hero-title {
                font-size: 28px;
                margin-bottom: 8px;
            }

            .hero-subtitle {
                font-size: 15px;
                margin-bottom: 16px;
                line-height: 1.4;
            }

            .hero-badges {
                gap: 8px;
                margin-bottom: 20px;
                flex-wrap: nowrap;
                overflow-x: auto;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }

            .hero-badges::-webkit-scrollbar {
                display: none;
            }

            .badge {
                padding: 7px 12px;
                font-size: 11px;
                gap: 6px;
                border-radius: 10px;
                white-space: nowrap;
                flex-shrink: 0;
            }

            .badge-icon {
                font-size: 13px;
            }

            .search-section {
                margin-top: 20px;
            }

            .search-box-new {
                padding: 6px 6px 6px 20px;
            }

            .search-input-new {
                font-size: 14px;
            }

            .search-btn-new {
                width: 46px;
                height: 46px;
                font-size: 16px;
            }
        }

        @media (max-width: 380px) {
            .logo-text {
                font-size: 16px;
            }

            .hero-title {
                font-size: 24px;
            }

            .hero-subtitle {
                font-size: 14px;
            }

            .cta-main {
                font-size: 12px;
            }

            .cta-sub {
                font-size: 9px;
            }

            .badge {
                padding: 6px 10px;
                font-size: 10px;
                gap: 5px;
            }

            .badge-icon {
                font-size: 11px;
            }

            .badge span {
                font-size: 10px;
            }
        }