        /* ============================================================================
           VARIABLES CSS - PALETTE GRIS PREMIUM
           ============================================================================ */
        :root {
            /* Couleurs de fond */
            --color-bg-primary: #f5f5f7;
            --color-bg-secondary: #ffffff;
            --color-bg-dark: #1d1d1f;
            --color-bg-darker: #0d0d0d;

            /* Couleurs de texte */
            --color-text-primary: #1d1d1f;
            --color-text-secondary: #515154;
            --color-text-tertiary: #86868b;
            --color-text-muted: #6e6e73;
            --color-text-light: #f5f5f7;

            /* Couleur d'accent (bleu-gris discret) */
            --color-accent: #3a3a3c;
            --color-accent-hover: #2c2c2e;
            --color-accent-light: #636366;

            /* Couleurs utilitaires */
            --color-success: #34c759;
            --color-success-bg: rgba(52, 199, 89, 0.1);
            --color-error: #ff3b30;
            --color-error-bg: rgba(255, 59, 48, 0.1);
            --color-urgent: #ff6b35;
            --color-urgent-bg: #1a1a2e;

            /* Effets glassmorphism */
            --glass-bg: rgba(255, 255, 255, 0.7);
            --glass-bg-dark: rgba(29, 29, 31, 0.8);
            --glass-border: rgba(255, 255, 255, 0.3);
            --glass-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);

            /* Bordures et ombres */
            --color-border: rgba(0, 0, 0, 0.08);
            --border-color: rgba(0, 0, 0, 0.08);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 8px 24px rgba(0, 0, 0, 0.12);

            /* Espacements */
            --spacing-xs: 0.5rem;
            --spacing-sm: 1rem;
            --spacing-md: 1.5rem;
            --spacing-lg: 2rem;
            --spacing-xl: 3rem;
            --spacing-2xl: 4rem;
            --spacing-3xl: 6rem;

            /* Arrondis */
            --radius-xs: 4px;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --radius-full: 9999px;

            /* Transitions — snappy, minimal */
            --transition-fast: 100ms ease;
            --transition-normal: 150ms ease;
            --transition-slow: 200ms ease;

            /* Dimensions */
            --header-height: 72px;
            --top-bar-height: 44px;
            --container-max: 1400px;
        }

        /* Accessibility */
        .skip-link {
            position: absolute;
            top: -100%;
            left: 0;
            background: var(--color-bg-dark);
            color: var(--color-text-light);
            padding: var(--spacing-sm) var(--spacing-md);
            z-index: 10000;
            font-size: 0.9rem;
            transition: top 0.2s;
        }
        .skip-link:focus {
            top: 0;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* ============================================================================
           RESET & BASE
           ============================================================================ */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-size: 1rem;
            line-height: 1.6;
            color: var(--color-text-primary);
            background-color: var(--color-bg-primary);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            background: none;
        }

        input, select, textarea {
            font-family: inherit;
            font-size: inherit;
        }

        ul, ol {
            list-style: none;
        }

        /* ============================================================================
           UTILITAIRES
           ============================================================================ */
        .container {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 var(--spacing-md);
        }

        .section {
            padding: var(--spacing-2xl) 0;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto var(--spacing-2xl);
        }

        .section-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.85);
            border: 1px solid var(--glass-border);
            padding: var(--spacing-xs) var(--spacing-md);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--color-text-secondary);
            margin-bottom: var(--spacing-md);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 800;
            color: var(--color-text-primary);
            margin-bottom: var(--spacing-sm);
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: var(--color-text-secondary);
            line-height: 1.7;
        }

        /* Glass Card — base styling only, hover effects in page-specific CSS */
        .glass-card {
            background: var(--color-bg-secondary);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-lg);
            box-shadow: var(--glass-shadow);
        }

        /* Animation au scroll — rapide, sans déplacement excessif */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(8px);
            transition: opacity var(--transition-normal), transform var(--transition-normal);
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ============================================================================
           TOP BAR URGENCE
           ============================================================================ */
        .top-bar {
            background: var(--color-urgent-bg);
            color: #fff;
            padding: 10px 0;
            text-align: center;
            font-size: 0.875rem;
            font-weight: 500;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 101;
            will-change: transform;
        }

        .top-bar__content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .top-bar__icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            background: var(--color-urgent);
            border-radius: 50%;
        }

        .top-bar__icon svg {
            width: 14px;
            height: 14px;
        }

        .top-bar__text {
            color: rgba(255, 255, 255, 0.9);
        }

        .top-bar__text strong {
            color: var(--color-urgent);
        }

        .top-bar__phone {
            color: #fff;
            font-weight: 700;
            text-decoration: none;
            background: var(--color-urgent);
            padding: 4px 12px;
            border-radius: 20px;
            transition: background var(--transition-fast);
        }

        .top-bar__phone:hover {
            background: #ff8555;
        }

        /* ============================================================================
           HEADER
           ============================================================================ */
        .header {
            position: fixed;
            top: var(--top-bar-height);
            left: 0;
            right: 0;
            height: var(--header-height);
            background: rgba(245, 245, 247, 0.97);
            border-bottom: 1px solid var(--border-color);
            z-index: 100;
            transition: background var(--transition-fast), box-shadow var(--transition-fast);
            overflow: visible;
            will-change: transform;
        }

        .top-bar-spacer {
            height: var(--top-bar-height);
        }

        /* Body scroll lock quand menu ouvert */
        body.menu-open {
            overflow: hidden;
        }

        .header.scrolled {
            background: rgba(245, 245, 247, 1);
            box-shadow: var(--shadow-sm);
        }

        .header__container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            gap: var(--spacing-md);
        }

        .header__logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--color-text-primary);
            letter-spacing: -0.02em;
            flex-shrink: 0;
        }

        .header__logo .domain {
            font-weight: 400;
            color: var(--color-text-muted);
        }

        /* Navigation links (center) */
        .header__nav {
            display: flex;
            align-items: center;
            gap: var(--spacing-lg);
        }

        .header__nav-link {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--color-text-secondary);
            padding: var(--spacing-xs) 0;
            position: relative;
            white-space: nowrap;
        }

        .header__nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-accent);
            transition: width var(--transition-fast);
        }

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

        .header__nav-link:hover::after {
            width: 100%;
        }

        /* Action buttons group (right) */
        .header__actions {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-shrink: 0;
        }

        /* Contact CTA button */
        .header__cta {
            display: inline-flex;
            align-items: center;
            gap: var(--spacing-xs);
            background: var(--color-accent);
            color: var(--color-text-light);
            padding: 8px 16px;
            border-radius: var(--radius-md);
            font-weight: 600;
            font-size: 0.85rem;
            transition: background var(--transition-fast);
            white-space: nowrap;
        }

        .header__cta:hover {
            background: var(--color-accent-hover);
        }

        .header__cta svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }

        /* Icon buttons (cart, account) */
        .header__icon-btn {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: var(--radius-sm);
            color: var(--color-text-secondary);
            transition: color var(--transition-fast), background var(--transition-fast);
        }

        .header__icon-btn:hover {
            color: var(--color-text-primary);
            background: rgba(0, 0, 0, 0.05);
        }

        .header__icon-btn svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }

        /* Desktop: hide icon labels */
        .header__icon-label {
            display: none;
        }

        /* Cart badge */
        .header__cart-badge {
            position: absolute;
            top: 2px;
            right: 2px;
            min-width: 18px;
            height: 18px;
            padding: 0 5px;
            background: var(--color-urgent);
            color: #fff;
            font-size: 0.65rem;
            font-weight: 700;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        /* Cart button highlight when has items */
        .header__cart-btn.has-items {
            color: var(--color-text-primary);
        }

        /* Wishlist badge (same style, pink accent) */
        .header__wishlist-badge {
            position: absolute;
            top: 2px;
            right: 2px;
            min-width: 18px;
            height: 18px;
            padding: 0 5px;
            background: #e75480;
            color: #fff;
            font-size: 0.65rem;
            font-weight: 700;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        /* Language Switcher */
        .header__lang {
            display: flex;
            align-items: center;
            gap: 2px;
        }

        .header__lang-link {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 6px 8px;
            border-radius: var(--radius-sm);
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--color-text-muted);
            transition: color var(--transition-fast), background var(--transition-fast);
            text-decoration: none;
        }

        .header__lang-link:hover {
            background: rgba(0, 0, 0, 0.05);
            color: var(--color-text-primary);
        }

        .header__lang-link.active {
            background: var(--color-text-primary);
            color: var(--color-text-light);
        }

        .header__lang-flag {
            width: 18px;
            height: 13px;
            border-radius: 2px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .header__lang-label {
            font-size: 0.8rem;
        }

        /* Hamburger toggle + mobile nav: hidden on desktop */
        .header__menu-toggle {
            display: none;
        }

        .header__mobile-nav {
            display: none;
        }

        /* ============================================================================
           HEADER MOBILE (max 768px)
           ============================================================================ */
        @media (max-width: 768px) {
            /* Hide top-bar on mobile */
            .top-bar {
                display: none;
            }

            /* Header sticks to top without top-bar */
            .header {
                top: 0;
            }

            .header__container {
                gap: var(--spacing-xs);
            }

            .header__logo {
                font-size: 1.25rem;
            }

            /* Hide desktop text nav links */
            .header__nav {
                display: none;
            }

            /* Actions always visible on mobile */
            .header__actions {
                gap: 8px;
            }

            /* Hide contact CTA on mobile (available in mobile nav) */
            .header__cta {
                display: none;
            }

            /* Icon buttons on mobile — compact */
            .header__icon-btn {
                width: 36px;
                height: 36px;
                min-width: 44px;
                min-height: 44px;
            }

            .header__icon-btn svg {
                width: 18px;
                height: 18px;
            }

            /* Language: flag only on mobile */
            .header__lang-label {
                display: none;
            }

            .header__lang-link {
                padding: 4px;
                min-height: 44px;
                min-width: 44px;
                justify-content: center;
                border-radius: 4px;
            }

            .header__lang-link.active {
                padding: 4px;
            }

            .header__lang-flag {
                width: 18px;
                height: 13px;
                border-radius: 2px;
            }

            /* Cart badge smaller on mobile */
            .header__cart-badge {
                top: 0;
                right: 0;
                min-width: 16px;
                height: 16px;
                font-size: 0.6rem;
                padding: 0 4px;
            }

            /* Wishlist badge smaller on mobile */
            .header__wishlist-badge {
                top: 0;
                right: 0;
                min-width: 16px;
                height: 16px;
                font-size: 0.6rem;
                padding: 0 4px;
            }

            /* Hamburger toggle */
            .header__menu-toggle {
                display: flex;
                flex-direction: column;
                justify-content: center;
                gap: 4px;
                width: 36px;
                height: 36px;
                padding: 9px 7px;
                background: none;
                border: none;
                cursor: pointer;
                border-radius: var(--radius-sm);
                transition: background var(--transition-fast);
            }

            .header__menu-toggle:hover {
                background: rgba(0, 0, 0, 0.05);
            }

            .header__menu-bar {
                display: block;
                width: 100%;
                height: 2px;
                background: var(--color-text-primary);
                border-radius: 1px;
                transition: transform var(--transition-normal), opacity var(--transition-normal);
            }

            /* Hamburger → X animation */
            .header__menu-toggle.active .header__menu-bar:nth-child(1) {
                transform: translateY(7px) rotate(45deg);
            }

            .header__menu-toggle.active .header__menu-bar:nth-child(2) {
                opacity: 0;
            }

            .header__menu-toggle.active .header__menu-bar:nth-child(3) {
                transform: translateY(-7px) rotate(-45deg);
            }

            /* Mobile nav drawer — full height overlay below header */
            .header__mobile-nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                height: calc(100vh - var(--header-height));
                height: calc(100dvh - var(--header-height));
                z-index: 999;
                background: var(--color-bg-primary);
                padding: 0 var(--spacing-md) var(--spacing-md);
                border-top: 1px solid var(--border-color);
                overflow-y: auto;
            }

            .header__mobile-nav.open {
                display: flex;
            }

            .header__mobile-link {
                display: block;
                padding: 14px var(--spacing-sm);
                font-size: 1rem;
                font-weight: 500;
                color: var(--color-text-secondary);
                text-decoration: none;
                border-radius: var(--radius-sm);
                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
                transition: color var(--transition-fast), background var(--transition-fast);
            }

            .header__mobile-link:last-child {
                border-bottom: none;
            }

            .header__mobile-link:hover,
            .header__mobile-link:active {
                color: var(--color-text-primary);
                background: rgba(0, 0, 0, 0.04);
            }
        }

        /* ============================================================================
           BUTTONS
           ============================================================================ */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: var(--spacing-xs);
            padding: var(--spacing-md) var(--spacing-xl);
            font-size: 1rem;
            font-weight: 600;
            border-radius: var(--radius-md);
            transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
            cursor: pointer;
        }

        .btn-primary {
            background: var(--color-accent);
            color: var(--color-text-light);
            box-shadow: var(--shadow-md);
        }

        .btn-primary:hover {
            background: var(--color-accent-hover);
            transform: translateY(-1px);
            box-shadow: var(--shadow-lg);
        }

        .btn-secondary {
            background: var(--color-bg-secondary);
            border: 1px solid var(--border-color);
            color: var(--color-text-primary);
        }

        .btn-secondary:hover {
            background: var(--color-bg-secondary);
            border-color: var(--color-accent);
            transform: translateY(-1px);
        }

        .btn-icon {
            width: 20px;
            height: 20px;
        }

        /* WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            bottom: 24px;
            left: 24px;
            width: 56px;
            height: 56px;
            background: #25D366;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            will-change: transform;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
            z-index: 80;
            transition: transform var(--transition-slow), box-shadow var(--transition-slow);
        }

        .whatsapp-float:hover {
            transform: scale(1.04);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
        }

        .whatsapp-float svg {
            width: 28px;
            height: 28px;
        }

        @media (max-width: 768px) {
            .whatsapp-float {
                bottom: 16px;
                left: 16px;
                width: 44px;
                height: 44px;
            }
            .whatsapp-float svg {
                width: 22px;
                height: 22px;
            }
        }

        /* ============================================================================
           SESSION EXPIRY WARNING
           ============================================================================ */
        .session-warn-overlay {
            position: fixed;
            inset: 0;
            z-index: 10000;
            background: rgba(0,0,0,0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: var(--spacing-md);
        }

        .session-warn {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: var(--spacing-lg);
            max-width: 380px;
            text-align: center;
            box-shadow: var(--shadow-xl);
        }

        .session-warn__title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--color-text-primary);
            margin: var(--spacing-sm) 0 6px;
        }

        .session-warn__text {
            font-size: 0.85rem;
            color: var(--color-text-muted);
            margin: 0 0 var(--spacing-md);
            line-height: 1.5;
        }

        .session-warn__btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.6rem 1.5rem;
            font-size: 0.88rem;
            font-weight: 600;
            font-family: inherit;
            background: var(--color-bg-dark);
            color: #fff;
            border: none;
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: opacity var(--transition-normal);
        }

        .session-warn__btn:hover { opacity: 0.85; }

        /* ============================================================================
           MOBILE BOTTOM NAV
           ============================================================================ */
        .bottom-nav {
            display: none;
        }

        @media (max-width: 768px) {
            .bottom-nav {
                display: flex;
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                z-index: 900;
                background: var(--color-bg-secondary);
                border-top: 1px solid var(--border-color);
                padding: 6px 0 calc(6px + env(safe-area-inset-bottom, 0px));
                justify-content: space-around;
                align-items: center;
            }

            .bottom-nav__item {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 2px;
                padding: 4px 6px;
                text-decoration: none;
                color: var(--color-text-muted);
                font-size: 0.6rem;
                font-weight: 500;
                transition: color var(--transition-fast);
                position: relative;
                min-width: 0;
                flex: 1;
            }

            .bottom-nav__item.active,
            .bottom-nav__item:hover {
                color: var(--color-text-primary);
            }

            .bottom-nav__item svg {
                width: 22px;
                height: 22px;
            }

            .bottom-nav__badge {
                position: absolute;
                top: 0;
                right: 4px;
                min-width: 16px;
                height: 16px;
                border-radius: 8px;
                background: var(--color-bg-dark);
                color: #fff;
                font-size: 0.6rem;
                font-weight: 700;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 0 4px;
            }

            .bottom-nav__badge--wishlist {
                background: #e75480;
            }

            /* Offset footer/content for bottom nav */
            .footer {
                padding-bottom: 70px;
            }

            .whatsapp-float {
                bottom: 76px !important;
            }
        }

        /* ============================================================================
           WISHLIST HEART BUTTON
           ============================================================================ */
        .wishlist-btn {
            position: absolute;
            top: 8px;
            right: 8px;
            z-index: 2;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(255,255,255,0.9);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform var(--transition-fast);
            padding: 0;
        }

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

        .wishlist-btn svg {
            width: 16px;
            height: 16px;
            color: var(--color-text-muted);
            transition: color var(--transition-fast);
        }

        .wishlist-btn.active svg {
            color: #ff3b30;
            fill: #ff3b30;
        }

        /* ============================================================================
           SEARCH AUTOCOMPLETE
           ============================================================================ */
        .search-autocomplete {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            z-index: 100;
            background: var(--color-bg-secondary);
            border: 1px solid var(--border-color);
            border-top: none;
            border-radius: 0 0 var(--radius-sm) var(--radius-sm);
            box-shadow: var(--shadow-md);
            max-height: 320px;
            overflow-y: auto;
            display: none;
        }

        .search-autocomplete.open {
            display: block;
        }

        .search-autocomplete__item {
            display: flex;
            align-items: center;
            gap: var(--spacing-sm);
            padding: 10px 14px;
            text-decoration: none;
            color: var(--color-text-primary);
            font-size: 0.85rem;
            border-bottom: 1px solid var(--border-color);
            transition: background var(--transition-fast);
        }

        .search-autocomplete__item:last-child {
            border-bottom: none;
        }

        .search-autocomplete__item:hover {
            background: var(--color-bg-primary);
        }

        .search-autocomplete__img {
            width: 40px;
            height: 40px;
            border-radius: var(--radius-xs);
            object-fit: cover;
            flex-shrink: 0;
        }

        .search-autocomplete__info {
            flex: 1;
            min-width: 0;
        }

        .search-autocomplete__name {
            display: block;
            font-weight: 500;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .search-autocomplete__price {
            display: block;
            font-size: 0.78rem;
            color: var(--color-text-muted);
        }

        /* ============================================================================
           DURATION PRICING TABLE (product page)
           ============================================================================ */
        .duration-pricing {
            margin-top: var(--spacing-md);
            padding: var(--spacing-sm);
            background: var(--color-bg-primary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
        }

        .duration-pricing__title {
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--color-text-muted);
            text-transform: uppercase;
            letter-spacing: 0.04em;
            margin: 0 0 var(--spacing-xs);
        }

        .duration-pricing__grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 6px;
        }

        .duration-pricing__cell {
            text-align: center;
            padding: 8px 4px;
            background: var(--color-bg-secondary);
            border-radius: var(--radius-xs);
            border: 1px solid var(--border-color);
        }

        .duration-pricing__days {
            display: block;
            font-size: 0.72rem;
            color: var(--color-text-muted);
            margin-bottom: 2px;
        }

        .duration-pricing__amount {
            display: block;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--color-text-primary);
        }

        /* ============================================================================
           FORM ELEMENTS (shared across contact & checkout)
           ============================================================================ */
        .contact__form-wrapper {
            background: var(--color-bg-secondary);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-xl);
            padding: var(--spacing-xl);
            box-shadow: var(--shadow-lg);
        }

        .contact__form-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--color-text-primary);
            margin-bottom: var(--spacing-lg);
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--spacing-md);
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: var(--spacing-xs);
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-label {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--color-text-secondary);
        }

        .form-label .required {
            color: var(--color-error);
        }

        .form-input,
        .form-textarea {
            padding: var(--spacing-md);
            border: 2px solid var(--border-color);
            border-radius: var(--radius-md);
            font-size: 1rem;
            background: var(--color-bg-secondary);
            transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
        }

        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--color-accent);
            box-shadow: 0 0 0 3px rgba(58, 58, 60, 0.1);
        }

        .form-input.error,
        .form-textarea.error {
            border-color: var(--color-error);
        }

        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }

        /* Checkbox urgence */
        .form-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            cursor: pointer;
            padding: var(--spacing-md);
            background: rgba(255, 107, 53, 0.08);
            border: 2px solid rgba(255, 107, 53, 0.2);
            border-radius: var(--radius-md);
            transition: border-color var(--transition-fast), background-color var(--transition-fast);
        }

        .form-checkbox:hover {
            border-color: var(--color-urgent);
            background: rgba(255, 107, 53, 0.12);
        }

        .form-checkbox input[type="checkbox"] {
            display: none;
        }

        .form-checkbox .checkmark {
            flex-shrink: 0;
            width: 22px;
            height: 22px;
            border: 2px solid var(--color-urgent);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color var(--transition-fast), border-color var(--transition-fast);
        }

        .form-checkbox .checkmark::after {
            content: '';
            width: 6px;
            height: 10px;
            border: solid #fff;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg) scale(0);
            transition: transform 0.15s ease;
        }

        .form-checkbox input[type="checkbox"]:checked + .checkmark {
            background: var(--color-urgent);
        }

        .form-checkbox input[type="checkbox"]:checked + .checkmark::after {
            transform: rotate(45deg) scale(1);
        }

        .form-checkbox .checkbox-label {
            font-size: 0.9375rem;
            color: var(--color-text-secondary);
            line-height: 1.5;
        }

        .form-checkbox .checkbox-label strong {
            color: var(--color-urgent);
        }

        .form-submit {
            margin-top: var(--spacing-lg);
        }

        .btn-submit {
            width: 100%;
            padding: var(--spacing-md) var(--spacing-xl);
            background: var(--color-accent);
            color: var(--color-text-light);
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: var(--radius-md);
            transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
        }

        .btn-submit:hover {
            background: var(--color-accent-hover);
            transform: translateY(-1px);
            box-shadow: var(--shadow-lg);
        }

        .btn-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .btn-submit.loading {
            pointer-events: none;
        }

        .loader {
            display: none;
            width: 20px;
            height: 20px;
            border: 2px solid transparent;
            border-top-color: currentColor;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        .btn-submit.loading .loader {
            display: inline-block;
        }

        .btn-submit.loading .btn-text {
            display: none;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .form-message {
            margin-top: var(--spacing-md);
        }

        .message {
            padding: var(--spacing-md);
            border-radius: var(--radius-md);
            text-align: center;
            font-weight: 600;
        }

        .message-success {
            background: var(--color-success-bg);
            color: var(--color-success);
            border: 1px solid rgba(52, 199, 89, 0.3);
        }

        .message-error {
            background: var(--color-error-bg);
            color: var(--color-error);
            border: 1px solid rgba(255, 59, 48, 0.3);
        }

        @media (max-width: 600px) {
            .form-grid {
                grid-template-columns: 1fr;
            }

            .form-group {
                grid-column: 1;
            }
        }

        /* ============================================================================
           FOOTER
           ============================================================================ */
        .footer {
            background: var(--color-bg-dark);
            color: var(--color-text-light);
            padding: var(--spacing-2xl) 0 var(--spacing-lg);
        }

        .footer__top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: var(--spacing-xl);
            padding-bottom: var(--spacing-xl);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer__brand {
            max-width: 300px;
        }

        .footer__logo {
            font-size: 1.75rem;
            font-weight: 800;
            margin-bottom: var(--spacing-md);
        }

        .footer__logo .domain {
            font-weight: 400;
            opacity: 0.7;
        }

        .footer__description {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
        }

        .footer__column h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: var(--spacing-md);
            color: var(--color-text-light);
        }

        .footer__links {
            display: flex;
            flex-direction: column;
            gap: var(--spacing-sm);
        }

        .footer__link {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.7);
            transition: color var(--transition-fast);
        }

        .footer__link:hover {
            color: var(--color-text-light);
        }

        .footer__contact-item {
            display: flex;
            align-items: center;
            gap: var(--spacing-sm);
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: var(--spacing-sm);
        }

        .footer__contact-item svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            opacity: 0.7;
        }

        .footer__bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: var(--spacing-lg);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.5);
        }

        .footer__legal-links {
            width: 100%;
            text-align: center;
            margin-bottom: 8px;
            font-size: 0.72rem;
        }
        .footer__legal-links a {
            color: rgba(255,255,255,0.4);
            text-decoration: none;
            transition: color 0.2s;
        }
        .footer__legal-links a:hover { color: rgba(255,255,255,0.7); }
        .footer__legal-sep { color: rgba(255,255,255,0.2); margin: 0 6px; }

        .footer__social {
            display: flex;
            gap: var(--spacing-md);
        }

        .footer__social-link {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-sm);
            color: var(--color-text-light);
            transition: background var(--transition-fast), transform var(--transition-fast);
        }

        .footer__social-link svg {
            flex-shrink: 0;
        }

        .footer__social-link:hover {
            background: var(--color-accent);
            transform: translateY(-1px);
        }

        @media (max-width: 900px) {
            .footer__top {
                grid-template-columns: 1fr 1fr;
            }

            .footer__brand {
                grid-column: 1 / -1;
                max-width: none;
            }
        }

        /* footer 600px — handled by 768px block */

        /* Section Nos marques */
        .footer__brands {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: var(--spacing-lg);
            margin-top: var(--spacing-lg);
            margin-bottom: var(--spacing-lg);
        }

        .footer__brands-title {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: var(--spacing-md);
            text-align: center;
        }

        .footer__brands-list {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: var(--spacing-lg) var(--spacing-xl);
        }

        .footer__brand-link {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        .footer__brand-link:hover {
            color: rgba(255, 255, 255, 0.9);
        }

        .footer__brand-link svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            opacity: 0.6;
        }

        .footer__brand-link:hover svg {
            opacity: 1;
        }

        /* brands 600px — handled by 768px block */

        /* ============================================================================
           RESPONSIVE - BASE / COMMON ELEMENTS
           ============================================================================ */

        /* === TABLETTE (max 1024px) === */
        @media (max-width: 1024px) {
            :root {
                --spacing-xl: 2rem;
                --spacing-2xl: 3rem;
                --spacing-3xl: 4rem;
            }

            .container {
                padding: 0 var(--spacing-md);
            }

            .footer__top {
                grid-template-columns: repeat(2, 1fr);
                gap: var(--spacing-lg);
            }

            .footer__brand {
                grid-column: span 2;
            }
        }

        /* === MOBILE LARGE (max 768px) === */
        @media (max-width: 768px) {
            :root {
                --header-height: 56px;
                --spacing-md: 1rem;
                --spacing-lg: 1.25rem;
                --spacing-xl: 1.5rem;
                --spacing-2xl: 2rem;
                --spacing-3xl: 2.5rem;
            }

            html {
                font-size: 15px;
            }

            .container {
                padding: 0 var(--spacing-sm);
            }

            .section {
                padding: var(--spacing-lg) 0;
            }

            .section-header {
                margin-bottom: var(--spacing-md);
            }

            .section-title {
                font-size: 1.35rem;
            }

            .section-subtitle {
                font-size: 0.85rem;
            }

            /* Contact form mobile */
            .contact__form-wrapper {
                padding: var(--spacing-md);
            }

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

            .form-group.full-width {
                grid-column: span 1;
            }

            /* Footer mobile — styles moved to dedicated footer compact block below */
            .footer__top {
                grid-template-columns: 1fr;
            }

            .footer__brand {
                grid-column: span 1;
            }
        }

        /* === MOBILE SMALL (max 480px) === */
        @media (max-width: 480px) {
            html {
                font-size: 15px;
            }

            .container {
                padding: 0 var(--spacing-sm);
            }

            .btn {
                width: 100%;
                justify-content: center;
            }

            /* Section titles */
            .section-title {
                font-size: 1.2rem;
            }

            /* Top bar mobile */
            .top-bar__content {
                flex-direction: column;
                gap: var(--spacing-xs);
                text-align: center;
            }

            .top-bar__text {
                font-size: 0.75rem;
            }

            .top-bar__phone {
                font-size: 0.85rem;
            }
        }

        /* ============================================================================
           FOCUS VISIBLE — Global keyboard focus styles
           ============================================================================ */
        .btn-add-to-cart:focus-visible,
        .category-btn:focus-visible,
        .product-card:focus-visible,
        .faq-question:focus-visible,
        .faq-card:focus-visible,
        .delivery-toggle__option:focus-visible,
        .btn:focus-visible,
        .btn-submit:focus-visible,
        .header__nav-link:focus-visible,
        .header__mobile-link:focus-visible,
        .header__icon-btn:focus-visible,
        .footer__link:focus-visible,
        .footer__social-link:focus-visible {
            outline: 2px solid var(--color-accent);
            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;
            }
        }

        /* === TOUCH DEVICE IMPROVEMENTS === */
        @media (hover: none) and (pointer: coarse) {
            .btn:hover {
                transform: none;
            }

            /* Active tap feedback */
            .btn:active,
            button:active {
                opacity: 0.75;
            }

            /* Ensure touch targets >= 44px */
            button,
            a.btn,
            input[type="submit"] {
                min-height: 44px;
            }
        }

        /* === FOOTER TOGGLE (desktop: hidden, mobile: shown) === */
        .footer__toggle {
            cursor: default;
        }

        .footer__toggle-icon {
            display: none;
        }

        .footer__collapsible {
            /* On desktop: always visible, no animation */
        }

        /* === MOBILE UX - FOOTER / FORM COMPACT (max 768px) === */
        @media (max-width: 768px) {
            /* Footer compact with toggles */
            .footer {
                padding: var(--spacing-md) 0 calc(var(--spacing-sm) + 70px);
            }

            .footer__top {
                gap: 0;
                padding-bottom: var(--spacing-md);
            }

            .footer__brand {
                padding-bottom: var(--spacing-md);
                margin-bottom: var(--spacing-xs);
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            }

            .footer__logo {
                font-size: 1.3rem;
                margin-bottom: var(--spacing-xs);
            }

            .footer__description {
                font-size: 0.82rem;
                line-height: 1.5;
            }

            /* Toggle headers */
            .footer__column {
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            }

            .footer__column h4.footer__toggle {
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 12px 0;
                margin-bottom: 0;
                cursor: pointer;
                font-size: 0.85rem;
                -webkit-tap-highlight-color: transparent;
            }

            .footer__toggle-icon {
                display: block;
                width: 16px;
                height: 16px;
                flex-shrink: 0;
                opacity: 0.5;
                transition: transform var(--transition-fast);
            }

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

            /* Collapsible content */
            .footer__collapsible {
                max-height: 0;
                overflow: hidden;
                transition: max-height var(--transition-slow);
            }

            .footer__column.open .footer__collapsible {
                max-height: 300px;
            }

            .footer__links {
                padding-bottom: 10px;
                gap: 2px;
                align-items: flex-start;
                text-align: left;
            }

            .footer__link {
                font-size: 0.82rem;
                padding: 5px 0;
            }

            .footer__contact-item {
                justify-content: flex-start;
                font-size: 0.82rem;
                margin-bottom: 6px;
                gap: 8px;
            }

            .footer__contact-item svg {
                width: 15px;
                height: 15px;
            }

            /* Brands compact */
            .footer__brands {
                padding-top: var(--spacing-sm);
                margin-top: var(--spacing-sm);
                margin-bottom: var(--spacing-sm);
            }

            .footer__brands-title {
                font-size: 0.65rem;
                margin-bottom: var(--spacing-xs);
            }

            .footer__brands-list {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
                gap: 8px 14px;
            }

            .footer__brand-link {
                font-size: 0.75rem;
                gap: 4px;
            }

            .footer__brand-link svg {
                width: 14px;
                height: 14px;
            }

            /* Bottom compact */
            .footer__bottom {
                padding-top: var(--spacing-sm);
                font-size: 0.75rem;
            }

            .footer__social {
                gap: var(--spacing-sm);
            }

            .footer__social-link {
                width: 34px;
                height: 34px;
            }

            .footer__social-link svg {
                width: 16px;
                height: 16px;
            }

            /* Form compact */
            .contact__form {
                padding: var(--spacing-md);
            }

            .form-group label {
                font-size: 0.8rem;
            }

            .form-group input,
            .form-group textarea,
            .form-group select {
                padding: 12px 14px;
                font-size: 16px; /* Prevent iOS auto-zoom on focus */
            }
        }

/* ============================================================
   PRICE ALTERNATIVE CURRENCY (EUR / USD)
   ============================================================ */
.price-alt {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-text-muted);
    opacity: 0.7;
    margin-top: 2px;
    letter-spacing: 0.01em;
}

/* ============================================================================
   PLANEXPO BANNERS — Announcement Bar (B3), Large Banner (B4), Mobile (B6)
   ============================================================================ */

/* ── B3 — Announcement Bar (all pages, top) ── */
.planexpo-bar {
    display: flex;
    align-items: center;
    width: 100%;
    height: 48px;
    background: linear-gradient(90deg, var(--color-bg-dark) 0%, #2c2c2e 50%, var(--color-accent) 100%);
    padding: 0 24px;
    gap: 14px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
    z-index: 1001;
}

.planexpo-bar__shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.04), transparent);
    animation: planexpoShimmer 4s ease infinite;
}
@keyframes planexpoShimmer {
    0% { left: -60%; }
    100% { left: 120%; }
}

.planexpo-bar__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-success);
    flex-shrink: 0;
    animation: planexpoBlink 2s ease infinite;
}
@keyframes planexpoBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: .4; }
}

.planexpo-bar__text {
    position: relative;
    flex: 1;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.planexpo-bar__text strong {
    color: var(--color-success);
    font-weight: 700;
}

.planexpo-bar__cta {
    position: relative;
    flex-shrink: 0;
    padding: 6px 16px;
    background: rgba(255,255,255,.1);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-xs);
    border: 1px solid rgba(255,255,255,.12);
    transition: background var(--transition-fast);
    white-space: nowrap;
}
.planexpo-bar:hover .planexpo-bar__cta {
    background: rgba(255,255,255,.18);
}

.planexpo-bar__close {
    position: relative;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.4);
    font-size: 18px;
    background: none;
    border: none;
    cursor: pointer;
    transition: color var(--transition-fast);
}
.planexpo-bar__close:hover {
    color: rgba(255,255,255,.8);
}

/* ── B4 — Large Banner (homepage) ── */
.planexpo-banner {
    padding: 32px 0;
}

.planexpo-b4 {
    display: flex;
    width: 100%;
    max-width: 970px;
    height: 250px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
    box-shadow: var(--shadow-md);
    transition: box-shadow var(--transition-normal);
}
.planexpo-b4:hover {
    box-shadow: var(--shadow-xl);
}

.planexpo-b4__left {
    width: 420px;
    background: linear-gradient(170deg, var(--color-bg-darker), var(--color-bg-dark) 60%, #2c2c2e);
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.planexpo-b4__left-geo {
    position: absolute;
    right: -40px;
    top: -40px;
    width: 180px;
    height: 180px;
    border: 2px solid rgba(255,255,255,.04);
    border-radius: 50%;
}
.planexpo-b4__left-geo::after {
    content: '';
    position: absolute;
    inset: 20px;
    border: 2px solid rgba(255,255,255,.03);
    border-radius: 50%;
}

.planexpo-b4__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(52, 199, 89, .1);
    border: 1px solid rgba(52, 199, 89, .2);
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 700;
    color: var(--color-success);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    width: fit-content;
    margin-bottom: 14px;
}

.planexpo-b4__badge-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-success);
}

.planexpo-b4__heading {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}
.planexpo-b4__heading em {
    color: var(--color-success);
    font-style: italic;
}

.planexpo-b4__features {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.planexpo-b4__feat {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--color-text-muted);
}

.planexpo-b4__feat-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-success);
    flex-shrink: 0;
}

.planexpo-b4__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--color-accent);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    width: fit-content;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.planexpo-b4:hover .planexpo-b4__button {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(0,0,0,.25);
}

.planexpo-b4__button-arrow {
    font-size: 14px;
    transition: transform var(--transition-fast);
}
.planexpo-b4:hover .planexpo-b4__button-arrow {
    transform: translateX(3px);
}

.planexpo-b4__right {
    flex: 1;
    background: var(--color-bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.planexpo-b4__right-grain {
    position: absolute;
    inset: 0;
    opacity: .3;
}

.planexpo-b4__mockup {
    position: relative;
    width: 440px;
    height: 200px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 40px rgba(0,0,0,.06), 0 1px 3px rgba(0,0,0,.03);
    overflow: hidden;
    transform: perspective(800px) rotateY(-4deg) scale(.88);
}

.planexpo-b4__mock-bar {
    height: 24px;
    background: var(--color-bg-dark);
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 5px;
}

.planexpo-b4__mock-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
}
.planexpo-b4__mock-dot:first-child { background: #ff5f57; }
.planexpo-b4__mock-dot:nth-child(2) { background: #ffbd2e; }
.planexpo-b4__mock-dot:nth-child(3) { background: #28ca41; }

.planexpo-b4__mock-body {
    padding: 12px;
    display: flex;
    gap: 8px;
    height: calc(100% - 24px);
}

.planexpo-b4__mock-sidebar {
    width: 50px;
    background: var(--color-bg-primary);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 6px 4px;
}

.planexpo-b4__mock-tool {
    height: 8px;
    border-radius: 3px;
    background: var(--color-border);
}
.planexpo-b4__mock-tool:nth-child(2) {
    background: var(--color-accent);
}

.planexpo-b4__mock-canvas {
    flex: 1;
    background: var(--color-bg-primary);
    border-radius: 6px;
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}
.planexpo-b4__mock-canvas::before {
    content: '';
    position: absolute;
    inset: 8px;
    background:
        linear-gradient(90deg, rgba(0,0,0,.03) 1px, transparent 1px),
        linear-gradient(0deg, rgba(0,0,0,.03) 1px, transparent 1px);
    background-size: 16px 16px;
}

.planexpo-b4__mock-stand {
    position: absolute;
    border-radius: 2px;
    animation: planexpoStandPop .6s ease backwards;
}
.planexpo-b4__mock-stand:nth-child(1) { width: 36px; height: 28px; background: rgba(101,163,13,.15); border: 1.5px solid #65a30d; top: 18px; left: 20px; animation-delay: .2s; }
.planexpo-b4__mock-stand:nth-child(2) { width: 28px; height: 36px; background: rgba(37,99,235,.12); border: 1.5px solid #2563eb; top: 16px; left: 72px; animation-delay: .35s; }
.planexpo-b4__mock-stand:nth-child(3) { width: 44px; height: 22px; background: rgba(124,58,237,.1); border: 1.5px solid #7c3aed; top: 60px; left: 14px; animation-delay: .5s; }
.planexpo-b4__mock-stand:nth-child(4) { width: 24px; height: 24px; background: rgba(217,119,6,.12); border: 1.5px solid #d97706; top: 54px; left: 80px; animation-delay: .65s; }
.planexpo-b4__mock-stand:nth-child(5) { width: 40px; height: 30px; background: rgba(52,199,89,.1); border: 1.5px solid var(--color-success); bottom: 18px; left: 40px; animation-delay: .8s; }

@keyframes planexpoStandPop {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* ── B6 — Mobile Banner (homepage only, hidden on desktop) ── */
.planexpo-mobile-banner {
    display: none;
    padding: 0 16px 16px;
}

.planexpo-b6 {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    height: 90px;
    background: linear-gradient(135deg, var(--color-bg-darker), var(--color-bg-dark));
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
    padding: 0 16px;
    gap: 14px;
    border: 1px solid var(--color-border);
}

.planexpo-b6__glow {
    position: absolute;
    right: -30px;
    top: -30px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(52,199,89,.1), transparent 65%);
}

.planexpo-b6__icon {
    position: relative;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,.05);
    border: 1.5px solid rgba(255,255,255,.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.planexpo-b6__icon-inner {
    display: grid;
    grid-template-columns: repeat(2, 11px);
    grid-template-rows: repeat(2, 9px);
    gap: 3px;
}

.planexpo-b6__ic { border-radius: 2px; }
.planexpo-b6__ic:nth-child(1) { background: var(--color-success); }
.planexpo-b6__ic:nth-child(2) { background: #2563eb; opacity: .7; }
.planexpo-b6__ic:nth-child(3) { background: var(--color-accent-light); opacity: .6; }
.planexpo-b6__ic:nth-child(4) { background: #d97706; opacity: .5; }

.planexpo-b6__content {
    position: relative;
    flex: 1;
    min-width: 0;
}

.planexpo-b6__brand {
    font-size: 10px;
    font-weight: 700;
    color: var(--color-success);
    margin-bottom: 3px;
    letter-spacing: 0.02em;
}

.planexpo-b6__title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 6px;
}

.planexpo-b6__btn {
    display: inline-block;
    padding: 4px 12px;
    background: var(--color-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--radius-xs);
    transition: background var(--transition-fast);
}
.planexpo-b6:hover .planexpo-b6__btn {
    background: var(--color-accent-hover);
}

/* ── B1 — Inline Leaderboard (article + product pages) ── */
.planexpo-inline {
    margin: 32px 0;
}

.planexpo-b1 {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 728px;
    height: 90px;
    margin: 0 auto;
    background: var(--color-bg-dark);
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
    border: 1px solid rgba(255,255,255,.06);
    transition: box-shadow var(--transition-normal);
}
.planexpo-b1:hover {
    box-shadow: var(--shadow-lg);
}

.planexpo-b1__accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--color-success), #d97706);
}

.planexpo-b1__icon {
    position: relative;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.planexpo-b1__icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 14px);
    grid-template-rows: repeat(2, 14px);
    gap: 3px;
    transform: rotate(-5deg);
}

.planexpo-b1__cell {
    border-radius: 2px;
}
.planexpo-b1__cell:nth-child(1) { background: var(--color-success); opacity: .9; }
.planexpo-b1__cell:nth-child(2) { background: var(--color-accent-light); opacity: .7; }
.planexpo-b1__cell:nth-child(3) { background: #d97706; opacity: .8; }
.planexpo-b1__cell:nth-child(4) { background: var(--color-accent-light); opacity: .6; }
.planexpo-b1__cell:nth-child(5) { background: var(--color-success); opacity: .5; }
.planexpo-b1__cell:nth-child(6) { background: #2563eb; opacity: .7; }

.planexpo-b1__body {
    position: relative;
    flex: 1;
    padding: 0 20px;
}

.planexpo-b1__tagline {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-success);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.planexpo-b1__title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.planexpo-b1__title span { color: var(--color-success); }

.planexpo-b1__sub {
    font-size: 11px;
    color: var(--color-text-muted);
    margin-top: 3px;
}

.planexpo-b1__cta {
    position: relative;
    margin-right: 20px;
    flex-shrink: 0;
    padding: 10px 22px;
    background: var(--color-accent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
    border: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    box-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.planexpo-b1:hover .planexpo-b1__cta {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
}

/* ── Responsive: Hide ALL PlanExpo banners on mobile ── */
@media (max-width: 768px) {
    .planexpo-bar,
    .planexpo-banner,
    .planexpo-mobile-banner,
    .planexpo-inline {
        display: none !important;
    }
}
